| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- 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;
- // function and constant aliases
- use function foo\bar;
- use function foo\bar as baz;
- use const foo\BAR;
- use const foo\BAR as BAZ;
- -----
- array(
- 0: Stmt_Use(
- type: TYPE_NORMAL (1)
- uses: array(
- 0: UseItem(
- type: TYPE_UNKNOWN (0)
- name: Name(
- name: A\B
- )
- alias: null
- )
- )
- )
- 1: Stmt_Use(
- type: TYPE_NORMAL (1)
- uses: array(
- 0: UseItem(
- type: TYPE_UNKNOWN (0)
- name: Name(
- name: C\D
- )
- alias: Identifier(
- name: E
- )
- )
- )
- )
- 2: Stmt_Use(
- type: TYPE_NORMAL (1)
- uses: array(
- 0: UseItem(
- type: TYPE_UNKNOWN (0)
- name: Name(
- name: F\G
- )
- alias: Identifier(
- name: H
- )
- )
- 1: UseItem(
- type: TYPE_UNKNOWN (0)
- name: Name(
- name: J
- )
- alias: null
- )
- )
- )
- 3: Stmt_Use(
- type: TYPE_NORMAL (1)
- uses: array(
- 0: UseItem(
- type: TYPE_UNKNOWN (0)
- name: Name(
- name: A
- )
- alias: null
- )
- )
- comments: array(
- 0: // evil alias notation - Do Not Use!
- )
- )
- 4: Stmt_Use(
- type: TYPE_NORMAL (1)
- uses: array(
- 0: UseItem(
- type: TYPE_UNKNOWN (0)
- name: Name(
- name: A
- )
- alias: Identifier(
- name: B
- )
- )
- )
- )
- 5: Stmt_Use(
- type: TYPE_FUNCTION (2)
- uses: array(
- 0: UseItem(
- type: TYPE_UNKNOWN (0)
- name: Name(
- name: foo\bar
- )
- alias: null
- )
- )
- comments: array(
- 0: // function and constant aliases
- )
- )
- 6: Stmt_Use(
- type: TYPE_FUNCTION (2)
- uses: array(
- 0: UseItem(
- type: TYPE_UNKNOWN (0)
- name: Name(
- name: foo\bar
- )
- alias: Identifier(
- name: baz
- )
- )
- )
- )
- 7: Stmt_Use(
- type: TYPE_CONSTANT (3)
- uses: array(
- 0: UseItem(
- type: TYPE_UNKNOWN (0)
- name: Name(
- name: foo\BAR
- )
- alias: null
- )
- )
- )
- 8: Stmt_Use(
- type: TYPE_CONSTANT (3)
- uses: array(
- 0: UseItem(
- type: TYPE_UNKNOWN (0)
- name: Name(
- name: foo\BAR
- )
- alias: Identifier(
- name: BAZ
- )
- )
- )
- )
- )
|