Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/php-static-scanner-instrumentalization.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/nikic/php-parser/test/code/parser/expr/fetchAndCall/staticPropertyFetch.test')
-rw-r--r--vendor/nikic/php-parser/test/code/parser/expr/fetchAndCall/staticPropertyFetch.test91
1 files changed, 91 insertions, 0 deletions
diff --git a/vendor/nikic/php-parser/test/code/parser/expr/fetchAndCall/staticPropertyFetch.test b/vendor/nikic/php-parser/test/code/parser/expr/fetchAndCall/staticPropertyFetch.test
new file mode 100644
index 0000000..3d3cde5
--- /dev/null
+++ b/vendor/nikic/php-parser/test/code/parser/expr/fetchAndCall/staticPropertyFetch.test
@@ -0,0 +1,91 @@
+Static property fetches
+-----
+<?php
+
+// property name variations
+A::$b;
+A::$$b;
+A::${'b'};
+
+// array access
+A::$b['c'];
+A::$b{'c'};
+
+// class name variations can be found in staticCall.test
+-----
+array(
+ 0: Expr_StaticPropertyFetch(
+ class: Name(
+ parts: array(
+ 0: A
+ )
+ comments: array(
+ 0: // property name variations
+ )
+ )
+ name: b
+ comments: array(
+ 0: // property name variations
+ )
+ )
+ 1: Expr_StaticPropertyFetch(
+ class: Name(
+ parts: array(
+ 0: A
+ )
+ )
+ name: Expr_Variable(
+ name: b
+ )
+ )
+ 2: Expr_StaticPropertyFetch(
+ class: Name(
+ parts: array(
+ 0: A
+ )
+ )
+ name: Scalar_String(
+ value: b
+ )
+ )
+ 3: Expr_ArrayDimFetch(
+ var: Expr_StaticPropertyFetch(
+ class: Name(
+ parts: array(
+ 0: A
+ )
+ comments: array(
+ 0: // array access
+ )
+ )
+ name: b
+ comments: array(
+ 0: // array access
+ )
+ )
+ dim: Scalar_String(
+ value: c
+ )
+ comments: array(
+ 0: // array access
+ )
+ )
+ 4: Expr_ArrayDimFetch(
+ var: Expr_StaticPropertyFetch(
+ class: Name(
+ parts: array(
+ 0: A
+ )
+ )
+ name: b
+ )
+ dim: Scalar_String(
+ value: c
+ )
+ )
+ 5: Stmt_Nop(
+ comments: array(
+ 0: // class name variations can be found in staticCall.test
+ )
+ )
+) \ No newline at end of file