()
| 1827 | return true |
| 1828 | } |
| 1829 | func (m *IncludeNode) StringNegate() string { |
| 1830 | w := NewDefaultWriter() |
| 1831 | m.WriteNegate(w) |
| 1832 | return w.String() |
| 1833 | } |
| 1834 | func (m *IncludeNode) WriteNegate(w DialectWriter) { |
| 1835 | if !m.negated { // double negation |
| 1836 | io.WriteString(w, "NOT") |
nothing calls this directly
no test coverage detected