added a grammar to easily describe a tag syntax with a string
authorFabien Potencier <fabien.potencier@gmail.com>
Fri, 28 May 2010 13:28:22 +0000 (15:28 +0200)
committerFabien Potencier <fabien.potencier@gmail.com>
Tue, 8 Jun 2010 14:31:06 +0000 (16:31 +0200)
commit0ca17abc7129eeba1c63f330ac4d76a96e553192
treeae08d1041f178fcf4f6ad772c22fffbeefa49ae8
parent3fb36c0fcb254678bc90d9f54992d239c3cfa8d1
added a grammar to easily describe a tag syntax with a string
25 files changed:
CHANGELOG
lib/Twig/Grammar.php [new file with mode: 0644]
lib/Twig/Grammar/Arguments.php [new file with mode: 0644]
lib/Twig/Grammar/Array.php [new file with mode: 0644]
lib/Twig/Grammar/Body.php [new file with mode: 0644]
lib/Twig/Grammar/Boolean.php [new file with mode: 0644]
lib/Twig/Grammar/Constant.php [new file with mode: 0644]
lib/Twig/Grammar/Expression.php [new file with mode: 0644]
lib/Twig/Grammar/Number.php [new file with mode: 0644]
lib/Twig/Grammar/Optional.php [new file with mode: 0644]
lib/Twig/Grammar/Tag.php [new file with mode: 0644]
lib/Twig/GrammarInterface.php [new file with mode: 0644]
lib/Twig/SimpleTokenParser.php [new file with mode: 0644]
test/Twig/Tests/Grammar/ArgumentsTest.php [new file with mode: 0644]
test/Twig/Tests/Grammar/ArrayTest.php [new file with mode: 0644]
test/Twig/Tests/Grammar/BodyTest.php [new file with mode: 0644]
test/Twig/Tests/Grammar/BooleanTest.php [new file with mode: 0644]
test/Twig/Tests/Grammar/ConstantTest.php [new file with mode: 0644]
test/Twig/Tests/Grammar/ExpressionTest.php [new file with mode: 0644]
test/Twig/Tests/Grammar/NumberTest.php [new file with mode: 0644]
test/Twig/Tests/Grammar/OptionalTest.php [new file with mode: 0644]
test/Twig/Tests/Grammar/TagTest.php [new file with mode: 0644]
test/Twig/Tests/SimpleTokenParser.php [new file with mode: 0644]
test/Twig/Tests/SimpleTokenParserTest.php [new file with mode: 0644]
test/Twig/Tests/grammarTest.php [new file with mode: 0644]