BinaryExpr represents a binary value expression.
| 1165 | |
| 1166 | // BinaryExpr represents a binary value expression. |
| 1167 | type BinaryExpr struct { |
| 1168 | Operator BinaryOperator |
| 1169 | Left, Right Expr |
| 1170 | // Schema is only set for operators from a particular named schema using the OPERATOR() syntax |
| 1171 | Schema Name |
| 1172 | |
| 1173 | typeAnnotation |
| 1174 | Fn *BinOp |
| 1175 | } |
| 1176 | |
| 1177 | // TypedLeft returns the BinaryExpr's left expression as a TypedExpr. |
| 1178 | func (node *BinaryExpr) TypedLeft() TypedExpr { |
nothing calls this directly
no outgoing calls
no test coverage detected