www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 16438869f2d9d1f648d2193cddab192ba7a6cbca
parent 742322a42788ef7c1823461d814691cc897958ac
Author: Georges Dupéron <georges.duperon@gmail.com>
Date:   Tue, 11 Oct 2016 01:55:22 +0200

Fixed #%plain-app vs #%app and #%plain-lambda vs lambda issue in fully-expanded-grammar.rkt

Diffstat:
Mfully-expanded-grammar.rkt | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/fully-expanded-grammar.rkt b/fully-expanded-grammar.rkt @@ -59,7 +59,7 @@ with-continuation-mark #%app #%top #%expression #%variable-reference) (pattern :id) - (pattern (#%plain-lambda :formals :expr …+)) + (pattern (lambda :formals :expr …+)) (pattern (case-lambda (:formals :expr …+) …)) (pattern (if :expr :expr :expr)) (pattern (begin :expr …+)) @@ -77,7 +77,7 @@ (pattern (quote-syntax _datum)) (pattern (quote-syntax _datum #:local)) (pattern (with-continuation-mark :expr :expr :expr)) - (pattern (#%plain-app :expr …+)) + (pattern (#%app :expr …+)) (pattern (#%top . :id)) (pattern (#%expression :expr)) (pattern (#%variable-reference :id))