()
| 1420 | return w.String() |
| 1421 | } |
| 1422 | func (m *BooleanNode) StringNegate() string { |
| 1423 | w := NewDefaultWriter() |
| 1424 | m.WriteNegate(w) |
| 1425 | return w.String() |
| 1426 | } |
| 1427 | func (m *BooleanNode) WriteNegate(w DialectWriter) { |
| 1428 | m.writeToString(w, "NOT ") |
| 1429 | } |
nothing calls this directly
no test coverage detected