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

Method WriteIdentity

expr/dialect.go:196–203  ·  view source on GitHub ↗
(id string)

Source from the content-addressed store, hash-verified

194 }
195}
196func (w *keywordDialect) WriteIdentity(id string) {
197 _, isKeyword := w.kw[strings.ToLower(id)]
198 if isKeyword {
199 io.WriteString(w, LiteralQuoteEscape(rune(w.IdentityQuote), id))
200 return
201 }
202 w.defaultDialect.WriteIdentity(id)
203}
204
205func NewFingerPrinter() DialectWriter {
206 return &fingerprintDialect{NewDefaultWriter(), "?"}

Callers

nothing calls this directly

Calls 2

LiteralQuoteEscapeFunction · 0.85
WriteIdentityMethod · 0.65

Tested by

no test coverage detected