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
Fabien Potencier 03acba5341 Merge branch '3.2'
* 3.2:
  fail when detecting risky tests
  fail when detecting risky tests
  fail when detecting risky tests
2017-04-12 07:14:56 -07:00
..
Node [ExpressionLanguage] fixed a BC break 2016-09-21 13:33:43 -07:00
ParserCache [ExpressionLanguage] Making cache PSR6 compliant 2016-10-06 17:21:07 +02:00
Resources/bin Fix license headers 2015-09-26 14:15:17 +02:00
Tests Merge branch '3.2' 2017-04-04 09:47:41 +02:00
.gitignore [ExpressionLanguage] added the component 2013-09-19 12:59:10 +02:00
CHANGELOG.md [ExpressionLanguage] added ExpressionFunction and ExpressionFunctionProviderInterface 2014-09-25 19:08:38 +02:00
Compiler.php fixed @return when returning this or static 2016-12-27 08:23:47 +01:00
composer.json updated version to 3.3 2016-11-19 12:35:20 -08:00
Expression.php added optimized versions of expressions 2013-09-19 12:59:12 +02:00
ExpressionFunction.php [ExpressionLanguage] Create an ExpressionFunction from a PHP function name 2017-02-20 09:23:01 -08:00
ExpressionFunctionProviderInterface.php [ExpressionLanguage] added ExpressionFunction and ExpressionFunctionProviderInterface 2014-09-25 19:08:38 +02:00
ExpressionLanguage.php Merge branch '3.2' 2017-02-24 05:59:04 -08:00
Lexer.php [ExpressionLanguage] Avoid dependency on ctype 2017-04-07 09:40:11 -07:00
LICENSE updated LICENSE year 2017-01-02 12:30:00 -08:00
ParsedExpression.php [ExpressionLanguage] Move the ::dump method to the Node classe to ease its usage 2016-08-24 11:14:26 +02:00
Parser.php Merge branch '2.8' into 3.2 2017-04-04 09:26:27 +02:00
phpunit.xml.dist fail when detecting risky tests 2017-04-12 09:39:27 +02:00
README.md [2.7] update readme files for new components 2016-03-07 12:06:07 +01:00
SerializedParsedExpression.php Removed dead code (unused use statements). 2013-10-16 13:59:56 +02:00
SyntaxError.php Complete the injection of the expression in all syntax errors 2017-04-03 10:58:13 +02:00
Token.php CS fixes 2014-12-04 20:26:11 +00: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