(p *PrettyCfg)
| 1055 | } |
| 1056 | |
| 1057 | func (node *Array) doc(p *PrettyCfg) pretty.Doc { |
| 1058 | return p.bracketKeyword("ARRAY", "[", p.Doc(&node.Exprs), "]", "") |
| 1059 | } |
| 1060 | |
| 1061 | func (node *Tuple) doc(p *PrettyCfg) pretty.Doc { |
| 1062 | exprDoc := p.Doc(&node.Exprs) |
nothing calls this directly
no test coverage detected