@@ -38,14 +38,14 @@ discard block |
||
38 | 38 | |
39 | 39 | public function parse(Buffer $src): \Generator |
40 | 40 | { |
41 | - while ($n = $src->next()) { |
|
42 | - if (!$n instanceof Byte || $n->char !== '$' || $src->lookaheadByte() !== '{') { |
|
41 | + while ($n = $src->next()){ |
|
42 | + if (!$n instanceof Byte || $n->char !== '$' || $src->lookaheadByte() !== '{'){ |
|
43 | 43 | yield $n; |
44 | 44 | continue; |
45 | 45 | } |
46 | 46 | |
47 | 47 | $binding = (clone $this)->parseGrammar($src, $n->offset); |
48 | - if ($binding === null) { |
|
48 | + if ($binding === null){ |
|
49 | 49 | yield $n; |
50 | 50 | $src->replay($n->offset); |
51 | 51 | continue; |
@@ -80,27 +80,27 @@ discard block |
||
80 | 80 | private function parseGrammar(Buffer $src, int $offset): ?array |
81 | 81 | { |
82 | 82 | $this->tokens = [ |
83 | - new Token(self::TYPE_OPEN_TAG, $offset, '$' . $src->next()->char), |
|
83 | + new Token(self::TYPE_OPEN_TAG, $offset, '$'.$src->next()->char), |
|
84 | 84 | ]; |
85 | 85 | |
86 | - while ($n = $src->next()) { |
|
87 | - if (!$n instanceof Byte) { |
|
86 | + while ($n = $src->next()){ |
|
87 | + if (!$n instanceof Byte){ |
|
88 | 88 | // no other grammars are allowed |
89 | 89 | return null; |
90 | 90 | } |
91 | 91 | |
92 | - switch ($n->char) { |
|
92 | + switch ($n->char){ |
|
93 | 93 | case '"': |
94 | 94 | case "'": |
95 | - if ($this->default === null) { |
|
95 | + if ($this->default === null){ |
|
96 | 96 | // " and ' not allowed in names |
97 | 97 | return null; |
98 | 98 | } |
99 | 99 | |
100 | 100 | $this->default[] = $n; |
101 | - while ($nn = $src->next()) { |
|
101 | + while ($nn = $src->next()){ |
|
102 | 102 | $this->default[] = $nn; |
103 | - if ($nn instanceof Byte && $nn->char === $n->char) { |
|
103 | + if ($nn instanceof Byte && $nn->char === $n->char){ |
|
104 | 104 | break; |
105 | 105 | } |
106 | 106 | } |
@@ -133,17 +133,17 @@ discard block |
||
133 | 133 | break; |
134 | 134 | |
135 | 135 | default: |
136 | - if ($this->default !== null) { |
|
136 | + if ($this->default !== null){ |
|
137 | 137 | // default allows spaces |
138 | 138 | $this->default[] = $n; |
139 | 139 | break; |
140 | 140 | } |
141 | 141 | |
142 | - if (\preg_match(self::REGEXP_WHITESPACE, $n->char)) { |
|
142 | + if (\preg_match(self::REGEXP_WHITESPACE, $n->char)){ |
|
143 | 143 | break; |
144 | 144 | } |
145 | 145 | |
146 | - if (\preg_match(self::REGEXP_KEYWORD, $n->char)) { |
|
146 | + if (\preg_match(self::REGEXP_KEYWORD, $n->char)){ |
|
147 | 147 | $this->name[] = $n; |
148 | 148 | break; |
149 | 149 | } |
@@ -152,7 +152,7 @@ discard block |
||
152 | 152 | } |
153 | 153 | } |
154 | 154 | |
155 | - if (!$this->isValid()) { |
|
155 | + if (!$this->isValid()){ |
|
156 | 156 | return null; |
157 | 157 | } |
158 | 158 | |
@@ -161,25 +161,25 @@ discard block |
||
161 | 161 | |
162 | 162 | private function isValid(): bool |
163 | 163 | { |
164 | - if (\count($this->tokens) < 3) { |
|
164 | + if (\count($this->tokens) < 3){ |
|
165 | 165 | return false; |
166 | 166 | } |
167 | 167 | |
168 | 168 | $hasName = false; |
169 | 169 | $hasDefault = null; |
170 | - foreach ($this->tokens as $token) { |
|
171 | - if ($token->type === self::TYPE_NAME) { |
|
170 | + foreach ($this->tokens as $token){ |
|
171 | + if ($token->type === self::TYPE_NAME){ |
|
172 | 172 | $hasName = true; |
173 | 173 | continue; |
174 | 174 | } |
175 | 175 | |
176 | - if ($token->type === self::TYPE_SEPARATOR && $hasDefault === null) { |
|
176 | + if ($token->type === self::TYPE_SEPARATOR && $hasDefault === null){ |
|
177 | 177 | $hasDefault = false; |
178 | 178 | continue; |
179 | 179 | } |
180 | 180 | |
181 | - if ($token->type === self::TYPE_DEFAULT) { |
|
182 | - if ($hasDefault === true) { |
|
181 | + if ($token->type === self::TYPE_DEFAULT){ |
|
182 | + if ($hasDefault === true){ |
|
183 | 183 | // multiple default value |
184 | 184 | return false; |
185 | 185 | } |
@@ -196,7 +196,7 @@ discard block |
||
196 | 196 | */ |
197 | 197 | private function flushName(): void |
198 | 198 | { |
199 | - if ($this->name === []) { |
|
199 | + if ($this->name === []){ |
|
200 | 200 | return; |
201 | 201 | } |
202 | 202 | |
@@ -209,7 +209,7 @@ discard block |
||
209 | 209 | */ |
210 | 210 | private function flushDefault(): void |
211 | 211 | { |
212 | - if ($this->default === [] || $this->default === null) { |
|
212 | + if ($this->default === [] || $this->default === null){ |
|
213 | 213 | return; |
214 | 214 | } |
215 | 215 |
@@ -38,14 +38,17 @@ discard block |
||
38 | 38 | |
39 | 39 | public function parse(Buffer $src): \Generator |
40 | 40 | { |
41 | - while ($n = $src->next()) { |
|
42 | - if (!$n instanceof Byte || $n->char !== '$' || $src->lookaheadByte() !== '{') { |
|
41 | + while ($n = $src->next()) |
|
42 | + { |
|
43 | + if (!$n instanceof Byte || $n->char !== '$' || $src->lookaheadByte() !== '{') |
|
44 | + { |
|
43 | 45 | yield $n; |
44 | 46 | continue; |
45 | 47 | } |
46 | 48 | |
47 | 49 | $binding = (clone $this)->parseGrammar($src, $n->offset); |
48 | - if ($binding === null) { |
|
50 | + if ($binding === null) |
|
51 | + { |
|
49 | 52 | yield $n; |
50 | 53 | $src->replay($n->offset); |
51 | 54 | continue; |
@@ -83,24 +86,30 @@ discard block |
||
83 | 86 | new Token(self::TYPE_OPEN_TAG, $offset, '$' . $src->next()->char), |
84 | 87 | ]; |
85 | 88 | |
86 | - while ($n = $src->next()) { |
|
87 | - if (!$n instanceof Byte) { |
|
89 | + while ($n = $src->next()) |
|
90 | + { |
|
91 | + if (!$n instanceof Byte) |
|
92 | + { |
|
88 | 93 | // no other grammars are allowed |
89 | 94 | return null; |
90 | 95 | } |
91 | 96 | |
92 | - switch ($n->char) { |
|
97 | + switch ($n->char) |
|
98 | + { |
|
93 | 99 | case '"': |
94 | 100 | case "'": |
95 | - if ($this->default === null) { |
|
101 | + if ($this->default === null) |
|
102 | + { |
|
96 | 103 | // " and ' not allowed in names |
97 | 104 | return null; |
98 | 105 | } |
99 | 106 | |
100 | 107 | $this->default[] = $n; |
101 | - while ($nn = $src->next()) { |
|
108 | + while ($nn = $src->next()) |
|
109 | + { |
|
102 | 110 | $this->default[] = $nn; |
103 | - if ($nn instanceof Byte && $nn->char === $n->char) { |
|
111 | + if ($nn instanceof Byte && $nn->char === $n->char) |
|
112 | + { |
|
104 | 113 | break; |
105 | 114 | } |
106 | 115 | } |
@@ -133,17 +142,20 @@ discard block |
||
133 | 142 | break; |
134 | 143 | |
135 | 144 | default: |
136 | - if ($this->default !== null) { |
|
145 | + if ($this->default !== null) |
|
146 | + { |
|
137 | 147 | // default allows spaces |
138 | 148 | $this->default[] = $n; |
139 | 149 | break; |
140 | 150 | } |
141 | 151 | |
142 | - if (\preg_match(self::REGEXP_WHITESPACE, $n->char)) { |
|
152 | + if (\preg_match(self::REGEXP_WHITESPACE, $n->char)) |
|
153 | + { |
|
143 | 154 | break; |
144 | 155 | } |
145 | 156 | |
146 | - if (\preg_match(self::REGEXP_KEYWORD, $n->char)) { |
|
157 | + if (\preg_match(self::REGEXP_KEYWORD, $n->char)) |
|
158 | + { |
|
147 | 159 | $this->name[] = $n; |
148 | 160 | break; |
149 | 161 | } |
@@ -152,7 +164,8 @@ discard block |
||
152 | 164 | } |
153 | 165 | } |
154 | 166 | |
155 | - if (!$this->isValid()) { |
|
167 | + if (!$this->isValid()) |
|
168 | + { |
|
156 | 169 | return null; |
157 | 170 | } |
158 | 171 | |
@@ -161,25 +174,31 @@ discard block |
||
161 | 174 | |
162 | 175 | private function isValid(): bool |
163 | 176 | { |
164 | - if (\count($this->tokens) < 3) { |
|
177 | + if (\count($this->tokens) < 3) |
|
178 | + { |
|
165 | 179 | return false; |
166 | 180 | } |
167 | 181 | |
168 | 182 | $hasName = false; |
169 | 183 | $hasDefault = null; |
170 | - foreach ($this->tokens as $token) { |
|
171 | - if ($token->type === self::TYPE_NAME) { |
|
184 | + foreach ($this->tokens as $token) |
|
185 | + { |
|
186 | + if ($token->type === self::TYPE_NAME) |
|
187 | + { |
|
172 | 188 | $hasName = true; |
173 | 189 | continue; |
174 | 190 | } |
175 | 191 | |
176 | - if ($token->type === self::TYPE_SEPARATOR && $hasDefault === null) { |
|
192 | + if ($token->type === self::TYPE_SEPARATOR && $hasDefault === null) |
|
193 | + { |
|
177 | 194 | $hasDefault = false; |
178 | 195 | continue; |
179 | 196 | } |
180 | 197 | |
181 | - if ($token->type === self::TYPE_DEFAULT) { |
|
182 | - if ($hasDefault === true) { |
|
198 | + if ($token->type === self::TYPE_DEFAULT) |
|
199 | + { |
|
200 | + if ($hasDefault === true) |
|
201 | + { |
|
183 | 202 | // multiple default value |
184 | 203 | return false; |
185 | 204 | } |
@@ -196,7 +215,8 @@ discard block |
||
196 | 215 | */ |
197 | 216 | private function flushName(): void |
198 | 217 | { |
199 | - if ($this->name === []) { |
|
218 | + if ($this->name === []) |
|
219 | + { |
|
200 | 220 | return; |
201 | 221 | } |
202 | 222 | |
@@ -209,7 +229,8 @@ discard block |
||
209 | 229 | */ |
210 | 230 | private function flushDefault(): void |
211 | 231 | { |
212 | - if ($this->default === [] || $this->default === null) { |
|
232 | + if ($this->default === [] || $this->default === null) |
|
233 | + { |
|
213 | 234 | return; |
214 | 235 | } |
215 | 236 |
@@ -16,14 +16,14 @@ discard block |
||
16 | 16 | |
17 | 17 | public function parse(Buffer $src): \Generator |
18 | 18 | { |
19 | - while ($n = $src->next()) { |
|
20 | - if (!$n instanceof Byte || $n->char !== '<' || $src->lookaheadByte() !== '?') { |
|
19 | + while ($n = $src->next()){ |
|
20 | + if (!$n instanceof Byte || $n->char !== '<' || $src->lookaheadByte() !== '?'){ |
|
21 | 21 | yield $n; |
22 | 22 | continue; |
23 | 23 | } |
24 | 24 | |
25 | - $php = $this->parseGrammar($n->char . $src->nextBytes(), $n->offset); |
|
26 | - if ($php === null) { |
|
25 | + $php = $this->parseGrammar($n->char.$src->nextBytes(), $n->offset); |
|
26 | + if ($php === null){ |
|
27 | 27 | yield $n; |
28 | 28 | $src->replay($n->offset); |
29 | 29 | continue; |
@@ -45,25 +45,25 @@ discard block |
||
45 | 45 | private function parseGrammar(string $content, int $offset): ?Token |
46 | 46 | { |
47 | 47 | $tokens = null; |
48 | - foreach (\token_get_all($content) as $token) { |
|
49 | - if ($tokens === null && !$this->is($token, [T_OPEN_TAG, T_OPEN_TAG_WITH_ECHO])) { |
|
48 | + foreach (\token_get_all($content) as $token){ |
|
49 | + if ($tokens === null && !$this->is($token, [T_OPEN_TAG, T_OPEN_TAG_WITH_ECHO])){ |
|
50 | 50 | // not php |
51 | 51 | return null; |
52 | 52 | } |
53 | 53 | |
54 | 54 | $tokens[] = $token; |
55 | - if ($this->is($token, [T_CLOSE_TAG])) { |
|
55 | + if ($this->is($token, [T_CLOSE_TAG])){ |
|
56 | 56 | break; |
57 | 57 | } |
58 | 58 | } |
59 | 59 | |
60 | - if ($tokens === null) { |
|
60 | + if ($tokens === null){ |
|
61 | 61 | return null; |
62 | 62 | } |
63 | 63 | |
64 | 64 | $buffer = ''; |
65 | - foreach ($tokens as $token) { |
|
66 | - if (!\is_array($token)) { |
|
65 | + foreach ($tokens as $token){ |
|
66 | + if (!\is_array($token)){ |
|
67 | 67 | $buffer .= $token; |
68 | 68 | continue; |
69 | 69 | } |
@@ -76,9 +76,9 @@ discard block |
||
76 | 76 | return $token; |
77 | 77 | } |
78 | 78 | |
79 | - private function is(array|string $token, array $type): bool |
|
79 | + private function is(array | string $token, array $type): bool |
|
80 | 80 | { |
81 | - if (!\is_array($token)) { |
|
81 | + if (!\is_array($token)){ |
|
82 | 82 | return false; |
83 | 83 | } |
84 | 84 |
@@ -16,14 +16,17 @@ discard block |
||
16 | 16 | |
17 | 17 | public function parse(Buffer $src): \Generator |
18 | 18 | { |
19 | - while ($n = $src->next()) { |
|
20 | - if (!$n instanceof Byte || $n->char !== '<' || $src->lookaheadByte() !== '?') { |
|
19 | + while ($n = $src->next()) |
|
20 | + { |
|
21 | + if (!$n instanceof Byte || $n->char !== '<' || $src->lookaheadByte() !== '?') |
|
22 | + { |
|
21 | 23 | yield $n; |
22 | 24 | continue; |
23 | 25 | } |
24 | 26 | |
25 | 27 | $php = $this->parseGrammar($n->char . $src->nextBytes(), $n->offset); |
26 | - if ($php === null) { |
|
28 | + if ($php === null) |
|
29 | + { |
|
27 | 30 | yield $n; |
28 | 31 | $src->replay($n->offset); |
29 | 32 | continue; |
@@ -45,25 +48,31 @@ discard block |
||
45 | 48 | private function parseGrammar(string $content, int $offset): ?Token |
46 | 49 | { |
47 | 50 | $tokens = null; |
48 | - foreach (\token_get_all($content) as $token) { |
|
49 | - if ($tokens === null && !$this->is($token, [T_OPEN_TAG, T_OPEN_TAG_WITH_ECHO])) { |
|
51 | + foreach (\token_get_all($content) as $token) |
|
52 | + { |
|
53 | + if ($tokens === null && !$this->is($token, [T_OPEN_TAG, T_OPEN_TAG_WITH_ECHO])) |
|
54 | + { |
|
50 | 55 | // not php |
51 | 56 | return null; |
52 | 57 | } |
53 | 58 | |
54 | 59 | $tokens[] = $token; |
55 | - if ($this->is($token, [T_CLOSE_TAG])) { |
|
60 | + if ($this->is($token, [T_CLOSE_TAG])) |
|
61 | + { |
|
56 | 62 | break; |
57 | 63 | } |
58 | 64 | } |
59 | 65 | |
60 | - if ($tokens === null) { |
|
66 | + if ($tokens === null) |
|
67 | + { |
|
61 | 68 | return null; |
62 | 69 | } |
63 | 70 | |
64 | 71 | $buffer = ''; |
65 | - foreach ($tokens as $token) { |
|
66 | - if (!\is_array($token)) { |
|
72 | + foreach ($tokens as $token) |
|
73 | + { |
|
74 | + if (!\is_array($token)) |
|
75 | + { |
|
67 | 76 | $buffer .= $token; |
68 | 77 | continue; |
69 | 78 | } |
@@ -78,7 +87,8 @@ discard block |
||
78 | 87 | |
79 | 88 | private function is(array|string $token, array $type): bool |
80 | 89 | { |
81 | - if (!\is_array($token)) { |
|
90 | + if (!\is_array($token)) |
|
91 | + { |
|
82 | 92 | return false; |
83 | 93 | } |
84 | 94 |
@@ -9,6 +9,6 @@ |
||
9 | 9 | public function __construct( |
10 | 10 | public int $offset, |
11 | 11 | public string $char |
12 | - ) { |
|
12 | + ){ |
|
13 | 13 | } |
14 | 14 | } |
@@ -31,20 +31,20 @@ discard block |
||
31 | 31 | public function parse(StreamInterface $src): \Generator |
32 | 32 | { |
33 | 33 | $stream = new Buffer($this->generate($src)); |
34 | - foreach ($this->grammars as $grammar) { |
|
34 | + foreach ($this->grammars as $grammar){ |
|
35 | 35 | $stream = new Buffer($this->wrap(clone $grammar, $stream)); |
36 | 36 | } |
37 | 37 | |
38 | 38 | // always group raw bytes into raw tokens |
39 | - foreach ($this->wrap(new RawGrammar(), $stream) as $n) { |
|
39 | + foreach ($this->wrap(new RawGrammar(), $stream) as $n){ |
|
40 | 40 | yield $n; |
41 | 41 | } |
42 | 42 | } |
43 | 43 | |
44 | 44 | private function wrap(GrammarInterface $grammar, Buffer $stream): \Generator |
45 | 45 | { |
46 | - foreach ($grammar->parse($stream) as $n) { |
|
47 | - if ($n instanceof Token && $n->grammar === null) { |
|
46 | + foreach ($grammar->parse($stream) as $n){ |
|
47 | + if ($n instanceof Token && $n->grammar === null){ |
|
48 | 48 | $n->grammar = $grammar::class; |
49 | 49 | } |
50 | 50 | |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | */ |
60 | 60 | private function generate(StreamInterface $src): \Generator |
61 | 61 | { |
62 | - while (!$src->isEOI()) { |
|
62 | + while (!$src->isEOI()){ |
|
63 | 63 | yield new Byte($src->getOffset(), $src->peak()); |
64 | 64 | } |
65 | 65 | } |
@@ -31,20 +31,24 @@ discard block |
||
31 | 31 | public function parse(StreamInterface $src): \Generator |
32 | 32 | { |
33 | 33 | $stream = new Buffer($this->generate($src)); |
34 | - foreach ($this->grammars as $grammar) { |
|
34 | + foreach ($this->grammars as $grammar) |
|
35 | + { |
|
35 | 36 | $stream = new Buffer($this->wrap(clone $grammar, $stream)); |
36 | 37 | } |
37 | 38 | |
38 | 39 | // always group raw bytes into raw tokens |
39 | - foreach ($this->wrap(new RawGrammar(), $stream) as $n) { |
|
40 | + foreach ($this->wrap(new RawGrammar(), $stream) as $n) |
|
41 | + { |
|
40 | 42 | yield $n; |
41 | 43 | } |
42 | 44 | } |
43 | 45 | |
44 | 46 | private function wrap(GrammarInterface $grammar, Buffer $stream): \Generator |
45 | 47 | { |
46 | - foreach ($grammar->parse($stream) as $n) { |
|
47 | - if ($n instanceof Token && $n->grammar === null) { |
|
48 | + foreach ($grammar->parse($stream) as $n) |
|
49 | + { |
|
50 | + if ($n instanceof Token && $n->grammar === null) |
|
51 | + { |
|
48 | 52 | $n->grammar = $grammar::class; |
49 | 53 | } |
50 | 54 | |
@@ -59,7 +63,8 @@ discard block |
||
59 | 63 | */ |
60 | 64 | private function generate(StreamInterface $src): \Generator |
61 | 65 | { |
62 | - while (!$src->isEOI()) { |
|
66 | + while (!$src->isEOI()) |
|
67 | + { |
|
63 | 68 | yield new Byte($src->getOffset(), $src->peak()); |
64 | 69 | } |
65 | 70 | } |
@@ -13,7 +13,7 @@ |
||
13 | 13 | { |
14 | 14 | public function render(Compiler $compiler, Compiler\Result $result, NodeInterface $node): bool |
15 | 15 | { |
16 | - if ($node instanceof PHP) { |
|
16 | + if ($node instanceof PHP){ |
|
17 | 17 | $result->push($node->content, $node->getContext()); |
18 | 18 | return true; |
19 | 19 | } |
@@ -13,7 +13,8 @@ |
||
13 | 13 | { |
14 | 14 | public function render(Compiler $compiler, Compiler\Result $result, NodeInterface $node): bool |
15 | 15 | { |
16 | - if ($node instanceof PHP) { |
|
16 | + if ($node instanceof PHP) |
|
17 | + { |
|
17 | 18 | $result->push($node->content, $node->getContext()); |
18 | 19 | return true; |
19 | 20 | } |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | { |
17 | 17 | public function render(Compiler $compiler, Compiler\Result $result, NodeInterface $node): bool |
18 | 18 | { |
19 | - switch (true) { |
|
19 | + switch (true){ |
|
20 | 20 | case $node instanceof Tag: |
21 | 21 | $this->tag($compiler, $result, $node); |
22 | 22 | return true; |
@@ -38,8 +38,8 @@ discard block |
||
38 | 38 | { |
39 | 39 | $result->push(\sprintf('<%s', $node->name), $node->getContext()); |
40 | 40 | |
41 | - foreach ($node->attrs as $attr) { |
|
42 | - if (!$attr instanceof Attr) { |
|
41 | + foreach ($node->attrs as $attr){ |
|
42 | + if (!$attr instanceof Attr){ |
|
43 | 43 | $compiler->compile($attr, $result); |
44 | 44 | continue; |
45 | 45 | } |
@@ -49,30 +49,30 @@ discard block |
||
49 | 49 | |
50 | 50 | $result->push(\sprintf('%s>', $node->void ? '/' : ''), null); |
51 | 51 | |
52 | - foreach ($node->nodes as $child) { |
|
52 | + foreach ($node->nodes as $child){ |
|
53 | 53 | $compiler->compile($child, $result); |
54 | 54 | } |
55 | 55 | |
56 | - if (!$node->void) { |
|
56 | + if (!$node->void){ |
|
57 | 57 | $result->push(\sprintf('</%s>', $node->name), null); |
58 | 58 | } |
59 | 59 | } |
60 | 60 | |
61 | 61 | private function attribute(Compiler $compiler, Compiler\Result $result, Attr $node): void |
62 | 62 | { |
63 | - if ($node->name instanceof NodeInterface) { |
|
63 | + if ($node->name instanceof NodeInterface){ |
|
64 | 64 | $result->push(' ', null); |
65 | 65 | $compiler->compile($node->name, $result); |
66 | - } else { |
|
66 | + }else{ |
|
67 | 67 | $result->push(\sprintf(' %s', $node->name), $node->getContext()); |
68 | 68 | } |
69 | 69 | |
70 | 70 | $value = $node->value; |
71 | - if ($value instanceof Nil) { |
|
71 | + if ($value instanceof Nil){ |
|
72 | 72 | return; |
73 | 73 | } |
74 | 74 | |
75 | - if ($value instanceof NodeInterface) { |
|
75 | + if ($value instanceof NodeInterface){ |
|
76 | 76 | $result->push('=', null); |
77 | 77 | $compiler->compile($value, $result); |
78 | 78 | return; |
@@ -83,8 +83,8 @@ discard block |
||
83 | 83 | |
84 | 84 | private function verbatim(Compiler $compiler, Compiler\Result $result, Verbatim $node): void |
85 | 85 | { |
86 | - foreach ($node->nodes as $child) { |
|
87 | - if (\is_string($child)) { |
|
86 | + foreach ($node->nodes as $child){ |
|
87 | + if (\is_string($child)){ |
|
88 | 88 | $result->push($child, null); |
89 | 89 | continue; |
90 | 90 | } |
@@ -16,7 +16,8 @@ discard block |
||
16 | 16 | { |
17 | 17 | public function render(Compiler $compiler, Compiler\Result $result, NodeInterface $node): bool |
18 | 18 | { |
19 | - switch (true) { |
|
19 | + switch (true) |
|
20 | + { |
|
20 | 21 | case $node instanceof Tag: |
21 | 22 | $this->tag($compiler, $result, $node); |
22 | 23 | return true; |
@@ -38,8 +39,10 @@ discard block |
||
38 | 39 | { |
39 | 40 | $result->push(\sprintf('<%s', $node->name), $node->getContext()); |
40 | 41 | |
41 | - foreach ($node->attrs as $attr) { |
|
42 | - if (!$attr instanceof Attr) { |
|
42 | + foreach ($node->attrs as $attr) |
|
43 | + { |
|
44 | + if (!$attr instanceof Attr) |
|
45 | + { |
|
43 | 46 | $compiler->compile($attr, $result); |
44 | 47 | continue; |
45 | 48 | } |
@@ -49,30 +52,37 @@ discard block |
||
49 | 52 | |
50 | 53 | $result->push(\sprintf('%s>', $node->void ? '/' : ''), null); |
51 | 54 | |
52 | - foreach ($node->nodes as $child) { |
|
55 | + foreach ($node->nodes as $child) |
|
56 | + { |
|
53 | 57 | $compiler->compile($child, $result); |
54 | 58 | } |
55 | 59 | |
56 | - if (!$node->void) { |
|
60 | + if (!$node->void) |
|
61 | + { |
|
57 | 62 | $result->push(\sprintf('</%s>', $node->name), null); |
58 | 63 | } |
59 | 64 | } |
60 | 65 | |
61 | 66 | private function attribute(Compiler $compiler, Compiler\Result $result, Attr $node): void |
62 | 67 | { |
63 | - if ($node->name instanceof NodeInterface) { |
|
68 | + if ($node->name instanceof NodeInterface) |
|
69 | + { |
|
64 | 70 | $result->push(' ', null); |
65 | 71 | $compiler->compile($node->name, $result); |
66 | - } else { |
|
72 | + } |
|
73 | + else |
|
74 | + { |
|
67 | 75 | $result->push(\sprintf(' %s', $node->name), $node->getContext()); |
68 | 76 | } |
69 | 77 | |
70 | 78 | $value = $node->value; |
71 | - if ($value instanceof Nil) { |
|
79 | + if ($value instanceof Nil) |
|
80 | + { |
|
72 | 81 | return; |
73 | 82 | } |
74 | 83 | |
75 | - if ($value instanceof NodeInterface) { |
|
84 | + if ($value instanceof NodeInterface) |
|
85 | + { |
|
76 | 86 | $result->push('=', null); |
77 | 87 | $compiler->compile($value, $result); |
78 | 88 | return; |
@@ -83,8 +93,10 @@ discard block |
||
83 | 93 | |
84 | 94 | private function verbatim(Compiler $compiler, Compiler\Result $result, Verbatim $node): void |
85 | 95 | { |
86 | - foreach ($node->nodes as $child) { |
|
87 | - if (\is_string($child)) { |
|
96 | + foreach ($node->nodes as $child) |
|
97 | + { |
|
98 | + if (\is_string($child)) |
|
99 | + { |
|
88 | 100 | $result->push($child, null); |
89 | 101 | continue; |
90 | 102 | } |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | Compiler\Result $result, |
22 | 22 | NodeInterface $node |
23 | 23 | ): bool { |
24 | - switch (true) { |
|
24 | + switch (true){ |
|
25 | 25 | case $node instanceof Hidden: |
26 | 26 | return true; |
27 | 27 | |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | $result->withinContext( |
30 | 30 | $node->getContext(), |
31 | 31 | function (Compiler\Result $source) use ($node, $compiler): void { |
32 | - foreach ($node->nodes as $child) { |
|
32 | + foreach ($node->nodes as $child){ |
|
33 | 33 | $compiler->compile($child, $source); |
34 | 34 | } |
35 | 35 | } |
@@ -41,8 +41,8 @@ discard block |
||
41 | 41 | $result->withinContext( |
42 | 42 | $node->getContext(), |
43 | 43 | function (Compiler\Result $source) use ($node, $compiler): void { |
44 | - foreach ($node->nodes as $child) { |
|
45 | - if (\is_string($child)) { |
|
44 | + foreach ($node->nodes as $child){ |
|
45 | + if (\is_string($child)){ |
|
46 | 46 | $source->push($child, null); |
47 | 47 | continue; |
48 | 48 | } |
@@ -21,7 +21,8 @@ discard block |
||
21 | 21 | Compiler\Result $result, |
22 | 22 | NodeInterface $node |
23 | 23 | ): bool { |
24 | - switch (true) { |
|
24 | + switch (true) |
|
25 | + { |
|
25 | 26 | case $node instanceof Hidden: |
26 | 27 | return true; |
27 | 28 | |
@@ -29,7 +30,8 @@ discard block |
||
29 | 30 | $result->withinContext( |
30 | 31 | $node->getContext(), |
31 | 32 | function (Compiler\Result $source) use ($node, $compiler): void { |
32 | - foreach ($node->nodes as $child) { |
|
33 | + foreach ($node->nodes as $child) |
|
34 | + { |
|
33 | 35 | $compiler->compile($child, $source); |
34 | 36 | } |
35 | 37 | } |
@@ -41,8 +43,10 @@ discard block |
||
41 | 43 | $result->withinContext( |
42 | 44 | $node->getContext(), |
43 | 45 | function (Compiler\Result $source) use ($node, $compiler): void { |
44 | - foreach ($node->nodes as $child) { |
|
45 | - if (\is_string($child)) { |
|
46 | + foreach ($node->nodes as $child) |
|
47 | + { |
|
48 | + if (\is_string($child)) |
|
49 | + { |
|
46 | 50 | $source->push($child, null); |
47 | 51 | continue; |
48 | 52 | } |
@@ -38,8 +38,8 @@ discard block |
||
38 | 38 | { |
39 | 39 | $paths = []; |
40 | 40 | |
41 | - foreach ($this->lines as $line) { |
|
42 | - if (!\in_array($this->paths[$line[0]], $paths, true)) { |
|
41 | + foreach ($this->lines as $line){ |
|
42 | + if (!\in_array($this->paths[$line[0]], $paths, true)){ |
|
43 | 43 | $paths[] = $this->paths[$line[0]]; |
44 | 44 | } |
45 | 45 | } |
@@ -54,13 +54,13 @@ discard block |
||
54 | 54 | public function getStack(int $line): array |
55 | 55 | { |
56 | 56 | $found = null; |
57 | - foreach ($this->lines as $linen => $ctx) { |
|
58 | - if ($linen <= $line) { |
|
57 | + foreach ($this->lines as $linen => $ctx){ |
|
58 | + if ($linen <= $line){ |
|
59 | 59 | $found = $ctx; |
60 | 60 | } |
61 | 61 | } |
62 | 62 | |
63 | - if ($found === null) { |
|
63 | + if ($found === null){ |
|
64 | 64 | return []; |
65 | 65 | } |
66 | 66 | |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | /** |
74 | 74 | * Compress. |
75 | 75 | */ |
76 | - public function serialize(): string|false |
|
76 | + public function serialize(): string | false |
|
77 | 77 | { |
78 | 78 | return \json_encode($this->__serialize()); |
79 | 79 | } |
@@ -87,9 +87,9 @@ discard block |
||
87 | 87 | { |
88 | 88 | $map = new self(); |
89 | 89 | |
90 | - foreach ($locations as $offset => $location) { |
|
90 | + foreach ($locations as $offset => $location){ |
|
91 | 91 | $line = Source::resolveLine($content, $offset); |
92 | - if (!isset($map->lines[$line])) { |
|
92 | + if (!isset($map->lines[$line])){ |
|
93 | 93 | $map->lines[$line] = $map->calculateLine($location, $loader); |
94 | 94 | } |
95 | 95 | } |
@@ -106,19 +106,19 @@ discard block |
||
106 | 106 | 'line' => $line[1], |
107 | 107 | ]; |
108 | 108 | |
109 | - if ($line[2] !== null) { |
|
109 | + if ($line[2] !== null){ |
|
110 | 110 | $this->unpack($result, $line[2]); |
111 | 111 | } |
112 | 112 | } |
113 | 113 | |
114 | 114 | private function calculateLine(Location $location, LoaderInterface $loader): array |
115 | 115 | { |
116 | - if (!isset($this->sourceCache[$location->path])) { |
|
116 | + if (!isset($this->sourceCache[$location->path])){ |
|
117 | 117 | $this->sourceCache[$location->path] = $loader->load($location->path); |
118 | 118 | } |
119 | 119 | $path = $this->sourceCache[$location->path]->getFilename(); |
120 | 120 | |
121 | - if (!\in_array($path, $this->paths, true)) { |
|
121 | + if (!\in_array($path, $this->paths, true)){ |
|
122 | 122 | $this->paths[] = $path; |
123 | 123 | } |
124 | 124 |
@@ -38,8 +38,10 @@ discard block |
||
38 | 38 | { |
39 | 39 | $paths = []; |
40 | 40 | |
41 | - foreach ($this->lines as $line) { |
|
42 | - if (!\in_array($this->paths[$line[0]], $paths, true)) { |
|
41 | + foreach ($this->lines as $line) |
|
42 | + { |
|
43 | + if (!\in_array($this->paths[$line[0]], $paths, true)) |
|
44 | + { |
|
43 | 45 | $paths[] = $this->paths[$line[0]]; |
44 | 46 | } |
45 | 47 | } |
@@ -54,13 +56,16 @@ discard block |
||
54 | 56 | public function getStack(int $line): array |
55 | 57 | { |
56 | 58 | $found = null; |
57 | - foreach ($this->lines as $linen => $ctx) { |
|
58 | - if ($linen <= $line) { |
|
59 | + foreach ($this->lines as $linen => $ctx) |
|
60 | + { |
|
61 | + if ($linen <= $line) |
|
62 | + { |
|
59 | 63 | $found = $ctx; |
60 | 64 | } |
61 | 65 | } |
62 | 66 | |
63 | - if ($found === null) { |
|
67 | + if ($found === null) |
|
68 | + { |
|
64 | 69 | return []; |
65 | 70 | } |
66 | 71 | |
@@ -87,9 +92,11 @@ discard block |
||
87 | 92 | { |
88 | 93 | $map = new self(); |
89 | 94 | |
90 | - foreach ($locations as $offset => $location) { |
|
95 | + foreach ($locations as $offset => $location) |
|
96 | + { |
|
91 | 97 | $line = Source::resolveLine($content, $offset); |
92 | - if (!isset($map->lines[$line])) { |
|
98 | + if (!isset($map->lines[$line])) |
|
99 | + { |
|
93 | 100 | $map->lines[$line] = $map->calculateLine($location, $loader); |
94 | 101 | } |
95 | 102 | } |
@@ -106,19 +113,22 @@ discard block |
||
106 | 113 | 'line' => $line[1], |
107 | 114 | ]; |
108 | 115 | |
109 | - if ($line[2] !== null) { |
|
116 | + if ($line[2] !== null) |
|
117 | + { |
|
110 | 118 | $this->unpack($result, $line[2]); |
111 | 119 | } |
112 | 120 | } |
113 | 121 | |
114 | 122 | private function calculateLine(Location $location, LoaderInterface $loader): array |
115 | 123 | { |
116 | - if (!isset($this->sourceCache[$location->path])) { |
|
124 | + if (!isset($this->sourceCache[$location->path])) |
|
125 | + { |
|
117 | 126 | $this->sourceCache[$location->path] = $loader->load($location->path); |
118 | 127 | } |
119 | 128 | $path = $this->sourceCache[$location->path]->getFilename(); |
120 | 129 | |
121 | - if (!\in_array($path, $this->paths, true)) { |
|
130 | + if (!\in_array($path, $this->paths, true)) |
|
131 | + { |
|
122 | 132 | $this->paths[] = $path; |
123 | 133 | } |
124 | 134 |
@@ -16,7 +16,7 @@ |
||
16 | 16 | public int $offset, |
17 | 17 | public ?string $grammar = null, |
18 | 18 | public ?Location $parent = null |
19 | - ) { |
|
19 | + ){ |
|
20 | 20 | } |
21 | 21 | |
22 | 22 | public static function fromContext(Context $context, ?Location $parent = null): Location |