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