@@ -113,6 +113,6 @@ |
||
113 | 113 | */ |
114 | 114 | public function __toString(): string |
115 | 115 | { |
116 | - return (string)$this->context; |
|
116 | + return (string) $this->context; |
|
117 | 117 | } |
118 | 118 | } |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | */ |
100 | 100 | public function compile(Readable $file): DocumentInterface |
101 | 101 | { |
102 | - return $this->store->memoize($file, function (Readable $file): DocumentInterface { |
|
102 | + return $this->store->memoize($file, function(Readable $file): DocumentInterface { |
|
103 | 103 | return $this->generate($file, $this->ir($file)); |
104 | 104 | }); |
105 | 105 | } |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | */ |
115 | 115 | public function generate(Readable $file, iterable $opcodes): DocumentInterface |
116 | 116 | { |
117 | - return $this->wrap(function () use ($file, $opcodes) { |
|
117 | + return $this->wrap(function() use ($file, $opcodes) { |
|
118 | 118 | return $this->back->run($file, $opcodes); |
119 | 119 | }); |
120 | 120 | } |
@@ -149,7 +149,7 @@ discard block |
||
149 | 149 | */ |
150 | 150 | public function ir(Readable $readable): iterable |
151 | 151 | { |
152 | - return $this->wrap(function () use ($readable) { |
|
152 | + return $this->wrap(function() use ($readable) { |
|
153 | 153 | return $this->front->load($readable); |
154 | 154 | }); |
155 | 155 | } |
@@ -113,6 +113,6 @@ |
||
113 | 113 | */ |
114 | 114 | public function __toString(): string |
115 | 115 | { |
116 | - return (string)$this->context; |
|
116 | + return (string) $this->context; |
|
117 | 117 | } |
118 | 118 | } |
@@ -34,7 +34,7 @@ |
||
34 | 34 | |
35 | 35 | /** |
36 | 36 | * @param Context $context |
37 | - * @return iterable |
|
37 | + * @return \Generator |
|
38 | 38 | */ |
39 | 39 | public function getOpcodes(Context $context): iterable |
40 | 40 | { |
@@ -48,7 +48,7 @@ |
||
48 | 48 | } |
49 | 49 | |
50 | 50 | /** |
51 | - * @return iterable|array[] |
|
51 | + * @return \Generator |
|
52 | 52 | */ |
53 | 53 | public function getValues(): iterable |
54 | 54 | { |
@@ -41,7 +41,7 @@ |
||
41 | 41 | * @var ValueInterface $value |
42 | 42 | */ |
43 | 43 | foreach ($this->getValues() as [$name, $value]) { |
44 | - $result[] = $name . ': ' . $value->toString(); |
|
44 | + $result[] = $name.': '.$value->toString(); |
|
45 | 45 | } |
46 | 46 | |
47 | 47 | return \sprintf('{%s}', \implode(', ', $result)); |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | |
58 | 58 | /** |
59 | 59 | * @param Readable $file |
60 | - * @return iterable|OpcodeInterface[] |
|
60 | + * @return \Generator |
|
61 | 61 | * @throws SyntaxException |
62 | 62 | */ |
63 | 63 | public function load(Readable $file): iterable |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | |
86 | 86 | /** |
87 | 87 | * @param NodeInterface $node |
88 | - * @return iterable|Opcode[]|\Generator |
|
88 | + * @return \Generator |
|
89 | 89 | */ |
90 | 90 | private function bypass(NodeInterface $node): \Generator |
91 | 91 | { |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | |
109 | 109 | /** |
110 | 110 | * @param ProvidesOpcode $provider |
111 | - * @return \Generator|OpcodeInterface[] |
|
111 | + * @return \Generator |
|
112 | 112 | */ |
113 | 113 | private function extract(ProvidesOpcode $provider): \Generator |
114 | 114 | { |
@@ -14,7 +14,6 @@ |
||
14 | 14 | use Railt\Io\Readable; |
15 | 15 | use Railt\Parser\Ast\NodeInterface; |
16 | 16 | use Railt\Parser\Ast\RuleInterface; |
17 | -use Railt\Parser\Exception\UnexpectedTokenException; |
|
18 | 17 | use Railt\Parser\Exception\UnrecognizedTokenException; |
19 | 18 | use Railt\SDL\Exception\SyntaxException; |
20 | 19 | use Railt\SDL\Frontend\AST\ProvidesOpcode; |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | $result |
40 | 40 | ); |
41 | 41 | |
42 | - return '(string)' . \sprintf('"%s"', $result); |
|
42 | + return '(string)'.\sprintf('"%s"', $result); |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | /** |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | */ |
101 | 101 | private function renderUtfSequences(string $body): string |
102 | 102 | { |
103 | - $callee = function (array $matches): string { |
|
103 | + $callee = function(array $matches): string { |
|
104 | 104 | [$char, $code] = [$matches[0], $matches[1]]; |
105 | 105 | |
106 | 106 | try { |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | { |
131 | 131 | try { |
132 | 132 | if (\function_exists('\\json_decode')) { |
133 | - $result = @\json_decode('{"char": "' . $body . '"}')->char; |
|
133 | + $result = @\json_decode('{"char": "'.$body.'"}')->char; |
|
134 | 134 | |
135 | 135 | if (\json_last_error() === \JSON_ERROR_NONE) { |
136 | 136 | $body = $result; |
@@ -150,7 +150,7 @@ discard block |
||
150 | 150 | */ |
151 | 151 | private function renderSpecialCharacters(string $body): string |
152 | 152 | { |
153 | - $callee = function (array $matches): string { |
|
153 | + $callee = function(array $matches): string { |
|
154 | 154 | [$char, $code] = [$matches[0], $matches[1]]; |
155 | 155 | |
156 | 156 | switch ($code) { |
@@ -29,6 +29,6 @@ |
||
29 | 29 | */ |
30 | 30 | public function toString(): string |
31 | 31 | { |
32 | - return '(bool)' . $this->getChild(0)->getValue(); |
|
32 | + return '(bool)'.$this->getChild(0)->getValue(); |
|
33 | 33 | } |
34 | 34 | } |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | */ |
22 | 22 | public function toPrimitive(): string |
23 | 23 | { |
24 | - return (string)$this->getChild(0)->getValue(); |
|
24 | + return (string) $this->getChild(0)->getValue(); |
|
25 | 25 | } |
26 | 26 | |
27 | 27 | /** |
@@ -29,6 +29,6 @@ discard block |
||
29 | 29 | */ |
30 | 30 | public function toString(): string |
31 | 31 | { |
32 | - return '(const)' . $this->toPrimitive(); |
|
32 | + return '(const)'.$this->toPrimitive(); |
|
33 | 33 | } |
34 | 34 | } |