1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
--TEST--
Mixed types in PHP 8.0
--FILE--
<?php
require __DIR__ . '/../util.php';
$code = <<<'PHP'
<?php
class Xyz {
public function test(mixed $x) : mixed {
return $this;
}
}
PHP;
$node = ast\parse_code($code, $version=70);
echo ast_dump($node), "\n";
$node = ast\parse_code($code, $version=80);
echo ast_dump($node), "\n";
--EXPECTF--
AST_STMT_LIST
0: AST_CLASS
name: "Xyz"
docComment: null
extends: null
implements: null
stmts: AST_STMT_LIST
0: AST_METHOD
flags: MODIFIER_PUBLIC (%d)
name: "test"
docComment: null
params: AST_PARAM_LIST
0: AST_PARAM
type: AST_NAME
flags: NAME_NOT_FQ (%d)
name: "mixed"
name: "x"
default: null
stmts: AST_STMT_LIST
0: AST_RETURN
expr: AST_VAR
name: "this"
returnType: AST_NAME
flags: NAME_NOT_FQ (%d)
name: "mixed"
__declId: 0
__declId: 1
AST_STMT_LIST
0: AST_CLASS
name: "Xyz"
docComment: null
extends: null
implements: null
stmts: AST_STMT_LIST
0: AST_METHOD
flags: MODIFIER_PUBLIC (%d)
name: "test"
docComment: null
params: AST_PARAM_LIST
0: AST_PARAM
type: AST_TYPE
flags: TYPE_MIXED (%d)
name: "x"
default: null
attributes: null
docComment: null
stmts: AST_STMT_LIST
0: AST_RETURN
expr: AST_VAR
name: "this"
returnType: AST_TYPE
flags: TYPE_MIXED (%d)
attributes: null
__declId: 0
attributes: null
__declId: 1
|