()
| 286 | } |
| 287 | |
| 288 | func (v Value) IsQuiet() bool { |
| 289 | if typ, ok := v.Type().(*TypeError); ok { |
| 290 | return typ.IsQuiet(v.Bytes()) |
| 291 | } |
| 292 | return false |
| 293 | } |
| 294 | |
| 295 | // Equal reports whether p and v have the same type and the same BSUP |
| 296 | // representation. |