mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-02 17:38:19 +01:00
55c4269232
Implement support for readonly properties (https://wiki.php.net/rfc/readonly_properties_v2) and final class contstants (https://wiki.php.net/rfc/final_class_const).
103 lines
2.6 KiB
Plaintext
103 lines
2.6 KiB
Plaintext
Class constant modifiers
|
|
-----
|
|
<?php
|
|
|
|
class Foo {
|
|
const A = 1;
|
|
public const B = 2;
|
|
protected const C = 3;
|
|
private const D = 4;
|
|
final const E = 5;
|
|
}
|
|
-----
|
|
!!php7
|
|
array(
|
|
0: Stmt_Class(
|
|
attrGroups: array(
|
|
)
|
|
flags: 0
|
|
name: Identifier(
|
|
name: Foo
|
|
)
|
|
extends: null
|
|
implements: array(
|
|
)
|
|
stmts: array(
|
|
0: Stmt_ClassConst(
|
|
attrGroups: array(
|
|
)
|
|
flags: 0
|
|
consts: array(
|
|
0: Const(
|
|
name: Identifier(
|
|
name: A
|
|
)
|
|
value: Scalar_LNumber(
|
|
value: 1
|
|
)
|
|
)
|
|
)
|
|
)
|
|
1: Stmt_ClassConst(
|
|
attrGroups: array(
|
|
)
|
|
flags: MODIFIER_PUBLIC (1)
|
|
consts: array(
|
|
0: Const(
|
|
name: Identifier(
|
|
name: B
|
|
)
|
|
value: Scalar_LNumber(
|
|
value: 2
|
|
)
|
|
)
|
|
)
|
|
)
|
|
2: Stmt_ClassConst(
|
|
attrGroups: array(
|
|
)
|
|
flags: MODIFIER_PROTECTED (2)
|
|
consts: array(
|
|
0: Const(
|
|
name: Identifier(
|
|
name: C
|
|
)
|
|
value: Scalar_LNumber(
|
|
value: 3
|
|
)
|
|
)
|
|
)
|
|
)
|
|
3: Stmt_ClassConst(
|
|
attrGroups: array(
|
|
)
|
|
flags: MODIFIER_PRIVATE (4)
|
|
consts: array(
|
|
0: Const(
|
|
name: Identifier(
|
|
name: D
|
|
)
|
|
value: Scalar_LNumber(
|
|
value: 4
|
|
)
|
|
)
|
|
)
|
|
)
|
|
4: Stmt_ClassConst(
|
|
attrGroups: array(
|
|
)
|
|
flags: MODIFIER_FINAL (32)
|
|
consts: array(
|
|
0: Const(
|
|
name: Identifier(
|
|
name: E
|
|
)
|
|
value: Scalar_LNumber(
|
|
value: 5
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
) |