aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/BinaryFormat/SectionId.php
blob: f11063f6c8cbc7e3873ebfab759e581b7dd97797 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php

declare(strict_types=1);

namespace Nsfisis\Waddiwasi\BinaryFormat;

enum SectionId: int
{
    case Custom = 0;
    case Type = 1;
    case Import = 2;
    case Func = 3;
    case Table = 4;
    case Mem = 5;
    case Global = 6;
    case Export = 7;
    case Start = 8;
    case Elem = 9;
    case Code = 10;
    case Data = 11;
    case DataCount = 12;
}