MCPcopy Create free account
hub / github.com/araddon/qlbridge / WriteDialect

Method WriteDialect

expr/node.go:1818–1824  ·  view source on GitHub ↗
(w DialectWriter)

Source from the content-addressed store, hash-verified

1816 return w.String()
1817}
1818func (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}
1825func (m *IncludeNode) ReverseNegation() bool {
1826 m.negated = !m.negated
1827 return true

Callers 1

StringMethod · 0.95

Calls 1

WriteDialectMethod · 0.65

Tested by

no test coverage detected