(w DialectWriter)
| 791 | return fmt.Sprintf("%q", m.Text) |
| 792 | } |
| 793 | func (m *StringNode) WriteDialect(w DialectWriter) { |
| 794 | w.WriteLiteral(m.Text) |
| 795 | } |
| 796 | func (m *StringNode) Validate() error { return nil } |
| 797 | func (m *StringNode) NodePb() *NodePb { |
| 798 | n := &StringNodePb{} |
nothing calls this directly
no test coverage detected