(RealStatePtr L, int idx)
| 812 | } |
| 813 | |
| 814 | public Type GetTypeOf(RealStatePtr L, int idx) |
| 815 | { |
| 816 | Type type = null; |
| 817 | int type_id = LuaAPI.xlua_gettypeid(L, idx); |
| 818 | if (type_id != -1) |
| 819 | { |
| 820 | typeMap.TryGetValue(type_id, out type); |
| 821 | } |
| 822 | return type; |
| 823 | } |
| 824 | |
| 825 | public bool Assignable<T>(RealStatePtr L, int index) |
| 826 | { |
no test coverage detected