(node)
| 16883 | } |
| 16884 | ts.getSingleInitializerOfVariableStatementOrPropertyDeclaration = getSingleInitializerOfVariableStatementOrPropertyDeclaration; |
| 16885 | function getSingleVariableOfVariableStatement(node) { |
| 16886 | return ts.isVariableStatement(node) ? ts.firstOrUndefined(node.declarationList.declarations) : undefined; |
| 16887 | } |
| 16888 | ts.getSingleVariableOfVariableStatement = getSingleVariableOfVariableStatement; |
| 16889 | function getNestedModuleDeclaration(node) { |
| 16890 | return ts.isModuleDeclaration(node) && |
no outgoing calls
no test coverage detected