(ctx any, function string, args ...ast.Expr)
| 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...) |
| 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...) |
no test coverage detected