a matter of trying harder

pull/2/head
Matthew Butterick 9 years ago
parent 146e460a8f
commit b3deb1ed02

@ -158,44 +158,45 @@ This would be the place to check a syntax property for hiding.
(datum->syntax #f d (positions->srcloc start-pos end-pos) stx-with-original?-property)) (datum->syntax #f d (positions->srcloc start-pos end-pos) stx-with-original?-property))
(require sugar/debug) (define (remove-rule-name component-stx [splice #f])
;; rule-components->syntax: (U symbol false) (listof stx) ... #:srcloc (U #f (list src line column offset span)) -> stx
;; Creates an stx out of the rule name and its components.
;; The location information of the rule spans that of its components.
(define (rule-components->syntax rule-name/false #:srcloc [srcloc #f] #:hide-or-splice? [hide-or-splice #f] . componentss)
(define (remove-rule-name components-stx)
;; when removing a rule name, we apply it as a syntax property to the remaining elements ;; when removing a rule name, we apply it as a syntax property to the remaining elements
;; for possible later usage (aka, why throw away information) ;; for possible later usage (aka, why throw away information)
;; todo: distinguish hiding and splicing behavior. (with-syntax ([(name . subcomponents) component-stx])
;; when hiding, returned list should be a syntaxed list with the property (?) (let ([name-datum (syntax->datum #'name)])
;; when splicing, returned list should be a regular list, with each element having the property. (if splice
(let* ([name+elements (syntax->list components-stx)] ;; when splicing, returned list is a regular list, with each element having the property.
[name-datum (syntax->datum (car name+elements))] (map (λ(sc) (syntax-property sc name-datum #'name)) (syntax->list #'subcomponents))
[elements (cdr name+elements)]) ;; when hiding, returned list should be a syntaxed list with the property
(map (λ(e) (syntax-property e name-datum #t)) elements))) ;; iow, basically the same as `component-stx`, minus the name
(define componentss-hoisted (syntax-property (datum->syntax component-stx #'subcomponents component-stx component-stx) name-datum #'name)))))
(apply append
(for/list ([css (in-list componentss)])
(define (preprocess-component-lists component-lists)
; "preprocess" means splicing and rule-name-hiding where indicated
(append*
;; each `component-list` is a list that's either empty, or has a single component-stx object
;; inside `component-stx` is a name followed by subcomponents
(for*/list ([component-list (in-list component-lists)]
[component-stx (in-list component-list)]) ; this has the effect of omitting empty component-lists
(list (list
;; each `css` is a list that's either empty, or has a single syntaxed component list
(let ([components-stx (and (pair? css) (car css))])
(if components-stx
(cond (cond
[(eq? (syntax-property components-stx 'hide-or-splice) 'hide) [(eq? (syntax-property component-stx 'hide-or-splice) 'hide)
(list (remove-rule-name components-stx))] ; hidden version still wrapped in a sub-`list` (list (remove-rule-name component-stx))] ; hidden version still wrapped in a sublist
[(or (eq? (syntax-property components-stx 'hide-or-splice) 'splice) [(or (eq? (syntax-property component-stx 'hide-or-splice) 'splice)
(syntax-property components-stx 'splice-rh-id)) (syntax-property component-stx 'splice-rh-id))
(remove-rule-name components-stx)] ; spliced version is "delisted" (remove-rule-name component-stx #t)] ; spliced version is lifted out of the sublist
[else css]) [else (list component-stx)])))))
css))))))
(syntax-property
(datum->syntax #f ;; rule-components->syntax: (U symbol false) (listof stx) ... #:srcloc (U #f (list src line column offset span)) -> stx
(cons ;; Creates an stx out of the rule name and its components.
(datum->syntax #f rule-name/false srcloc stx-with-original?-property) ;; The location information of the rule spans that of its components.
(apply append componentss-hoisted)) (define (rule-components->syntax rule-name/false #:srcloc [srcloc #f] #:hide-or-splice? [hide-or-splice #f] . component-lists)
srcloc (define new-rule-name (datum->syntax #f rule-name/false srcloc stx-with-original?-property))
stx-with-original?-property) (define new-rule-components (append* (preprocess-component-lists component-lists)))
;; not 'hide-or-splice-lhs-id, because it is now a component in a different rule (define rule-result (cons new-rule-name new-rule-components))
(define syntaxed-rule-result (datum->syntax #f rule-result srcloc stx-with-original?-property))
;; not 'hide-or-splice-lhs-id, because this will now become a (right-hand) component in a different (left-hand) rule
;; actual splicing happens when the parent rule is processed (with procedure above) ;; actual splicing happens when the parent rule is processed (with procedure above)
'hide-or-splice hide-or-splice)) (syntax-property syntaxed-rule-result 'hide-or-splice hide-or-splice))

@ -13,4 +13,6 @@ array: "[" [json ("," json)*] "]"
object: /"{" [kvpair ("," kvpair)*] /"}" object: /"{" [kvpair ("," kvpair)*] /"}"
@kvpair : /ID ":" /json @kvpair : /ID colon /json
/colon : ":"

@ -6,6 +6,7 @@
"test-01-equal.rkt" "test-01-equal.rkt"
"test-simple-arithmetic-grammar.rkt" "test-simple-arithmetic-grammar.rkt"
"test-baby-json.rkt" "test-baby-json.rkt"
"test-baby-json-hider.rkt"
"test-wordy.rkt" "test-wordy.rkt"
"test-simple-line-drawing.rkt" "test-simple-line-drawing.rkt"
"test-flatten.rkt" "test-flatten.rkt"

@ -8,10 +8,10 @@
":" ":"
(token 'STRING "'hello world'") (token 'STRING "'hello world'")
"}"))) "}")))
(check-equal? (syntax->datum parse-result) '(json ":")) (check-equal? (syntax->datum parse-result) '(json (":")))
(define syntaxed-colon (cadr (syntax->list parse-result))) (define syntaxed-colon-parens (cadr (syntax->list parse-result)))
(check-true (syntax-property syntaxed-colon 'kvpair)) (check-equal? (syntax->datum (syntax-property syntaxed-colon-parens 'kvpair)) 'kvpair)
(check-equal? (check-equal?
(syntax->datum (syntax->datum

Loading…
Cancel
Save