You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(chibi syntax-case) still tries to import make-variable-transformer from (chibi) rather than (chibi ast) (this is my fault for forgetting that module still depends on make-variable-transformer even though identifier-syntax is gone from it!)
identifier-syntax is still broken since the change to syntax-rules in 4382b9d:
(import (chibi ast))
(define-syntaxfoo (identifier-syntax (_ 'ref) ((set! _ _) 'set)))
foo ;=> ERROR: cdr: not a pair: foo
(foo) ;=> ERROR: non procedure application: ref (this is correct, but the next line isn’t)
(foo x y) ;=> set
The text was updated successfully, but these errors were encountered:
(chibi syntax-case)
still tries to importmake-variable-transformer
from(chibi)
rather than(chibi ast)
(this is my fault for forgetting that module still depends onmake-variable-transformer
even thoughidentifier-syntax
is gone from it!)identifier-syntax
is still broken since the change tosyntax-rules
in 4382b9d:The text was updated successfully, but these errors were encountered: