', $this->name); } public function parse(Twig_Token $token) { $this->parser->getStream()->expect(Twig_Token::NAME_TYPE, array('true', 'false')); return new Twig_Node_Expression_Constant('true' === $token->getValue() ? true : false, $token->getLine()); } }