mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
Interpolated strings are expressions.
This commit is contained in:
parent
2e744a1c1b
commit
19ed63129e
11 changed files with 87 additions and 77 deletions
|
@ -34,7 +34,7 @@
|
|||
return (parser.parse(lexer.tokenize(code))).compile(options);
|
||||
} catch (err) {
|
||||
if (options.source) {
|
||||
err.message = "In " + (options.source) + ", " + (err.message);
|
||||
err.message = ("In " + (options.source) + ", " + (err.message));
|
||||
}
|
||||
throw err;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue