A few changes to the typed syntax types

This commit is contained in:
Georges Dupéron 2017-01-13 00:59:11 +01:00
parent ee8e7dd7cc
commit 5cc39371b8
3 changed files with 5 additions and 0 deletions

2
IDEA Normal file
View File

@ -0,0 +1,2 @@
IDEA: to reduce the problem of "fake" immutable vectors etc. leaking out into the generated code, also change the representation of syntax objects. That way, errors will be caught really fast if anythin leaks.
Though this could also cause errors of its own in other places :-(

View File

@ -13,6 +13,7 @@
ISyntaxOf-E
ISyntax/Non
ISyntax/Non-E
ISyntax/Non-Stx
any->isyntax/non
syntax->isyntax/non
any->isyntax/non-e

View File

@ -10,6 +10,7 @@
ISyntax-E
ISyntax/Non
ISyntax/Non-E
ISyntax/Non-Stx
any->isyntax/non
syntax->isyntax/non
any->isyntax/non-e
@ -72,6 +73,7 @@
(define-type ISyntax/Non (ISyntaxOf (NonSyntaxOf Any) (NonSexpOf Any)))
(define-type ISyntax/Non-E (ISyntaxOf-E (NonSyntaxOf Any) (NonSexpOf Any)))
(define-type ISyntax/Non-Stx (Syntaxof ISyntax/Non-E))
(define-type ISyntax (ISyntaxOf Nothing Nothing))
(define-type ISyntax-E (ISyntaxOf-E Nothing Nothing))