@@ -14,7 +14,6 @@ |
||
14 | 14 | use Psr\Log\LoggerInterface; |
15 | 15 | use Railt\Io\File; |
16 | 16 | use Railt\Io\Readable; |
17 | -use Railt\Reflection\Contracts\Document; |
|
18 | 17 | use Railt\Reflection\Contracts\Document as DocumentInterface; |
19 | 18 | use Railt\Reflection\Reflection; |
20 | 19 | use Railt\SDL\Compiler\Dictionary; |
@@ -37,7 +37,7 @@ |
||
37 | 37 | /** |
38 | 38 | * @param ContextInterface $ctx |
39 | 39 | * @param RuleInterface $rule |
40 | - * @return mixed|\Generator|void |
|
40 | + * @return \Generator |
|
41 | 41 | */ |
42 | 42 | public function reduce(ContextInterface $ctx, RuleInterface $rule) |
43 | 43 | { |
@@ -41,8 +41,8 @@ |
||
41 | 41 | |
42 | 42 | /** |
43 | 43 | * @param ContextInterface $ctx |
44 | - * @param RuleInterface|AstValueInterface $rule |
|
45 | - * @return mixed|Value |
|
44 | + * @param RuleInterface $rule |
|
45 | + * @return Value|null |
|
46 | 46 | */ |
47 | 47 | public function reduce(ContextInterface $ctx, RuleInterface $rule) |
48 | 48 | { |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | } |
94 | 94 | |
95 | 95 | /** |
96 | - * @param string|iterable|TypeNameInterface $name |
|
96 | + * @param TypeNameInterface $name |
|
97 | 97 | * @param TypeInterface|null $of |
98 | 98 | * @return TypeInterface|static |
99 | 99 | */ |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | |
144 | 144 | /** |
145 | 145 | * @param TypeInterface $type |
146 | - * @return \Generator|TypeInterface[] |
|
146 | + * @return \Generator |
|
147 | 147 | */ |
148 | 148 | private function getInheritanceSequence(TypeInterface $type): \Generator |
149 | 149 | { |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | |
47 | 47 | /** |
48 | 48 | * @param Readable $file |
49 | - * @return iterable |
|
49 | + * @return \Generator |
|
50 | 50 | * @throws SyntaxException |
51 | 51 | * @throws \Railt\Io\Exception\ExternalFileException |
52 | 52 | */ |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | |
58 | 58 | /** |
59 | 59 | * @param Readable $readable |
60 | - * @return iterable |
|
60 | + * @return \Generator |
|
61 | 61 | * @throws SyntaxException |
62 | 62 | * @throws \Railt\Io\Exception\ExternalFileException |
63 | 63 | */ |
@@ -13,16 +13,9 @@ |
||
13 | 13 | use Psr\Log\LoggerAwareTrait; |
14 | 14 | use Psr\Log\LoggerInterface; |
15 | 15 | use Railt\Io\Readable; |
16 | -use Railt\Parser\Ast\RuleInterface; |
|
17 | -use Railt\Parser\Exception\UnexpectedTokenException; |
|
18 | -use Railt\Parser\Exception\UnrecognizedTokenException; |
|
19 | 16 | use Railt\SDL\Exception\SyntaxException; |
20 | 17 | use Railt\SDL\Frontend\Builder; |
21 | 18 | use Railt\SDL\Frontend\Context\ContextInterface; |
22 | -use Railt\SDL\Frontend\Context\GlobalContext; |
|
23 | -use Railt\SDL\Frontend\Parser; |
|
24 | -use Railt\SDL\IR\DefinitionValueObject; |
|
25 | -use Railt\SDL\IR\SymbolTable; |
|
26 | 19 | |
27 | 20 | /** |
28 | 21 | * Class Frontend |
@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | |
118 | 118 | /** |
119 | 119 | * @param Readable $readable |
120 | - * @return array[]|iterable |
|
120 | + * @return \Generator |
|
121 | 121 | * @throws SyntaxException |
122 | 122 | * @throws \Railt\Io\Exception\ExternalFileException |
123 | 123 | */ |
@@ -150,8 +150,8 @@ discard block |
||
150 | 150 | |
151 | 151 | /** |
152 | 152 | * @param Readable $readable |
153 | - * @param iterable $ast |
|
154 | - * @return iterable|array[] |
|
153 | + * @param RuleInterface $ast |
|
154 | + * @return \Generator |
|
155 | 155 | * @throws \Railt\Io\Exception\ExternalFileException |
156 | 156 | */ |
157 | 157 | public function buildAst(Readable $readable, iterable $ast): iterable |
@@ -11,7 +11,6 @@ |
||
11 | 11 | |
12 | 12 | use Railt\Io\Readable; |
13 | 13 | use Railt\Parser\Ast\RuleInterface; |
14 | -use Railt\Parser\Exception\UnexpectedTokenException; |
|
15 | 14 | use Railt\Parser\Exception\UnrecognizedTokenException; |
16 | 15 | use Railt\SDL\Exception\CompilerException; |
17 | 16 | use Railt\SDL\Exception\InternalException; |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | /** |
39 | 39 | * @param ContextInterface $ctx |
40 | 40 | * @param RuleInterface $rule |
41 | - * @return \Generator|Definition |
|
41 | + * @return \Generator |
|
42 | 42 | * @throws InvalidArgumentException |
43 | 43 | */ |
44 | 44 | public function reduce(ContextInterface $ctx, RuleInterface $rule): \Generator |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | |
61 | 61 | /** |
62 | 62 | * @param RuleInterface $argument |
63 | - * @return \Generator|TypeNameInterface |
|
63 | + * @return \Generator |
|
64 | 64 | */ |
65 | 65 | private function getArgumentName(RuleInterface $argument): \Generator |
66 | 66 | { |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | |
71 | 71 | /** |
72 | 72 | * @param RuleInterface $argument |
73 | - * @return \Generator|TypeNameInterface |
|
73 | + * @return \Generator |
|
74 | 74 | */ |
75 | 75 | private function getArgumentValue(RuleInterface $argument): \Generator |
76 | 76 | { |
@@ -37,7 +37,7 @@ |
||
37 | 37 | /** |
38 | 38 | * @param ContextInterface $ctx |
39 | 39 | * @param RuleInterface $rule |
40 | - * @return \Generator|mixed |
|
40 | + * @return \Generator |
|
41 | 41 | */ |
42 | 42 | public function reduce(ContextInterface $ctx, RuleInterface $rule) |
43 | 43 | { |
@@ -15,9 +15,7 @@ |
||
15 | 15 | use Railt\SDL\Frontend\Deferred\Deferred; |
16 | 16 | use Railt\SDL\Frontend\Deferred\DeferredInterface; |
17 | 17 | use Railt\SDL\Frontend\Deferred\NamedDeferred; |
18 | -use Railt\SDL\IR\SymbolTable\Value; |
|
19 | 18 | use Railt\SDL\IR\SymbolTable\VarSymbolInterface; |
20 | -use Railt\SDL\IR\Type; |
|
21 | 19 | use Railt\SDL\IR\Type\TypeNameInterface; |
22 | 20 | |
23 | 21 | /** |
@@ -39,7 +39,7 @@ |
||
39 | 39 | /** |
40 | 40 | * @param ContextInterface $ctx |
41 | 41 | * @param RuleInterface $rule |
42 | - * @return \Generator|\Closure |
|
42 | + * @return \Generator |
|
43 | 43 | */ |
44 | 44 | public function reduce(ContextInterface $ctx, RuleInterface $rule): \Generator |
45 | 45 | { |