aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/WebAssembly/BinaryFormat/Internal/SectionId.php
blob: e085c37a749c6c3074ad8ac387dbe4e42a98ee78 (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\WebAssembly\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;
}