()
| 151 | } |
| 152 | |
| 153 | func (s *valueStringTree) getRunes() []rune { |
| 154 | s.flattenToLeft() |
| 155 | return s.left.getRunes() |
| 156 | } |
| 157 | |
| 158 | func (s *valueStringTree) getGoString() string { |
| 159 | s.flattenToLeft() |
nothing calls this directly
no test coverage detected