blob: 3bfc116ce3deec44211fbf208a075879bdd0a9aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
declare(strict_types=1);
namespace Nsfisis\Waddiwasi\WebAssembly\Execution\Externs;
use Nsfisis\Waddiwasi\WebAssembly\Execution\Extern;
use Nsfisis\Waddiwasi\WebAssembly\Execution\FuncInst;
final readonly class Func extends Extern
{
protected function __construct(
public FuncInst $func,
) {
}
}
|