aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Execution/TrapKind.php
blob: ac1c4dd88e7cf0679ef25d996d93fabfc7cfe178 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

declare(strict_types=1);

namespace Nsfisis\Waddiwasi\Execution;

enum TrapKind
{
    case Unknown;
    case OutOfBoundsMemoryAccess;
    case OutOfBoundsTableAccess;
    case UninitializedElement;
}