aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Structure/Types/ValType.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Structure/Types/ValType.php')
-rw-r--r--src/Structure/Types/ValType.php25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/Structure/Types/ValType.php b/src/Structure/Types/ValType.php
deleted file mode 100644
index bf072e2..0000000
--- a/src/Structure/Types/ValType.php
+++ /dev/null
@@ -1,25 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Nsfisis\Waddiwasi\Structure\Types;
-
-abstract readonly class ValType
-{
- final public static function NumType(NumType $type): ValTypes\NumType
- {
- return new ValTypes\NumType($type);
- }
-
- final public static function VecType(VecType $type): ValTypes\VecType
- {
- return new ValTypes\VecType($type);
- }
-
- final public static function RefType(RefType $type): ValTypes\RefType
- {
- return new ValTypes\RefType($type);
- }
-
- abstract public function equals(ValType $other): bool;
-}