blob: 5e5b5adcbcf89c84e6de8c8aba159c37fc6d5bb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php
declare(strict_types=1);
namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Parametric;
use Nsfisis\Waddiwasi\Structure\Instructions\Instr;
use Nsfisis\Waddiwasi\Structure\Types\ValType;
final readonly class Select extends Instr
{
/**
* @param list<ValType> $types
*/
public function __construct(
public array $types,
) {
}
}
|