Releases: xp-framework/compiler
Releases · xp-framework/compiler
2.11.0: Filenames in errors
2.10.1: URI loading fixes
2.10.0: Throw expression
2.9.0: Arrow functions with blocks, goto
2.8.0: Echo
2.7.0: Compile only mode
2.6.2: Dynamic members fix
- Fixed issue with dynamic instance references not being emitted
correctly, e.g.$value->{$field->get()};
, see
http://php.net/manual/en/functions.variable-functions.php
(@thekid)
2.6.1: String parsing fix
2.6.0: Unicode escape sequences
- Implemented support unicode escape sequences in PHP 5.6, see #38
(@thekid) - Fixed issue #39: Syntax error for parameters called "function"
(@thekid) - Dropped confusing way of compiling multiple sources using
-b
to
strip bases. New way is to pass multiple directories directly, e.g.
$ xp compile -o dist src/main/php/ src/test/php
(@thekid) - Fixed compiling to a directory when the source path was not inside
the current directory.
(@thekid)