@@ -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 | { |
@@ -51,7 +51,7 @@ |
||
| 51 | 51 | |
| 52 | 52 | /** |
| 53 | 53 | * @param Context $context |
| 54 | - * @return iterable |
|
| 54 | + * @return \Generator |
|
| 55 | 55 | */ |
| 56 | 56 | public function getOpcodes(Context $context): iterable |
| 57 | 57 | { |
@@ -20,8 +20,6 @@ |
||
| 20 | 20 | use Railt\SDL\Frontend\Context; |
| 21 | 21 | use Railt\SDL\Frontend\IR\Opcode; |
| 22 | 22 | use Railt\SDL\Frontend\IR\Opcode\DefineOpcode; |
| 23 | -use Railt\SDL\Frontend\IR\OpcodeHeap; |
|
| 24 | -use Railt\SDL\Frontend\IR\OpcodeInterface; |
|
| 25 | 23 | |
| 26 | 24 | /** |
| 27 | 25 | * Class DependentTypeDefinitionNode |
@@ -30,7 +30,7 @@ |
||
| 30 | 30 | |
| 31 | 31 | /** |
| 32 | 32 | * @param Context $context |
| 33 | - * @return iterable |
|
| 33 | + * @return \Generator |
|
| 34 | 34 | */ |
| 35 | 35 | public function getOpcodes(Context $context): iterable |
| 36 | 36 | { |
@@ -19,7 +19,6 @@ |
||
| 19 | 19 | use Railt\SDL\Frontend\IR\Opcode\CompareOpcode; |
| 20 | 20 | use Railt\SDL\Frontend\IR\Opcode\CallOpcode; |
| 21 | 21 | use Railt\SDL\Frontend\IR\Opcode\FetchOpcode; |
| 22 | -use Railt\SDL\Frontend\IR\Opcode\DefineOpcode; |
|
| 23 | 22 | |
| 24 | 23 | /** |
| 25 | 24 | * Class ArgumentInvocationNode |
@@ -31,7 +31,7 @@ |
||
| 31 | 31 | |
| 32 | 32 | /** |
| 33 | 33 | * @param Context $context |
| 34 | - * @return iterable |
|
| 34 | + * @return \Generator |
|
| 35 | 35 | */ |
| 36 | 36 | public function getOpcodes(Context $context): iterable |
| 37 | 37 | { |
@@ -17,7 +17,6 @@ |
||
| 17 | 17 | use Railt\SDL\Frontend\AST\ProvidesType; |
| 18 | 18 | use Railt\SDL\Frontend\AST\Support\TypeNameProvider; |
| 19 | 19 | use Railt\SDL\Frontend\Context; |
| 20 | -use Railt\SDL\Frontend\IR\Opcode; |
|
| 21 | 20 | use Railt\SDL\Frontend\IR\Opcode\CallOpcode; |
| 22 | 21 | use Railt\SDL\Frontend\IR\Opcode\CompareOpcode; |
| 23 | 22 | use Railt\SDL\Frontend\IR\Opcode\FetchOpcode; |
@@ -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 | { |
@@ -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; |