scribble-enhanced/graph/lib/low-untyped.rkt
Georges Dupéron 494537057f Initial commit.
2015-10-21 18:35:42 +02:00

16 lines
742 B
Racket

#lang typed/racket/no-check
;; When creating the html document with scribble/lp2, it does not see the macros defined in low.rkt when including it with sugar/include.
;; Using a raw include/reader works.
;(require sugar/include)
;(include-without-lang-line "low.rkt")
;; typed/racket/no-check does not require (for-syntax racket/base). TODO: file a bug report?
(require (for-syntax racket/base))
(include/reader "low.rkt" (λ (source-name in)
(port-count-lines! in)
(do ()
[(let-values ([(line column position) (port-next-location in)]) (> line 1))]
(read-line in))
(read-syntax source-name in)))