aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Structure/Instructions/Instrs/Numeric/I32Const.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Structure/Instructions/Instrs/Numeric/I32Const.php')
-rw-r--r--src/Structure/Instructions/Instrs/Numeric/I32Const.php23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/Structure/Instructions/Instrs/Numeric/I32Const.php b/src/Structure/Instructions/Instrs/Numeric/I32Const.php
deleted file mode 100644
index 7ebc418..0000000
--- a/src/Structure/Instructions/Instrs/Numeric/I32Const.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric;
-
-use Nsfisis\Waddiwasi\Structure\Instructions\Instr;
-
-final readonly class I32Const extends Instr
-{
- /**
- * @param U32 $value
- */
- protected function __construct(
- public int $value,
- ) {
- }
-
- public static function opName(): string
- {
- return "i32.const";
- }
-}