__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ 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 the Symfony package. * * (c) Fabien Potencier <[email protected]> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\ExpressionLanguage; /** * Represents a Token. * * @author Fabien Potencier <[email protected]> */ class Token { public $value; public $type; public $cursor; public const EOF_TYPE = 'end of expression'; public const NAME_TYPE = 'name'; public const NUMBER_TYPE = 'number'; public const STRING_TYPE = 'string'; public const OPERATOR_TYPE = 'operator'; public const PUNCTUATION_TYPE = 'punctuation'; /** * @param self::*_TYPE $type * @param int|null $cursor The cursor position in the source */ public function __construct(string $type, string|int|float|null $value, ?int $cursor) { $this->type = $type; $this->value = $value; $this->cursor = $cursor; } /** * Returns a string representation of the token. */ public function __toString(): string { return sprintf('%3d %-11s %s', $this->cursor, strtoupper($this->type), $this->value); } /** * Tests the current token for a type and/or a value. */ public function test(string $type, ?string $value = null): bool { return $this->type === $type && (null === $value || $this->value == $value); } }
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Node | Folder | 0755 |
|
|
| Compiler.php | File | 3.05 KB | 0644 |
|
| Expression.php | File | 662 B | 0644 |
|
| ExpressionFunction.php | File | 3.07 KB | 0644 |
|
| ExpressionFunctionProviderInterface.php | File | 482 B | 0644 |
|
| ExpressionLanguage.php | File | 5.38 KB | 0644 |
|
| Lexer.php | File | 4.5 KB | 0644 |
|
| ParsedExpression.php | File | 776 B | 0644 |
|
| Parser.php | File | 17.19 KB | 0644 |
|
| SerializedParsedExpression.php | File | 943 B | 0644 |
|
| SyntaxError.php | File | 1.22 KB | 0644 |
|
| Token.php | File | 1.44 KB | 0644 |
|
| TokenStream.php | File | 2.1 KB | 0644 |
|
| autoload.php | File | 2.93 KB | 0644 |
|