aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Structure/Instructions/Instrs/Control/BrTable.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Structure/Instructions/Instrs/Control/BrTable.php')
-rw-r--r--src/Structure/Instructions/Instrs/Control/BrTable.php24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/Structure/Instructions/Instrs/Control/BrTable.php b/src/Structure/Instructions/Instrs/Control/BrTable.php
deleted file mode 100644
index a9c37e8..0000000
--- a/src/Structure/Instructions/Instrs/Control/BrTable.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 BrTable extends Instr
-{
- /**
- * @param list<int> $labelTable
- */
- protected function __construct(
- public array $labelTable,
- public int $defaultLabel,
- ) {
- }
-
- public static function opName(): string
- {
- return "br_table";
- }
-}