Lines Matching refs:parseUntilBlocks
2994 node.body = this.parseUntilBlocks(endBlock, 'else');
2997 node.else_ = this.parseUntilBlocks(endBlock);
3011 node.body = this.parseUntilBlocks('endmacro');
3025 var body = this.parseUntilBlocks('endcall');
3125 node.body = this.parseUntilBlocks('endblock');
3172 node.body = this.parseUntilBlocks('elif', 'elseif', 'else', 'endif');
3181 node.else_ = this.parseUntilBlocks('endif');
3210 node.body = new nodes.Capture(tag.lineno, tag.colno, this.parseUntilBlocks('endset'));
3243 this.parseUntilBlocks(caseStart, caseDefault, switchEnd);
3259 var body = this.parseUntilBlocks(caseStart, caseDefault, switchEnd);
3269 defaultCase = this.parseUntilBlocks(switchEnd);
3684 var body = new nodes.Capture(name.lineno, name.colno, this.parseUntilBlocks('endfilter'));
3779 _proto.parseUntilBlocks = function parseUntilBlocks() {