Pass full id to helperMissing

This commit is contained in:
Tom Dale
2014-05-13 13:24:25 +01:00
parent 085e5e1937
commit 72c1262394
2 changed files with 9 additions and 1 deletions
+1 -1
View File
@@ -276,7 +276,7 @@ Compiler.prototype = {
throw new Exception("You specified knownHelpersOnly, but used the unknown helper " + name, sexpr);
} else {
this.ID(id);
this.opcode('invokeHelper', params.length, name, sexpr.isRoot);
this.opcode('invokeHelper', params.length, id.original, sexpr.isRoot);
}
},