forked from phpstan/phpstan-src
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRegexCapturingGroup.php
160 lines (136 loc) · 3.17 KB
/
RegexCapturingGroup.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<?php declare(strict_types = 1);
namespace PHPStan\Type\Regex;
use PHPStan\Type\Type;
final class RegexCapturingGroup
{
public function __construct(
private readonly int $id,
private readonly ?string $name,
private readonly ?RegexAlternation $alternation,
private readonly bool $inOptionalQuantification,
private readonly RegexCapturingGroup|RegexNonCapturingGroup|null $parent,
private readonly Type $type,
private readonly bool $forceNonOptional = false,
private readonly ?Type $forceType = null,
)
{
}
public function getId(): int
{
return $this->id;
}
public function forceNonOptional(): self
{
return new self(
$this->id,
$this->name,
$this->alternation,
$this->inOptionalQuantification,
$this->parent,
$this->type,
true,
$this->forceType,
);
}
public function forceType(Type $type): self
{
return new self(
$this->id,
$this->name,
$this->alternation,
$this->inOptionalQuantification,
$this->parent,
$type,
$this->forceNonOptional,
$this->forceType,
);
}
public function withParent(RegexCapturingGroup|RegexNonCapturingGroup $parent): self
{
return new self(
$this->id,
$this->name,
$this->alternation,
$this->inOptionalQuantification,
$parent,
$this->type,
$this->forceNonOptional,
$this->forceType,
);
}
public function resetsGroupCounter(): bool
{
return $this->parent instanceof RegexNonCapturingGroup && $this->parent->resetsGroupCounter();
}
/**
* @phpstan-assert-if-true !null $this->getAlternationId()
* @phpstan-assert-if-true !null $this->getAlternation()
*/
public function inAlternation(): bool
{
return $this->alternation !== null;
}
public function getAlternation(): ?RegexAlternation
{
return $this->alternation;
}
public function getAlternationId(): ?int
{
if ($this->alternation === null) {
return null;
}
return $this->alternation->getId();
}
public function isOptional(): bool
{
if ($this->forceNonOptional) {
return false;
}
return $this->inAlternation()
|| $this->inOptionalQuantification
|| $this->parent !== null && $this->parent->isOptional();
}
public function inOptionalQuantification(): bool
{
return $this->inOptionalQuantification;
}
public function inOptionalAlternation(): bool
{
if (!$this->inAlternation()) {
return false;
}
$parent = $this->parent;
while ($parent !== null && $parent->getAlternationId() === $this->getAlternationId()) {
if (!$parent instanceof RegexNonCapturingGroup) {
return false;
}
$parent = $parent->getParent();
}
return $parent !== null && $parent->isOptional();
}
public function isTopLevel(): bool
{
return $this->parent === null
|| $this->parent instanceof RegexNonCapturingGroup && $this->parent->isTopLevel();
}
/** @phpstan-assert-if-true !null $this->getName() */
public function isNamed(): bool
{
return $this->name !== null;
}
public function getName(): ?string
{
return $this->name;
}
public function getType(): Type
{
if ($this->forceType !== null) {
return $this->forceType;
}
return $this->type;
}
public function getParent(): RegexCapturingGroup|RegexNonCapturingGroup|null
{
return $this->parent;
}
}