4432ba39 | 03-May-2021 |
Nikita Popov |
Release PHP-Parser 4.10.5 |
37ac4ea9 | 25-Apr-2021 |
Nikita Popov |
Document that namespaced names containing whitespace are not supported |
4848a0d7 | 25-Apr-2021 |
Nikita Popov |
Check for \r as newline in closing tag Fixes #761. |
8eb194ea | 25-Apr-2021 |
Nikita Popov |
Add never type This should be recognized as Identifier instead of Name now. |
e03d63cf | 25-Apr-2021 |
Nikita Popov |
Fix precedence of arrow functions Arrow functions should have lowest precedence. Fixes #769. |
ce91d139 | 25-Apr-2021 |
Nikita Popov |
Make sure match is one character long |
33d7c8d3 | 25-Apr-2021 |
Nikita Popov |
Escape invalid UTF-8 in strings To be friendlier to tooling that expects PHP files to be UTF-8 encoded, escape any sequences that are not legal under UTF-8. |
6b409b96 | 25-Apr-2021 |
Nikita Popov |
Use hex escaping for special characters in strings Apart from \0, using the \xHH notation is more typical. |
f68e1a43 | 25-Apr-2021 |
Tomas Votruba |
[PHP 8.1] Add support for enums (#758) RFC: https://wiki.php.net/rfc/enumerations Co-authored-by: Nikita Popov <nikita.ppv@gmail.com> |
f767b9fd | 25-Apr-2021 |
Iskander (Alex) Sharipov |
ParserAbstract: add missing '*' to the phpdoc Otherwise, it's somewhat incompatible with the phpdoc definition. |
2a4bb7ef | 10-Apr-2021 |
Miguel |
Moved phpy pseudo lang functions to separate file |
4abdcde5 | 25-Mar-2021 |
Maxim L |
Fix missing argument in documentation (#767) Missing argument in the getMessageWithColumnInfo call |
d46f261e | 21-Mar-2021 |
WhizSid |
Adding class constant to builder factory (#765) * Adding class constant to builder factory * Fix formatting,doc issues and Tweak returning node from ClassConst * Fix PHPUnit |
38aa0920 | 21-Mar-2021 |
Nikita Popov |
Add test for UTF-8 in string These should not get escaped. |
a8223f22 | 20-Mar-2021 |
Nikita Popov |
Add emulation for enum keyword |
8165cf69 | 02-Feb-2021 |
Oskar Stark |
CS fix |
46221a09 | 06-Jan-2021 |
Tomas Votruba |
Update Use_ builder to return specific type |
3b87eb72 | 29-Dec-2020 |
Tomas Votruba |
make Namespace_ builder return Namespace_ Hi, just a little detail. This should fix invalid return type of docs |
e3471d94 | 22-Dec-2020 |
Ayesh Karunaratne |
Update `.gitattributes` `export-ignore` rules - Adds `.github` directory to `.gitattributes` file with an `export-ignore` rule. - This also aligns all `export-ignore` rules for more re
Update `.gitattributes` `export-ignore` rules - Adds `.github` directory to `.gitattributes` file with an `export-ignore` rule. - This also aligns all `export-ignore` rules for more readability. - Removes `.travis.yml` file that is no longer used.
show more ...
|
c6d052fc | 20-Dec-2020 |
Nikita Popov |
Release PHP-Parser 4.10.4 |
8008d07b | 20-Dec-2020 |
Nikita Popov |
Remove Travis build badge We no longer use Travis, so this isn't meaningful... And GitHub already displays the build status, so there's no value in having this kind of badge at all. |
7284a4d0 | 20-Dec-2020 |
Nikita Popov |
Remove no longer necessary class parsing workaround This was split to work around the attribute assignment bug fixed in the previous commit, and as such is no longer necessary. |
d3d1ee47 | 08-Dec-2020 |
Nikita Popov |
Fix #738 incorrect start line for traits Empty productions are supposed to be assigned the start attributes of the lookahead token. Currently, this happens by assigning above the cur
Fix #738 incorrect start line for traits Empty productions are supposed to be assigned the start attributes of the lookahead token. Currently, this happens by assigning above the current stack position when the token it read. This fails in a situation where we first reduce an empty production higher up in the stack, and then again reduce an empty production lower in the stack, without consuming the lookahead token in the meantime. Fix this by moving the assignment into the reduction phase. We also need to do this for error productions, which are effectively empty.
show more ...
|
893a5bce | 19-Dec-2020 |
Nikita Popov |
Fix #741 incorrect varvar positions |
bec74ace | 08-Dec-2020 |
Nikita Popov |
Remove .travis.yml |