(ctx any, name string)
| 74 | } |
| 75 | |
| 76 | func (p *parserHelper) newIdent(ctx any, name string) ast.Expr { |
| 77 | return p.exprFactory.NewIdent(p.newID(ctx), name) |
| 78 | } |
| 79 | |
| 80 | func (p *parserHelper) newSelect(ctx any, operand ast.Expr, field string) ast.Expr { |
| 81 | return p.exprFactory.NewSelect(p.newID(ctx), operand, field) |
no test coverage detected