(Version.FunctionType type)
| 13 | abstract public class LFunctionType extends BObjectType<LFunction> { |
| 14 | |
| 15 | public static LFunctionType get(Version.FunctionType type) { |
| 16 | switch(type) { |
| 17 | case LUA50: return new LFunctionType50(); |
| 18 | case LUA51: return new LFunctionType51(); |
| 19 | case LUA52: return new LFunctionType52(); |
| 20 | case LUA53: return new LFunctionType53(); |
| 21 | case LUA54: return new LFunctionType54(); |
| 22 | default: throw new IllegalStateException(); |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | protected static class LFunctionParseState { |
| 27 |
no outgoing calls
no test coverage detected