This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/ExpressionLanguage
2017-06-01 13:44:56 -07:00
..
Node
ParserCache
Resources/bin
Tests Complete the injection of the expression in all syntax errors 2017-04-03 10:58:13 +02:00
.gitignore
CHANGELOG.md
Compiler.php fixed @return when returning this or static 2016-12-27 08:23:47 +01:00
composer.json
Expression.php
ExpressionFunction.php [2.6] CS Fixes And Removed An Unused Import 2014-12-07 19:23:39 +01:00
ExpressionFunctionProviderInterface.php
ExpressionLanguage.php [ExpressionLanguage] Registering functions after calling evaluate(), compile() or parse() is not supported 2017-02-22 14:24:23 -08:00
Lexer.php Fix minor phpdoc mismatches with the code(detected by phan) 2017-04-29 08:58:46 -07:00
LICENSE updated LICENSE year 2017-01-02 12:30:00 -08:00
ParsedExpression.php
Parser.php Using FQ name for PHP_VERSION_ID 2017-06-01 13:44:56 -07:00
phpunit.xml.dist unify PHPUnit config files 2017-04-12 21:20:43 +02:00
README.md [2.7] update readme files for new components 2016-03-07 12:06:07 +01:00
SerializedParsedExpression.php
SyntaxError.php Complete the injection of the expression in all syntax errors 2017-04-03 10:58:13 +02:00
Token.php Fix minor phpdoc mismatches with the code(detected by phan) 2017-04-29 08:58:46 -07:00
TokenStream.php Complete the injection of the expression in all syntax errors 2017-04-03 10:58:13 +02:00

ExpressionLanguage Component

The ExpressionLanguage component provides an engine that can compile and evaluate expressions. An expression is a one-liner that returns a value (mostly, but not limited to, Booleans).

Resources