aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/WebAssembly/Execution/Externs/Global_.php
blob: 562e9345a862d8d2053e2e7f0bde5e01b13f6e33 (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\GlobalInst;

final readonly class Global_ extends Extern
{
    protected function __construct(
        public GlobalInst $global,
    ) {
    }
}