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/includeAndEval.test')
-rw-r--r--vendor/nikic/php-parser/test/code/parser/expr/includeAndEval.test40
1 files changed, 40 insertions, 0 deletions
diff --git a/vendor/nikic/php-parser/test/code/parser/expr/includeAndEval.test b/vendor/nikic/php-parser/test/code/parser/expr/includeAndEval.test
new file mode 100644
index 0000000..8870ea5
--- /dev/null
+++ b/vendor/nikic/php-parser/test/code/parser/expr/includeAndEval.test
@@ -0,0 +1,40 @@
+Include and eval
+-----
+<?php
+include 'A.php';
+include_once 'A.php';
+require 'A.php';
+require_once 'A.php';
+eval('A');
+-----
+array(
+ 0: Expr_Include(
+ expr: Scalar_String(
+ value: A.php
+ )
+ type: TYPE_INCLUDE (1)
+ )
+ 1: Expr_Include(
+ expr: Scalar_String(
+ value: A.php
+ )
+ type: TYPE_INCLUDE_ONCE (2)
+ )
+ 2: Expr_Include(
+ expr: Scalar_String(
+ value: A.php
+ )
+ type: TYPE_REQUIRE (3)
+ )
+ 3: Expr_Include(
+ expr: Scalar_String(
+ value: A.php
+ )
+ type: TYPE_REQURE_ONCE (4)
+ )
+ 4: Expr_Eval(
+ expr: Scalar_String(
+ value: A
+ )
+ )
+) \ No newline at end of file