aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Execution/Externs/Global_.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Execution/Externs/Global_.php')
-rw-r--r--src/Execution/Externs/Global_.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/Execution/Externs/Global_.php b/src/Execution/Externs/Global_.php
new file mode 100644
index 0000000..ccf9ad0
--- /dev/null
+++ b/src/Execution/Externs/Global_.php
@@ -0,0 +1,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,
+ ) {
+ }
+}