2020-08-09 21:11:49 +02:00
|
|
|
Keywords in namespaced name
|
|
|
|
-----
|
|
|
|
<?php
|
2020-08-09 21:19:59 +02:00
|
|
|
namespace fn;
|
|
|
|
namespace fn\use;
|
2020-08-09 21:11:49 +02:00
|
|
|
fn\use();
|
|
|
|
\fn\use();
|
|
|
|
namespace\fn\use();
|
|
|
|
-----
|
2020-08-09 21:19:59 +02:00
|
|
|
!!php7
|
2020-08-09 21:11:49 +02:00
|
|
|
array(
|
2020-08-09 21:19:59 +02:00
|
|
|
0: Stmt_Namespace(
|
|
|
|
name: Name(
|
|
|
|
parts: array(
|
|
|
|
0: fn
|
2020-08-09 21:11:49 +02:00
|
|
|
)
|
|
|
|
)
|
2020-08-09 21:19:59 +02:00
|
|
|
stmts: array(
|
|
|
|
)
|
2020-08-09 21:11:49 +02:00
|
|
|
)
|
2020-08-09 21:19:59 +02:00
|
|
|
1: Stmt_Namespace(
|
|
|
|
name: Name(
|
|
|
|
parts: array(
|
|
|
|
0: fn
|
|
|
|
1: use
|
2020-08-09 21:11:49 +02:00
|
|
|
)
|
|
|
|
)
|
2020-08-09 21:19:59 +02:00
|
|
|
stmts: array(
|
|
|
|
0: Stmt_Expression(
|
|
|
|
expr: Expr_FuncCall(
|
|
|
|
name: Name(
|
|
|
|
parts: array(
|
|
|
|
0: fn
|
|
|
|
1: use
|
|
|
|
)
|
|
|
|
)
|
|
|
|
args: array(
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
1: Stmt_Expression(
|
|
|
|
expr: Expr_FuncCall(
|
|
|
|
name: Name_FullyQualified(
|
|
|
|
parts: array(
|
|
|
|
0: fn
|
|
|
|
1: use
|
|
|
|
)
|
|
|
|
)
|
|
|
|
args: array(
|
|
|
|
)
|
2020-08-09 21:11:49 +02:00
|
|
|
)
|
|
|
|
)
|
2020-08-09 21:19:59 +02:00
|
|
|
2: Stmt_Expression(
|
|
|
|
expr: Expr_FuncCall(
|
|
|
|
name: Name_Relative(
|
|
|
|
parts: array(
|
|
|
|
0: fn
|
|
|
|
1: use
|
|
|
|
)
|
|
|
|
)
|
|
|
|
args: array(
|
|
|
|
)
|
|
|
|
)
|
2020-08-09 21:11:49 +02:00
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|