Home
last modified time | relevance | path

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

12

/PHP-Parser/lib/PhpParser/
H A DModifiers.php16 public const READONLY = 64; define in PhpParser\\Modifiers
32 if ($a & Modifiers::READONLY && $b & Modifiers::READONLY) {
61 if ($a & Modifiers::READONLY && $b & Modifiers::READONLY) {
H A DNodeDumper.php185 if ($flags & Modifiers::READONLY) {
H A DParserAbstract.php1132 if ($node->flags & Modifiers::READONLY) {
1150 if ($node->flags & Modifiers::READONLY) {
H A DPrettyPrinterAbstract.php1199 . ($modifiers & Modifiers::READONLY ? 'readonly ' : '');
/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 DpropertyTypes.test77 flags: PUBLIC | STATIC | READONLY (73)
H A Dproperty_promotion.test87 flags: PUBLIC | READONLY (65)
H A DconstModifierErrors.test100 flags: READONLY (64)
H A Dmodifier.test87 flags: READONLY (64)
/PHP-Parser/lib/PhpParser/Node/Stmt/
H A DClass_.php81 return (bool) ($this->flags & Modifiers::READONLY);
H A DProperty.php76 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.php82 return (bool) ($this->flags & Modifiers::READONLY);
/PHP-Parser/lib/PhpParser/Builder/
H A DParam.php120 $this->flags = BuilderHelpers::addModifier($this->flags, Modifiers::READONLY);
H A DProperty.php86 $this->flags = BuilderHelpers::addModifier($this->flags, Modifiers::READONLY);
H A DClass_.php94 $this->flags = BuilderHelpers::addClassModifier($this->flags, Modifiers::READONLY);
/PHP-Parser/test/code/parser/stmt/function/
H A DdisjointNormalFormTypes.test64 flags: PUBLIC | READONLY (65)
/PHP-Parser/test/PhpParser/Builder/
H A DPropertyTest.php76 Modifiers::READONLY,
H A DClassTest.php79 'flags' => Modifiers::READONLY
H A DParamTest.php251 … new Node\Param(new Expr\Variable('test'), null, null, false, false, [], Modifiers::READONLY),
/PHP-Parser/grammar/
H A Dphp.y514 | T_READONLY { $$ = Modifiers::READONLY; }
674 | T_READONLY { $$ = Modifiers::READONLY; }
907 | T_READONLY { $$ = Modifiers::READONLY; }
/PHP-Parser/
H A DUPGRADE-5.0.md305 PhpParser\Node\Stmt\Class_::MODIFIER_READONLY -> PhpParser\Modifiers::READONLY
/PHP-Parser/lib/PhpParser/Parser/
H A DPhp7.php1657 $self->semValue = Modifiers::READONLY;
1830 $self->semValue = Modifiers::READONLY;
2078 $self->semValue = Modifiers::READONLY;

Completed in 132 milliseconds

12