BinaryExpr represents a binary value expression.
| 1112 | |
| 1113 | // BinaryExpr represents a binary value expression. |
| 1114 | type BinaryExpr struct { |
| 1115 | Operator BinaryOperator |
| 1116 | Left, Right Expr |
| 1117 | |
| 1118 | typeAnnotation |
| 1119 | fn *BinOp |
| 1120 | } |
| 1121 | |
| 1122 | // TypedLeft returns the BinaryExpr's left expression as a TypedExpr. |
| 1123 | func (node *BinaryExpr) TypedLeft() TypedExpr { |
nothing calls this directly
no outgoing calls
no test coverage detected