PageRenderTime 44ms CodeModel.GetById 13ms RepoModel.GetById 0ms app.codeStats 1ms

/vendor/nikic/php-parser/CHANGELOG.md

https://gitlab.com/4gdevs/online-class-record-system
Markdown | 313 lines | 213 code | 100 blank | 0 comment | 0 complexity | bb5a9ebf041dd6542d0683c4623f71ea MD5 | raw file
  1. Version 2.0.1-dev
  2. -----------------
  3. Nothing yet.
  4. Version 2.0.0 (2015-12-04)
  5. --------------------------
  6. ### Changed
  7. * String parts of encapsed strings are now represented using `Scalar\EncapsStringPart` nodes.
  8. Previously raw strings were used. This affects the `parts` child of `Scalar\Encaps` and
  9. `Expr\ShellExec`. The change has been done to allow assignment of attributes to encapsed string
  10. parts.
  11. Version 2.0.0-beta1 (2015-10-21)
  12. --------------------------------
  13. ### Fixed
  14. * Fixed issue with too many newlines being stripped at the end of heredoc/nowdoc strings in some
  15. cases. (#227)
  16. ### Changed
  17. * Update group use support to be in line with recent PHP 7.0 builds.
  18. * Renamed `php-parse.php` to `php-parse` and registered it as a composer bin.
  19. * Use composer PSR-4 autoloader instead of custom autoloader.
  20. * Specify phpunit as a dev dependency.
  21. ### Added
  22. * Added `shortArraySyntax` option to pretty printer, to print all arrays using short syntax.
  23. Version 2.0.0-alpha1 (2015-07-14)
  24. ---------------------------------
  25. A more detailed description of backwards incompatible changes can be found in the
  26. [upgrading guide](UPGRADE-2.0.md).
  27. ### Removed
  28. * Removed support for running on PHP 5.4. It is however still possible to parse PHP 5.2 and PHP 5.3
  29. code while running on a newer version.
  30. * Removed legacy class name aliases. This includes the old non-namespaced class names and the old
  31. names for classes that were renamed for PHP 7 compatibility.
  32. * Removed support for legacy node format. All nodes must have a `getSubNodeNames()` method now.
  33. ### Added
  34. * Added support for remaining PHP 7 features that were not present in 1.x:
  35. * Group use declarations. These are represented using `Stmt\GroupUse` nodes. Furthermore a `type`
  36. attribute was added to `Stmt\UseUse` to handle mixed group use declarations.
  37. * Uniform variable syntax.
  38. * Generalized yield operator.
  39. * Scalar type declarations. These are presented using `'bool'`, `'int'`, `'float'` and `'string'`
  40. as the type. The PHP 5 parser also accepts these, however they'll be `Name` instances there.
  41. * Unicode escape sequences.
  42. * Added `PhpParser\ParserFactory` class, which should be used to create parser instances.
  43. * Added `Name::concat()` which concatenates two names.
  44. * Added `Name->slice()` which takes a subslice of a name.
  45. ### Changed
  46. * `PhpParser\Parser` is now an interface, implemented by `Parser\Php5`, `Parser\Php7` and
  47. `Parser\Multiple`. The `Multiple` parser will try multiple parsers, until one succeeds.
  48. * Token constants are now defined on `PhpParser\Parser\Tokens` rather than `PhpParser\Parser`.
  49. * The `Name->set()`, `Name->append()`, `Name->prepend()` and `Name->setFirst()` methods are
  50. deprecated in favor of `Name::concat()` and `Name->slice()`.
  51. * The `NodeTraverser` no longer clones nodes by default. The old behavior can be restored by
  52. passing `true` to the constructor.
  53. * The constructor for `Scalar` nodes no longer has a default value. E.g. `new LNumber()` should now
  54. be written as `new LNumber(0)`.
  55. Version 1.4.0 (2015-07-14)
  56. --------------------------
  57. ### Added
  58. * Added interface `PhpParser\Node\FunctionLike`, which is implemented by `Stmt\ClassMethod`,
  59. `Stmt\Function_` and `Expr\Closure` nodes. This interface provides getters for their common
  60. subnodes.
  61. * Added `Node\Stmt\ClassLike::getMethod()` to look up a specific method on a class/interface/trait.
  62. ### Fixed
  63. * Fixed `isPublic()` return value for implicitly public properties and methods that define and
  64. additional modifier like `static` or `abstract`.
  65. * Properties are now accepted by the trait builder.
  66. * Fixed `__HALT_COMPILER_OFFSET__` support on HHVM.
  67. Version 1.3.0 (2015-05-02)
  68. --------------------------
  69. ### Added
  70. * Errors can now store the attributes of the node/token where the error occurred. Previously only the start line was
  71. stored.
  72. * If file positions are enabled in the lexer, errors can now provide column information if it is available. See
  73. [documentation](https://github.com/nikic/PHP-Parser/blob/master/doc/component/Error.markdown#column-information).
  74. * The parser now provides an experimental error recovery mode, which can be enabled by disabling the `throwOnError`
  75. parser option. In this mode the parser will try to construct a partial AST even if the code is not valid PHP. See
  76. [documentation](https://github.com/nikic/PHP-Parser/blob/master/doc/component/Error.markdown#error-recovery).
  77. * Added support for PHP 7 `yield from` expression. It is represented by `Expr\YieldFrom`.
  78. * Added support for PHP 7 anonymous classes. These are represented by ordinary `Stmt\Class_` nodes with the name set to
  79. `null`. Furthermore this implies that `Expr\New_` can now contain a `Stmt\Class_` in its `class` subnode.
  80. ### Fixed
  81. * Fixed registration of PHP 7 aliases, for the case where the old name was used before the new name.
  82. * Fixed handling of precedence when pretty-printing `print` expressions.
  83. * Floating point numbers are now pretty-printed with a higher precision.
  84. * Checks for special class names like `self` are now case-insensitive.
  85. Version 1.2.2 (2015-04-03)
  86. --------------------------
  87. * The `NameResolver` now resolves parameter type hints when entering the function/method/closure node. As such other
  88. visitors running after it will be able to make use of the resolved names at that point already.
  89. * The autoloader no longer sets the `unserialize_callback_func` ini option on registration - this is not necessary and
  90. may cause issues when running PhpUnit tests with process isolation.
  91. Version 1.2.1 (2015-03-24)
  92. --------------------------
  93. * Fixed registration of the aliases introduced in 1.2.0. Previously the old class names could not be used in
  94. `instanceof` checks under some circumstances.
  95. Version 1.2.0 (2015-03-22)
  96. --------------------------
  97. ### Changed
  98. * To ensure compatibility with PHP 7, the following node classes have been renamed:
  99. OLD => NEW
  100. PhpParser\Node\Expr\Cast\Bool => PhpParser\Node\Expr\Cast\Bool_
  101. PhpParser\Node\Expr\Cast\Int => PhpParser\Node\Expr\Cast\Int_
  102. PhpParser\Node\Expr\Cast\Object => PhpParser\Node\Expr\Cast\Object_
  103. PhpParser\Node\Expr\Cast\String => PhpParser\Node\Expr\Cast\String_
  104. PhpParser\Node\Scalar\String => PhpParser\Node\Scalar\String_
  105. **The previous class names are still supported as aliases.** However it is strongly encouraged to use the new names
  106. in order to make your code compatible with PHP 7.
  107. * Subnodes are now stored using real properties instead of an array. This improves performance and memory usage of the
  108. initial parse and subsequent node tree operations. The `NodeAbstract` class still supports the old way of specifying
  109. subnodes, however this is *deprecated*. In any case properties that are assigned to a node after creation will no
  110. longer be considered as subnodes.
  111. * Methods and property declarations will no longer set the `Stmt\Class_::MODIFIER_PUBLIC` flag if no visibility is
  112. explicitly given. However the `isPublic()` method will continue to return true. This allows you to distinguish whether
  113. a method/property is explicitly or implicitly public and control the pretty printer output more precisely.
  114. * The `Stmt\Class_`, `Stmt\Interface_` and `Stmt\Trait_` nodes now inherit from `Stmt\ClassLike`, which provides a
  115. `getMethods()` method. Previously this method was only available on `Stmt\Class_`.
  116. * Support including the `bootstrap.php` file multiple times.
  117. * Make documentation and tests part of the release tarball again.
  118. * Improve support for HHVM and PHP 7.
  119. ### Added
  120. * Added support for PHP 7 return type declarations. This adds an additional `returnType` subnode to `Stmt\Function_`,
  121. `Stmt\ClassMethod` and `Expr\Closure`.
  122. * Added support for the PHP 7 null coalesce operator `??`. The operator is represented by `Expr\BinaryOp\Coalesce`.
  123. * Added support for the PHP 7 spaceship operator `<=>`. The operator is represented by `Expr\BinaryOp\Spaceship`.
  124. * Added use builder.
  125. * Added global namespace support to the namespace builder.
  126. * Added a constructor flag to `NodeTraverser`, which disables cloning of nodes.
  127. Version 1.1.0 (2015-01-18)
  128. --------------------------
  129. * Methods that do not specify an explicit visibility (e.g. `function method()`) will now have the `MODIFIER_PUBLIC`
  130. flag set. This also means that their `isPublic()` method will return true.
  131. * Declaring a property as abstract or final is now an error.
  132. * The `Lexer` and `Lexer\Emulative` classes now accept an `$options` array in their constructors. Currently only the
  133. `usedAttributes` option is supported, which determines which attributes will be added to AST nodes. In particular
  134. it is now possible to add information on the token and file positions corresponding to a node. For more details see
  135. the [Lexer component](https://github.com/nikic/PHP-Parser/blob/master/doc/component/Lexer.markdown) documentation.
  136. * Node visitors can now return `NodeTraverser::DONT_TRAVERSE_CHILDREN` from `enterNode()` in order to skip all children
  137. of the current node, for all visitors.
  138. * Added builders for traits and namespaces.
  139. * The class, interface, trait, function, method and property builders now support adding doc comments using the
  140. `setDocComment()` method.
  141. * Added support for fully-qualified and namespace-relative names in builders. No longer allow use of name component
  142. arrays.
  143. * Do not add documentation and tests to distribution archive files.
  144. Version 1.0.2 (2014-11-04)
  145. --------------------------
  146. * The `NameResolver` visitor now also resolves names in trait adaptations (aliases and precedence declarations).
  147. * Remove stray whitespace when pretty-printing trait adaptations that only change visibility.
  148. Version 1.0.1 (2014-10-14)
  149. --------------------------
  150. * Disallow `new` expressions without a class name. Previously `new;` was accidentally considered to be valid code.
  151. * Support T_ONUMBER token used by HHVM.
  152. * Add ability to directly pass code to the `php-parse.php` script.
  153. * Prevent truncation of `var_dump()` output in the `php-parse.php` script if XDebug is used.
  154. Version 1.0.0 (2014-09-12)
  155. --------------------------
  156. * [BC] Removed deprecated `Template` and `TemplateLoader` classes.
  157. * Fixed XML unserializer to properly work with new namespaced node names.
  158. Version 1.0.0-beta2 (2014-08-31)
  159. --------------------------------
  160. * [PHP 5.6] Updated support for constant scalar expressions to comply with latest changes. This means that arrays
  161. and array dimension fetches are now supported as well.
  162. * [PHP 5.6] Direct array dereferencing of constants is supported now, i.e. both `FOO[0]` and `Foo::BAR[0]` are valid
  163. now.
  164. * Fixed handling of special class names (`self`, `parent` and `static`) in the name resolver to be case insensitive.
  165. Additionally the name resolver now enforces that special class names are only used as unqualified names, e.g. `\self`
  166. is considered invalid.
  167. * The case of references to the `static` class name is now preserved. Previously `static` was always lowercased,
  168. regardless of the case used in the source code.
  169. * The autoloader now only requires a file if it exists. This allows usages like
  170. `class_exists('PhpParser\NotExistingClass')`.
  171. * Added experimental `bin/php-parse.php` script, which is intended to help exploring and debugging the node tree.
  172. * Separated the parser implemention (in `lib/PhpParser/ParserAbstract.php`) and the generated data (in
  173. `lib/PhpParser/Parser.php`). Furthermore the parser now uses meaningful variable names and contains comments
  174. explaining their usage.
  175. Version 1.0.0-beta1 (2014-03-27)
  176. --------------------------------
  177. * [BC] PHP-Parser now requires PHP 5.3 or newer to run. It is however still possible to *parse* PHP 5.2 source code,
  178. while running on a newer version.
  179. * [BC] The library has been moved to use namespaces with the `PhpParser` vendor prefix. However, the old names using
  180. underscores are still available as aliases, as such most code should continue running on the new version without
  181. further changes.
  182. However, code performing dispatch operations on `Node::getType()` may be affected by some of the name changes. For
  183. example a `+` node will now return type `Expr_BinaryOp_Plus` instead of `Expr_Plus`. In particular this may affect
  184. custom pretty printers.
  185. Due to conflicts with reserved keywords, some class names now end with an underscore, e.g. `PHPParser_Node_Stmt_Class`
  186. is now `PhpParser\Node\Stmt\Class_`. (But as usual, the old name is still available)
  187. * [PHP 5.6] Added support for the power operator `**` (node `Expr\BinaryOp\Pow`) and the compound power assignment
  188. operator `**=` (node `Expr\AssignOp\Pow`).
  189. * [PHP 5.6] Added support for variadic functions: `Param` nodes now have `variadic` as a boolean subnode.
  190. * [PHP 5.6] Added support for argument unpacking: `Arg` nodes now have `unpack` as a boolean subnode.
  191. * [PHP 5.6] Added support for aliasing of functions and constants. `Stmt\Use_` nodes now have an integral `type`
  192. subnode, which is one of `Stmt\Use_::TYPE_NORMAL` (`use`), `Stmt\Use_::TYPE_FUNCTION` (`use function`) or
  193. `Stmt\Use_::TYPE_CONSTANT` (`use const`).
  194. The `NameResolver` now also supports resolution of such aliases.
  195. * [PHP 5.6] Added support for constant scalar expressions. This means that certain expressions are now allowed as the
  196. initializer for constants, properties, parameters, static variables, etc.
  197. * [BC] Improved pretty printing of empty statements lists, which are now printed as `{\n}` instead of `{\n \n}`.
  198. This changes the behavior of the protected `PrettyPrinterAbstract::pStmts()` method, so custom pretty printing code
  199. making use it of may need to be adjusted.
  200. * Changed the order of some subnodes to be consistent with their order in the sour code. For example `Stmt\If->cond`
  201. will now appear before `Stmt\If->stmts` etc.
  202. * Added `Scalar\MagicConstant->getName()`, which returns the name of the magic constant (e.g. `__CLASS__`).
  203. **The following changes are also included in 0.9.5**:
  204. * [BC] Deprecated `PHPParser_Template` and `PHPParser_TemplateLoader`. This functionality does not belong in the main project
  205. and - as far as I know - nobody is using it.
  206. * Add `NodeTraverser::removeVisitor()` method, which removes a visitor from the node traverser. This also modifies the
  207. corresponding `NodeTraverserInterface`.
  208. * Fix alias resolution in `NameResolver`: Class names are now correctly handled as case-insensitive.
  209. * The undefined variable error, which is used to the lexer to reset the error state, will no longer interfere with
  210. custom error handlers.
  211. ---
  212. **This changelog only includes changes from the 1.0 and 2.0 series. For older changes see the
  213. [0.9 series changelog][https://github.com/nikic/PHP-Parser/blob/0.9/CHANGELOG.md].**