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

declare(strict_types=1);

namespace Nsfisis\Waddiwasi\Execution;

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