This commit is contained in:
Georges Dupéron 2016-12-22 19:54:17 +01:00
parent de81a122d3
commit d7c41fabe6

View File

@ -78,9 +78,9 @@
(f 1))]
@CHUNK[<τ-tree-with-fields>
(define-for-syntax (τ-tree-with-fields fields all-fields2)
(define/with-syntax (fl ) fields)
(define/with-syntax (field ) all-fields2)
(define-for-syntax (τ-tree-with-fields struct-fields fields)
(define/with-syntax (struct-field ) struct-fields)
(define/with-syntax (field ) fields)
<utils>
;; Like in convert-from-struct
(define lookup
@ -90,7 +90,7 @@
(cons n (+ i offset)))))
(define fields+indices
(sort (stx-map (cons % (free-id-table-ref lookup %))
#'(fl ))
#'(struct-field ))
<
#:key cdr))
@ -160,12 +160,12 @@
(define depth-above (ceiling-log2 (length (syntax->list #'(field )))))
(define offset (expt 2 depth-above))
(define i*-above (range 1 (expt 2 depth-above)))
(define τ* (map (format-id #'here "τ~a" %) (range (add1 depth-above))))
(define names (list->vector
(append (map (λ (i) (format-id #'here "-with-~a" i))
i*-above)
(stx-map (λ (f) (format-id f "with-~a" f))
#'(field )))))
(define τ* (map (format-id #'here "τ~a" %) (range (add1 depth-above))))]
#'(field )))))]
@CHUNK[<example>
(define-syntax (gs stx)
(syntax-case stx ()