check tvars are ids before using free-identifier=?

This commit is contained in:
Alex Knauth 2019-04-03 16:03:48 -04:00 committed by GitHub
parent 215036e059
commit 6482fb0049
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1387,7 +1387,7 @@ definitions.
@chunk[<define-type>
(define-syntax new-define-type
(syntax-parser
[(_ (~or name:id (name:id maybe-tvar )) . whole-rest)
[(_ (~or name:id (name:id maybe-tvar:id )) . whole-rest)
#:with (tvar ) (if (attribute maybe-tvar) #'(maybe-tvar ) #'())
#:with (tvar-not-ooo ) (filter (λ (tv) (not (free-identifier=? tv #'( ))))
(syntax->list #'(tvar )))