| 8 | |
| 9 | |
| 10 | public 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 | |
| 23 | class LConstantType50 extends LConstantType { |
| 24 |
nothing calls this directly
no outgoing calls
no test coverage detected