5.0 KiB
Version 1.0.2-dev
Nothing yet.
Version 1.0.1 (14.10.2014)
-
Disallow
new
expressions without a class name. Previouslynew;
was accidentally considered to be valid code. -
Support T_ONUMBER token used by HHVM.
-
Add ability to directly pass code to the
php-parse.php
script. -
Prevent truncation of
var_dump()
output in thephp-parse.php
script if XDebug is used.
Version 1.0.0 (12.09.2014)
-
[BC] Removed deprecated
Template
andTemplateLoader
classes. -
Fixed XML unserializer to properly work with new namespaced node names.
Version 1.0.0-beta2 (31.08.2014)
-
[PHP 5.6] Updated support for constant scalar expressions to comply with latest changes. This means that arrays and array dimension fetches are now supported as well.
-
[PHP 5.6] Direct array dereferencing of constants is supported now, i.e. both
FOO[0]
andFoo::BAR[0]
are valid now. -
Fixed handling of special class names (
self
,parent
andstatic
) in the name resolver to be case insensitive. Additionally the name resolver now enforces that special class names are only used as unqualified names, e.g.\self
is considered invalid. -
The case of references to the
static
class name is now preserved. Previouslystatic
was always lowercased, regardless of the case used in the source code. -
The autoloader now only requires a file if it exists. This allows usages like
class_exists('PhpParser\NotExistingClass')
. -
Added experimental
bin/php-parse.php
script, which is intended to help exploring and debugging the node tree. -
Separated the parser implemention (in
lib/PhpParser/ParserAbstract.php
) and the generated data (inlib/PhpParser/Parser.php
). Furthermore the parser now uses meaningful variable names and contains comments explaining their usage.
Version 1.0.0-beta1 (27.03.2014)
-
[BC] PHP-Parser now requires PHP 5.3 or newer to run. It is however still possible to parse PHP 5.2 source code, while running on a newer version.
-
[BC] The library has been moved to use namespaces with the
PhpParser
vendor prefix. However, the old names using underscores are still available as aliases, as such most code should continue running on the new version without further changes.However, code performing dispatch operations on
Node::getType()
may be affected by some of the name changes. For example a+
node will now return typeExpr_BinaryOp_Plus
instead ofExpr_Plus
. In particular this may affect custom pretty printers.Due to conflicts with reserved keywords, some class names now end with an underscore, e.g.
PHPParser_Node_Stmt_Class
is nowPhpParser\Node\Stmt\Class_
. (But as usual, the old name is still available) -
[PHP 5.6] Added support for the power operator
**
(nodeExpr\BinaryOp\Pow
) and the compound power assignment operator**=
(nodeExpr\AssignOp\Pow
). -
[PHP 5.6] Added support for variadic functions:
Param
nodes now havevariadic
as a boolean subnode. -
[PHP 5.6] Added support for argument unpacking:
Arg
nodes now haveunpack
as a boolean subnode. -
[PHP 5.6] Added support for aliasing of functions and constants.
Stmt\Use_
nodes now have an integraltype
subnode, which is one ofStmt\Use_::TYPE_NORMAL
(use
),Stmt\Use_::TYPE_FUNCTION
(use function
) orStmt\Use_::TYPE_CONSTANT
(use const
).The
NameResolver
now also supports resolution of such aliases. -
[PHP 5.6] Added support for constant scalar expressions. This means that certain expressions are now allowed as the initializer for constants, properties, parameters, static variables, etc.
-
[BC] Improved pretty printing of empty statements lists, which are now printed as
{\n}
instead of{\n \n}
. This changes the behavior of the protectedPrettyPrinterAbstract::pStmts()
method, so custom pretty printing code making use it of may need to be adjusted. -
Changed the order of some subnodes to be consistent with their order in the sour code. For example
Stmt\If->cond
will now appear beforeStmt\If->stmts
etc. -
Added
Scalar\MagicConstant->getName()
, which returns the name of the magic constant (e.g.__CLASS__
).
The following changes are also included in 0.9.5:
-
[BC] Deprecated
PHPParser_Template
andPHPParser_TemplateLoader
. This functionality does not belong in the main project and - as far as I know - nobody is using it. -
Add
NodeTraverser::removeVisitor()
method, which removes a visitor from the node traverser. This also modifies the correspondingNodeTraverserInterface
. -
Fix alias resolution in
NameResolver
: Class names are now correctly handled as case-insensitive. -
The undefined variable error, which is used to the lexer to reset the error state, will no longer interfere with custom error handlers.
This changelog only includes changes from the 1.0 series. For older changes see the 0.9 series changelog.