mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-04 18:28:25 +01:00
81e53ce0ff
This changset also adds unit tests for Comments and adds a way to test the pretty printer.
85 lines
1.6 KiB
Plaintext
85 lines
1.6 KiB
Plaintext
Aliases (use)
|
|
-----
|
|
<?php
|
|
|
|
use A\B;
|
|
use C\D as E;
|
|
use F\G as H, J;
|
|
|
|
// evil alias notation - Do Not Use!
|
|
use \A;
|
|
use \A as B;
|
|
-----
|
|
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
|
|
)
|
|
)
|
|
)
|
|
3: Stmt_Use(
|
|
uses: array(
|
|
0: Stmt_UseUse(
|
|
name: Name(
|
|
parts: array(
|
|
0: A
|
|
)
|
|
)
|
|
alias: A
|
|
)
|
|
)
|
|
)
|
|
4: Stmt_Use(
|
|
uses: array(
|
|
0: Stmt_UseUse(
|
|
name: Name(
|
|
parts: array(
|
|
0: A
|
|
)
|
|
)
|
|
alias: B
|
|
)
|
|
)
|
|
)
|
|
) |