[plt-scheme] struct-type-info at expansion time
At Thu, 24 Apr 2003 12:16:11 -0400 (EDT), Bruce Hauman wrote:
> I am trying to access the super-type of a structure at
> expansion time and drscheme is reporting that the struct-type-info
> procedure is not bound in the module transformer environment.
>
> How can I get this information?
Can you supply a small example?
The following example compiles for me, illusrating that
`struct-type-info' is in this particular module's transformer
environment:
(module m mzscheme
(define-syntax x struct-type-info))
Matthew