We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b7412f commit 1ccdc1dCopy full SHA for 1ccdc1d
ChangeLog.md
@@ -3,6 +3,8 @@ XP Compiler ChangeLog
3
4
## ?.?.? / ????-??-??
5
6
+## 6.1.0 / 2021-01-04
7
+
8
* Included languages and emitters in `xp compile` output - @thekid
9
10
## 6.0.0 / 2020-11-28
src/test/php/lang/ast/unittest/emit/BracesTest.class.php
@@ -93,6 +93,18 @@ public function run() {
93
Assert::equals($expected, $r);
94
}
95
96
+ #[Test]
97
+ public function function_call_in_braces() {
98
+ $r= $this->run('class <T> {
99
+ public function run() {
100
+ $e= STDOUT;
101
+ return false !== (fstat(STDOUT));
102
+ }
103
+ }');
104
105
+ Assert::true($r);
106
107
108
#[Test]
109
public function invoke_on_braced_null_coalesce() {
110
$r= $this->run('class <T> {
0 commit comments