putting use strict in generated code to keep me honest.
This commit is contained in:
parent
07b393f693
commit
73a6967942
|
@ -39,6 +39,7 @@
|
||||||
(parameterize ([current-interned-symbol-table ((inst make-hash Symbol Symbol))]
|
(parameterize ([current-interned-symbol-table ((inst make-hash Symbol Symbol))]
|
||||||
[current-interned-constant-closure-table ((inst make-hash Symbol MakeCompiledProcedure))])
|
[current-interned-constant-closure-table ((inst make-hash Symbol MakeCompiledProcedure))])
|
||||||
(display "(function(M, success, fail, params) {\n" op)
|
(display "(function(M, success, fail, params) {\n" op)
|
||||||
|
(display "\"use strict\";\n" op)
|
||||||
(display "var param;\n" op)
|
(display "var param;\n" op)
|
||||||
(display "var RT = plt.runtime;\n" op)
|
(display "var RT = plt.runtime;\n" op)
|
||||||
|
|
||||||
|
|
|
@ -393,7 +393,7 @@ M.modules[~s] =
|
||||||
(define start-time (current-inexact-milliseconds))
|
(define start-time (current-inexact-milliseconds))
|
||||||
(cond
|
(cond
|
||||||
[(UninterpretedSource? src)
|
[(UninterpretedSource? src)
|
||||||
(fprintf op "(function(M) { ~a }(plt.runtime.currentMachine));" (UninterpretedSource-datum src))]
|
(fprintf op "(function(M) {\n\"use strict\";\n ~a }(plt.runtime.currentMachine));" (UninterpretedSource-datum src))]
|
||||||
[else
|
[else
|
||||||
(fprintf op "(")
|
(fprintf op "(")
|
||||||
(on-source src stmts op)
|
(on-source src stmts op)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user