Fix prims for quote-syntax -> quote change
This commit is contained in:
parent
5d84201789
commit
d0a8b8c25b
|
@ -183,7 +183,7 @@
|
|||
(begin
|
||||
#,(tr:class:top-level-property
|
||||
(tr:class:type-annotation-property
|
||||
#'(quote-syntax (:-augment name augment-type)) #t) #t)
|
||||
#'(quote (:-augment name augment-type)) #t) #t)
|
||||
#,(tr:class:top-level-property
|
||||
(tr:class:type-annotation-property
|
||||
(syntax/loc #'class-exp (: name type)) #t) #t)))]
|
||||
|
|
|
@ -1256,13 +1256,13 @@ This file defines two sorts of primitives. All of them are provided into any mod
|
|||
(define-syntax (typecheck-fail stx)
|
||||
(syntax-parse stx
|
||||
[(_ orig msg:str #:covered-id var:id)
|
||||
#'(quote-syntax (typecheck-fail-internal orig msg var))]
|
||||
#'(quote (typecheck-fail-internal orig msg var))]
|
||||
[(_ orig msg:str)
|
||||
#'(quote-syntax (typecheck-fail-internal orig msg #f))]
|
||||
#'(quote (typecheck-fail-internal orig msg #f))]
|
||||
[(_ orig #:covered-id var:id)
|
||||
#'(quote-syntax (typecheck-fail-internal orig "Incomplete case coverage" var))]
|
||||
#'(quote (typecheck-fail-internal orig "Incomplete case coverage" var))]
|
||||
[(_ orig)
|
||||
#'(quote-syntax (typecheck-fail-internal orig "Incomplete case coverage" #f))]))
|
||||
#'(quote(typecheck-fail-internal orig "Incomplete case coverage" #f))]))
|
||||
|
||||
(define-syntax (base-for/vector stx)
|
||||
(syntax-case stx ()
|
||||
|
|
Loading…
Reference in New Issue
Block a user