mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-02 17:38:19 +01:00
8b1c9c0409
Fixed #509.
37 lines
788 B
Plaintext
37 lines
788 B
Plaintext
Comment at end of class (#509)
|
|
-----
|
|
<?php
|
|
class MyClass {
|
|
protected $a;
|
|
// my comment
|
|
}
|
|
-----
|
|
array(
|
|
0: Stmt_Class(
|
|
flags: 0
|
|
name: Identifier(
|
|
name: MyClass
|
|
)
|
|
extends: null
|
|
implements: array(
|
|
)
|
|
stmts: array(
|
|
0: Stmt_Property(
|
|
flags: MODIFIER_PROTECTED (2)
|
|
props: array(
|
|
0: Stmt_PropertyProperty(
|
|
name: VarLikeIdentifier(
|
|
name: a
|
|
)
|
|
default: null
|
|
)
|
|
)
|
|
)
|
|
1: Stmt_Nop(
|
|
comments: array(
|
|
0: // my comment
|
|
)
|
|
)
|
|
)
|
|
)
|
|
) |