aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/WebAssembly/Structure/Types/Mut.php
blob: 5bf366cea754d6ef31f392bc55bfe65a9ef86b6d (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php

declare(strict_types=1);

namespace Nsfisis\Waddiwasi\WebAssembly\Structure\Types;

enum Mut
{
    case Const;
    case Var;
}