<div dir="ltr">Suppose I have these syntax classes:<div><br></div><div>(define-syntax-class A</div><div>  (pattern (a1 a2:B a3)))</div><div><br></div><div>(define-syntax-class B</div><div>  (pattern (b1 b2 b3)))</div><div><br></div><div>I'd like to be able to access nested attributes, like so:</div><div><br></div><div>(define foo</div><div>  (syntax-parser</div><div>    [blah:A #'blah.a2.b1]))</div><div><br></div><div>Currently, this doesn't work (and it doesn't even throw an error either). How could I do this?</div></div>