(negate: boolean, forcePositive?: true)
| 928 | } |
| 929 | |
| 930 | function getNot(negate: boolean, forcePositive?: true) { |
| 931 | return forcePositive === true ? sql`` : sql.raw(negate ? 'NOT' : ``) |
| 932 | } |
| 933 | |
| 934 | function maybeAddSeparator(node: SyntaxNode, context: Context) { |
| 935 | const separator = andOrNothing(node.node) |
no outgoing calls
no test coverage detected