(RealStatePtr L, T v)
| 904 | } |
| 905 | |
| 906 | public void PushByType<T>(RealStatePtr L, T v) |
| 907 | { |
| 908 | Action<RealStatePtr, T> push_func; |
| 909 | if (tryGetPushFuncByType(typeof(T), out push_func)) |
| 910 | { |
| 911 | push_func(L, v); |
| 912 | } |
| 913 | else |
| 914 | { |
| 915 | PushAny(L, v); |
| 916 | } |
| 917 | } |
| 918 | |
| 919 | #if GENERIC_SHARING |
| 920 | public T GetByType<T>(RealStatePtr L, int index) |
no outgoing calls
no test coverage detected