(node)
| 111728 | // Identifiers |
| 111729 | // |
| 111730 | function emitIdentifier(node) { |
| 111731 | var writeText = node.symbol ? writeSymbol : write; |
| 111732 | writeText(getTextOfNode(node, /*includeTrivia*/ false), node.symbol); |
| 111733 | emitList(node, node.typeArguments, 53776 /* ListFormat.TypeParameters */); // Call emitList directly since it could be an array of TypeParameterDeclarations _or_ type arguments |
| 111734 | } |
| 111735 | // |
| 111736 | // Names |
| 111737 | // |
no test coverage detected
searching dependent graphs…