Home
last modified time | relevance | path

Searched refs:PUBLIC_SET (Results 1 – 12 of 12) sorted by relevance

/PHP-Parser/lib/PhpParser/
H A DModifiers.php17 public const PUBLIC_SET = 128; define in PhpParser\\Modifiers
23 public const VISIBILITY_SET_MASK = self::PUBLIC_SET | self::PROTECTED_SET | self::PRIVATE_SET;
33 self::PUBLIC_SET => 'public(set)',
H A DNodeDumper.php188 if ($flags & Modifiers::PUBLIC_SET) {
H A DPrettyPrinterAbstract.php1226 . ($modifiers & Modifiers::PUBLIC_SET ? 'public(set) ' : '')
/PHP-Parser/test/code/parser/stmt/class/
H A Dasymmetric_visibility.test48 flags: PRIVATE | PUBLIC_SET (132)
103 flags: PRIVATE | PUBLIC_SET (132)
176 flags: PUBLIC_SET | PRIVATE_SET (640)
/PHP-Parser/test/PhpParser/Node/
H A DParamTest.php47 $node->flags = Modifiers::PUBLIC_SET;
/PHP-Parser/test/PhpParser/Node/Stmt/
H A DPropertyTest.php57 $node = new Property(Modifiers::PUBLIC_SET, []);
/PHP-Parser/lib/PhpParser/Node/Stmt/
H A DProperty.php87 return (bool) ($this->flags & Modifiers::PUBLIC_SET);
/PHP-Parser/lib/PhpParser/Node/
H A DParam.php94 return (bool) ($this->flags & Modifiers::PUBLIC_SET);
/PHP-Parser/grammar/
H A Dphp.y679 | T_PUBLIC_SET { $$ = Modifiers::PUBLIC_SET; }
916 | T_PUBLIC_SET { $$ = Modifiers::PUBLIC_SET; }
/PHP-Parser/lib/PhpParser/Parser/
H A DPhp7.php1833 $self->semValue = Modifiers::PUBLIC_SET;
2080 $self->semValue = Modifiers::PUBLIC_SET;
H A DPhp8.php1828 $self->semValue = Modifiers::PUBLIC_SET;
2079 $self->semValue = Modifiers::PUBLIC_SET;
/PHP-Parser/
H A DCHANGELOG.md34 additional bits `Modifiers::PUBLIC_SET`, `Modifiers::PROTECTED_SET` and `Modifiers::PRIVATE_SET`.

Completed in 67 milliseconds