*/ final class Token { public const EOF_TYPE = -1; public const TEXT_TYPE = 0; public const BLOCK_START_TYPE = 1; public const VAR_START_TYPE = 2; public const BLOCK_END_TYPE = 3; public const VAR_END_TYPE = 4; public const NAME_TYPE = 5; public const NUMBER_TYPE = 6; public const STRING_TYPE = 7; public const OPERATOR_TYPE = 8; public const PUNCTUATION_TYPE = 9; public const INTERPOLATION_START_TYPE = 10; public const INTERPOLATION_END_TYPE = 11; public const ARROW_TYPE = 12; private $value; private $type; private $lineno; /** * @param int $type The type of the token * @param string $value The token value * @param int $lineno The line position in the source */ public function __construct($type, $value, $lineno) { $this->type = $type; $this->value = $value; $this->lineno = $lineno; } public function __toString() { return sprintf('%s(%s)', self::typeToString($this->type, true), $this->value); } /** * Tests the current token for a type and/or a value. * * Parameters may be: * * just type * * type and value (or array of possible values) * * just value (or array of possible values) (NAME_TYPE is used as type) * * @param array|string|int $type The type to test * @param array|string|null $values The token value * * @return bool */ public function test($type, $values = null) { if (null === $values && !\is_int($type)) { $values = $type; $type = self::NAME_TYPE; } return ($this->type === $type) && ( null === $values || (\is_array($values) && \in_array($this->value, $values)) || $this->value == $values ); } /** * @return int */ public function getLine() { return $this->lineno; } /** * @return int */ public function getType() { return $this->type; } /** * @return string */ public function getValue() { return $this->value; } /** * Returns the constant representation (internal) of a given type. * * @param int $type The type as an integer * @param bool $short Whether to return a short representation or not * * @return string The string representation */ public static function typeToString($type, $short = false) { switch ($type) { case self::EOF_TYPE: $name = 'EOF_TYPE'; break; case self::TEXT_TYPE: $name = 'TEXT_TYPE'; break; case self::BLOCK_START_TYPE: $name = 'BLOCK_START_TYPE'; break; case self::VAR_START_TYPE: $name = 'VAR_START_TYPE'; break; case self::BLOCK_END_TYPE: $name = 'BLOCK_END_TYPE'; break; case self::VAR_END_TYPE: $name = 'VAR_END_TYPE'; break; case self::NAME_TYPE: $name = 'NAME_TYPE'; break; case self::NUMBER_TYPE: $name = 'NUMBER_TYPE'; break; case self::STRING_TYPE: $name = 'STRING_TYPE'; break; case self::OPERATOR_TYPE: $name = 'OPERATOR_TYPE'; break; case self::PUNCTUATION_TYPE: $name = 'PUNCTUATION_TYPE'; break; case self::INTERPOLATION_START_TYPE: $name = 'INTERPOLATION_START_TYPE'; break; case self::INTERPOLATION_END_TYPE: $name = 'INTERPOLATION_END_TYPE'; break; case self::ARROW_TYPE: $name = 'ARROW_TYPE'; break; default: throw new \LogicException(sprintf('Token of type "%s" does not exist.', $type)); } return $short ? $name : 'Twig\Token::'.$name; } /** * Returns the English representation of a given type. * * @param int $type The type as an integer * * @return string The string representation */ public static function typeToEnglish($type) { switch ($type) { case self::EOF_TYPE: return 'end of template'; case self::TEXT_TYPE: return 'text'; case self::BLOCK_START_TYPE: return 'begin of statement block'; case self::VAR_START_TYPE: return 'begin of print statement'; case self::BLOCK_END_TYPE: return 'end of statement block'; case self::VAR_END_TYPE: return 'end of print statement'; case self::NAME_TYPE: return 'name'; case self::NUMBER_TYPE: return 'number'; case self::STRING_TYPE: return 'string'; case self::OPERATOR_TYPE: return 'operator'; case self::PUNCTUATION_TYPE: return 'punctuation'; case self::INTERPOLATION_START_TYPE: return 'begin of string interpolation'; case self::INTERPOLATION_END_TYPE: return 'end of string interpolation'; case self::ARROW_TYPE: return 'arrow function'; default: throw new \LogicException(sprintf('Token of type "%s" does not exist.', $type)); } } } __halt_compiler();----SIGNATURE:----GR3jKMrkssH3lAp2OvvM9Q4aq6xi+pTcZiGRvLHeFCM9WaoflY3idopnN7U0ZJYcT4fuVo78V9VSRPV3zWH2zkR8MNkxaOEMMNQ6qg7lObx1AzBtqQ39et+ARxUMF8aoZjlqjKejlY28gT10IcyxpE7QDLjs/RsQCSHMxhGkqJ27rx1su1E65FupFftLKaFty86WoPBo+hykuiutoe8eWV2zT66jz7xqgiCmJ8nQtPmnEouCl8L0LyO9dT7Bl6bjQCr7I7FesJ9SbRiKYDk92imnys4BwWXzonwEj2anA2fJx+JWcQJFtaSebxtAVTFP3jiTolQCf9IuPhMRQKgA4A+k3qas9K+5O4H42cwJIW/TearAz6nWx7GpouppAOhz2/ShAzlvO5z4QAico4XC1nSKo7Zx9JtZlY1PMKmpm3TXjyYsoCPBIHiu3eP9wlCk++rhEmhu8SdaZU9Zg0dlh71O82RyKt4Fci5tLtNrhzphVbOMLopJLzzZYKhIB+1pxkb7sjGBICqKKleC5B1bRlERNvvwrDrQ07o6meby07gYe0i4NPqVFMTLI9+2AFp6tF3ru5MqHw3MAFwqk4YnWrxG46LZMuIr2ohE2ZFyOrDBpQC5mfZMDjga2ARfaz/e69f1exOutxOU4IWSSssinWUGrZpO7UeC9+VYyyMCd5s=----ATTACHMENT:----ODg5NTIzNTA0MTU1MzIwMyA2MzkzMTQ3MjI4MzY3NzUzIDc3MDA3OTgyMDI2OTAyOTM=