compressing the output of the compiler with google-closure. Fixing the typechecks on numbers

This commit is contained in:
Danny Yoo 2011-06-03 17:10:24 -04:00
parent 84f643cb3d
commit c92f018aa8
3 changed files with 23 additions and 15 deletions

View File

@ -151,7 +151,7 @@
(let: ([test-string : String
(case domain
[(number)
(format "(typeof(~a) === 'number')"
(format "(jsnums.isSchemeNumber(~a))"
operand-string)]
[(string)
(format "(typeof(~a) === 'string')"

View File

@ -21,8 +21,8 @@
(require racket/contract
racket/runtime-path
racket/port
(planet dyoo/closure-compile:1:1))
racket/port)
(provide/contract [get-runtime (-> string?)])
@ -57,9 +57,8 @@
(port->string ip))))
(define text (closure-compile
(apply string-append
(map path->string files))))
(define text (apply string-append
(map path->string files)))
(define (get-runtime)

View File

@ -4,6 +4,7 @@
"quote-cdata.rkt"
"../make.rkt"
"../make-structs.rkt"
(planet dyoo/closure-compile:1:1)
(prefix-in runtime: "get-runtime.rkt")
(prefix-in racket: racket/base))
@ -87,13 +88,6 @@
;; get-runtime: -> string
(define (get-runtime)
(let ([buffer (open-output-string)])
(write-runtime buffer)
(get-output-string buffer)))
;; write-runtime: output-port -> void
(define (write-runtime op)
(let ([packaging-configuration
@ -121,6 +115,19 @@
(define *the-runtime*
(let ([buffer (open-output-string)])
(write-runtime buffer)
(closure-compile
(get-output-string buffer))))
;; get-runtime: -> string
(define (get-runtime)
*the-runtime*)
;; *header* : string
@ -144,7 +151,8 @@ EOF
(package source-code
#:should-follow? (lambda (src p) #t)
#:output-port buffer)
(get-output-string buffer)))
(closure-compile
(get-output-string buffer))))
@ -152,7 +160,8 @@ EOF
(define (get-standalone-code source-code)
(let ([buffer (open-output-string)])
(write-standalone-code source-code buffer)
(get-output-string buffer)))
(closure-compile
(get-output-string buffer))))
;; write-standalone-code: source output-port -> void