(p *PrettyCfg)
| 1355 | } |
| 1356 | |
| 1357 | func (node *IfExpr) doc(p *PrettyCfg) pretty.Doc { |
| 1358 | return p.bracketKeyword("IF", "(", |
| 1359 | p.commaSeparated( |
| 1360 | p.Doc(node.Cond), |
| 1361 | p.Doc(node.True), |
| 1362 | p.Doc(node.Else), |
| 1363 | ), ")", "") |
| 1364 | } |
| 1365 | |
| 1366 | func (node *NullIfExpr) doc(p *PrettyCfg) pretty.Doc { |
| 1367 | return p.bracketKeyword("NULLIF", "(", |
nothing calls this directly
no test coverage detected