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

declare(strict_types=1);

namespace Nsfisis\Waddiwasi\BinaryFormat\Internal;

/**
 * @internal
 */
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;
}