(w DialectWriter)
| 1816 | return w.String() |
| 1817 | } |
| 1818 | func (m *IncludeNode) WriteDialect(w DialectWriter) { |
| 1819 | if m.negated { |
| 1820 | io.WriteString(w, "NOT ") |
| 1821 | } |
| 1822 | io.WriteString(w, "INCLUDE ") |
| 1823 | m.Identity.WriteDialect(w) |
| 1824 | } |
| 1825 | func (m *IncludeNode) ReverseNegation() bool { |
| 1826 | m.negated = !m.negated |
| 1827 | return true |