You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
self.decoder.log?("Check if nil at path \"\(decoder.codingPath.path)\"")
473
+
474
+
// check if key exists
475
+
guardlet item =tryself.value(for: key)else{
476
+
throwDecodingError.keyNotFound(key,DecodingError.Context(codingPath:self.decoder.codingPath, debugDescription:"No value associated with key \(key.stringValue)."))
decoder.log?("Will read value at path \"\(decoder.codingPath.path)\"")
593
601
guardlet item =tryself.value(for: key)else{
594
602
throwDecodingError.valueNotFound(type,DecodingError.Context(codingPath:self.decoder.codingPath, debugDescription:"Expected \(type) value but found null instead."))
0 commit comments