String returns the value as a formatted string, along with type info.
()
| 54 | |
| 55 | // String returns the value as a formatted string, along with type info. |
| 56 | func (v *Value) String() string { |
| 57 | return v.string(0) |
| 58 | } |
| 59 | |
| 60 | func indentStr(indent int) string { |
| 61 | return strings.Repeat(" ", indent) |