(p *PrettyCfg)
| 2309 | } |
| 2310 | |
| 2311 | func (node *NotExpr) doc(p *PrettyCfg) pretty.Doc { |
| 2312 | return p.nestUnder( |
| 2313 | pretty.Keyword("NOT"), |
| 2314 | p.exprDocWithParen(node.Expr), |
| 2315 | ) |
| 2316 | } |
| 2317 | |
| 2318 | func (node *IsNullExpr) doc(p *PrettyCfg) pretty.Doc { |
| 2319 | return pretty.ConcatSpace( |
nothing calls this directly
no test coverage detected