separate readers to handle tracing

This commit is contained in:
Danny Yoo 2011-08-29 15:51:56 -04:00
parent 187eb268fb
commit 760ece253b
3 changed files with 15 additions and 15 deletions

View File

@ -5,18 +5,11 @@
;; Don't publically export the bindings from #%paramz. ;; Don't publically export the bindings from #%paramz.
exception-handler-key exception-handler-key
parameterization-key parameterization-key
break-enabled-key break-enabled-key)
(all-from-out "private/list.rkt"))
;; Use the traced app
#;#%app)
(all-from-out "private/list.rkt") (require "private/list.rkt")
#;(rename-out [traced-app #%app]))
(require "private/list.rkt"
"private/traced-app.rkt")
;; Kludge: This forces modbeg to be compiled and packaged. ;; Kludge: This forces modbeg to be compiled and packaged.
(require racket/private/modbeg) (require racket/private/modbeg)

View File

@ -3,7 +3,7 @@
;; http://docs.racket-lang.org/planet/hash-lang-planet.html ;; http://docs.racket-lang.org/planet/hash-lang-planet.html
#:language (lambda (ip) #:language (lambda (ip)
`(file ,(path->string base-lang-path))) `(file ,(path->string whalesong-lang-path)))
(require racket/runtime-path) (require racket/runtime-path)
(define-runtime-path base-lang-path "base.rkt") (define-runtime-path whalesong-lang-path "whalesong.rkt")

View File

@ -1,4 +1,11 @@
#lang s-exp "kernel.rkt" #lang s-exp "kernel.rkt"
(require "base.rkt") (require "base.rkt"
(provide (all-from-out "base.rkt")) "traced-app.rkt")
;; Programs written in Whalesong will have tracing enabled by default.
;; If you don't want this, write in whalesong/base instead.
(provide (except-out (all-from-out "base.rkt")
#%app)
(rename-out [traced-app #%app]))