Home
last modified time | relevance | path

Searched refs:FINAL (Results 1 – 25 of 30) sorted by relevance

12

/PHP-Parser/test/code/parser/stmt/class/
H A Dfinal.test11 flags: FINAL (32)
H A Dreadonly.test33 flags: FINAL | READONLY (96)
H A DimplicitPublic.test75 flags: FINAL (32)
103 flags: STATIC | FINAL (40)
H A Dmodifier_error.test193 flags: FINAL (32)
226 flags: ABSTRACT | FINAL (48)
247 flags: ABSTRACT | FINAL (48)
H A Dproperty_modifiers.test26 flags: PUBLIC | FINAL (33)
H A DconstModifiers.test92 flags: FINAL (32)
H A Dsimple.test166 flags: PUBLIC | FINAL (33)
H A Dproperty_hooks.test190 flags: FINAL (32)
/PHP-Parser/lib/PhpParser/
H A DModifiers.php15 public const FINAL = 32; define in PhpParser\\Modifiers
31 self::FINAL => 'final',
H A DNodeDumper.php182 if ($flags & Modifiers::FINAL) {
/PHP-Parser/lib/PhpParser/Node/Stmt/
H A DClassConst.php71 return (bool) ($this->flags & Modifiers::FINAL);
H A DClass_.php77 return (bool) ($this->flags & Modifiers::FINAL);
H A DClassMethod.php134 return (bool) ($this->flags & Modifiers::FINAL);
/PHP-Parser/test/code/parser/
H A DsemiReserved.test15 const TRAIT = 3, FINAL = 4;
33 Test::FINAL;
171 name: FINAL
356 name: FINAL
/PHP-Parser/lib/PhpParser/Builder/
H A DMethod.php97 $this->flags = BuilderHelpers::addModifier($this->flags, Modifiers::FINAL);
H A DClassConst.php90 $this->flags = BuilderHelpers::addModifier($this->flags, Modifiers::FINAL);
H A DClass_.php83 $this->flags = BuilderHelpers::addClassModifier($this->flags, Modifiers::FINAL);
H A DProperty.php110 $this->flags = BuilderHelpers::addModifier($this->flags, Modifiers::FINAL);
/PHP-Parser/test/code/formatPreservation/
H A Dproperty_hooks.test72 $stmts[0]->stmts[0]->hooks[0]->flags = Modifiers::FINAL;
/PHP-Parser/test/PhpParser/Node/Stmt/
H A DClassTest.php19 $class = new Class_('Foo', ['type' => Modifiers::FINAL]);
/PHP-Parser/test/PhpParser/Builder/
H A DClassTest.php65 'flags' => Modifiers::FINAL
H A DClassConstTest.php79 Modifiers::FINAL
H A DMethodTest.php48 'flags' => Modifiers::PROTECTED | Modifiers::FINAL
H A DPropertyTest.php83 new Stmt\Property(Modifiers::FINAL, [new PropertyItem('test')]),
/PHP-Parser/grammar/
H A Dphp.y518 | T_FINAL { $$ = Modifiers::FINAL; }
921 | T_FINAL { $$ = Modifiers::FINAL; }

Completed in 20 milliseconds

12