aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Execution/Externs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Execution/Externs')
-rw-r--r--src/Execution/Externs/Func.php16
-rw-r--r--src/Execution/Externs/Global_.php16
-rw-r--r--src/Execution/Externs/Mem.php16
-rw-r--r--src/Execution/Externs/Table.php16
4 files changed, 0 insertions, 64 deletions
diff --git a/src/Execution/Externs/Func.php b/src/Execution/Externs/Func.php
deleted file mode 100644
index 124309c..0000000
--- a/src/Execution/Externs/Func.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Nsfisis\Waddiwasi\Execution\Externs;
-
-use Nsfisis\Waddiwasi\Execution\Extern;
-use Nsfisis\Waddiwasi\Execution\FuncInst;
-
-final readonly class Func extends Extern
-{
- protected function __construct(
- public FuncInst $func,
- ) {
- }
-}
diff --git a/src/Execution/Externs/Global_.php b/src/Execution/Externs/Global_.php
deleted file mode 100644
index ccf9ad0..0000000
--- a/src/Execution/Externs/Global_.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Nsfisis\Waddiwasi\Execution\Externs;
-
-use Nsfisis\Waddiwasi\Execution\Extern;
-use Nsfisis\Waddiwasi\Execution\GlobalInst;
-
-final readonly class Global_ extends Extern
-{
- protected function __construct(
- public GlobalInst $global,
- ) {
- }
-}
diff --git a/src/Execution/Externs/Mem.php b/src/Execution/Externs/Mem.php
deleted file mode 100644
index bd1f119..0000000
--- a/src/Execution/Externs/Mem.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Nsfisis\Waddiwasi\Execution\Externs;
-
-use Nsfisis\Waddiwasi\Execution\Extern;
-use Nsfisis\Waddiwasi\Execution\MemInst;
-
-final readonly class Mem extends Extern
-{
- protected function __construct(
- public MemInst $mem,
- ) {
- }
-}
diff --git a/src/Execution/Externs/Table.php b/src/Execution/Externs/Table.php
deleted file mode 100644
index fde1e32..0000000
--- a/src/Execution/Externs/Table.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Nsfisis\Waddiwasi\Execution\Externs;
-
-use Nsfisis\Waddiwasi\Execution\Extern;
-use Nsfisis\Waddiwasi\Execution\TableInst;
-
-final readonly class Table extends Extern
-{
- protected function __construct(
- public TableInst $table,
- ) {
- }
-}