diff options
Diffstat (limited to 'src/Execution/FuncInst.php')
| -rw-r--r-- | src/Execution/FuncInst.php | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/Execution/FuncInst.php b/src/Execution/FuncInst.php deleted file mode 100644 index 901fa81..0000000 --- a/src/Execution/FuncInst.php +++ /dev/null @@ -1,21 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Execution; - -use Nsfisis\Waddiwasi\Structure\Modules\Func; -use Nsfisis\Waddiwasi\Structure\Types\FuncType; - -abstract readonly class FuncInst -{ - final public static function Wasm(FuncType $type, ModuleInst $module, Func $code): FuncInsts\Wasm - { - return new FuncInsts\Wasm($type, $module, $code); - } - - final public static function Host(FuncType $type, callable $callback): FuncInsts\Host - { - return new FuncInsts\Host($type, $callback); - } -} |
