LeviLamina
Loading...
Searching...
No Matches
JSVarDefEnum.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5enum class JSVarDefEnum : int {
6 With = 0,
7 Let = 1,
8 Const = 2,
9 FunctionDecl = 3,
10 NewFunctionDecl = 4,
11 Catch = 5,
12 Var = 6,
13};