Attempt to fix a compatibility issue wuth racket 7

The private identifier -attribute-mapping-syntax? does not exist in the new version of syntax/parse
This commit is contained in:
Georges Dupéron 2018-04-09 00:45:41 +02:00
parent 4694f87085
commit c459bff32b
2 changed files with 13 additions and 2 deletions

View File

@ -7,7 +7,8 @@
"typed-racket-more"
"reprovide-lang"
"type-expander"
"hyper-literate"))
"hyper-literate"
"version-case"))
(define build-deps '("scribble-lib"
"racket-doc"
"typed-racket-doc"

View File

@ -5,7 +5,17 @@
racket/contract
racket/syntax)
syntax/parse
(prefix-in - syntax/parse/private/residual))
version-case)
(version-case
[(version< (version) "6.90.0.24")
(require (prefix-in - syntax/parse/private/residual))]
[else
(require (prefix-in - racket/private/template))
(define-for-syntax (-attribute-mapping-syntax? x)
;; attribute-mapping-check is actually false when attribute-mapping-syntax?
;; would have been true (thanks rmculpepper !)
(not (-attribute-mapping-check x)))])
(provide attribute*
(for-syntax attribute-info)