(n node.Node)
| 1411 | } |
| 1412 | |
| 1413 | func (p *Printer) printExprClosureUse(n node.Node) { |
| 1414 | nn := n.(*expr.ClosureUse) |
| 1415 | p.printFreeFloating(nn, freefloating.Start) |
| 1416 | io.WriteString(p.w, "use") |
| 1417 | p.printFreeFloating(nn, freefloating.Use) |
| 1418 | io.WriteString(p.w, "(") |
| 1419 | p.joinPrint(",", nn.Uses) |
| 1420 | p.printFreeFloating(nn, freefloating.LexicalVarList) |
| 1421 | io.WriteString(p.w, ")") |
| 1422 | |
| 1423 | p.printFreeFloating(nn, freefloating.End) |
| 1424 | } |
| 1425 | |
| 1426 | func (p *Printer) printExprClosure(n node.Node) { |
| 1427 | nn := n.(*expr.Closure) |
no test coverage detected