aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/WebAssembly/Execution/ExternVals/Mem.php
blob: 1b76d3fd02df0483e02191dbba134c49211bdf0c (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\Execution\ExternVals;

use Nsfisis\Waddiwasi\WebAssembly\Execution\ExternVal;

final readonly class Mem extends ExternVal
{
    protected function __construct(
        public int $addr,
    ) {
    }
}