racket / scribble

Other
197 stars 90 forks source link

Replace uses of define-struct with struct #295

Closed jackfirth closed 3 years ago

jackfirth commented 3 years ago

The define-struct form is a legacy form, struct is preferred in new code.

Note: these changes were automatically generated by resyntax.

samth commented 3 years ago

I'm a bit skeptical that this is worth it since you are adding #:extra-constructor-name in every case. Is it possible to figure out which of those can be omitted?

jackfirth commented 3 years ago

I think that ought to be possible, if trickier. It would require making more than one analysis pass over each module. I'll close this while I attempt to figure it out.