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