()
| 1565 | return w.String() |
| 1566 | } |
| 1567 | func (m *TriNode) StringNegate() string { |
| 1568 | w := NewDefaultWriter() |
| 1569 | m.writeToString(w, true) |
| 1570 | return w.String() |
| 1571 | } |
| 1572 | func (m *TriNode) WriteNegate(w DialectWriter) { |
| 1573 | m.writeToString(w, true) |
| 1574 | } |
nothing calls this directly
no test coverage detected