continuing to optimize

This commit is contained in:
Danny Yoo 2011-09-03 20:05:22 -04:00
parent df20eb4ee5
commit 28dbb9a74a

View File

@ -395,12 +395,8 @@ EOF
(: assemble-statement (UnlabeledStatement -> String))
;; Generates the code to assemble a statement.
(define (assemble-statement stmt)
(string-append
(if (current-emit-debug-trace?)
(format "if (typeof(window.console) !== 'undefined' && typeof(console.log) === 'function') { console.log(~s);\n}"
(format "~a" stmt))
"")
(cond
(define assembled
(cond
[(DebugPrint? stmt)
(format "MACHINE.params.currentOutputPort.writeDomNode(MACHINE, $('<span/>').text(~a));" (assemble-oparg (DebugPrint-value stmt)))]
[(AssignImmediateStatement? stmt)
@ -516,7 +512,15 @@ EOF
val-string))]
[(Comment? stmt)
;; TODO: maybe comments should be emitted as JavaScript comments.
""])))
""]))
(cond
[(current-emit-debug-trace?)
(string-append
(format "if (typeof(window.console) !== 'undefined' && typeof(console.log) === 'function') { console.log(~s);\n}"
(format "~a" stmt))
assembled)]
[else
assembled]))
(define-predicate natural? Natural)