aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Execution/StackEntries/Value.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Execution/StackEntries/Value.php')
-rw-r--r--src/Execution/StackEntries/Value.php16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/Execution/StackEntries/Value.php b/src/Execution/StackEntries/Value.php
deleted file mode 100644
index 32244d6..0000000
--- a/src/Execution/StackEntries/Value.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Nsfisis\Waddiwasi\Execution\StackEntries;
-
-use Nsfisis\Waddiwasi\Execution\Ref;
-use Nsfisis\Waddiwasi\Execution\StackEntry;
-
-final class Value extends StackEntry
-{
- public function __construct(
- public readonly int|float|Ref $inner,
- ) {
- }
-}