(uint typeId)
| 72 | } |
| 73 | |
| 74 | private static bool HasInlineTypeInfo(uint typeId) |
| 75 | { |
| 76 | if (typeId == (uint)TypeId.Unknown) |
| 77 | { |
| 78 | return true; |
| 79 | } |
| 80 | |
| 81 | return typeId <= (uint)TypeId.Float64Array && |
| 82 | TypeResolver.NeedToWriteTypeInfoForField((TypeId)typeId); |
| 83 | } |
| 84 | |
| 85 | private static object? ReadInlineTypedValue(ReadContext context, RefMode refMode) |
| 86 | { |
nothing calls this directly
no test coverage detected