(node *ast.CallSignatureDeclaration)
| 1739 | } |
| 1740 | |
| 1741 | func (p *Printer) emitCallSignature(node *ast.CallSignatureDeclaration) { |
| 1742 | state := p.enterNode(node.AsNode()) |
| 1743 | indented := p.shouldEmitIndented(node.AsNode()) |
| 1744 | p.increaseIndentIf(indented) |
| 1745 | p.pushNameGenerationScope(node.AsNode()) |
| 1746 | p.emitSignature(node.AsNode()) |
| 1747 | p.writeTrailingSemicolon() |
| 1748 | p.popNameGenerationScope(node.AsNode()) |
| 1749 | p.decreaseIndentIf(indented) |
| 1750 | p.exitNode(node.AsNode(), state) |
| 1751 | } |
| 1752 | |
| 1753 | func (p *Printer) emitConstructSignature(node *ast.ConstructSignatureDeclaration) { |
| 1754 | state := p.enterNode(node.AsNode()) |
no test coverage detected