I'm an idiot

This commit is contained in:
Yehuda Katz
2011-12-31 16:04:11 -08:00
parent 17cdb0091b
commit 6040149cf8
+14 -14
View File
@@ -742,20 +742,20 @@ Handlebars.JavaScriptCompiler = function() {};
var reservedWords = ( var reservedWords = (
"break else new var" + "break else new var" +
"case finally return void" + " case finally return void" +
"catch for switch while" + " catch for switch while" +
"continue function this with" + " continue function this with" +
"default if throw" + " default if throw" +
"delete in try" + " delete in try" +
"do instanceof typeof" + " do instanceof typeof" +
"abstract enum int short" + " abstract enum int short" +
"boolean export interface static" + " boolean export interface static" +
"byte extends long super" + " byte extends long super" +
"char final native synchronized" + " char final native synchronized" +
"class float package throws" + " class float package throws" +
"const goto private transient" + " const goto private transient" +
"debugger implements protected volatile" + " debugger implements protected volatile" +
"double import public let yield" " double import public let yield"
).split(" "); ).split(" ");
var compilerWords = JavaScriptCompiler.RESERVED_WORDS = {}; var compilerWords = JavaScriptCompiler.RESERVED_WORDS = {};