blob: bd1f119d649e5d3b091ae81c9fb9a6a7bf786959 (
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\Execution\Externs;
use Nsfisis\Waddiwasi\Execution\Extern;
use Nsfisis\Waddiwasi\Execution\MemInst;
final readonly class Mem extends Extern
{
protected function __construct(
public MemInst $mem,
) {
}
}
|