(node *ast.Expression)
| 2544 | } |
| 2545 | |
| 2546 | func (p *Printer) emitArgument(node *ast.Expression) { |
| 2547 | p.emitExpression(node, ast.OperatorPrecedenceSpread) |
| 2548 | } |
| 2549 | |
| 2550 | func (p *Printer) emitCallee(callee *ast.Expression, parentNode *ast.Node) { |
| 2551 | if p.shouldEmitIndirectCall(parentNode) { |
nothing calls this directly
no test coverage detected