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 3f4e6cce8c Merge branch '3.1' into 3.2
* 3.1:
  updated LICENSE year
  updated LICENSE year
  Fixed `@return self` with `$this`
2017-01-02 12:32:22 -08: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 fixed obsolete getMock() usage 2016-12-19 17:09:34 +01: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 [ExpressionLanguage] Making cache PSR6 compliant 2016-10-06 17:21:07 +02:00
Expression.php added optimized versions of expressions 2013-09-19 12:59:12 +02:00
ExpressionFunction.php Add more callable type hints 2015-10-05 18:52:37 +02:00
ExpressionFunctionProviderInterface.php [ExpressionLanguage] added ExpressionFunction and ExpressionFunctionProviderInterface 2014-09-25 19:08:38 +02:00
ExpressionLanguage.php [ExpressionLanguage] Making cache PSR6 compliant 2016-10-06 17:21:07 +02:00
Lexer.php [ExpressionLanguage] Fixed an issue with # characters in double quoted string literals 2014-07-22 15:26:34 +02: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 [ExpressionLanguage] fixed a BC break 2016-09-21 13:33:43 -07:00
phpunit.xml.dist Merge branch '2.3' into 2.7 2015-10-11 11:39:48 +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 [ExpressionLanguage] added the component 2013-09-19 12:59:10 +02:00
Token.php CS fixes 2014-12-04 20:26:11 +00:00
TokenStream.php Code enhancement and cleanup 2016-09-06 09:26:07 +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