aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Execution/TrapKind.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Execution/TrapKind.php')
-rw-r--r--src/Execution/TrapKind.php19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/Execution/TrapKind.php b/src/Execution/TrapKind.php
deleted file mode 100644
index a92b973..0000000
--- a/src/Execution/TrapKind.php
+++ /dev/null
@@ -1,19 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Nsfisis\Waddiwasi\Execution;
-
-enum TrapKind
-{
- case Unknown;
- case Unreachable;
- case OutOfBoundsMemoryAccess;
- case OutOfBoundsTableAccess;
- case UninitializedElement;
- case IndirectCallTypeMismatch;
- case UndefinedElement;
- case DivideByZero;
- case IntegerOverflow;
- case InvalidConversionToInteger;
-}