fix name.function style
This commit is contained in:
parent
fecf69febf
commit
1d03a2ad52
|
@ -50,7 +50,7 @@ pre.highlight, .highlight {
|
||||||
.nd { color: $hue-6-2; } /* Name.Decorator */
|
.nd { color: $hue-6-2; } /* Name.Decorator */
|
||||||
.ni { color: $hue-6-2; } /* Name.Entity */
|
.ni { color: $hue-6-2; } /* Name.Entity */
|
||||||
.ne { color: $hue-6-2; } /* Name.Exception */
|
.ne { color: $hue-6-2; } /* Name.Exception */
|
||||||
.nf { color: $mono-1; } /* Name.Function */
|
.nf { color: $hue-2; } /* Name.Function */
|
||||||
.nl { color: $hue-6-2; } /* Name.Label */
|
.nl { color: $hue-6-2; } /* Name.Label */
|
||||||
.nn { color: $mono-1; } /* Name.Namespace */
|
.nn { color: $mono-1; } /* Name.Namespace */
|
||||||
.nx { color: $mono-1; } /* Name.Other */
|
.nx { color: $mono-1; } /* Name.Other */
|
||||||
|
|
|
@ -29,15 +29,11 @@
|
||||||
#:with #%template-args (datum->syntax #'body '#%template-args)
|
#:with #%template-args (datum->syntax #'body '#%template-args)
|
||||||
#:with execute-fn #'(λ (#%template-args) body)
|
#:with execute-fn #'(λ (#%template-args) body)
|
||||||
#:with expanded-execute-fn #'execute-fn
|
#:with expanded-execute-fn #'execute-fn
|
||||||
; #:with expanded-execute-fn (begin
|
; #:with expanded-execute-fn (local-expand #'execute-fn (syntax-local-context) '())
|
||||||
; (displayln "expanding!")
|
|
||||||
; (local-expand #'execute-fn (syntax-local-context) '()))
|
|
||||||
; #:with (unbound-ids ...)
|
; #:with (unbound-ids ...)
|
||||||
; (begin
|
; (map (λ (stx) #`(quote #,stx)) (set->list (collect-unbounds #'expanded-execute-fn)))
|
||||||
; (displayln "collecting unbounds")
|
|
||||||
; (map (λ (stx) #`(quote #,stx)) (set->list (collect-unbounds #'expanded-execute-fn))))
|
|
||||||
(#%module-begin
|
(#%module-begin
|
||||||
;(provide required-ids)
|
; (provide required-ids)
|
||||||
;(define required-ids (list unbound-ids ...))
|
; (define required-ids (list unbound-ids ...))
|
||||||
(provide execute)
|
(provide execute)
|
||||||
(define execute expanded-execute-fn)))
|
(define execute expanded-execute-fn)))
|
||||||
|
|
Loading…
Reference in New Issue