aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Structure/Instructions/Instrs/Variable/GlobalGet.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Structure/Instructions/Instrs/Variable/GlobalGet.php')
-rw-r--r--src/Structure/Instructions/Instrs/Variable/GlobalGet.php20
1 files changed, 0 insertions, 20 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";
- }
-}