Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F14122137
D8030.id18153.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
4 KB
Referenced Files
None
Subscribers
None
D8030.id18153.diff
View Options
Index: src/parser/xhpast/__tests__/data/php-callable-typehint.php.expect
===================================================================
--- /dev/null
+++ src/parser/xhpast/__tests__/data/php-callable-typehint.php.expect
@@ -0,0 +1,139 @@
+{
+ "tree" : [
+ 9000,
+ 0,
+ 13,
+ [
+ [
+ 9006,
+ 0,
+ 12,
+ [
+ [
+ 9007,
+ 0,
+ 0
+ ],
+ [
+ 9004,
+ 2,
+ 12,
+ [
+ [
+ 9050,
+ 2,
+ 12,
+ [
+ [
+ 9005
+ ],
+ [
+ 9005
+ ],
+ [
+ 9013,
+ 4,
+ 4
+ ],
+ [
+ 9059,
+ 5,
+ 9,
+ [
+ [
+ 9060,
+ 6,
+ 8,
+ [
+ [
+ 9090,
+ 6,
+ 6
+ ],
+ [
+ 9047,
+ 8,
+ 8
+ ],
+ [
+ 9005
+ ]
+ ]
+ ]
+ ]
+ ],
+ [
+ 9005
+ ],
+ [
+ 9006,
+ 11,
+ 12
+ ]
+ ]
+ ]
+ ]
+ ]
+ ]
+ ]
+ ]
+ ],
+ "stream" : [
+ [
+ 371,
+ 6
+ ],
+ [
+ 375,
+ 1
+ ],
+ [
+ 337,
+ 8
+ ],
+ [
+ 375,
+ 1
+ ],
+ [
+ 309,
+ 1
+ ],
+ [
+ 40,
+ 1
+ ],
+ [
+ 309,
+ 8
+ ],
+ [
+ 375,
+ 1
+ ],
+ [
+ 311,
+ 2
+ ],
+ [
+ 41,
+ 1
+ ],
+ [
+ 375,
+ 1
+ ],
+ [
+ 123,
+ 1
+ ],
+ [
+ 125,
+ 1
+ ],
+ [
+ 375,
+ 1
+ ]
+ ]
+}
Index: src/parser/xhpast/__tests__/data/php-callable-typehint.php.test
===================================================================
--- /dev/null
+++ src/parser/xhpast/__tests__/data/php-callable-typehint.php.test
@@ -0,0 +1,4 @@
+# pass
+<?php
+
+function f(callable $c) {}
Index: src/parser/xhpast/__tests__/data/php-class-expr.php.test
===================================================================
--- /dev/null
+++ src/parser/xhpast/__tests__/data/php-class-expr.php.test
@@ -0,0 +1,4 @@
+# fail-syntax, comment="Wrong, valid syntax in PHP 5.5, see T4334."
+<?php
+
+ClassName::{$y.$z}();
Index: src/parser/xhpast/__tests__/data/php-finally.php.test
===================================================================
--- /dev/null
+++ src/parser/xhpast/__tests__/data/php-finally.php.test
@@ -0,0 +1,2 @@
+# fail-syntax, comment="Wrong, supported in PHP 5.5, see T4334."
+<?php try {} catch (C $x) {} finally {}
Index: src/parser/xhpast/__tests__/data/php-short-array.php.test
===================================================================
--- /dev/null
+++ src/parser/xhpast/__tests__/data/php-short-array.php.test
@@ -0,0 +1,2 @@
+# fail-syntax, comment="Wrong, supported in PHP 5.4, see T4334."
+<?php [];
Index: src/parser/xhpast/__tests__/data/php-traits.php.test
===================================================================
--- /dev/null
+++ src/parser/xhpast/__tests__/data/php-traits.php.test
@@ -0,0 +1,26 @@
+# fail-syntax, comment="Wrong, supported in PHP 5.4, see T4334."
+<?php
+
+trait T {
+ function f() {}
+}
+
+class C {
+ use T;
+}
+
+class D {
+ use T, U;
+}
+
+class E {
+ use T, U {
+ T::x insteadof U;
+ T::x as y;
+ T::z as private z;
+ }
+}
+
+class F {
+ use Q { q as protected; }
+}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Nov 30, 3:35 PM (21 h, 3 m)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6809704
Default Alt Text
D8030.id18153.diff (4 KB)
Attached To
Mode
D8030: Add PHPAST tests for static class expressions, callable, traits, finally and short array syntax
Attached
Detach File
Event Timeline
Log In to Comment