-
Bug
-
Resolution: Fixed
-
P3
-
None
-
None
-
b82
-
Verified
Running the following program
load("coffee-script.js");
var js = CoffeeScript.compile("print 'hello coffescript world'");
print(js);
eval(js);
should print
(function() {
print('hello coffescript world');
}).call(this);
hello coffescript world
---
Instead it generates a script without the print statement inside it.
load("coffee-script.js");
var js = CoffeeScript.compile("print 'hello coffescript world'");
print(js);
eval(js);
should print
(function() {
print('hello coffescript world');
}).call(this);
hello coffescript world
---
Instead it generates a script without the print statement inside it.