blob: 240ad2bd65241fdf82e03c4c4397d6e7acda5048 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<?php
declare(strict_types=1);
namespace Nsfisis\Waddiwasi\WebAssembly\Structure\Modules;
use Nsfisis\Waddiwasi\WebAssembly\Structure\Types\GlobalType;
use Nsfisis\Waddiwasi\WebAssembly\Structure\Types\MemType;
use Nsfisis\Waddiwasi\WebAssembly\Structure\Types\TableType;
abstract readonly class ImportDesc
{
final public static function Func(int $func): ImportDescs\Func
{
return new ImportDescs\Func($func);
}
final public static function Table(TableType $table): ImportDescs\Table
{
return new ImportDescs\Table($table);
}
final public static function Mem(MemType $mem): ImportDescs\Mem
{
return new ImportDescs\Mem($mem);
}
final public static function Global(GlobalType $global): ImportDescs\Global_
{
return new ImportDescs\Global_($global);
}
}
|