aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Structure/Instructions
diff options
context:
space:
mode:
Diffstat (limited to 'src/Structure/Instructions')
-rw-r--r--src/Structure/Instructions/Expr.php23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/Structure/Instructions/Expr.php b/src/Structure/Instructions/Expr.php
deleted file mode 100644
index ceefcc0..0000000
--- a/src/Structure/Instructions/Expr.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Nsfisis\Waddiwasi\Structure\Instructions;
-
-final readonly class Expr
-{
- /**
- * @var non-empty-list<Instr>
- */
- public array $instrs;
-
- /**
- * @param list<Instr> $instrs
- */
- public function __construct(
- array $instrs,
- ) {
- $instrs[] = Instr::End();
- $this->instrs = $instrs;
- }
-}