aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Structure/Instructions/Instrs/Variable
diff options
context:
space:
mode:
Diffstat (limited to 'src/Structure/Instructions/Instrs/Variable')
-rw-r--r--src/Structure/Instructions/Instrs/Variable/GlobalGet.php20
-rw-r--r--src/Structure/Instructions/Instrs/Variable/GlobalSet.php20
-rw-r--r--src/Structure/Instructions/Instrs/Variable/LocalGet.php20
-rw-r--r--src/Structure/Instructions/Instrs/Variable/LocalSet.php20
-rw-r--r--src/Structure/Instructions/Instrs/Variable/LocalTee.php20
5 files changed, 0 insertions, 100 deletions
diff --git a/src/Structure/Instructions/Instrs/Variable/GlobalGet.php b/src/Structure/Instructions/Instrs/Variable/GlobalGet.php
deleted file mode 100644
index 8ee9f09..0000000
--- a/src/Structure/Instructions/Instrs/Variable/GlobalGet.php
+++ /dev/null
@@ -1,20 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Variable;
-
-use Nsfisis\Waddiwasi\Structure\Instructions\Instr;
-
-final readonly class GlobalGet extends Instr
-{
- protected function __construct(
- public int $var,
- ) {
- }
-
- public static function opName(): string
- {
- return "global.get";
- }
-}
diff --git a/src/Structure/Instructions/Instrs/Variable/GlobalSet.php b/src/Structure/Instructions/Instrs/Variable/GlobalSet.php
deleted file mode 100644
index 3dbc5ec..0000000
--- a/src/Structure/Instructions/Instrs/Variable/GlobalSet.php
+++ /dev/null
@@ -1,20 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Variable;
-
-use Nsfisis\Waddiwasi\Structure\Instructions\Instr;
-
-final readonly class GlobalSet extends Instr
-{
- protected function __construct(
- public int $var,
- ) {
- }
-
- public static function opName(): string
- {
- return "global.set";
- }
-}
diff --git a/src/Structure/Instructions/Instrs/Variable/LocalGet.php b/src/Structure/Instructions/Instrs/Variable/LocalGet.php
deleted file mode 100644
index c9ba7e7..0000000
--- a/src/Structure/Instructions/Instrs/Variable/LocalGet.php
+++ /dev/null
@@ -1,20 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Variable;
-
-use Nsfisis\Waddiwasi\Structure\Instructions\Instr;
-
-final readonly class LocalGet extends Instr
-{
- protected function __construct(
- public int $var,
- ) {
- }
-
- public static function opName(): string
- {
- return "local.get";
- }
-}
diff --git a/src/Structure/Instructions/Instrs/Variable/LocalSet.php b/src/Structure/Instructions/Instrs/Variable/LocalSet.php
deleted file mode 100644
index eb79baa..0000000
--- a/src/Structure/Instructions/Instrs/Variable/LocalSet.php
+++ /dev/null
@@ -1,20 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Variable;
-
-use Nsfisis\Waddiwasi\Structure\Instructions\Instr;
-
-final readonly class LocalSet extends Instr
-{
- protected function __construct(
- public int $var,
- ) {
- }
-
- public static function opName(): string
- {
- return "local.set";
- }
-}
diff --git a/src/Structure/Instructions/Instrs/Variable/LocalTee.php b/src/Structure/Instructions/Instrs/Variable/LocalTee.php
deleted file mode 100644
index 862b4d2..0000000
--- a/src/Structure/Instructions/Instrs/Variable/LocalTee.php
+++ /dev/null
@@ -1,20 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Variable;
-
-use Nsfisis\Waddiwasi\Structure\Instructions\Instr;
-
-final readonly class LocalTee extends Instr
-{
- protected function __construct(
- public int $var,
- ) {
- }
-
- public static function opName(): string
- {
- return "local.tee";
- }
-}