This commit is contained in:
Jeremy Ashkenas
2011-11-25 08:49:51 -05:00
parent 35dc56d785
commit b122406683
2 changed files with 2 additions and 2 deletions

View File

@@ -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) {

View File

@@ -112,7 +112,7 @@ exports.Lexer = class Lexer
id = new String id
id.reserved = yes
else if id in RESERVED
@error "reserved word \"#{word}\""
@error "reserved word \"#{id}\""
unless forcedIdentifier
id = COFFEE_ALIAS_MAP[id] if id in COFFEE_ALIASES