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