(ReadContext context)
| 123 | } |
| 124 | |
| 125 | private static void ReadAnyTypeInfo(ReadContext context) |
| 126 | { |
| 127 | TypeInfo typeInfo = context.TypeResolver.ReadAnyTypeInfo(context); |
| 128 | context.SetReadTypeInfo(typeof(object), typeInfo); |
| 129 | } |
| 130 | |
| 131 | private object? ReadNonNullDynamicAny(ReadContext context, bool readTypeInfo) |
| 132 | { |
nothing calls this directly
no test coverage detected