diff options
author | Yehuda Katz <wycats@gmail.com> | 2011-12-31 16:04:11 -0800 |
---|---|---|
committer | Yehuda Katz <wycats@gmail.com> | 2011-12-31 16:04:11 -0800 |
commit | 6040149cf89f990a0dfa14a02c73dd7e871d9198 (patch) | |
tree | 453bb97b0b2f63c9cc7e6684a69c5e266881eb2c /lib/handlebars/compiler/compiler.js | |
parent | 17cdb0091b67280f63621b7451ee92a10ad75d6a (diff) | |
download | handlebars.js-6040149cf89f990a0dfa14a02c73dd7e871d9198.zip handlebars.js-6040149cf89f990a0dfa14a02c73dd7e871d9198.tar.gz handlebars.js-6040149cf89f990a0dfa14a02c73dd7e871d9198.tar.bz2 |
I'm an idiot
Diffstat (limited to 'lib/handlebars/compiler/compiler.js')
-rw-r--r-- | lib/handlebars/compiler/compiler.js | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/lib/handlebars/compiler/compiler.js b/lib/handlebars/compiler/compiler.js index f60b8f1..a630200 100644 --- a/lib/handlebars/compiler/compiler.js +++ b/lib/handlebars/compiler/compiler.js @@ -742,20 +742,20 @@ Handlebars.JavaScriptCompiler = function() {}; var reservedWords = ( "break else new var" + - "case finally return void" + - "catch for switch while" + - "continue function this with" + - "default if throw" + - "delete in try" + - "do instanceof typeof" + - "abstract enum int short" + - "boolean export interface static" + - "byte extends long super" + - "char final native synchronized" + - "class float package throws" + - "const goto private transient" + - "debugger implements protected volatile" + - "double import public let yield" + " case finally return void" + + " catch for switch while" + + " continue function this with" + + " default if throw" + + " delete in try" + + " do instanceof typeof" + + " abstract enum int short" + + " boolean export interface static" + + " byte extends long super" + + " char final native synchronized" + + " class float package throws" + + " const goto private transient" + + " debugger implements protected volatile" + + " double import public let yield" ).split(" "); var compilerWords = JavaScriptCompiler.RESERVED_WORDS = {}; |