TypedLeft returns the BinaryExpr's left expression as a TypedExpr.
()
| 1121 | |
| 1122 | // TypedLeft returns the BinaryExpr's left expression as a TypedExpr. |
| 1123 | func (node *BinaryExpr) TypedLeft() TypedExpr { |
| 1124 | return node.Left.(TypedExpr) |
| 1125 | } |
| 1126 | |
| 1127 | // TypedRight returns the BinaryExpr's right expression as a TypedExpr. |
| 1128 | func (node *BinaryExpr) TypedRight() TypedExpr { |