aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Execution/ExternVals/Table.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Execution/ExternVals/Table.php')
-rw-r--r--src/Execution/ExternVals/Table.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/Execution/ExternVals/Table.php b/src/Execution/ExternVals/Table.php
new file mode 100644
index 0000000..cd36bb2
--- /dev/null
+++ b/src/Execution/ExternVals/Table.php
@@ -0,0 +1,16 @@
+<?php
+
+declare(strict_types=1);
+
+namespace Nsfisis\Waddiwasi\Execution\ExternVals;
+
+use Nsfisis\Waddiwasi\Execution\ExternVal;
+use Nsfisis\Waddiwasi\Execution\TableAddr;
+
+final readonly class Table extends ExternVal
+{
+ protected function __construct(
+ public TableAddr $addr,
+ ) {
+ }
+}