php-parser/test/code/parser/expr/fetchAndCall/constFetch.test

24 lines
317 B
Plaintext
Raw Normal View History

2011-12-07 18:17:05 +01:00
Constant fetches
-----
<?php
A;
A::B;
-----
array(
0: Expr_ConstFetch(
name: Name(
parts: array(
0: A
)
)
)
1: Expr_ClassConstFetch(
class: Name(
parts: array(
0: A
)
)
name: B
)
)