Jacqueline Firth
Jacqueline Firth
### Rule summary In `#lang resyntax/test`, the default behavior when no refactoring suite is specified with `require:` is to use `default-recommendations`. Therefore, a test file whose only `require:` statement is...
It's brittle and doesn't quite mean what I intend. Really what I'm looking for is a way to check that a syntax object came directly from the output of `source-read-syntax`....
The language's `read-syntax` implementation should produce Universal Tagged Syntax (UTS), which is my term for the kind of syntax objects I'm using to make Resyntax work on non-s-expression `#lang`s. This...
In [this code](https://github.com/racket/drracket/blob/c5b033f1fcef602ce435ac3bd0cc67e6a7448a81/drracket/browser/private/html.rkt#L317-L328), the use of `cond` and `regexp-match` can be expressed more cleanly using `match` with the `regexp` pattern. This probably shouldn't be rewritten unless 1) every non-`else` branch...
This is a work-in-progress attempt to automatically refactor uses of aliases defined with `define-deprecated-alias`. Closes #234, eventually.