(node *ast.BlockNode)
| 1626 | } |
| 1627 | |
| 1628 | func (p *Printer) emitFunctionBodyNode(node *ast.BlockNode) { |
| 1629 | if node == nil { |
| 1630 | p.writeTrailingSemicolon() |
| 1631 | return |
| 1632 | } |
| 1633 | |
| 1634 | p.writeSpace() |
| 1635 | p.emitFunctionBody(node.AsBlock()) |
| 1636 | } |
| 1637 | |
| 1638 | // |
| 1639 | // Type Members |
no test coverage detected