(n *pg.BitString)
| 610 | } |
| 611 | |
| 612 | func convertBitString(n *pg.BitString) *ast.BitString { |
| 613 | if n == nil { |
| 614 | return nil |
| 615 | } |
| 616 | return &ast.BitString{ |
| 617 | Str: n.Bsval, |
| 618 | } |
| 619 | } |
| 620 | |
| 621 | func convertBoolExpr(n *pg.BoolExpr) *ast.BoolExpr { |
| 622 | if n == nil { |
no outgoing calls
no test coverage detected