Searched refs:READONLY (Results 1 – 25 of 28) sorted by relevance
12
/PHP-Parser/test/code/parser/stmt/class/ |
H A D | readonly.test | 12 flags: READONLY (64) 33 flags: FINAL | READONLY (96)
|
H A D | readonlyAnonyous.test | 13 flags: READONLY (64)
|
H A D | readonlyMethod.test | 21 flags: READONLY (64)
|
H A D | property_modifiers.test | 58 flags: READONLY (64)
|
H A D | propertyTypes.test | 83 flags: PUBLIC | STATIC | READONLY (73)
|
H A D | constModifierErrors.test | 100 flags: READONLY (64)
|
H A D | property_promotion.test | 95 flags: PUBLIC | READONLY (65)
|
H A D | modifier_error.test | 91 flags: READONLY (64)
|
H A D | property_hooks.test | 512 flags: READONLY (64)
|
/PHP-Parser/lib/PhpParser/ |
H A D | Modifiers.php | 16 public const READONLY = 64; define in PhpParser\\Modifiers 32 self::READONLY => 'readonly',
|
H A D | NodeDumper.php | 185 if ($flags & Modifiers::READONLY) {
|
H A D | ParserAbstract.php | 1132 if ($node->flags & Modifiers::READONLY) { 1140 foreach ([Modifiers::STATIC, Modifiers::ABSTRACT, Modifiers::READONLY] as $modifier) {
|
/PHP-Parser/lib/PhpParser/Node/Stmt/ |
H A D | Class_.php | 81 return (bool) ($this->flags & Modifiers::READONLY);
|
H A D | Property.php | 80 return (bool) ($this->flags & Modifiers::READONLY);
|
/PHP-Parser/test/code/formatPreservation/ |
H A D | modifierChange.test | 63 $stmts[0]->expr->class->flags = Modifiers::READONLY;
|
/PHP-Parser/lib/PhpParser/Node/ |
H A D | Param.php | 87 return (bool) ($this->flags & Modifiers::READONLY);
|
/PHP-Parser/lib/PhpParser/Builder/ |
H A D | Class_.php | 94 $this->flags = BuilderHelpers::addClassModifier($this->flags, Modifiers::READONLY);
|
H A D | Param.php | 120 $this->flags = BuilderHelpers::addModifier($this->flags, Modifiers::READONLY);
|
H A D | Property.php | 88 $this->flags = BuilderHelpers::addModifier($this->flags, Modifiers::READONLY);
|
/PHP-Parser/test/code/parser/stmt/function/ |
H A D | disjointNormalFormTypes.test | 66 flags: PUBLIC | READONLY (65)
|
/PHP-Parser/test/PhpParser/Builder/ |
H A D | ClassTest.php | 79 'flags' => Modifiers::READONLY
|
H A D | PropertyTest.php | 73 Modifiers::READONLY,
|
H A D | ParamTest.php | 271 … new Node\Param(new Expr\Variable('test'), null, null, false, false, [], Modifiers::READONLY),
|
/PHP-Parser/grammar/ |
H A D | php.y | 519 | T_READONLY { $$ = Modifiers::READONLY; } 682 | T_READONLY { $$ = Modifiers::READONLY; } 922 | T_READONLY { $$ = Modifiers::READONLY; }
|
/PHP-Parser/ |
H A D | UPGRADE-5.0.md | 305 PhpParser\Node\Stmt\Class_::MODIFIER_READONLY -> PhpParser\Modifiers::READONLY
|
Completed in 51 milliseconds
12