blob: 4decc1e6214c0322fb7e008251cce41f3451b979 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
declare(strict_types=1);
namespace Nsfisis\Waddiwasi\WebAssembly\Validation;
use Nsfisis\Waddiwasi\WebAssembly\Structure\Types\ValType;
final readonly class ControlFrame
{
/**
* @param list<ValType> $startTypes
* @param list<ValType> $endTypes
*/
public function __construct(
public string $opcode,
public array $startTypes,
public array $endTypes,
public int $height,
public bool $unreachable,
) {
}
}
|