resyntax icon indicating copy to clipboard operation
resyntax copied to clipboard

A Racket refactoring engine

Results 65 resyntax issues
Sort by recently updated
recently updated
newest added

The current comment parsing code in Resyntax is specific to `#lang racket`, incomplete, and irritating to maintain. Resyntax should use `module-lexer` to find comment locations in the file. This will...

enhancement

In order to make things like #185 easier to implement, it would be handy if refactoring rules could look up binding info for identifiers. This ought to be possible by...

enhancement

Resyntax ought to suggest rewriting this code: ```scheme (define (quote x) (* x 2)) 'a ``` Into this: ```scheme (define (quote x) (* x 2)) (quote a) ``` That is,...

new lint

Resyntax should be able to refactor more than just `#lang racket` and `#lang racket/base` code. For example, Resyntax should be able to rewrite this: ``` #lang rhombus (1 + 2)...

enhancement