diff options
Diffstat (limited to 'lib/handlebars/compiler.js')
-rw-r--r-- | lib/handlebars/compiler.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/handlebars/compiler.js b/lib/handlebars/compiler.js index d66b1db..42e5c2c 100644 --- a/lib/handlebars/compiler.js +++ b/lib/handlebars/compiler.js @@ -228,6 +228,10 @@ Handlebars.JavaScriptCompiler = function() {}; this.opcode('push', integer.integer); }, + BOOLEAN: function(boolean) { + this.opcode('push', boolean.boolean); + }, + comment: function() {}, // HELPERS |