OrExpr represents an OR expression.
| 1989 | |
| 1990 | // OrExpr represents an OR expression. |
| 1991 | type OrExpr struct { |
| 1992 | Left, Right Expr |
| 1993 | } |
| 1994 | |
| 1995 | // Format formats the node. |
| 1996 | func (node *OrExpr) Format(buf *nodeBuffer) { |
nothing calls this directly
no outgoing calls
no test coverage detected