aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Execution/TableInst.php
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2024-02-26 13:21:22 +0900
committernsfisis <nsfisis@gmail.com>2024-03-03 15:27:26 +0900
commit996259e6a1a04f91179d2b83cc19e3fbb371cd33 (patch)
tree14ccabf37cc909c8c61899ffb84429fdeb8dfce0 /src/Execution/TableInst.php
parent8a789bffe72e93ae24ea39648018e5fecf94c7fa (diff)
downloadphp-waddiwasi-996259e6a1a04f91179d2b83cc19e3fbb371cd33.tar.gz
php-waddiwasi-996259e6a1a04f91179d2b83cc19e3fbb371cd33.tar.zst
php-waddiwasi-996259e6a1a04f91179d2b83cc19e3fbb371cd33.zip
feat: implement some of instructions
Diffstat (limited to 'src/Execution/TableInst.php')
-rw-r--r--src/Execution/TableInst.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Execution/TableInst.php b/src/Execution/TableInst.php
index 5a6766d..0075acd 100644
--- a/src/Execution/TableInst.php
+++ b/src/Execution/TableInst.php
@@ -6,13 +6,13 @@ namespace Nsfisis\Waddiwasi\Execution;
use Nsfisis\Waddiwasi\Structure\Types\TableType;
-final readonly class TableInst
+final class TableInst
{
/**
* @param list<Ref> $elem
*/
public function __construct(
- public TableType $type,
+ public readonly TableType $type,
public array $elem,
) {
}