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