BinaryExpr represents a binary value expression.
| 1064 | |
| 1065 | // BinaryExpr represents a binary value expression. |
| 1066 | type BinaryExpr struct { |
| 1067 | Operator treebin.BinaryOperator |
| 1068 | Left, Right Expr |
| 1069 | |
| 1070 | typeAnnotation |
| 1071 | Op *BinOp |
| 1072 | } |
| 1073 | |
| 1074 | // TypedLeft returns the BinaryExpr's left expression as a TypedExpr. |
| 1075 | func (node *BinaryExpr) TypedLeft() TypedExpr { |
nothing calls this directly
no outgoing calls
no test coverage detected