(w DialectWriter)
| 1573 | m.writeToString(w, true) |
| 1574 | } |
| 1575 | func (m *TriNode) WriteDialect(w DialectWriter) { |
| 1576 | m.writeToString(w, false) |
| 1577 | } |
| 1578 | func (m *TriNode) writeToString(w DialectWriter, negate bool) { |
| 1579 | m.Args[0].WriteDialect(w) |
| 1580 | io.WriteString(w, " ") |
nothing calls this directly
no test coverage detected