mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
Fix bug in lexer's reserved word error message
This commit is contained in:
parent
24836ccf6d
commit
26d5c99570
2 changed files with 2 additions and 2 deletions
|
@ -73,7 +73,7 @@
|
|||
id = new String(id);
|
||||
id.reserved = true;
|
||||
} else if (__indexOf.call(RESERVED, id) >= 0) {
|
||||
this.error("reserved word \"" + word + "\"");
|
||||
this.error("reserved word \"" + id + "\"");
|
||||
}
|
||||
}
|
||||
if (!forcedIdentifier) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue