(
TypeInfo typeInfo,
ReadContext context,
TypeMeta? typeMeta)
| 983 | } |
| 984 | |
| 985 | private object? ReadRegisteredValue( |
| 986 | TypeInfo typeInfo, |
| 987 | ReadContext context, |
| 988 | TypeMeta? typeMeta) |
| 989 | { |
| 990 | if (typeMeta is not null) |
| 991 | { |
| 992 | typeMeta.EnsureAssignedFieldIds(TypeMetaFields(typeInfo, context.TrackRef)); |
| 993 | context.StoreTypeMeta(typeInfo.Type, typeMeta); |
| 994 | } |
| 995 | |
| 996 | return ReadObject(typeInfo, context, RefMode.None, false); |
| 997 | } |
| 998 | |
| 999 | internal TypeInfo ReadAnyTypeInfo(ReadContext context) |
| 1000 | { |
nothing calls this directly
no test coverage detected