(Type objectType)
| 19 | public class DAPJSONTypeLookahead : JsonConverter |
| 20 | { |
| 21 | public override bool CanConvert(Type objectType) |
| 22 | { |
| 23 | return objectType.Equals(typeof(DAPMessageTypeHint)); |
| 24 | } |
| 25 | |
| 26 | public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer) |
| 27 | { |
nothing calls this directly
no outgoing calls
no test coverage detected