(ctx any, operand ast.Expr, field string)
| 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) |
| 82 | } |
| 83 | |
| 84 | func (p *parserHelper) newPresenceTest(ctx any, operand ast.Expr, field string) ast.Expr { |
| 85 | return p.exprFactory.NewPresenceTest(p.newID(ctx), operand, field) |
no test coverage detected