aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/WebAssembly/Execution/Externs/Mem.php
blob: 8924e0074aeac4884a59d9caeeb8c45778372027 (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\WebAssembly\Execution\Externs;

use Nsfisis\Waddiwasi\WebAssembly\Execution\Extern;
use Nsfisis\Waddiwasi\WebAssembly\Execution\MemInst;

final readonly class Mem extends Extern
{
    protected function __construct(
        public MemInst $mem,
    ) {
    }
}