7.1 KiB
Upgrading from PHP-Parser 2.x to 3.0
The backwards-incompatible changes in this release may be summarized as follows:
- The specific details of the node representation have changed in some cases, primarily to accomodate new PHP 7.1 features.
- There have been significant changes to the error recovery implementation. This may affect you, if you used the error recovery mode or have a custom lexer implementation.
- A number of deprecated methods were removed.
PHP version requirements
PHP-Parser now requires PHP 5.5 or newer to run. It is however still possible to parse PHP 5.2, 5.3 and 5.4 source code, while running on a newer version.
Changes to the node structure
The following changes are likely to require code changes if the respective nodes are used:
- The
List
subnodevars
has been renamed toitems
and now containsArrayItem
s instead of plain variables. - The
Catch
subnodetype
has been renamed totypes
and is now an array ofName
s. - The
TryCatch
subnodefinallyStmts
has been replaced with afinally
subnode that holds an explicitFinally
node. - The
type
subnode onClass
,ClassMethod
andProperty
has been renamed toflags
. Thetype
subnode has retained for backwards compatibility and is populated to the same value asflags
. However, writes totype
will not updateflags
and use oftype
is discouraged.
The following changes are unlikely to require code changes:
- The
ClassConst
constructor changed to accept an additionalflags
subnode. - The
Trait
constructor now has the same form as theClass
andInterface
constructors: It takes an array of subnodes. Unlike classes/interfaces, traits can only have astmts
subnode. - The
Array
subnodeitems
may now containnull
elements (due to destructuring). void
anditerable
types are now stored as strings if the PHP 7 parser is used. Previously these would have been represented asName
instances.
Changes to error recovery mode
Previously, error recovery mode was enabled by setting the throwOnError
option to false
when
creating the parser, while collected errors were retrieved using the getErrors()
method:
$lexer = ...;
$parser = (new ParserFactory)->create(ParserFactor::ONLY_PHP7, $lexer, [
'throwOnError' => true,
]);
$stmts = $parser->parse($code);
$errors = $parser->getErrors();
if ($errors) {
handleErrors($errors);
}
processAst($stmts);
Both the throwOnError
option and the getErrors()
method have been removed in PHP-Parser 3.0.
Instead an instance of ErrorHandler\Collecting
should be passed to the parse()
method:
$lexer = ...;
$parser = (new ParserFactory)->create(ParserFactor::ONLY_PHP7, $lexer);
$errorHandler = new ErrorHandler\Collecting;
$stmts = $parser->parse($code, $errorHandler);
if ($errorHandler->hasErrors()) {
handleErrors($errorHandler->getErrors());
}
processAst($stmts);
Multiple parser fallback in error recovery mode
As a result of this change, if a Multiple
parser is used (e.g. through the ParserFactory
using
PREFER_PHP7
or PREFER_PHP5
), it will now return the result of the first non-throwing parse. As
parsing never throws in error recovery mode, the result from the first parser will always be
returned.
The PHP 7 parser is a superset of the PHP 5 parser, with the exceptions that =& new
and
global $$foo->bar
are not supported (other differences are in representation only). The PHP 7
parser will be able to recover from the error in both cases. For this reason, this change will
likely pass unnoticed if you do not specifically test for this syntax.
It is possible to restore the precise previous behavior with the following code:
$lexer = ...;
$parser7 = new Parser\Php7($lexer);
$parser5 = new Parser\Php5($lexer);
$errors7 = new ErrorHandler\Collecting();
$stmts7 = $parser7->parse($code, $errors7);
if ($errors7->hasErrors()) {
$errors5 = new ErrorHandler\Collecting();
$stmts5 = $parser5->parse($code, $errors5);
if (!$errors5->hasErrors()) {
// If PHP 7 parse has errors but PHP 5 parse has no errors, use PHP 5 result
return [$stmts5, $errors5];
}
}
// If PHP 7 succeeds or both fail use PHP 7 result
return [$stmts7, $errors7];
Error handling in the lexer
In order to support recovery from lexer errors, the signature of the startLexing()
method changed
to optionally accept an ErrorHandler
:
// OLD
public function startLexing($code);
// NEW
public function startLexing($code, ErrorHandler $errorHandler = null);
If you use a custom lexer with overriden startLexing()
method, it needs to be changed to accept
the extra parameter. The value should be passed on to the parent method.
Error checks in node constructors
The constructors of certain nodes used to contain additional checks for semantic errors, such as creating a try block without either catch or finally. These checks have been moved from the node constructors into the parser. This allows recovery from such errors, as well as representing the resulting (invalid) AST.
This means that certain error conditions are no longer checked for manually constructed nodes.
Removed methods, arguments, options
The following methods, arguments or options have been removed:
Comment::setLine()
,Comment::setText()
: Create newComment
instances instead.Name::set()
,Name::setFirst()
,Name::setLast()
,Name::append()
,Name::prepend()
: UseName::concat()
in combination withName::slice()
instead.Error::getRawLine()
,Error::setRawLine()
. UseError::getStartLine()
andError::setStartLine()
instead.Parser::getErrors()
. UseErrorHandler\Collecting
instead.$separator
argument ofName::toString()
. Usestrtr()
instead, if you really need it.$cloneNodes
argument ofNodeTraverser::__construct()
. Explicitly clone nodes in the visitor instead.throwOnError
parser option. UseErrorHandler\Collecting
instead.
Miscellaneous
- The
NameResolver
will now resolve unqualified function and constant names in the global namespace into fully qualified names. For examplefoo()
in the global namespace resolves to\foo()
. For names where no static resolution is possible, anamespacedName
attribute is added now, containing the namespaced variant of the name. - All methods on
PrettyPrinter\Standard
are now protected. Previoulsy most of them were public. The pretty printer should only be invoked using theprettyPrint()
,prettyPrintFile()
andprettyPrintExpr()
methods. - The node dumper now prints numeric values that act as enums/flags in a string representation. If node dumper results are used in tests, updates may be needed to account for this.
- The constants on
NameTraverserInterface
have been moved into theNameTraverser
class. - The emulative lexer now directly postprocesses tokens, instead of using
~__EMU__~
sequences. This changes the protected API of the emulative lexer. - The
Name::slice()
method now returnsnull
for empty slices, previouslynew Name([])
was used.Name::concat()
now also supports concatenation withnull
.