ParenExpr represents a parenthesized boolean expression.
| 2019 | |
| 2020 | // ParenExpr represents a parenthesized boolean expression. |
| 2021 | type ParenExpr struct { |
| 2022 | Expr Expr |
| 2023 | } |
| 2024 | |
| 2025 | // Format formats the node. |
| 2026 | func (node *ParenExpr) Format(buf *nodeBuffer) { |
nothing calls this directly
no outgoing calls
no test coverage detected