diff options
Diffstat (limited to 'src/WebAssembly/Execution/DataInst.php')
| -rw-r--r-- | src/WebAssembly/Execution/DataInst.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/WebAssembly/Execution/DataInst.php b/src/WebAssembly/Execution/DataInst.php new file mode 100644 index 0000000..f6918c6 --- /dev/null +++ b/src/WebAssembly/Execution/DataInst.php @@ -0,0 +1,16 @@ +<?php + +declare(strict_types=1); + +namespace Nsfisis\Waddiwasi\WebAssembly\Execution; + +final readonly class DataInst +{ + /** + * @param list<Byte> $data + */ + public function __construct( + public array $data, + ) { + } +} |
