Indirect representation of long strings. It consists of two parts, left and right, concatenation of which is the whole string.
| 118 | // Indirect representation of long strings. |
| 119 | // It consists of two parts, left and right, concatenation of which is the whole string. |
| 120 | type valueStringTree struct { |
| 121 | valueBase |
| 122 | left, right valueString |
| 123 | len int |
| 124 | } |
| 125 | |
| 126 | func buildFullString(s valueString, buf *[]rune) { |
| 127 | switch s := s.(type) { |
nothing calls this directly
no outgoing calls
no test coverage detected