blob: ccf9ad0e5038ac60b1f470f97a3f1b40fc515a33 (
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\Execution\Externs;
use Nsfisis\Waddiwasi\Execution\Extern;
use Nsfisis\Waddiwasi\Execution\GlobalInst;
final readonly class Global_ extends Extern
{
protected function __construct(
public GlobalInst $global,
) {
}
}
|