MCPcopy Create free account
hub / github.com/Hiro420/NikkeTools / LConstantType

Class LConstantType

UnLuac/src/unluac/parse/LConstantType.java:10–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8
9
10public abstract class LConstantType extends BObjectType<LObject> {
11
12 public static LConstantType get(Version.ConstantType type) {
13 switch(type) {
14 case LUA50: return new LConstantType50();
15 case LUA53: return new LConstantType53();
16 case LUA54: return new LConstantType54();
17 default: throw new IllegalStateException();
18 }
19 }
20
21}
22
23class LConstantType50 extends LConstantType {
24

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected