Ported traversal code to use subtemplate, fixed scope issue with subtemplate

This commit is contained in:
Georges Dupéron 2016-10-07 13:42:00 +02:00
parent 897c4ed99d
commit a486dc81f7
3 changed files with 30 additions and 30 deletions

View File

@ -219,11 +219,14 @@
(set! acc (cons binders+info acc))) (set! acc (cons binders+info acc)))
#'id)] #'id)]
[other (rec #'other)])) [other (rec #'other)]))
;; process the syntax, extract the derived bindings into acc
(fold-syntax fold-process #'tmpl)
;; define the result, which looks like (template . tmpl) or
;; like (quasitemplate . tmpl)
(define result (define result
(quasisyntax/top-loc #'self (quasisyntax/top-loc #'self
(#,tmpl-form (#,tmpl-form
. #,(fold-syntax fold-process . tmpl)))
#'tmpl))))
;; Make sure that we remove duplicates, otherwise we'll get errors if we ;; Make sure that we remove duplicates, otherwise we'll get errors if we
;; define the same derived id twice. ;; define the same derived id twice.
(define/with-syntax ([bound binders (define/with-syntax ([bound binders

View File

@ -91,4 +91,4 @@
(Listof String) (Listof String)
(Listof Symbol)) (Listof Symbol))
Integer) Integer)
'("abc" ("def" "ghi") (jkl mno)) 1) '("abc" ("def" "ghi") (jkl mno)) 1)

View File

@ -123,6 +123,9 @@ not expressed syntactically using the @racket[Foo] identifier.
way up, so that a simple identity function can be applied in these cases. way up, so that a simple identity function can be applied in these cases.
@chunk[<define-fold> @chunk[<define-fold>
(begin-for-syntax
(define-syntax-rule (barr body)
body))
(define-syntax define-fold (define-syntax define-fold
(syntax-parser (syntax-parser
[(_ _function-name:id [(_ _function-name:id
@ -134,10 +137,9 @@ way up, so that a simple identity function can be applied in these cases.
(local-require racket/pretty) (local-require racket/pretty)
#;(pretty-write (syntax->datum x)) #;(pretty-write (syntax->datum x))
x) x)
(subtemplate (subtemplate
(begin (begin
<define-fold-result>)))]))] <define-fold-result>)))]))]
@chunk[<define-fold-result> @chunk[<define-fold-result>
the-defs the-defs
@ -156,16 +158,11 @@ way up, so that a simple identity function can be applied in these cases.
_the-code)] _the-code)]
@chunk[<define-fold-prepare> @chunk[<define-fold-prepare>
;(define-temp-ids "_Tᵢ" (type-to-replaceᵢ …))
;(define-temp-ids "_Aᵢ" (type-to-replaceᵢ …))
;(define-temp-ids "_Bᵢ" (type-to-replaceᵢ …))
;(define-temp-ids "predicateᵢ" (type-to-replaceᵢ …))
;(define-temp-ids "updateᵢ" (type-to-replaceᵢ …))
(define/with-syntax _args (subtemplate ({?@ predicateᵢ updateᵢ} )))] (define/with-syntax _args (subtemplate ({?@ predicateᵢ updateᵢ} )))]
@chunk[<define-fold-prepare> @chunk[<define-fold-prepare>
(type-cases (type-cases
syntax-parse
(whole-type #:to _the-type (whole-type #:to _the-type
#:using _the-code #:using _the-code
#:with-defintitions the-defs ) #:with-defintitions the-defs )
@ -175,7 +172,8 @@ way up, so that a simple identity function can be applied in these cases.
@chunk[<type-cases> @chunk[<type-cases>
[t [t
#:with info (findf (λ (r) (free-identifier-tree=? #'t (stx-car r))) #:with info (findf (λ (r) (free-identifier-tree=? #'t (stx-car r)))
(syntax->list #'([type-to-replaceᵢ updateᵢ _Tᵢ] ))) (syntax->list
(subtemplate ([type-to-replaceᵢ updateᵢ _Tᵢ] ))))
#:when (attribute info) #:when (attribute info)
#:with (_ update T) #'info #:with (_ update T) #'info
@ -251,40 +249,38 @@ way up, so that a simple identity function can be applied in these cases.
(define-fold fy* ty* (List Y ) type-to-replaceᵢ )]] (define-fold fy* ty* (List Y ) type-to-replaceᵢ )]]
@chunk[<type-cases> @chunk[<type-cases>
[(U X ) [(U _X )
(define-temp-ids "_fx" (X )) (define-temp-ids "_fx" (_X ))
(define-temp-ids "_tx" (X )) (define-temp-ids "_tx" (_X ))
#:to #:to
(U (_tx _Tᵢ ) ) (U (_tx _Tᵢ ) )
#:using #:using
(dispatch-union ([type-to-replaceᵢ Aᵢ predicateᵢ] (dispatch-union ([type-to-replaceᵢ Aᵢ predicateᵢ]
) )
[X v ((_fx . _args) v acc)] [_X v ((_fx . _args) v acc)]
) )
#:with-defintitions #:with-defintitions
(define-fold _fx _tx X type-to-replaceᵢ ) (define-fold _fx _tx _X type-to-replaceᵢ )
]] ]]
@chunk[<type-cases> @chunk[<type-cases>
[(tagged _name [_field (~optional :colon) _X] [(tagged _name [_fieldⱼ (~optional :colon) _Xⱼ] )
{~do (define-temp-ids "_fx" (_X ))}
{~do (define-temp-ids "_tx" (_X ))}
{~do (define-temp-ids "_result" (_X ))})
#:to #:to
(tagged _name [_field : (_tx _Tᵢ )] ) (tagged _name [_fieldⱼ : (_txⱼ _Tᵢ )] )
#:using #:using
(let*-values ([(_result acc) ((_fx . _args) (uniform-get v _field) acc)] (let*-values ([(_resultⱼ acc) ((_fxⱼ . _args) (uniform-get v _fieldⱼ)
acc)]
) )
(values (tagged _name [_field _result] ) (values (tagged _name [_field _result] )
acc)) acc))
#:with-defintitions #:with-defintitions
(define-fold _fx _tx _X type-to-replaceᵢ ) (define-fold _fx _tx _X type-to-replaceᵢ )
]] ]]
@chunk[<type-cases> @chunk[<type-cases>
@ -315,7 +311,8 @@ where @racket[foldl-map] is defined as:
@chunk[<type-cases-macro> @chunk[<type-cases-macro>
(define-syntax type-cases (define-syntax type-cases
(syntax-parser (syntax-parser
[(_ (whole-type #:to the-type [(_ sp
(whole-type #:to the-type
#:using the-code #:using the-code
#:with-defintitions the-defs (~literal )) #:with-defintitions the-defs (~literal ))
#:literals (lit ) #:literals (lit )
@ -326,7 +323,7 @@ where @racket[foldl-map] is defined as:
#:defaults ([(transform-defs 1) (list)]))) #:defaults ([(transform-defs 1) (list)])))
) )
#'(define/with-syntax (the-type the-code the-defs ( )) #'(define/with-syntax (the-type the-code the-defs ( ))
(syntax-parse #'whole-type (sp #'whole-type
#:literals (lit ) #:literals (lit )
[pat opts [pat opts
(subtemplate (subtemplate