Searched refs:programParams (Results 1 - 2 of 2) sorted by relevance

/yui3/src/handlebars/js/
H A Dhandlebars-compiler-compiler.js689 var programParams = [child.index, child.name, "data"]; variable
694 if(depth === 1) { programParams.push("depth0"); }
695 else { programParams.push("depth" + (depth - 1)); }
699 return "self.program(" + programParams.join(", ") + ")";
701 programParams.shift();
702 return "self.programWithDepth(" + programParams.join(", ") + ")";
/yui3/build/handlebars-compiler/
H A Dhandlebars-compiler-debug.js1320 var programParams = [child.index, child.name, "data"];
1325 if(depth === 1) { programParams.push("depth0"); }
1326 else { programParams.push("depth" + (depth - 1)); }
1330 return "self.program(" + programParams.join(", ") + ")";
1332 programParams.shift();
1333 return "self.programWithDepth(" + programParams.join(", ") + ")";

Completed in 47 milliseconds