Re: [racket-users] Using the base language’s get-info function with make-meta-reader

2016-09-10 Thread Alex Knauth
> On Sep 8, 2016, at 4:36 PM, Alexis King wrote: > > Alright, I’m finally taking a look at this (and looping the users > list back in). I think, unfortunately, your (Alex’s) change isn’t > quite sufficient: having access to the get-info function isn’t > enough. The read

Re: [racket-users] Using the base language’s get-info function with make-meta-reader

2016-09-08 Thread Alexis King
Alright, I’m finally taking a look at this (and looping the users list back in). I think, unfortunately, your (Alex’s) change isn’t quite sufficient: having access to the get-info function isn’t enough. The read and read-syntax functions need access to the lambda returned by the base language’s

Re: [racket-users] Using the base language’s get-info function with make-meta-reader

2016-08-24 Thread Alex Knauth
> On Aug 24, 2016, at 2:05 AM, Alexis King wrote: > > When using make-meta-reader from syntax/module-reader, is it possible > to access the “base” language’s get-info function from within the > read or read-syntax wrapping functions? I’d like to adjust how a > particular

[racket-users] Using the base language’s get-info function with make-meta-reader

2016-08-24 Thread Alexis King
When using make-meta-reader from syntax/module-reader, is it possible to access the “base” language’s get-info function from within the read or read-syntax wrapping functions? I’d like to adjust how a particular meta language is read based on a property on the base language. Currently, my guess