TypedLeft returns the ComparisonExpr's left expression as a TypedExpr.
()
| 532 | |
| 533 | // TypedLeft returns the ComparisonExpr's left expression as a TypedExpr. |
| 534 | func (node *ComparisonExpr) TypedLeft() TypedExpr { |
| 535 | return node.Left.(TypedExpr) |
| 536 | } |
| 537 | |
| 538 | // TypedRight returns the ComparisonExpr's right expression as a TypedExpr. |
| 539 | func (node *ComparisonExpr) TypedRight() TypedExpr { |