(object value, TypeResolver typeResolver)
| 117 | } |
| 118 | |
| 119 | private static bool AnyValueIsRefType(object value, TypeResolver typeResolver) |
| 120 | { |
| 121 | TypeInfo typeInfo = typeResolver.GetTypeInfo(DynamicAnyCodec.ResolveRuntimeType(value)); |
| 122 | return typeInfo.IsRefType; |
| 123 | } |
| 124 | |
| 125 | private static void ReadAnyTypeInfo(ReadContext context) |
| 126 | { |
nothing calls this directly
no test coverage detected