()
| 1213 | } |
| 1214 | func (m *BinaryNode) NodeType() string { return "Binary" } |
| 1215 | func (m *BinaryNode) String() string { |
| 1216 | w := NewDefaultWriter() |
| 1217 | m.WriteDialect(w) |
| 1218 | return w.String() |
| 1219 | } |
| 1220 | func (m *BinaryNode) WriteDialect(w DialectWriter) { |
| 1221 | if m.negated { |
| 1222 | m.writeToString(w, "NOT ") |
nothing calls this directly
no test coverage detected