aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Execution/ExternVals/Global_.php
blob: 314240055a195eba3fa0806b2e352be4bfd6f359 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

declare(strict_types=1);

namespace Nsfisis\Waddiwasi\Execution\ExternVals;

use Nsfisis\Waddiwasi\Execution\ExternVal;

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