(LuaCSFunction csFunction)
| 1507 | } |
| 1508 | |
| 1509 | public static bool IsStaticPInvokeCSFunction(LuaCSFunction csFunction) |
| 1510 | { |
| 1511 | #if UNITY_WSA && !UNITY_EDITOR |
| 1512 | return csFunction.GetMethodInfo().IsStatic && csFunction.GetMethodInfo().GetCustomAttribute<MonoPInvokeCallbackAttribute>() != null; |
| 1513 | #else |
| 1514 | return csFunction.Method.IsStatic && Attribute.IsDefined(csFunction.Method, typeof(MonoPInvokeCallbackAttribute)); |
| 1515 | #endif |
| 1516 | } |
| 1517 | |
| 1518 | public static bool IsPublic(Type type) |
| 1519 | { |
no test coverage detected