(ctx any, function string, target ast.Expr, args ...ast.Expr)
| 90 | } |
| 91 | |
| 92 | func (p *parserHelper) newReceiverCall(ctx any, function string, target ast.Expr, args ...ast.Expr) ast.Expr { |
| 93 | return p.exprFactory.NewMemberCall(p.newID(ctx), function, target, args...) |
| 94 | } |
| 95 | |
| 96 | func (p *parserHelper) newList(ctx any, elements []ast.Expr, optionals ...int32) ast.Expr { |
| 97 | return p.exprFactory.NewList(p.newID(ctx), elements, optionals) |
no test coverage detected