(ctx any, operand ast.Expr, field string)
| 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) |
| 86 | } |
| 87 | |
| 88 | func (p *parserHelper) newGlobalCall(ctx any, function string, args ...ast.Expr) ast.Expr { |
| 89 | return p.exprFactory.NewCall(p.newID(ctx), function, args...) |
nothing calls this directly
no test coverage detected