blob: cc28f26a03ca2bd2d819cb60aa24c4f703287b12 (
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 Global_ extends ExternVal
{
protected function __construct(
public int $addr,
) {
}
}
|