Jacqueline Firth

Results 356 issues of Jacqueline Firth

This is a work-in-progress attempt to make `define-deprecated-alias` more user-friendly, specifically by allowing it to be defined either before or after the definition of the alias's target while still raising...

This will allow Resyntax to replace uses of these legacy forms with their modern names.

Wildly incomplete.

I often use newlines to separate stuff. For example: ``` #lang racket (define (f) (do-setup-stuff) (define (helper1) body ...) (define (helper2) body ...) (do-main-stuff)) (define (g) (do-g-stuff)) ``` That is,...

There's a lot of macros in my projects that `fmt` doesn't know how to format. But rather than developing some protocol for my macros to expose formatting instructions to `fmt`,...

Fixes #88, assuming there's consensus.

This code: ```scheme (define (f stx) (syntax-case stx (module) [(module . rest) (void)])) ``` Is currently reformatted by `fmt` to this: ```scheme (define (f stx) (syntax-case stx (module) [(module ....

The `gui-doc` package is not installed in the docker container the action is using, so it has to be installed and then updated rather than just updated.

I'm interested in parsing YAML into Racket syntax objects with source location metadata attached, so I can manipulate YAML files with [Resyntax](https://docs.racket-lang.org/resyntax/). I'd like to avoid writing my own parser....

Skimming the source code, it seems the `PSet` implementations don't optimize `plusAll` and `minusAll` beyond looping over `plus` and `minus`. However, the [Efficient sets - a balancing act](https://www.cambridge.org/core/services/aop-cambridge-core/content/view/0CAA1C189B4F7C15CE9B8C02D0D4B54E/S0956796800000885a.pdf/functional_pearls_efficient_setsa_balancing_act.pdf) paper that...

enhancement
help wanted