getLine(); $oStream = $this->parser->getStream(); $sType = $oStream->expect(Token::NAME_TYPE)->getValue(); $oParams = $this->parser->getExpressionParser()->parseExpression(); $oStream->expect(Token::BLOCK_END_TYPE); return new UIDataTableNode($sType, $oParams, $iLineno, $this->getTag()); } /** * @inheritDoc */ public function getTag() { return 'UIDataTable'; } }