Re: [racket-users] How do you set the expander of a module to a module in the same file as the module whose expander you want to set

2017-05-18 Thread Matthew Flatt
I'm not sure why `(submod ...)` doesn't work in the usual place in a `syntax/module-reader` module body, but you can use #:language '(submod ...) instead. At Wed, 17 May 2017 20:02:30 -0700 (PDT), Vityou wrote: > If I have a module called reader, and I want to set its expander with >

[racket-users] How do you set the expander of a module to a module in the same file as the module whose expander you want to set

2017-05-17 Thread Vityou
If I have a module called reader, and I want to set its expander with syntax/module-reader to a module in the same file as reader, how would I do so? I have tried submod, but apparently you can only use it in a require/provide statement. -- You received this message because you are