(w DialectWriter)
| 1832 | return w.String() |
| 1833 | } |
| 1834 | func (m *IncludeNode) WriteNegate(w DialectWriter) { |
| 1835 | if !m.negated { // double negation |
| 1836 | io.WriteString(w, "NOT") |
| 1837 | } |
| 1838 | io.WriteString(w, " INCLUDE ") |
| 1839 | m.Identity.WriteDialect(w) |
| 1840 | } |
| 1841 | func (m *IncludeNode) Validate() error { return nil } |
| 1842 | func (m *IncludeNode) Negated() bool { return m.negated } |
| 1843 | func (m *IncludeNode) Collapse() Node { return m } |
no test coverage detected