Inline known helper calls

This commit is contained in:
kpdecker
2013-01-20 17:05:17 -06:00
parent 94e70043f9
commit 956b0a62a6
+1 -1
View File
@@ -797,7 +797,7 @@ Handlebars.JavaScriptCompiler = function() {};
// so a `helperMissing` fallback is not required.
invokeKnownHelper: function(paramSize, name) {
var helper = this.setupHelper(paramSize, name);
this.pushStack(helper.name + ".call(" + helper.callParams + ")");
this.pushStack(helper.name + ".call(" + helper.callParams + ")", true);
},
// [invokeAmbiguous]