(sourceFile, ret)
| 108409 | return ret; |
| 108410 | } |
| 108411 | function collectLibs(sourceFile, ret) { |
| 108412 | ts.forEach(sourceFile.libReferenceDirectives, function (ref) { |
| 108413 | var lib = host.getLibFileFromReference(ref); |
| 108414 | if (lib) { |
| 108415 | ret.set(ts.toFileNameLowerCase(ref.fileName), true); |
| 108416 | } |
| 108417 | }); |
| 108418 | return ret; |
| 108419 | } |
| 108420 | function filterBindingPatternInitializers(name) { |
| 108421 | if (name.kind === 79 /* SyntaxKind.Identifier */) { |
| 108422 | return name; |
no test coverage detected