(typ super.Type, bytes scode.Bytes)
| 113 | } |
| 114 | |
| 115 | func formatValue(typ super.Type, bytes scode.Bytes) string { |
| 116 | // Avoid SUP decoration. |
| 117 | if typ.ID() < super.IDTypeComplex { |
| 118 | return sup.FormatPrimitive(super.TypeUnder(typ), bytes) |
| 119 | } |
| 120 | return sup.FormatValue(super.NewValue(typ, bytes)) |
| 121 | } |
| 122 | |
| 123 | func fieldNamesEqual(a, b []super.Field) bool { |
| 124 | return slices.EqualFunc(a, b, func(a, b super.Field) bool { |
no test coverage detected