getLine(); $this->parser->getStream()->expect(Twig_Token::BLOCK_END_TYPE); $body = $this->parser->subparse(array($this, 'decideSpacelessEnd'), true); $this->parser->getStream()->expect(Twig_Token::BLOCK_END_TYPE); return new Twig_Node_Spaceless($body, $lineno, $this->getTag()); } public function decideSpacelessEnd(Twig_Token $token) { return $token->test('endspaceless'); } /** * Gets the tag name associated with this token parser. * * @param string The tag name */ public function getTag() { return 'spaceless'; } }