ID of the expression as it appears in the AST
()
| 57 | type Expr interface { |
| 58 | // ID of the expression as it appears in the AST |
| 59 | ID() int64 |
| 60 | |
| 61 | // Kind of the expression node. See ExprKind for the valid enum values. |
| 62 | Kind() ExprKind |
no outgoing calls