06fcef90 | 14-Jul-2011 |
nikic |
Document getDocComment and getLine |
962c4dc0 | 13-Jul-2011 |
nikic |
Add some more unit tests |
cc80385a | 13-Jul-2011 |
nikic |
Fix incorrect line number extraction |
a6f97681 | 13-Jul-2011 |
nikic |
Start adding Unit test (PHPUnit) |
43b537f9 | 12-Jul-2011 |
nikic |
add NodeTraverser |
a4e6d791 | 04-Jul-2011 |
nikic |
Make the parser run without errors on 5.4 |
78f15cd5 | 03-Jul-2011 |
nikic |
Associate last encountered doccomment with next node |
033f5c81 | 28-Jun-2011 |
nikic |
Add missing #line hint for strings |
f756d82c | 28-Jun-2011 |
nikic |
Fetch start line instead of end line |
b153bfa3 | 27-Jun-2011 |
nikic |
Remove reentrant error handling code (we don't need that currently) |
dd13cd4f | 26-Jun-2011 |
nikic |
Add README for grammar folder |
d94cd199 | 26-Jun-2011 |
nikic |
fix typos |
fb45e8a3 | 26-Jun-2011 |
nikic |
Put statements belonging to a namespace statement into its stmt property, add some further checks against invalid namespace usage and fix the pretty printer to print global namespaces |
1478ae9c | 25-Jun-2011 |
nikic |
Use ArrayObject for Nodes to abstract away array access implementation details |
dfa59332 | 12-Jun-2011 |
nikic <+@ni-po.com> |
Move halt_compiler handling from parser to grammar |
f11f2280 | 12-Jun-2011 |
nikic <+@ni-po.com> |
Associate some line information with nodes (currently the line the node ends in, as the starting line is harder to fetch) |
363a0771 | 06-Jun-2011 |
nikic <+@ni-po.com> |
fix incorrect usages of old ParseErrorException |
b24d0e2d | 05-Jun-2011 |
nikic <+@ni-po.com> |
Rename PHPParser_ParseErrorException to PHPParser_Error |
83a2077f | 05-Jun-2011 |
nikic <+@ni-po.com> |
Add Autoloader |
620525a5 | 05-Jun-2011 |
nikic <+@ni-po.com> |
Prefix all classes with PHPParser_ |
4006e559 | 04-Jun-2011 |
nikic <+@ni-po.com> |
Fix typo Expr_ErrorSupress -> Expr_ErrorSuppress |
8294ceb7 | 04-Jun-2011 |
nikic <+@ni-po.com> |
Fix pretty printing issues caused by Expr_InstanceOf vs Expr_Instanceof |
bf00dff2 | 03-Jun-2011 |
nikic <+@ni-po.com> |
Make halt_compiler() work |
d1f09c31 | 03-Jun-2011 |
nikic <+@ni-po.com> |
Fix ambiguity when pretty printing dynamic property fetches with arrays |
d82bbb3b | 03-Jun-2011 |
nikic <+@ni-po.com> |
Throw ParseErrorException on error instead of error callback As long as the parser isn't reentrant having an error callback doesn't really make sense and only complicates everything. |