()
| 276 | } |
| 277 | |
| 278 | func (v *Value) IsMissing() bool { |
| 279 | if v == nil { |
| 280 | return true |
| 281 | } |
| 282 | if typ, ok := v.Type().(*TypeError); ok { |
| 283 | return typ.IsMissing(v.Bytes()) |
| 284 | } |
| 285 | return false |
| 286 | } |
| 287 | |
| 288 | func (v Value) IsQuiet() bool { |
| 289 | if typ, ok := v.Type().(*TypeError); ok { |
no test coverage detected