(i)
| 162215 | } |
| 162216 | } |
| 162217 | function moduleSpecifierFromImport(i) { |
| 162218 | return (i.kind === 266 /* SyntaxKind.ImportDeclaration */ ? i.moduleSpecifier |
| 162219 | : i.kind === 265 /* SyntaxKind.ImportEqualsDeclaration */ ? i.moduleReference.expression |
| 162220 | : i.initializer.arguments[0]); |
| 162221 | } |
| 162222 | function forEachImportInStatement(statement, cb) { |
| 162223 | if (ts.isImportDeclaration(statement)) { |
| 162224 | if (ts.isStringLiteral(statement.moduleSpecifier)) |
no outgoing calls
no test coverage detected