Home
last modified time | relevance | path

Searched refs:READONLY (Results 1 – 25 of 28) sorted by relevance

12

/PHP-Parser/test/code/parser/stmt/class/
H A Dreadonly.test12 flags: READONLY (64)
33 flags: FINAL | READONLY (96)
H A DreadonlyAnonyous.test13 flags: READONLY (64)
H A DreadonlyMethod.test21 flags: READONLY (64)
H A Dproperty_modifiers.test58 flags: READONLY (64)
H A DpropertyTypes.test83 flags: PUBLIC | STATIC | READONLY (73)
H A DconstModifierErrors.test100 flags: READONLY (64)
H A Dproperty_promotion.test95 flags: PUBLIC | READONLY (65)
H A Dmodifier_error.test91 flags: READONLY (64)
H A Dproperty_hooks.test512 flags: READONLY (64)
/PHP-Parser/lib/PhpParser/
H A DModifiers.php16 public const READONLY = 64; define in PhpParser\\Modifiers
32 self::READONLY => 'readonly',
H A DNodeDumper.php185 if ($flags & Modifiers::READONLY) {
H A DParserAbstract.php1132 if ($node->flags & Modifiers::READONLY) {
1140 foreach ([Modifiers::STATIC, Modifiers::ABSTRACT, Modifiers::READONLY] as $modifier) {
/PHP-Parser/lib/PhpParser/Node/Stmt/
H A DClass_.php81 return (bool) ($this->flags & Modifiers::READONLY);
H A DProperty.php80 return (bool) ($this->flags & Modifiers::READONLY);
/PHP-Parser/test/code/formatPreservation/
H A DmodifierChange.test63 $stmts[0]->expr->class->flags = Modifiers::READONLY;
/PHP-Parser/lib/PhpParser/Node/
H A DParam.php87 return (bool) ($this->flags & Modifiers::READONLY);
/PHP-Parser/lib/PhpParser/Builder/
H A DClass_.php94 $this->flags = BuilderHelpers::addClassModifier($this->flags, Modifiers::READONLY);
H A DParam.php120 $this->flags = BuilderHelpers::addModifier($this->flags, Modifiers::READONLY);
H A DProperty.php88 $this->flags = BuilderHelpers::addModifier($this->flags, Modifiers::READONLY);
/PHP-Parser/test/code/parser/stmt/function/
H A DdisjointNormalFormTypes.test66 flags: PUBLIC | READONLY (65)
/PHP-Parser/test/PhpParser/Builder/
H A DClassTest.php79 'flags' => Modifiers::READONLY
H A DPropertyTest.php73 Modifiers::READONLY,
H A DParamTest.php271 … new Node\Param(new Expr\Variable('test'), null, null, false, false, [], Modifiers::READONLY),
/PHP-Parser/grammar/
H A Dphp.y519 | T_READONLY { $$ = Modifiers::READONLY; }
682 | T_READONLY { $$ = Modifiers::READONLY; }
922 | T_READONLY { $$ = Modifiers::READONLY; }
/PHP-Parser/
H A DUPGRADE-5.0.md305 PhpParser\Node\Stmt\Class_::MODIFIER_READONLY -> PhpParser\Modifiers::READONLY

Completed in 58 milliseconds

12