Dialect creates a new DialectBuilder with the given dialect name.
(name string)
| 3385 | |
| 3386 | // Dialect creates a new DialectBuilder with the given dialect name. |
| 3387 | func Dialect(name string) *DialectBuilder { |
| 3388 | return &DialectBuilder{name} |
| 3389 | } |
| 3390 | |
| 3391 | // String builds a dialect-aware expression string from the given callback. |
| 3392 | func (d *DialectBuilder) String(f func(*Builder)) string { |
no outgoing calls
searching dependent graphs…