mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-04 18:38:05 +01:00
33 lines
567 B
Plaintext
33 lines
567 B
Plaintext
|
Conditional class definition
|
||
|
-----
|
||
|
<?php
|
||
|
|
||
|
if (true) {
|
||
|
class A {}
|
||
|
}
|
||
|
-----
|
||
|
array(
|
||
|
0: Stmt_If(
|
||
|
stmts: array(
|
||
|
0: Stmt_Class(
|
||
|
type: 0
|
||
|
extends: null
|
||
|
implements: array(
|
||
|
)
|
||
|
stmts: array(
|
||
|
)
|
||
|
name: A
|
||
|
)
|
||
|
)
|
||
|
elseifs: array(
|
||
|
)
|
||
|
else: null
|
||
|
cond: Expr_ConstFetch(
|
||
|
name: Name(
|
||
|
parts: array(
|
||
|
0: true
|
||
|
)
|
||
|
)
|
||
|
)
|
||
|
)
|
||
|
)
|