(val super.Value)
| 95 | } |
| 96 | |
| 97 | func (f *Formatter) Format(val super.Value) string { |
| 98 | f.builder.Reset() |
| 99 | f.formatValueAndDecorate(val.Type(), val.Bytes()) |
| 100 | return f.builder.String() |
| 101 | } |
| 102 | |
| 103 | func (f *Formatter) hasName(typ super.Type) bool { |
| 104 | return f.nameOf(typ) != "" |
no test coverage detected