(Type type)
| 370 | } |
| 371 | |
| 372 | private static string GetTypeFullName(Type type) |
| 373 | { |
| 374 | return (type.Namespace + "." + type.Name).Replace("`1", ""); |
| 375 | } |
| 376 | |
| 377 | public static string GetParamsFromJsMethodForDefinitions(dynamic method, bool isAsync = false) |
| 378 | { |
nothing calls this directly
no outgoing calls
no test coverage detected