__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ 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 <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\ExpressionLanguage;
use Symfony\Component\ExpressionLanguage\Node\Node;
/**
* Represents an already parsed expression.
*
* @author Fabien Potencier <fabien@symfony.com>
*/
class ParsedExpression extends Expression
{
private Node $nodes;
public function __construct(string $expression, Node $nodes)
{
parent::__construct($expression);
$this->nodes = $nodes;
}
/**
* @return Node
*/
public function getNodes()
{
return $this->nodes;
}
}
| 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 |
|