File tree 4 files changed +15
-6
lines changed
4 files changed +15
-6
lines changed Original file line number Diff line number Diff line change 1
- Version 2.0.0-dev
2
- -----------------------
1
+ Version 2.0.1-dev
2
+ -----------------
3
+
4
+ Nothing yet.
5
+
6
+ Version 2.0.0 (2015-12-04)
7
+ --------------------------
3
8
4
9
### Changed
5
10
Original file line number Diff line number Diff line change @@ -4,9 +4,10 @@ PHP Parser
4
4
This is a PHP 5.2 to PHP 7.0 parser written in PHP. Its purpose is to simplify static code analysis and
5
5
manipulation.
6
6
7
- [ ** Documentation for version 1.x** ] [ doc_1_x ] (stable; for running on PHP >= 5.3; for parsing PHP 5.2 to PHP 5.6).
8
7
9
- [ Documentation for version 2.x] [ doc_master ] (beta; for running on PHP >= 5.4; for parsing PHP 5.2 to PHP 7.0).
8
+ [ ** Documentation for version 2.x** ] [ doc_master ] (stable; for running on PHP >= 5.4; for parsing PHP 5.2 to PHP 7.0).
9
+
10
+ [ Documentation for version 1.x] [ doc_1_x ] (stable; for running on PHP >= 5.3; for parsing PHP 5.2 to PHP 5.6).
10
11
11
12
In a Nutshell
12
13
-------------
Original file line number Diff line number Diff line change @@ -68,4 +68,7 @@ deprecated. Instead `Name::concat()` and `Name->slice()` should be used.
68
68
* The legacy node format has been removed. If you use custom nodes, they are now expected to
69
69
implement a ` getSubNodeNames() ` method.
70
70
* The default value for ` Scalar ` node constructors was removed. This means that something like
71
- ` new LNumber() ` should be replaced by ` new LNumber(0) ` .
71
+ ` new LNumber() ` should be replaced by ` new LNumber(0) ` .
72
+ * String parts of encapsed strings are now represented using ` Scalar\EncapsStringPart ` nodes, while
73
+ previously raw strings were used. This affects the ` parts ` child of ` Scalar\Encaps ` and
74
+ ` Expr\ShellExec ` .
Original file line number Diff line number Diff line change 1
1
Introduction
2
2
============
3
3
4
- This project is a PHP 5.2 to PHP 5.6 parser ** written in PHP itself** .
4
+ This project is a PHP 5.2 to PHP 7.0 parser ** written in PHP itself** .
5
5
6
6
What is this for?
7
7
-----------------
You can’t perform that action at this time.
0 commit comments