diff options
Diffstat (limited to 'src/Structure/Instructions/Instrs/Control/Block.php')
| -rw-r--r-- | src/Structure/Instructions/Instrs/Control/Block.php | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/src/Structure/Instructions/Instrs/Control/Block.php b/src/Structure/Instructions/Instrs/Control/Block.php deleted file mode 100644 index 29e68fd..0000000 --- a/src/Structure/Instructions/Instrs/Control/Block.php +++ /dev/null @@ -1,24 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Control; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class Block extends Instr -{ - /** - * @param list<Instr> $body - */ - protected function __construct( - public BlockType $type, - public array $body, - ) { - } - - public static function opName(): string - { - return "block"; - } -} |
