mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-12 09:09:41 +01:00
57 lines
1.1 KiB
Plaintext
57 lines
1.1 KiB
Plaintext
|
Aliases (use)
|
||
|
-----
|
||
|
<?php
|
||
|
|
||
|
use A\B;
|
||
|
use C\D as E;
|
||
|
use F\G as H, J;
|
||
|
-----
|
||
|
array(
|
||
|
0: Stmt_Use(
|
||
|
uses: array(
|
||
|
0: Stmt_UseUse(
|
||
|
name: Name(
|
||
|
parts: array(
|
||
|
0: A
|
||
|
1: B
|
||
|
)
|
||
|
)
|
||
|
alias: B
|
||
|
)
|
||
|
)
|
||
|
)
|
||
|
1: Stmt_Use(
|
||
|
uses: array(
|
||
|
0: Stmt_UseUse(
|
||
|
name: Name(
|
||
|
parts: array(
|
||
|
0: C
|
||
|
1: D
|
||
|
)
|
||
|
)
|
||
|
alias: E
|
||
|
)
|
||
|
)
|
||
|
)
|
||
|
2: Stmt_Use(
|
||
|
uses: array(
|
||
|
0: Stmt_UseUse(
|
||
|
name: Name(
|
||
|
parts: array(
|
||
|
0: F
|
||
|
1: G
|
||
|
)
|
||
|
)
|
||
|
alias: H
|
||
|
)
|
||
|
1: Stmt_UseUse(
|
||
|
name: Name(
|
||
|
parts: array(
|
||
|
0: J
|
||
|
)
|
||
|
)
|
||
|
alias: J
|
||
|
)
|
||
|
)
|
||
|
)
|
||
|
)
|