aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/WebAssembly/Structure/Modules/Local.php
blob: 699d7a3e19e5e0f6fae9c1ee39aa76f53ea3581b (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\Structure\Modules;

use Nsfisis\Waddiwasi\WebAssembly\Structure\Types\ValType;

final readonly class Local
{
    public function __construct(
        public ValType $type,
    ) {
    }
}