summaryrefslogtreecommitdiffstats
path: root/lib/handlebars/compiler/compiler.js
diff options
context:
space:
mode:
authorkpdecker <kpdecker@gmail.com>2014-07-12 12:50:54 -0500
committerkpdecker <kpdecker@gmail.com>2014-07-12 12:50:54 -0500
commit271106d43fae96fc1287898568d000b871f19084 (patch)
treede4a23fe43b7e4d7cbec1830543b317751a03cfa /lib/handlebars/compiler/compiler.js
parent1fb7b51ee6bb8f4a2e395821a4648333a699a982 (diff)
downloadhandlebars.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.js2
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);
}
},