LeviLamina
Loading...
Searching...
No Matches
ParseContext.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Scripting::QuickJS {
6
7enum class ParseContext : uchar {
8 FunctionArgument = 0,
9 ReturnType = 1,
10 ArrayElement = 2,
11 DictionaryElement = 3,
12 ClosureReturnType = 4,
13 InterfaceProperty = 5,
14 Invalid = 6,
15};
16
17}