Home
last modified time | relevance | path

Searched refs:blockParamIndex (Results 1 – 3 of 3) sorted by relevance

/plugin/asciidocjs/node_modules/handlebars/dist/cjs/handlebars/compiler/
Dcompiler.js295 blockParamId = !path.depth && !scoped && this.blockParamIndex(name);
366 var isBlockParam = isSimple && !!this.blockParamIndex(sexpr.path.parts[0]);
425 var blockParamIndex = undefined; variable in Compiler
427 blockParamIndex = this.blockParamIndex(val.parts[0]);
429 if (blockParamIndex) {
431 this.opcode('pushId', 'BlockParam', blockParamIndex, blockParamChild);
461 blockParamIndex: function blockParamIndex(name) {
/plugin/asciidocjs/node_modules/handlebars/dist/amd/handlebars/compiler/
Dcompiler.js290 blockParamId = !path.depth && !scoped && this.blockParamIndex(name);
361 var isBlockParam = isSimple && !!this.blockParamIndex(sexpr.path.parts[0]);
420 var blockParamIndex = undefined;
422 blockParamIndex = this.blockParamIndex(val.parts[0]);
424 if (blockParamIndex) {
426 this.opcode('pushId', 'BlockParam', blockParamIndex, blockParamChild);
456 blockParamIndex: function blockParamIndex(name) {
/plugin/asciidocjs/node_modules/handlebars/lib/handlebars/compiler/
Dcompiler.js296 blockParamId = !path.depth && !scoped && this.blockParamIndex(name);
373 let isBlockParam = isSimple && !!this.blockParamIndex(sexpr.path.parts[0]);
432 let blockParamIndex;
434 blockParamIndex = this.blockParamIndex(val.parts[0]);
436 if (blockParamIndex) {
438 this.opcode('pushId', 'BlockParam', blockParamIndex, blockParamChild);
471 blockParamIndex: function(name) { method in Compiler