getLine(); $oStream = $this->parser->getStream(); $oStream->expect(Token::BLOCK_END_TYPE); $oBody = $this->parser->subparse([$this, 'decideForEnd'], true); $oStream->expect(Token::BLOCK_END_TYPE); return new UIHtmlNode($oBody, $iLineno, $this->getTag()); } /** * @inheritDoc */ public function getTag() { return 'UIHtml'; } public function decideForEnd(Token $token) { return $token->test('EndUIHtml'); } }