Searched refs:PUBLIC_SET (Results 1 – 12 of 12) sorted by relevance
17 public const PUBLIC_SET = 128; define in PhpParser\\Modifiers23 public const VISIBILITY_SET_MASK = self::PUBLIC_SET | self::PROTECTED_SET | self::PRIVATE_SET;33 self::PUBLIC_SET => 'public(set)',
188 if ($flags & Modifiers::PUBLIC_SET) {
1226 . ($modifiers & Modifiers::PUBLIC_SET ? 'public(set) ' : '')
48 flags: PRIVATE | PUBLIC_SET (132)103 flags: PRIVATE | PUBLIC_SET (132)176 flags: PUBLIC_SET | PRIVATE_SET (640)
47 $node->flags = Modifiers::PUBLIC_SET;
57 $node = new Property(Modifiers::PUBLIC_SET, []);
87 return (bool) ($this->flags & Modifiers::PUBLIC_SET);
94 return (bool) ($this->flags & Modifiers::PUBLIC_SET);
679 | T_PUBLIC_SET { $$ = Modifiers::PUBLIC_SET; }916 | T_PUBLIC_SET { $$ = Modifiers::PUBLIC_SET; }
1833 $self->semValue = Modifiers::PUBLIC_SET;2080 $self->semValue = Modifiers::PUBLIC_SET;
1828 $self->semValue = Modifiers::PUBLIC_SET;2079 $self->semValue = Modifiers::PUBLIC_SET;
34 additional bits `Modifiers::PUBLIC_SET`, `Modifiers::PROTECTED_SET` and `Modifiers::PRIVATE_SET`.
Completed in 67 milliseconds