f8a40b3f | 15-Apr-2016 |
Remi Collet |
Make autoloader more PSR-4 (#268) |
82bb6627 | 15-Apr-2016 |
Nikita Popov |
Drop superfluous newlines before help text |
d1dd9f5a | 15-Apr-2016 |
Remi Collet |
support -h and --help standard options |
e7f0860d | 09-Apr-2016 |
Graham Campbell |
Tweaked a phpdoc description |
954051f2 | 07-Apr-2016 |
Nikita Popov |
Run test_old using php -n Xdebug is killing performance. |
39f93f09 | 09-Apr-2016 |
lvht |
Add setReturnType() method to function/method builders Also support scalar type hints in existing setTypeHint() method on params. |
2d0c3b70 | 07-Apr-2016 |
Nikita Popov |
Fix .travis.yml |
4252ffa4 | 07-Apr-2016 |
Nikita Popov |
Run test_old against php-src on travis |
8cacc859 | 07-Apr-2016 |
Nikita Popov |
"Fix" HHVM build |
588e6a4d | 02-Apr-2016 |
Nikita Popov |
Add string kinds and doc string labels Scalar\String_ and Scalar\Encapsed now have an additional "kind" attribute, which may be one of: * String_::KIND_SINGLE_QUOTED * Str
Add string kinds and doc string labels Scalar\String_ and Scalar\Encapsed now have an additional "kind" attribute, which may be one of: * String_::KIND_SINGLE_QUOTED * String_::KIND_DOUBLE_QUOTED * String_::KIND_NOWDOC * String_::KIND_HEREDOC Additionally, if the string kind is one of the latter two, an attribute "docLabel" is provided, which contains the doc string label (STR in <<<STR) that was originally used. The pretty printer will try to take the original kind of the string, as well as the used doc string label into account.
show more ...
|
fa6a1775 | 07-Apr-2016 |
Nikita Popov |
Add two files to test_old skip list The parse after pretty printing differs here, because these tests contain nop (;) statements, which the pretty printer does not preserve. |
52cb5ece | 07-Apr-2016 |
Nikita Popov |
Fix comment reformatting for some cases It did not correctly deal with non-standard comments containing indented lines. |
1565a281 | 05-Apr-2016 |
Nikita Popov |
Add --verbose option to test_old/run.php |
14de7189 | 05-Apr-2016 |
Nikita Popov |
Fix nop statement comment assignment Keep around the start attributes on the lookahead token around in a separate parser property. |
5fa84936 | 05-Apr-2016 |
Nikita Popov |
Make canonicalization less aggressive |
b31a973f | 04-Apr-2016 |
Nikita Popov |
Another fix for B"" handling The lexer fix also need to account for uppercase B. |
9ac35921 | 02-Apr-2016 |
Nikita Popov |
Handle uppercase B"" prefix |
35011d2e | 01-Apr-2016 |
Nikita Popov |
Deduplicate attribute assignment code a bit |
60f01bdd | 01-Apr-2016 |
Nikita Popov |
Deprecate setters on Comment No point in making it mutable |
15a2388d | 01-Apr-2016 |
Nikita Popov |
Add start file offset to Comments |
68b4c038 | 01-Apr-2016 |
Nikita Popov |
Fix Serializer/XML test output indent This causes a failure here, but not on another machine, not sure why. |
eb4bfe13 | 27-Mar-2016 |
Nikita Popov |
Add sanity check for leaveNode() return value |
Revision tags: v2.0.1 |
|
e7ca4b7b | 15-Feb-2016 |
Théo FIDRY |
Better Travis configuration * Enable Travis cache for Composer * Use `--prefer-dist` over `--prefer-source` to download less and make it faster |
fc36239b | 10-Mar-2016 |
Nikita Popov |
Remove internal LNumber::parse() method Combine it into ::fromString(), as they both do the same checks. |
f493219c | 10-Mar-2016 |
Nikita Popov |
Move "kind" attribute handling out of lexer Doesn't belong there and will cause issue with multiple assignments. |