NewSelect implements the ExprHelper interface method.
(operand ast.Expr, field string)
| 496 | |
| 497 | // NewSelect implements the ExprHelper interface method. |
| 498 | func (e *exprHelper) NewSelect(operand ast.Expr, field string) ast.Expr { |
| 499 | return e.exprFactory.NewSelect(e.nextMacroID(), operand, field) |
| 500 | } |
| 501 | |
| 502 | // OffsetLocation implements the ExprHelper interface method. |
| 503 | func (e *exprHelper) OffsetLocation(exprID int64) common.Location { |
nothing calls this directly
no test coverage detected