diff options
author | kpdecker <kpdecker@gmail.com> | 2014-07-12 12:50:54 -0500 |
---|---|---|
committer | kpdecker <kpdecker@gmail.com> | 2014-07-12 12:50:54 -0500 |
commit | 271106d43fae96fc1287898568d000b871f19084 (patch) | |
tree | de4a23fe43b7e4d7cbec1830543b317751a03cfa /lib/handlebars/compiler/compiler.js | |
parent | 1fb7b51ee6bb8f4a2e395821a4648333a699a982 (diff) | |
download | handlebars.js-271106d43fae96fc1287898568d000b871f19084.zip handlebars.js-271106d43fae96fc1287898568d000b871f19084.tar.gz handlebars.js-271106d43fae96fc1287898568d000b871f19084.tar.bz2 |
Do not lookup pathed helpers on the helper stack
Fixes #764
Diffstat (limited to 'lib/handlebars/compiler/compiler.js')
-rw-r--r-- | lib/handlebars/compiler/compiler.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/handlebars/compiler/compiler.js b/lib/handlebars/compiler/compiler.js index fbbb390..3e83a62 100644 --- a/lib/handlebars/compiler/compiler.js +++ b/lib/handlebars/compiler/compiler.js @@ -280,7 +280,7 @@ Compiler.prototype = { id.falsy = true; this.ID(id); - this.opcode('invokeHelper', params.length, id.original, sexpr.isRoot); + this.opcode('invokeHelper', params.length, id.original, id.isSimple, sexpr.isRoot); } }, |