gitextract_cj1rr_k6/ ├── .c8rc.json ├── .devcontainer/ │ └── devcontainer.json ├── .dprint.jsonc ├── .editorconfig ├── .git-blame-ignore-revs ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ ├── config.yml │ │ ├── feature_request.yml │ │ ├── lib_change.yml │ │ ├── module_resolution.yml │ │ ├── other.yml │ │ └── types-not-correct-in-with-callback.md │ ├── codecov.yml │ ├── codeql/ │ │ └── codeql-configuration.yml │ ├── copilot-instructions.md │ ├── dependabot.yml │ ├── pr_owners.txt │ ├── pull_request_template.md │ └── workflows/ │ ├── accept-baselines-fix-lints.yaml │ ├── ci.yml │ ├── close-issues.yml │ ├── codeql.yml │ ├── copilot-setup-steps.yml │ ├── create-cherry-pick-pr.yml │ ├── insiders.yaml │ ├── lkg.yml │ ├── new-release-branch.yaml │ ├── nightly.yaml │ ├── pr-modified-files.yml │ ├── release-branch-artifact.yaml │ ├── scorecard.yml │ ├── set-version.yaml │ ├── sync-branch.yaml │ ├── sync-wiki.yml │ ├── twoslash-repros.yaml │ └── update-package-lock.yaml ├── .gitignore ├── .gulp.js ├── .vscode/ │ ├── extensions.json │ ├── launch.template.json │ ├── settings.template.json │ └── tasks.json ├── AGENTS.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Herebyfile.mjs ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── ThirdPartyNoticeText.txt ├── azure-pipelines.release-publish.yml ├── azure-pipelines.release.yml ├── bin/ │ ├── tsc │ └── tsserver ├── eslint.config.mjs ├── knip.jsonc ├── package.json ├── scripts/ │ ├── CopyrightNotice.txt │ ├── addPackageJsonGitHead.mjs │ ├── browserIntegrationTest.mjs │ ├── build/ │ │ ├── findUpDir.mjs │ │ ├── localization.mjs │ │ ├── options.mjs │ │ ├── projects.mjs │ │ ├── tests.mjs │ │ └── utils.mjs │ ├── checkModuleFormat.mjs │ ├── checkPackageSize.mjs │ ├── configurePrerelease.mjs │ ├── dtsBundler.mjs │ ├── errorCheck.mjs │ ├── eslint/ │ │ ├── rules/ │ │ │ ├── argument-trivia.cjs │ │ │ ├── debug-assert.cjs │ │ │ ├── js-extensions.cjs │ │ │ ├── jsdoc-format.cjs │ │ │ ├── no-array-mutating-method-expressions.cjs │ │ │ ├── no-direct-import.cjs │ │ │ ├── no-in-operator.cjs │ │ │ ├── no-keywords.cjs │ │ │ ├── only-arrow-functions.cjs │ │ │ └── utils.cjs │ │ └── tests/ │ │ ├── argument-trivia.test.cjs │ │ ├── debug-assert.test.cjs │ │ ├── js-extensions.cjs │ │ ├── no-in-operator.test.cjs │ │ ├── no-keywords.test.cjs │ │ ├── only-arrow-functions.test.cjs │ │ └── support/ │ │ └── RuleTester.cjs │ ├── failed-tests.cjs │ ├── failed-tests.d.cts │ ├── find-unused-diganostic-messages.mjs │ ├── generateLocalizedDiagnosticMessages.mjs │ ├── hooks/ │ │ ├── post-checkout │ │ └── pre-commit │ ├── link-hooks.mjs │ ├── post-vsts-artifact-comment.mjs │ ├── processDiagnosticMessages.mjs │ ├── produceLKG.mjs │ ├── regenerate-unicode-identifier-parts.mjs │ ├── run-sequence.mjs │ └── tsconfig.json ├── src/ │ ├── compiler/ │ │ ├── _namespaces/ │ │ │ ├── ts.moduleSpecifiers.ts │ │ │ ├── ts.performance.ts │ │ │ └── ts.ts │ │ ├── binder.ts │ │ ├── builder.ts │ │ ├── builderPublic.ts │ │ ├── builderState.ts │ │ ├── builderStatePublic.ts │ │ ├── checker.ts │ │ ├── commandLineParser.ts │ │ ├── core.ts │ │ ├── corePublic.ts │ │ ├── debug.ts │ │ ├── diagnosticMessages.json │ │ ├── emitter.ts │ │ ├── executeCommandLine.ts │ │ ├── expressionToTypeNode.ts │ │ ├── factory/ │ │ │ ├── baseNodeFactory.ts │ │ │ ├── emitHelpers.ts │ │ │ ├── emitNode.ts │ │ │ ├── nodeChildren.ts │ │ │ ├── nodeConverters.ts │ │ │ ├── nodeFactory.ts │ │ │ ├── nodeTests.ts │ │ │ ├── parenthesizerRules.ts │ │ │ ├── utilities.ts │ │ │ └── utilitiesPublic.ts │ │ ├── moduleNameResolver.ts │ │ ├── moduleSpecifiers.ts │ │ ├── parser.ts │ │ ├── path.ts │ │ ├── performance.ts │ │ ├── performanceCore.ts │ │ ├── program.ts │ │ ├── programDiagnostics.ts │ │ ├── resolutionCache.ts │ │ ├── scanner.ts │ │ ├── semver.ts │ │ ├── sourcemap.ts │ │ ├── symbolWalker.ts │ │ ├── sys.ts │ │ ├── tracing.ts │ │ ├── transformer.ts │ │ ├── transformers/ │ │ │ ├── classFields.ts │ │ │ ├── classThis.ts │ │ │ ├── declarations/ │ │ │ │ └── diagnostics.ts │ │ │ ├── declarations.ts │ │ │ ├── destructuring.ts │ │ │ ├── es2015.ts │ │ │ ├── es2016.ts │ │ │ ├── es2017.ts │ │ │ ├── es2018.ts │ │ │ ├── es2019.ts │ │ │ ├── es2020.ts │ │ │ ├── es2021.ts │ │ │ ├── esDecorators.ts │ │ │ ├── esnext.ts │ │ │ ├── generators.ts │ │ │ ├── jsx.ts │ │ │ ├── legacyDecorators.ts │ │ │ ├── module/ │ │ │ │ ├── esnextAnd2015.ts │ │ │ │ ├── impliedNodeFormatDependent.ts │ │ │ │ ├── module.ts │ │ │ │ └── system.ts │ │ │ ├── namedEvaluation.ts │ │ │ ├── taggedTemplate.ts │ │ │ ├── ts.ts │ │ │ ├── typeSerializer.ts │ │ │ └── utilities.ts │ │ ├── tsbuild.ts │ │ ├── tsbuildPublic.ts │ │ ├── tsconfig.json │ │ ├── types.ts │ │ ├── utilities.ts │ │ ├── utilitiesPublic.ts │ │ ├── visitorPublic.ts │ │ ├── watch.ts │ │ ├── watchPublic.ts │ │ └── watchUtilities.ts │ ├── deprecatedCompat/ │ │ ├── _namespaces/ │ │ │ └── ts.ts │ │ ├── deprecate.ts │ │ ├── deprecations.ts │ │ └── tsconfig.json │ ├── harness/ │ │ ├── _namespaces/ │ │ │ ├── FourSlash.ts │ │ │ ├── FourSlashInterface.ts │ │ │ ├── Harness.LanguageService.ts │ │ │ ├── Harness.SourceMapRecorder.ts │ │ │ ├── Harness.ts │ │ │ ├── Utils.ts │ │ │ ├── collections.ts │ │ │ ├── compiler.ts │ │ │ ├── documents.ts │ │ │ ├── evaluator.ts │ │ │ ├── fakes.ts │ │ │ ├── ts.server.ts │ │ │ ├── ts.ts │ │ │ ├── vfs.ts │ │ │ └── vpath.ts │ │ ├── client.ts │ │ ├── collectionsImpl.ts │ │ ├── compilerImpl.ts │ │ ├── documentsUtil.ts │ │ ├── evaluatorImpl.ts │ │ ├── fakesHosts.ts │ │ ├── findUpDir.ts │ │ ├── fourslashImpl.ts │ │ ├── fourslashInterfaceImpl.ts │ │ ├── harnessGlobals.ts │ │ ├── harnessIO.ts │ │ ├── harnessLanguageService.ts │ │ ├── harnessUtils.ts │ │ ├── incrementalUtils.ts │ │ ├── projectServiceStateLogger.ts │ │ ├── runnerbase.ts │ │ ├── sourceMapRecorder.ts │ │ ├── tsconfig.json │ │ ├── tsserverLogger.ts │ │ ├── typeWriter.ts │ │ ├── util.ts │ │ ├── vfsUtil.ts │ │ ├── vpathUtil.ts │ │ └── watchUtils.ts │ ├── jsTyping/ │ │ ├── _namespaces/ │ │ │ ├── ts.JsTyping.ts │ │ │ ├── ts.server.ts │ │ │ └── ts.ts │ │ ├── jsTyping.ts │ │ ├── shared.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── lib/ │ │ ├── README.md │ │ ├── decorators.d.ts │ │ ├── decorators.legacy.d.ts │ │ ├── dom.asynciterable.generated.d.ts │ │ ├── dom.generated.d.ts │ │ ├── dom.iterable.generated.d.ts │ │ ├── es2015.collection.d.ts │ │ ├── es2015.core.d.ts │ │ ├── es2015.d.ts │ │ ├── es2015.full.d.ts │ │ ├── es2015.generator.d.ts │ │ ├── es2015.iterable.d.ts │ │ ├── es2015.promise.d.ts │ │ ├── es2015.proxy.d.ts │ │ ├── es2015.reflect.d.ts │ │ ├── es2015.symbol.d.ts │ │ ├── es2015.symbol.wellknown.d.ts │ │ ├── es2016.array.include.d.ts │ │ ├── es2016.d.ts │ │ ├── es2016.full.d.ts │ │ ├── es2016.intl.d.ts │ │ ├── es2017.arraybuffer.d.ts │ │ ├── es2017.d.ts │ │ ├── es2017.date.d.ts │ │ ├── es2017.full.d.ts │ │ ├── es2017.intl.d.ts │ │ ├── es2017.object.d.ts │ │ ├── es2017.sharedmemory.d.ts │ │ ├── es2017.string.d.ts │ │ ├── es2017.typedarrays.d.ts │ │ ├── es2018.asyncgenerator.d.ts │ │ ├── es2018.asynciterable.d.ts │ │ ├── es2018.d.ts │ │ ├── es2018.full.d.ts │ │ ├── es2018.intl.d.ts │ │ ├── es2018.promise.d.ts │ │ ├── es2018.regexp.d.ts │ │ ├── es2019.array.d.ts │ │ ├── es2019.d.ts │ │ ├── es2019.full.d.ts │ │ ├── es2019.intl.d.ts │ │ ├── es2019.object.d.ts │ │ ├── es2019.string.d.ts │ │ ├── es2019.symbol.d.ts │ │ ├── es2020.bigint.d.ts │ │ ├── es2020.d.ts │ │ ├── es2020.date.d.ts │ │ ├── es2020.full.d.ts │ │ ├── es2020.intl.d.ts │ │ ├── es2020.number.d.ts │ │ ├── es2020.promise.d.ts │ │ ├── es2020.sharedmemory.d.ts │ │ ├── es2020.string.d.ts │ │ ├── es2020.symbol.wellknown.d.ts │ │ ├── es2021.d.ts │ │ ├── es2021.full.d.ts │ │ ├── es2021.intl.d.ts │ │ ├── es2021.promise.d.ts │ │ ├── es2021.string.d.ts │ │ ├── es2021.weakref.d.ts │ │ ├── es2022.array.d.ts │ │ ├── es2022.d.ts │ │ ├── es2022.error.d.ts │ │ ├── es2022.full.d.ts │ │ ├── es2022.intl.d.ts │ │ ├── es2022.object.d.ts │ │ ├── es2022.regexp.d.ts │ │ ├── es2022.string.d.ts │ │ ├── es2023.array.d.ts │ │ ├── es2023.collection.d.ts │ │ ├── es2023.d.ts │ │ ├── es2023.full.d.ts │ │ ├── es2023.intl.d.ts │ │ ├── es2024.arraybuffer.d.ts │ │ ├── es2024.collection.d.ts │ │ ├── es2024.d.ts │ │ ├── es2024.full.d.ts │ │ ├── es2024.object.d.ts │ │ ├── es2024.promise.d.ts │ │ ├── es2024.regexp.d.ts │ │ ├── es2024.sharedmemory.d.ts │ │ ├── es2024.string.d.ts │ │ ├── es2025.collection.d.ts │ │ ├── es2025.d.ts │ │ ├── es2025.float16.d.ts │ │ ├── es2025.full.d.ts │ │ ├── es2025.intl.d.ts │ │ ├── es2025.iterator.d.ts │ │ ├── es2025.promise.d.ts │ │ ├── es2025.regexp.d.ts │ │ ├── es5.d.ts │ │ ├── es5.full.d.ts │ │ ├── esnext.array.d.ts │ │ ├── esnext.collection.d.ts │ │ ├── esnext.d.ts │ │ ├── esnext.date.d.ts │ │ ├── esnext.decorators.d.ts │ │ ├── esnext.disposable.d.ts │ │ ├── esnext.error.d.ts │ │ ├── esnext.full.d.ts │ │ ├── esnext.intl.d.ts │ │ ├── esnext.sharedmemory.d.ts │ │ ├── esnext.temporal.d.ts │ │ ├── esnext.typedarrays.d.ts │ │ ├── libs.json │ │ ├── scripthost.d.ts │ │ ├── webworker.asynciterable.generated.d.ts │ │ ├── webworker.generated.d.ts │ │ ├── webworker.importscripts.d.ts │ │ └── webworker.iterable.generated.d.ts │ ├── loc/ │ │ └── lcl/ │ │ ├── chs/ │ │ │ └── diagnosticMessages/ │ │ │ └── diagnosticMessages.generated.json.lcl │ │ ├── cht/ │ │ │ └── diagnosticMessages/ │ │ │ └── diagnosticMessages.generated.json.lcl │ │ ├── csy/ │ │ │ └── diagnosticMessages/ │ │ │ └── diagnosticMessages.generated.json.lcl │ │ ├── deu/ │ │ │ └── diagnosticMessages/ │ │ │ └── diagnosticMessages.generated.json.lcl │ │ ├── esn/ │ │ │ └── diagnosticMessages/ │ │ │ └── diagnosticMessages.generated.json.lcl │ │ ├── fra/ │ │ │ └── diagnosticMessages/ │ │ │ └── diagnosticMessages.generated.json.lcl │ │ ├── ita/ │ │ │ └── diagnosticMessages/ │ │ │ └── diagnosticMessages.generated.json.lcl │ │ ├── jpn/ │ │ │ └── diagnosticMessages/ │ │ │ └── diagnosticMessages.generated.json.lcl │ │ ├── kor/ │ │ │ └── diagnosticMessages/ │ │ │ └── diagnosticMessages.generated.json.lcl │ │ ├── plk/ │ │ │ └── diagnosticMessages/ │ │ │ └── diagnosticMessages.generated.json.lcl │ │ ├── ptb/ │ │ │ └── diagnosticMessages/ │ │ │ └── diagnosticMessages.generated.json.lcl │ │ ├── rus/ │ │ │ └── diagnosticMessages/ │ │ │ └── diagnosticMessages.generated.json.lcl │ │ └── trk/ │ │ └── diagnosticMessages/ │ │ └── diagnosticMessages.generated.json.lcl │ ├── server/ │ │ ├── _namespaces/ │ │ │ ├── ts.server.protocol.ts │ │ │ ├── ts.server.ts │ │ │ └── ts.ts │ │ ├── editorServices.ts │ │ ├── moduleSpecifierCache.ts │ │ ├── packageJsonCache.ts │ │ ├── project.ts │ │ ├── protocol.ts │ │ ├── scriptInfo.ts │ │ ├── scriptVersionCache.ts │ │ ├── session.ts │ │ ├── tsconfig.json │ │ ├── types.ts │ │ ├── typesMap.json │ │ ├── typingInstallerAdapter.ts │ │ ├── utilities.ts │ │ └── utilitiesPublic.ts │ ├── services/ │ │ ├── _namespaces/ │ │ │ ├── ts.BreakpointResolver.ts │ │ │ ├── ts.CallHierarchy.ts │ │ │ ├── ts.Completions.StringCompletions.ts │ │ │ ├── ts.Completions.ts │ │ │ ├── ts.FindAllReferences.ts │ │ │ ├── ts.GoToDefinition.ts │ │ │ ├── ts.InlayHints.ts │ │ │ ├── ts.JsDoc.ts │ │ │ ├── ts.MapCode.ts │ │ │ ├── ts.NavigateTo.ts │ │ │ ├── ts.NavigationBar.ts │ │ │ ├── ts.OrganizeImports.ts │ │ │ ├── ts.OutliningElementsCollector.ts │ │ │ ├── ts.PasteEdits.ts │ │ │ ├── ts.Rename.ts │ │ │ ├── ts.SignatureHelp.ts │ │ │ ├── ts.SmartSelectionRange.ts │ │ │ ├── ts.SymbolDisplay.ts │ │ │ ├── ts.classifier.ts │ │ │ ├── ts.classifier.v2020.ts │ │ │ ├── ts.codefix.ts │ │ │ ├── ts.formatting.ts │ │ │ ├── ts.preparePasteEdits.ts │ │ │ ├── ts.refactor.addOrRemoveBracesToArrowFunction.ts │ │ │ ├── ts.refactor.convertArrowFunctionOrFunctionExpression.ts │ │ │ ├── ts.refactor.convertParamsToDestructuredObject.ts │ │ │ ├── ts.refactor.convertStringOrTemplateLiteral.ts │ │ │ ├── ts.refactor.convertToOptionalChainExpression.ts │ │ │ ├── ts.refactor.extractSymbol.ts │ │ │ ├── ts.refactor.generateGetAccessorAndSetAccessor.ts │ │ │ ├── ts.refactor.inferFunctionReturnType.ts │ │ │ ├── ts.refactor.ts │ │ │ ├── ts.textChanges.ts │ │ │ └── ts.ts │ │ ├── breakpoints.ts │ │ ├── callHierarchy.ts │ │ ├── classifier.ts │ │ ├── classifier2020.ts │ │ ├── codeFixProvider.ts │ │ ├── codefixes/ │ │ │ ├── addConvertToUnknownForNonOverlappingTypes.ts │ │ │ ├── addEmptyExportDeclaration.ts │ │ │ ├── addMissingAsync.ts │ │ │ ├── addMissingAwait.ts │ │ │ ├── addMissingConst.ts │ │ │ ├── addMissingDeclareProperty.ts │ │ │ ├── addMissingInvocationForDecorator.ts │ │ │ ├── addMissingResolutionModeImportAttribute.ts │ │ │ ├── addNameToNamelessParameter.ts │ │ │ ├── addOptionalPropertyUndefined.ts │ │ │ ├── annotateWithTypeFromJSDoc.ts │ │ │ ├── convertConstToLet.ts │ │ │ ├── convertFunctionToEs6Class.ts │ │ │ ├── convertLiteralTypeToMappedType.ts │ │ │ ├── convertToAsyncFunction.ts │ │ │ ├── convertToEsModule.ts │ │ │ ├── convertToMappedObjectType.ts │ │ │ ├── convertToTypeOnlyExport.ts │ │ │ ├── convertToTypeOnlyImport.ts │ │ │ ├── convertTypedefToType.ts │ │ │ ├── correctQualifiedNameToIndexedAccessType.ts │ │ │ ├── disableJsDiagnostics.ts │ │ │ ├── fixAddMissingConstraint.ts │ │ │ ├── fixAddMissingMember.ts │ │ │ ├── fixAddMissingNewOperator.ts │ │ │ ├── fixAddMissingParam.ts │ │ │ ├── fixAddModuleReferTypeMissingTypeof.ts │ │ │ ├── fixAddVoidToPromise.ts │ │ │ ├── fixAwaitInSyncFunction.ts │ │ │ ├── fixCannotFindModule.ts │ │ │ ├── fixClassDoesntImplementInheritedAbstractMember.ts │ │ │ ├── fixClassIncorrectlyImplementsInterface.ts │ │ │ ├── fixClassSuperMustPrecedeThisAccess.ts │ │ │ ├── fixConstructorForDerivedNeedSuperCall.ts │ │ │ ├── fixEnableJsxFlag.ts │ │ │ ├── fixExpectedComma.ts │ │ │ ├── fixExtendsInterfaceBecomesImplements.ts │ │ │ ├── fixForgottenThisPropertyAccess.ts │ │ │ ├── fixImplicitThis.ts │ │ │ ├── fixImportNonExportedMember.ts │ │ │ ├── fixIncorrectNamedTupleSyntax.ts │ │ │ ├── fixInvalidImportSyntax.ts │ │ │ ├── fixInvalidJsxCharacters.ts │ │ │ ├── fixJSDocTypes.ts │ │ │ ├── fixMissingCallParentheses.ts │ │ │ ├── fixMissingTypeAnnotationOnExports.ts │ │ │ ├── fixModuleAndTargetOptions.ts │ │ │ ├── fixNaNEquality.ts │ │ │ ├── fixNoPropertyAccessFromIndexSignature.ts │ │ │ ├── fixOverrideModifier.ts │ │ │ ├── fixPropertyAssignment.ts │ │ │ ├── fixPropertyOverrideAccessor.ts │ │ │ ├── fixReturnTypeInAsyncFunction.ts │ │ │ ├── fixSpelling.ts │ │ │ ├── fixStrictClassInitialization.ts │ │ │ ├── fixUnmatchedParameter.ts │ │ │ ├── fixUnreachableCode.ts │ │ │ ├── fixUnreferenceableDecoratorMetadata.ts │ │ │ ├── fixUnusedIdentifier.ts │ │ │ ├── fixUnusedLabel.ts │ │ │ ├── generateAccessors.ts │ │ │ ├── helpers.ts │ │ │ ├── importFixes.ts │ │ │ ├── inferFromUsage.ts │ │ │ ├── removeAccidentalCallParentheses.ts │ │ │ ├── removeUnnecessaryAwait.ts │ │ │ ├── requireInTs.ts │ │ │ ├── returnValueCorrect.ts │ │ │ ├── splitTypeOnlyImport.ts │ │ │ ├── useBigintLiteral.ts │ │ │ ├── useDefaultImport.ts │ │ │ ├── wrapDecoratorInParentheses.ts │ │ │ └── wrapJsxInFragment.ts │ │ ├── completions.ts │ │ ├── documentHighlights.ts │ │ ├── documentRegistry.ts │ │ ├── exportInfoMap.ts │ │ ├── findAllReferences.ts │ │ ├── formatting/ │ │ │ ├── README.md │ │ │ ├── formatting.ts │ │ │ ├── formattingContext.ts │ │ │ ├── formattingScanner.ts │ │ │ ├── rule.ts │ │ │ ├── rules.ts │ │ │ ├── rulesMap.ts │ │ │ └── smartIndenter.ts │ │ ├── getEditsForFileRename.ts │ │ ├── goToDefinition.ts │ │ ├── importTracker.ts │ │ ├── inlayHints.ts │ │ ├── jsDoc.ts │ │ ├── mapCode.ts │ │ ├── navigateTo.ts │ │ ├── navigationBar.ts │ │ ├── organizeImports.ts │ │ ├── outliningElementsCollector.ts │ │ ├── pasteEdits.ts │ │ ├── patternMatcher.ts │ │ ├── preProcess.ts │ │ ├── preparePasteEdits.ts │ │ ├── refactorProvider.ts │ │ ├── refactors/ │ │ │ ├── addOrRemoveBracesToArrowFunction.ts │ │ │ ├── convertArrowFunctionOrFunctionExpression.ts │ │ │ ├── convertExport.ts │ │ │ ├── convertImport.ts │ │ │ ├── convertOverloadListToSingleSignature.ts │ │ │ ├── convertParamsToDestructuredObject.ts │ │ │ ├── convertStringOrTemplateLiteral.ts │ │ │ ├── convertToOptionalChainExpression.ts │ │ │ ├── extractSymbol.ts │ │ │ ├── extractType.ts │ │ │ ├── generateGetAccessorAndSetAccessor.ts │ │ │ ├── helpers.ts │ │ │ ├── inferFunctionReturnType.ts │ │ │ ├── inlineVariable.ts │ │ │ ├── moveToFile.ts │ │ │ └── moveToNewFile.ts │ │ ├── rename.ts │ │ ├── services.ts │ │ ├── signatureHelp.ts │ │ ├── smartSelection.ts │ │ ├── sourcemaps.ts │ │ ├── stringCompletions.ts │ │ ├── suggestionDiagnostics.ts │ │ ├── symbolDisplay.ts │ │ ├── textChanges.ts │ │ ├── transform.ts │ │ ├── transpile.ts │ │ ├── tsconfig.json │ │ ├── types.ts │ │ └── utilities.ts │ ├── testRunner/ │ │ ├── _namespaces/ │ │ │ ├── FourSlash.ts │ │ │ ├── Harness.Parallel.Host.ts │ │ │ ├── Harness.Parallel.Worker.ts │ │ │ ├── Harness.Parallel.ts │ │ │ ├── Harness.ts │ │ │ ├── Utils.ts │ │ │ ├── documents.ts │ │ │ ├── evaluator.ts │ │ │ ├── fakes.ts │ │ │ ├── project.ts │ │ │ ├── ts.server.ts │ │ │ ├── ts.ts │ │ │ ├── vfs.ts │ │ │ └── vpath.ts │ │ ├── compilerRunner.ts │ │ ├── fourslashRunner.ts │ │ ├── parallel/ │ │ │ ├── host.ts │ │ │ ├── shared.ts │ │ │ └── worker.ts │ │ ├── projectsRunner.ts │ │ ├── runner.ts │ │ ├── tests.ts │ │ ├── transpileRunner.ts │ │ ├── tsconfig.json │ │ └── unittests/ │ │ ├── asserts.ts │ │ ├── base64.ts │ │ ├── builder.ts │ │ ├── canWatch.ts │ │ ├── comments.ts │ │ ├── compilerCore.ts │ │ ├── config/ │ │ │ ├── commandLineParsing.ts │ │ │ ├── configurationExtension.ts │ │ │ ├── convertCompilerOptionsFromJson.ts │ │ │ ├── convertTypeAcquisitionFromJson.ts │ │ │ ├── helpers.ts │ │ │ ├── initializeTSConfig.ts │ │ │ ├── matchFiles.ts │ │ │ ├── showConfig.ts │ │ │ ├── tsconfigParsing.ts │ │ │ └── tsconfigParsingWatchOptions.ts │ │ ├── convertToBase64.ts │ │ ├── customTransforms.ts │ │ ├── debugDeprecation.ts │ │ ├── diagnosticCollection.ts │ │ ├── evaluation/ │ │ │ ├── arraySpread.ts │ │ │ ├── asyncArrow.ts │ │ │ ├── asyncGenerator.ts │ │ │ ├── autoAccessors.ts │ │ │ ├── awaitUsingDeclarations.ts │ │ │ ├── awaiter.ts │ │ │ ├── constEnum.ts │ │ │ ├── destructuring.ts │ │ │ ├── esDecorators.ts │ │ │ ├── esDecoratorsMetadata.ts │ │ │ ├── externalModules.ts │ │ │ ├── forAwaitOf.ts │ │ │ ├── forOf.ts │ │ │ ├── generator.ts │ │ │ ├── objectRest.ts │ │ │ ├── optionalCall.ts │ │ │ ├── superInStaticInitializer.ts │ │ │ ├── templateLiteral.ts │ │ │ ├── updateExpressionInModule.ts │ │ │ └── usingDeclarations.ts │ │ ├── factory.ts │ │ ├── helpers/ │ │ │ ├── alternateResult.ts │ │ │ ├── baseline.ts │ │ │ ├── contents.ts │ │ │ ├── declarationEmit.ts │ │ │ ├── demoProjectReferences.ts │ │ │ ├── extends.ts │ │ │ ├── forceConsistentCasingInFileNames.ts │ │ │ ├── libraryResolution.ts │ │ │ ├── monorepoSymlinkedSiblingPackages.ts │ │ │ ├── noCheck.ts │ │ │ ├── noEmit.ts │ │ │ ├── noEmitOnError.ts │ │ │ ├── projectRoots.ts │ │ │ ├── sampleProjectReferences.ts │ │ │ ├── solutionBuilder.ts │ │ │ ├── transitiveReferences.ts │ │ │ ├── tsc.ts │ │ │ ├── tscWatch.ts │ │ │ ├── tsserver.ts │ │ │ ├── typingsInstaller.ts │ │ │ └── virtualFileSystemWithWatch.ts │ │ ├── helpers.ts │ │ ├── incrementalParser.ts │ │ ├── jsDocParsing.ts │ │ ├── jsonParserRecovery.ts │ │ ├── moduleResolution.ts │ │ ├── parsePseudoBigInt.ts │ │ ├── paths.ts │ │ ├── printer.ts │ │ ├── programApi.ts │ │ ├── publicApi.ts │ │ ├── regExpScannerRecovery.ts │ │ ├── reuseProgramStructure.ts │ │ ├── semver.ts │ │ ├── services/ │ │ │ ├── cancellableLanguageServiceOperations.ts │ │ │ ├── colorization.ts │ │ │ ├── convertToAsyncFunction.ts │ │ │ ├── documentRegistry.ts │ │ │ ├── extract/ │ │ │ │ ├── constants.ts │ │ │ │ ├── functions.ts │ │ │ │ ├── helpers.ts │ │ │ │ ├── ranges.ts │ │ │ │ └── symbolWalker.ts │ │ │ ├── hostNewLineSupport.ts │ │ │ ├── languageService.ts │ │ │ ├── organizeImports.ts │ │ │ ├── patternMatcher.ts │ │ │ ├── preProcessFile.ts │ │ │ ├── textChanges.ts │ │ │ ├── transpile.ts │ │ │ └── utilities.ts │ │ ├── skipJSDocParsing.ts │ │ ├── sys/ │ │ │ └── symlinkWatching.ts │ │ ├── transform.ts │ │ ├── tsbuild/ │ │ │ ├── amdModulesWithOut.ts │ │ │ ├── clean.ts │ │ │ ├── commandLine.ts │ │ │ ├── configFileErrors.ts │ │ │ ├── configFileExtends.ts │ │ │ ├── containerOnlyReferenced.ts │ │ │ ├── declarationEmit.ts │ │ │ ├── demo.ts │ │ │ ├── emitDeclarationOnly.ts │ │ │ ├── emptyFiles.ts │ │ │ ├── exitCodeOnBogusFile.ts │ │ │ ├── extends.ts │ │ │ ├── fileDelete.ts │ │ │ ├── graphOrdering.ts │ │ │ ├── inferredTypeFromTransitiveModule.ts │ │ │ ├── javascriptProjectEmit.ts │ │ │ ├── lateBoundSymbol.ts │ │ │ ├── libraryResolution.ts │ │ │ ├── moduleResolution.ts │ │ │ ├── moduleSpecifiers.ts │ │ │ ├── noCheck.ts │ │ │ ├── noEmit.ts │ │ │ ├── noEmitOnError.ts │ │ │ ├── outFile.ts │ │ │ ├── outputPaths.ts │ │ │ ├── publicApi.ts │ │ │ ├── referencesWithRootDirInParent.ts │ │ │ ├── resolveJsonModule.ts │ │ │ ├── roots.ts │ │ │ ├── sample.ts │ │ │ └── transitiveReferences.ts │ │ ├── tsbuildWatch/ │ │ │ ├── configFileErrors.ts │ │ │ ├── demo.ts │ │ │ ├── extends.ts │ │ │ ├── libraryResolution.ts │ │ │ ├── moduleResolution.ts │ │ │ ├── noEmit.ts │ │ │ ├── noEmitOnError.ts │ │ │ ├── programUpdates.ts │ │ │ ├── projectsBuilding.ts │ │ │ ├── publicApi.ts │ │ │ ├── reexport.ts │ │ │ ├── roots.ts │ │ │ └── watchEnvironment.ts │ │ ├── tsc/ │ │ │ ├── cancellationToken.ts │ │ │ ├── commandLine.ts │ │ │ ├── composite.ts │ │ │ ├── declarationEmit.ts │ │ │ ├── extends.ts │ │ │ ├── forceConsistentCasingInFileNames.ts │ │ │ ├── ignoreConfig.ts │ │ │ ├── incremental.ts │ │ │ ├── libraryResolution.ts │ │ │ ├── listFilesOnly.ts │ │ │ ├── moduleResolution.ts │ │ │ ├── noCheck.ts │ │ │ ├── noEmit.ts │ │ │ ├── noEmitOnError.ts │ │ │ ├── projectReferences.ts │ │ │ ├── projectReferencesConfig.ts │ │ │ └── redirect.ts │ │ ├── tscWatch/ │ │ │ ├── consoleClearing.ts │ │ │ ├── emit.ts │ │ │ ├── emitAndErrorUpdates.ts │ │ │ ├── extends.ts │ │ │ ├── forceConsistentCasingInFileNames.ts │ │ │ ├── incremental.ts │ │ │ ├── libraryResolution.ts │ │ │ ├── listFilesOnly.ts │ │ │ ├── moduleResolution.ts │ │ │ ├── noEmit.ts │ │ │ ├── noEmitOnError.ts │ │ │ ├── nodeNextWatch.ts │ │ │ ├── programUpdates.ts │ │ │ ├── projectsWithReferences.ts │ │ │ ├── resolutionCache.ts │ │ │ ├── resolveJsonModuleWithIncremental.ts │ │ │ ├── sourceOfProjectReferenceRedirect.ts │ │ │ ├── symlinks.ts │ │ │ ├── watchApi.ts │ │ │ └── watchEnvironment.ts │ │ ├── tsserver/ │ │ │ ├── applyChangesToOpenFiles.ts │ │ │ ├── autoImportProvider.ts │ │ │ ├── auxiliaryProject.ts │ │ │ ├── cachingFileSystemInformation.ts │ │ │ ├── cancellationToken.ts │ │ │ ├── codeFix.ts │ │ │ ├── compileOnSave.ts │ │ │ ├── completions.ts │ │ │ ├── completionsIncomplete.ts │ │ │ ├── configFileSearch.ts │ │ │ ├── configuredProjects.ts │ │ │ ├── declarationFileMaps.ts │ │ │ ├── documentRegistry.ts │ │ │ ├── duplicatePackages.ts │ │ │ ├── dynamicFiles.ts │ │ │ ├── events/ │ │ │ │ ├── largeFileReferenced.ts │ │ │ │ ├── projectLanguageServiceState.ts │ │ │ │ ├── projectLoading.ts │ │ │ │ ├── projectUpdatedInBackground.ts │ │ │ │ └── watchEvents.ts │ │ │ ├── exportMapCache.ts │ │ │ ├── extends.ts │ │ │ ├── externalProjects.ts │ │ │ ├── findAllReferences.ts │ │ │ ├── forceConsistentCasingInFileNames.ts │ │ │ ├── formatSettings.ts │ │ │ ├── getApplicableRefactors.ts │ │ │ ├── getEditsForFileRename.ts │ │ │ ├── getExportReferences.ts │ │ │ ├── getFileReferences.ts │ │ │ ├── getMoveToRefactoringFileSuggestions.ts │ │ │ ├── goToDefinition.ts │ │ │ ├── importHelpers.ts │ │ │ ├── inconsistentErrorInEditor.ts │ │ │ ├── inferredProjects.ts │ │ │ ├── inlayHints.ts │ │ │ ├── jsdocTag.ts │ │ │ ├── languageService.ts │ │ │ ├── libraryResolution.ts │ │ │ ├── maxNodeModuleJsDepth.ts │ │ │ ├── metadataInResponse.ts │ │ │ ├── moduleResolution.ts │ │ │ ├── moduleSpecifierCache.ts │ │ │ ├── navTo.ts │ │ │ ├── occurences.ts │ │ │ ├── openFile.ts │ │ │ ├── packageJsonInfo.ts │ │ │ ├── partialSemanticServer.ts │ │ │ ├── pasteEdits.ts │ │ │ ├── plugins.ts │ │ │ ├── pluginsAsync.ts │ │ │ ├── projectErrors.ts │ │ │ ├── projectReferenceCompileOnSave.ts │ │ │ ├── projectReferenceErrors.ts │ │ │ ├── projectReferences.ts │ │ │ ├── projectReferencesSourcemap.ts │ │ │ ├── projectRootFiles.ts │ │ │ ├── projects.ts │ │ │ ├── projectsWithReferences.ts │ │ │ ├── refactors.ts │ │ │ ├── regionDiagnostics.ts │ │ │ ├── reload.ts │ │ │ ├── reloadProjects.ts │ │ │ ├── rename.ts │ │ │ ├── resolutionCache.ts │ │ │ ├── session.ts │ │ │ ├── skipLibCheck.ts │ │ │ ├── smartSelection.ts │ │ │ ├── symLinks.ts │ │ │ ├── symlinkCache.ts │ │ │ ├── syntacticServer.ts │ │ │ ├── syntaxOperations.ts │ │ │ ├── telemetry.ts │ │ │ ├── textStorage.ts │ │ │ ├── typeAquisition.ts │ │ │ ├── typeOnlyImportChains.ts │ │ │ ├── typeReferenceDirectives.ts │ │ │ ├── typingsInstaller.ts │ │ │ ├── versionCache.ts │ │ │ └── watchEnvironment.ts │ │ └── typeParameterIsPossiblyReferenced.ts │ ├── tsc/ │ │ ├── _namespaces/ │ │ │ └── ts.ts │ │ ├── tsc.ts │ │ └── tsconfig.json │ ├── tsconfig-base.json │ ├── tsconfig-eslint.json │ ├── tsconfig.json │ ├── tsserver/ │ │ ├── common.ts │ │ ├── nodeServer.ts │ │ ├── server.ts │ │ └── tsconfig.json │ ├── typescript/ │ │ ├── _namespaces/ │ │ │ ├── ts.server.ts │ │ │ └── ts.ts │ │ ├── tsconfig.json │ │ └── typescript.ts │ ├── typingsInstaller/ │ │ ├── nodeTypingsInstaller.ts │ │ └── tsconfig.json │ ├── typingsInstallerCore/ │ │ ├── _namespaces/ │ │ │ ├── ts.server.ts │ │ │ ├── ts.server.typingsInstaller.ts │ │ │ └── ts.ts │ │ ├── tsconfig.json │ │ └── typingsInstaller.ts │ └── watchGuard/ │ ├── tsconfig.json │ └── watchGuard.ts └── tests/ ├── baselines/ │ └── reference/ │ ├── 2dArrays.js │ ├── 2dArrays.symbols │ ├── 2dArrays.types │ ├── APISample_Watch.js │ ├── APISample_WatchWithDefaults.js │ ├── APISample_WatchWithOwnWatchHost.js │ ├── APISample_compile.js │ ├── APISample_jsdoc.js │ ├── APISample_linter.js │ ├── APISample_parseConfig.js │ ├── APISample_transform.js │ ├── APISample_watcher.js │ ├── AmbientModuleAndAmbientFunctionWithTheSameNameAndCommonRoot.js │ ├── AmbientModuleAndAmbientFunctionWithTheSameNameAndCommonRoot.symbols │ ├── AmbientModuleAndAmbientFunctionWithTheSameNameAndCommonRoot.types │ ├── AmbientModuleAndAmbientWithSameNameAndCommonRoot.js │ ├── AmbientModuleAndAmbientWithSameNameAndCommonRoot.symbols │ ├── AmbientModuleAndAmbientWithSameNameAndCommonRoot.types │ ├── AmbientModuleAndNonAmbientClassWithSameNameAndCommonRoot.js │ ├── AmbientModuleAndNonAmbientClassWithSameNameAndCommonRoot.symbols │ ├── AmbientModuleAndNonAmbientClassWithSameNameAndCommonRoot.types │ ├── AmbientModuleAndNonAmbientFunctionWithTheSameNameAndCommonRoot.js │ ├── AmbientModuleAndNonAmbientFunctionWithTheSameNameAndCommonRoot.symbols │ ├── AmbientModuleAndNonAmbientFunctionWithTheSameNameAndCommonRoot.types │ ├── ArrowFunction1.errors.txt │ ├── ArrowFunction1.js │ ├── ArrowFunction1.symbols │ ├── ArrowFunction1.types │ ├── ArrowFunction3.errors.txt │ ├── ArrowFunction3.js │ ├── ArrowFunction3.symbols │ ├── ArrowFunction3.types │ ├── ArrowFunction4.js │ ├── ArrowFunction4.symbols │ ├── ArrowFunction4.types │ ├── ArrowFunctionExpression1.errors.txt │ ├── ArrowFunctionExpression1.js │ ├── ArrowFunctionExpression1.symbols │ ├── ArrowFunctionExpression1.types │ ├── ClassAndModuleThatMergeWithModuleMemberThatUsesClassTypeParameter.errors.txt │ ├── ClassAndModuleThatMergeWithModuleMemberThatUsesClassTypeParameter.js │ ├── ClassAndModuleThatMergeWithModuleMemberThatUsesClassTypeParameter.symbols │ ├── ClassAndModuleThatMergeWithModuleMemberThatUsesClassTypeParameter.types │ ├── ClassAndModuleThatMergeWithModulesExportedGenericFunctionAndGenericClassStaticFunctionOfTheSameName.errors.txt │ ├── ClassAndModuleThatMergeWithModulesExportedGenericFunctionAndGenericClassStaticFunctionOfTheSameName.js │ ├── ClassAndModuleThatMergeWithModulesExportedGenericFunctionAndGenericClassStaticFunctionOfTheSameName.symbols │ ├── ClassAndModuleThatMergeWithModulesExportedGenericFunctionAndGenericClassStaticFunctionOfTheSameName.types │ ├── ClassAndModuleThatMergeWithModulesExportedGenericFunctionAndNonGenericClassStaticFunctionOfTheSameName.errors.txt │ ├── ClassAndModuleThatMergeWithModulesExportedGenericFunctionAndNonGenericClassStaticFunctionOfTheSameName.js │ ├── ClassAndModuleThatMergeWithModulesExportedGenericFunctionAndNonGenericClassStaticFunctionOfTheSameName.symbols │ ├── ClassAndModuleThatMergeWithModulesExportedGenericFunctionAndNonGenericClassStaticFunctionOfTheSameName.types │ ├── ClassAndModuleThatMergeWithModulesExportedStaticFunctionUsingClassPrivateStatics.errors.txt │ ├── ClassAndModuleThatMergeWithModulesExportedStaticFunctionUsingClassPrivateStatics.js │ ├── ClassAndModuleThatMergeWithModulesExportedStaticFunctionUsingClassPrivateStatics.symbols │ ├── ClassAndModuleThatMergeWithModulesExportedStaticFunctionUsingClassPrivateStatics.types │ ├── ClassAndModuleThatMergeWithStaticFunctionAndExportedFunctionThatShareAName.errors.txt │ ├── ClassAndModuleThatMergeWithStaticFunctionAndExportedFunctionThatShareAName.js │ ├── ClassAndModuleThatMergeWithStaticFunctionAndExportedFunctionThatShareAName.symbols │ ├── ClassAndModuleThatMergeWithStaticFunctionAndExportedFunctionThatShareAName.types │ ├── ClassAndModuleThatMergeWithStaticFunctionAndNonExportedFunctionThatShareAName.js │ ├── ClassAndModuleThatMergeWithStaticFunctionAndNonExportedFunctionThatShareAName.symbols │ ├── ClassAndModuleThatMergeWithStaticFunctionAndNonExportedFunctionThatShareAName.types │ ├── ClassAndModuleThatMergeWithStaticVariableAndExportedVarThatShareAName.errors.txt │ ├── ClassAndModuleThatMergeWithStaticVariableAndExportedVarThatShareAName.js │ ├── ClassAndModuleThatMergeWithStaticVariableAndExportedVarThatShareAName.symbols │ ├── ClassAndModuleThatMergeWithStaticVariableAndExportedVarThatShareAName.types │ ├── ClassAndModuleThatMergeWithStaticVariableAndNonExportedVarThatShareAName.js │ ├── ClassAndModuleThatMergeWithStaticVariableAndNonExportedVarThatShareAName.symbols │ ├── ClassAndModuleThatMergeWithStaticVariableAndNonExportedVarThatShareAName.types │ ├── ClassAndModuleThatMergeWithStringIndexerAndExportedFunctionWithTypeIncompatibleWithIndexer.js │ ├── ClassAndModuleThatMergeWithStringIndexerAndExportedFunctionWithTypeIncompatibleWithIndexer.symbols │ ├── ClassAndModuleThatMergeWithStringIndexerAndExportedFunctionWithTypeIncompatibleWithIndexer.types │ ├── ClassAndModuleWithSameNameAndCommonRoot.errors.txt │ ├── ClassAndModuleWithSameNameAndCommonRoot.js │ ├── ClassAndModuleWithSameNameAndCommonRoot.symbols │ ├── ClassAndModuleWithSameNameAndCommonRoot.types │ ├── ClassAndModuleWithSameNameAndCommonRootES6.errors.txt │ ├── ClassAndModuleWithSameNameAndCommonRootES6.js │ ├── ClassAndModuleWithSameNameAndCommonRootES6.symbols │ ├── ClassAndModuleWithSameNameAndCommonRootES6.types │ ├── ClassDeclaration10.errors.txt │ ├── ClassDeclaration10.js │ ├── ClassDeclaration10.symbols │ ├── ClassDeclaration10.types │ ├── ClassDeclaration11.errors.txt │ ├── ClassDeclaration11.js │ ├── ClassDeclaration11.symbols │ ├── ClassDeclaration11.types │ ├── ClassDeclaration13.errors.txt │ ├── ClassDeclaration13.js │ ├── ClassDeclaration13.symbols │ ├── ClassDeclaration13.types │ ├── ClassDeclaration14.errors.txt │ ├── ClassDeclaration14.js │ ├── ClassDeclaration14.symbols │ ├── ClassDeclaration14.types │ ├── ClassDeclaration15.errors.txt │ ├── ClassDeclaration15.js │ ├── ClassDeclaration15.symbols │ ├── ClassDeclaration15.types │ ├── ClassDeclaration21.errors.txt │ ├── ClassDeclaration21.js │ ├── ClassDeclaration21.symbols │ ├── ClassDeclaration21.types │ ├── ClassDeclaration22.errors.txt │ ├── ClassDeclaration22.js │ ├── ClassDeclaration22.symbols │ ├── ClassDeclaration22.types │ ├── ClassDeclaration24.errors.txt │ ├── ClassDeclaration24.js │ ├── ClassDeclaration24.symbols │ ├── ClassDeclaration24.types │ ├── ClassDeclaration25.errors.txt │ ├── ClassDeclaration25.js │ ├── ClassDeclaration25.symbols │ ├── ClassDeclaration25.types │ ├── ClassDeclaration26.errors.txt │ ├── ClassDeclaration26.js │ ├── ClassDeclaration26.symbols │ ├── ClassDeclaration26.types │ ├── ClassDeclaration8.errors.txt │ ├── ClassDeclaration8.js │ ├── ClassDeclaration8.symbols │ ├── ClassDeclaration8.types │ ├── ClassDeclaration9.errors.txt │ ├── ClassDeclaration9.js │ ├── ClassDeclaration9.symbols │ ├── ClassDeclaration9.types │ ├── ClassDeclarationWithInvalidConstOnPropertyDeclaration.errors.txt │ ├── ClassDeclarationWithInvalidConstOnPropertyDeclaration.js │ ├── ClassDeclarationWithInvalidConstOnPropertyDeclaration.symbols │ ├── ClassDeclarationWithInvalidConstOnPropertyDeclaration.types │ ├── ClassDeclarationWithInvalidConstOnPropertyDeclaration2.js │ ├── ClassDeclarationWithInvalidConstOnPropertyDeclaration2.symbols │ ├── ClassDeclarationWithInvalidConstOnPropertyDeclaration2.types │ ├── DeclarationErrorsNoEmitOnError.js │ ├── DeclarationErrorsNoEmitOnError.symbols │ ├── DeclarationErrorsNoEmitOnError.types │ ├── ES3For-ofTypeCheck1(target=es2015).js │ ├── ES3For-ofTypeCheck1(target=es2015).symbols │ ├── ES3For-ofTypeCheck1(target=es2015).types │ ├── ES3For-ofTypeCheck1(target=es5).errors.txt │ ├── ES3For-ofTypeCheck1(target=es5).js │ ├── ES3For-ofTypeCheck1(target=es5).symbols │ ├── ES3For-ofTypeCheck1(target=es5).types │ ├── ES3For-ofTypeCheck2(target=es2015).js │ ├── ES3For-ofTypeCheck2(target=es2015).symbols │ ├── ES3For-ofTypeCheck2(target=es2015).types │ ├── ES3For-ofTypeCheck2(target=es5).errors.txt │ ├── ES3For-ofTypeCheck2(target=es5).js │ ├── ES3For-ofTypeCheck2(target=es5).symbols │ ├── ES3For-ofTypeCheck2(target=es5).types │ ├── ES3For-ofTypeCheck4(target=es2015).errors.txt │ ├── ES3For-ofTypeCheck4(target=es2015).js │ ├── ES3For-ofTypeCheck4(target=es2015).symbols │ ├── ES3For-ofTypeCheck4(target=es2015).types │ ├── ES3For-ofTypeCheck4(target=es5).errors.txt │ ├── ES3For-ofTypeCheck4(target=es5).js │ ├── ES3For-ofTypeCheck4(target=es5).symbols │ ├── ES3For-ofTypeCheck4(target=es5).types │ ├── ES3For-ofTypeCheck6(target=es2015).errors.txt │ ├── ES3For-ofTypeCheck6(target=es2015).js │ ├── ES3For-ofTypeCheck6(target=es2015).symbols │ ├── ES3For-ofTypeCheck6(target=es2015).types │ ├── ES3For-ofTypeCheck6(target=es5).errors.txt │ ├── ES3For-ofTypeCheck6(target=es5).js │ ├── ES3For-ofTypeCheck6(target=es5).symbols │ ├── ES3For-ofTypeCheck6(target=es5).types │ ├── ES5For-of1(target=es2015).js │ ├── ES5For-of1(target=es2015).sourcemap.txt │ ├── ES5For-of1(target=es2015).symbols │ ├── ES5For-of1(target=es2015).types │ ├── ES5For-of1(target=es5).errors.txt │ ├── ES5For-of1(target=es5).js │ ├── ES5For-of1(target=es5).sourcemap.txt │ ├── ES5For-of1(target=es5).symbols │ ├── ES5For-of1(target=es5).types │ ├── ES5For-of10(target=es2015).js │ ├── ES5For-of10(target=es2015).symbols │ ├── ES5For-of10(target=es2015).types │ ├── ES5For-of10(target=es5).errors.txt │ ├── ES5For-of10(target=es5).js │ ├── ES5For-of10(target=es5).symbols │ ├── ES5For-of10(target=es5).types │ ├── ES5For-of11(target=es2015).js │ ├── ES5For-of11(target=es2015).symbols │ ├── ES5For-of11(target=es2015).types │ ├── ES5For-of11(target=es5).errors.txt │ ├── ES5For-of11(target=es5).js │ ├── ES5For-of11(target=es5).symbols │ ├── ES5For-of11(target=es5).types │ ├── ES5For-of12(target=es2015).errors.txt │ ├── ES5For-of12(target=es2015).js │ ├── ES5For-of12(target=es2015).symbols │ ├── ES5For-of12(target=es2015).types │ ├── ES5For-of12(target=es5).errors.txt │ ├── ES5For-of12(target=es5).js │ ├── ES5For-of12(target=es5).symbols │ ├── ES5For-of12(target=es5).types │ ├── ES5For-of13(target=es2015).js │ ├── ES5For-of13(target=es2015).sourcemap.txt │ ├── ES5For-of13(target=es2015).symbols │ ├── ES5For-of13(target=es2015).types │ ├── ES5For-of13(target=es5).errors.txt │ ├── ES5For-of13(target=es5).js │ ├── ES5For-of13(target=es5).sourcemap.txt │ ├── ES5For-of13(target=es5).symbols │ ├── ES5For-of13(target=es5).types │ ├── ES5For-of14(target=es2015).js │ ├── ES5For-of14(target=es2015).symbols │ ├── ES5For-of14(target=es2015).types │ ├── ES5For-of14(target=es5).errors.txt │ ├── ES5For-of14(target=es5).js │ ├── ES5For-of14(target=es5).symbols │ ├── ES5For-of14(target=es5).types │ ├── ES5For-of15(target=es2015).js │ ├── ES5For-of15(target=es2015).symbols │ ├── ES5For-of15(target=es2015).types │ ├── ES5For-of15(target=es5).errors.txt │ ├── ES5For-of15(target=es5).js │ ├── ES5For-of15(target=es5).symbols │ ├── ES5For-of15(target=es5).types │ ├── ES5For-of16(target=es2015).js │ ├── ES5For-of16(target=es2015).symbols │ ├── ES5For-of16(target=es2015).types │ ├── ES5For-of16(target=es5).errors.txt │ ├── ES5For-of16(target=es5).js │ ├── ES5For-of16(target=es5).symbols │ ├── ES5For-of16(target=es5).types │ ├── ES5For-of17(target=es2015).errors.txt │ ├── ES5For-of17(target=es2015).js │ ├── ES5For-of17(target=es2015).symbols │ ├── ES5For-of17(target=es2015).types │ ├── ES5For-of17(target=es5).errors.txt │ ├── ES5For-of17(target=es5).js │ ├── ES5For-of17(target=es5).symbols │ ├── ES5For-of17(target=es5).types │ ├── ES5For-of18(target=es2015).js │ ├── ES5For-of18(target=es2015).symbols │ ├── ES5For-of18(target=es2015).types │ ├── ES5For-of18(target=es5).errors.txt │ ├── ES5For-of18(target=es5).js │ ├── ES5For-of18(target=es5).symbols │ ├── ES5For-of18(target=es5).types │ ├── ES5For-of19(alwaysstrict=false,target=es2015).js │ ├── ES5For-of19(alwaysstrict=false,target=es2015).symbols │ ├── ES5For-of19(alwaysstrict=false,target=es2015).types │ ├── ES5For-of19(alwaysstrict=false,target=es5).js │ ├── ES5For-of19(alwaysstrict=false,target=es5).symbols │ ├── ES5For-of19(alwaysstrict=false,target=es5).types │ ├── ES5For-of19(alwaysstrict=true,target=es2015).js │ ├── ES5For-of19(alwaysstrict=true,target=es2015).symbols │ ├── ES5For-of19(alwaysstrict=true,target=es2015).types │ ├── ES5For-of19(alwaysstrict=true,target=es5).errors.txt │ ├── ES5For-of19(alwaysstrict=true,target=es5).js │ ├── ES5For-of19(alwaysstrict=true,target=es5).symbols │ ├── ES5For-of19(alwaysstrict=true,target=es5).types │ ├── ES5For-of2(target=es2015).js │ ├── ES5For-of2(target=es2015).symbols │ ├── ES5For-of2(target=es2015).types │ ├── ES5For-of2(target=es5).errors.txt │ ├── ES5For-of2(target=es5).js │ ├── ES5For-of2(target=es5).symbols │ ├── ES5For-of2(target=es5).types │ ├── ES5For-of20(target=es2015).errors.txt │ ├── ES5For-of20(target=es2015).js │ ├── ES5For-of20(target=es2015).symbols │ ├── ES5For-of20(target=es2015).types │ ├── ES5For-of20(target=es5).errors.txt │ ├── ES5For-of20(target=es5).js │ ├── ES5For-of20(target=es5).symbols │ ├── ES5For-of20(target=es5).types │ ├── ES5For-of21(target=es2015).js │ ├── ES5For-of21(target=es2015).symbols │ ├── ES5For-of21(target=es2015).types │ ├── ES5For-of21(target=es5).errors.txt │ ├── ES5For-of21(target=es5).js │ ├── ES5For-of21(target=es5).symbols │ ├── ES5For-of21(target=es5).types │ ├── ES5For-of22(target=es2015).js │ ├── ES5For-of22(target=es2015).symbols │ ├── ES5For-of22(target=es2015).types │ ├── ES5For-of22(target=es5).errors.txt │ ├── ES5For-of22(target=es5).js │ ├── ES5For-of22(target=es5).symbols │ ├── ES5For-of22(target=es5).types │ ├── ES5For-of23(target=es2015).js │ ├── ES5For-of23(target=es2015).symbols │ ├── ES5For-of23(target=es2015).types │ ├── ES5For-of23(target=es5).errors.txt │ ├── ES5For-of23(target=es5).js │ ├── ES5For-of23(target=es5).symbols │ ├── ES5For-of23(target=es5).types │ ├── ES5For-of24(target=es2015).js │ ├── ES5For-of24(target=es2015).symbols │ ├── ES5For-of24(target=es2015).types │ ├── ES5For-of24(target=es5).errors.txt │ ├── ES5For-of24(target=es5).js │ ├── ES5For-of24(target=es5).symbols │ ├── ES5For-of24(target=es5).types │ ├── ES5For-of25(target=es2015).js │ ├── ES5For-of25(target=es2015).sourcemap.txt │ ├── ES5For-of25(target=es2015).symbols │ ├── ES5For-of25(target=es2015).types │ ├── ES5For-of25(target=es5).errors.txt │ ├── ES5For-of25(target=es5).js │ ├── ES5For-of25(target=es5).sourcemap.txt │ ├── ES5For-of25(target=es5).symbols │ ├── ES5For-of25(target=es5).types │ ├── ES5For-of26(target=es2015).errors.txt │ ├── ES5For-of26(target=es2015).js │ ├── ES5For-of26(target=es2015).sourcemap.txt │ ├── ES5For-of26(target=es2015).symbols │ ├── ES5For-of26(target=es2015).types │ ├── ES5For-of26(target=es5).errors.txt │ ├── ES5For-of26(target=es5).js │ ├── ES5For-of26(target=es5).sourcemap.txt │ ├── ES5For-of26(target=es5).symbols │ ├── ES5For-of26(target=es5).types │ ├── ES5For-of27(target=es2015).errors.txt │ ├── ES5For-of27(target=es2015).js │ ├── ES5For-of27(target=es2015).symbols │ ├── ES5For-of27(target=es2015).types │ ├── ES5For-of27(target=es5).errors.txt │ ├── ES5For-of27(target=es5).js │ ├── ES5For-of27(target=es5).symbols │ ├── ES5For-of27(target=es5).types │ ├── ES5For-of28(target=es2015).errors.txt │ ├── ES5For-of28(target=es2015).js │ ├── ES5For-of28(target=es2015).symbols │ ├── ES5For-of28(target=es2015).types │ ├── ES5For-of28(target=es5).errors.txt │ ├── ES5For-of28(target=es5).js │ ├── ES5For-of28(target=es5).symbols │ ├── ES5For-of28(target=es5).types │ ├── ES5For-of29(target=es2015).errors.txt │ ├── ES5For-of29(target=es2015).js │ ├── ES5For-of29(target=es2015).symbols │ ├── ES5For-of29(target=es2015).types │ ├── ES5For-of29(target=es5).errors.txt │ ├── ES5For-of29(target=es5).js │ ├── ES5For-of29(target=es5).symbols │ ├── ES5For-of29(target=es5).types │ ├── ES5For-of3(target=es2015).js │ ├── ES5For-of3(target=es2015).sourcemap.txt │ ├── ES5For-of3(target=es2015).symbols │ ├── ES5For-of3(target=es2015).types │ ├── ES5For-of3(target=es5).errors.txt │ ├── ES5For-of3(target=es5).js │ ├── ES5For-of3(target=es5).sourcemap.txt │ ├── ES5For-of3(target=es5).symbols │ ├── ES5For-of3(target=es5).types │ ├── ES5For-of30(target=es2015).errors.txt │ ├── ES5For-of30(target=es2015).js │ ├── ES5For-of30(target=es2015).symbols │ ├── ES5For-of30(target=es2015).types │ ├── ES5For-of30(target=es5).errors.txt │ ├── ES5For-of30(target=es5).js │ ├── ES5For-of30(target=es5).symbols │ ├── ES5For-of30(target=es5).types │ ├── ES5For-of31(target=es2015).js │ ├── ES5For-of31(target=es2015).symbols │ ├── ES5For-of31(target=es2015).types │ ├── ES5For-of31(target=es5).errors.txt │ ├── ES5For-of31(target=es5).js │ ├── ES5For-of31(target=es5).symbols │ ├── ES5For-of31(target=es5).types │ ├── ES5For-of33(target=es2015).errors.txt │ ├── ES5For-of33(target=es2015).js │ ├── ES5For-of33(target=es2015).sourcemap.txt │ ├── ES5For-of33(target=es2015).symbols │ ├── ES5For-of33(target=es2015).types │ ├── ES5For-of33(target=es5).errors.txt │ ├── ES5For-of33(target=es5).js │ ├── ES5For-of33(target=es5).sourcemap.txt │ ├── ES5For-of33(target=es5).symbols │ ├── ES5For-of33(target=es5).types │ ├── ES5For-of34(target=es2015).errors.txt │ ├── ES5For-of34(target=es2015).js │ ├── ES5For-of34(target=es2015).sourcemap.txt │ ├── ES5For-of34(target=es2015).symbols │ ├── ES5For-of34(target=es2015).types │ ├── ES5For-of34(target=es5).errors.txt │ ├── ES5For-of34(target=es5).js │ ├── ES5For-of34(target=es5).sourcemap.txt │ ├── ES5For-of34(target=es5).symbols │ ├── ES5For-of34(target=es5).types │ ├── ES5For-of35(target=es2015).errors.txt │ ├── ES5For-of35(target=es2015).js │ ├── ES5For-of35(target=es2015).sourcemap.txt │ ├── ES5For-of35(target=es2015).symbols │ ├── ES5For-of35(target=es2015).types │ ├── ES5For-of35(target=es5).errors.txt │ ├── ES5For-of35(target=es5).js │ ├── ES5For-of35(target=es5).sourcemap.txt │ ├── ES5For-of35(target=es5).symbols │ ├── ES5For-of35(target=es5).types │ ├── ES5For-of36(target=es2015).errors.txt │ ├── ES5For-of36(target=es2015).js │ ├── ES5For-of36(target=es2015).sourcemap.txt │ ├── ES5For-of36(target=es2015).symbols │ ├── ES5For-of36(target=es2015).types │ ├── ES5For-of36(target=es5).errors.txt │ ├── ES5For-of36(target=es5).js │ ├── ES5For-of36(target=es5).sourcemap.txt │ ├── ES5For-of36(target=es5).symbols │ ├── ES5For-of36(target=es5).types │ ├── ES5For-of37(target=es2015).errors.txt │ ├── ES5For-of37(target=es2015).js │ ├── ES5For-of37(target=es2015).symbols │ ├── ES5For-of37(target=es2015).types │ ├── ES5For-of37(target=es5).errors.txt │ ├── ES5For-of37(target=es5).js │ ├── ES5For-of37(target=es5).symbols │ ├── ES5For-of37(target=es5).types │ ├── ES5For-of4(target=es2015).js │ ├── ES5For-of4(target=es2015).symbols │ ├── ES5For-of4(target=es2015).types │ ├── ES5For-of4(target=es5).errors.txt │ ├── ES5For-of4(target=es5).js │ ├── ES5For-of4(target=es5).symbols │ ├── ES5For-of4(target=es5).types │ ├── ES5For-of5(target=es2015).js │ ├── ES5For-of5(target=es2015).symbols │ ├── ES5For-of5(target=es2015).types │ ├── ES5For-of5(target=es5).errors.txt │ ├── ES5For-of5(target=es5).js │ ├── ES5For-of5(target=es5).symbols │ ├── ES5For-of5(target=es5).types │ ├── ES5For-of6(target=es2015).js │ ├── ES5For-of6(target=es2015).symbols │ ├── ES5For-of6(target=es2015).types │ ├── ES5For-of6(target=es5).errors.txt │ ├── ES5For-of6(target=es5).js │ ├── ES5For-of6(target=es5).symbols │ ├── ES5For-of6(target=es5).types │ ├── ES5For-of7(target=es2015).errors.txt │ ├── ES5For-of7(target=es2015).js │ ├── ES5For-of7(target=es2015).symbols │ ├── ES5For-of7(target=es2015).types │ ├── ES5For-of7(target=es5).errors.txt │ ├── ES5For-of7(target=es5).js │ ├── ES5For-of7(target=es5).symbols │ ├── ES5For-of7(target=es5).types │ ├── ES5For-of8(target=es2015).errors.txt │ ├── ES5For-of8(target=es2015).js │ ├── ES5For-of8(target=es2015).sourcemap.txt │ ├── ES5For-of8(target=es2015).symbols │ ├── ES5For-of8(target=es2015).types │ ├── ES5For-of8(target=es5).errors.txt │ ├── ES5For-of8(target=es5).js │ ├── ES5For-of8(target=es5).sourcemap.txt │ ├── ES5For-of8(target=es5).symbols │ ├── ES5For-of8(target=es5).types │ ├── ES5For-of9(target=es2015).js │ ├── ES5For-of9(target=es2015).symbols │ ├── ES5For-of9(target=es2015).types │ ├── ES5For-of9(target=es5).errors.txt │ ├── ES5For-of9(target=es5).js │ ├── ES5For-of9(target=es5).symbols │ ├── ES5For-of9(target=es5).types │ ├── ES5For-ofTypeCheck1(target=es2015).js │ ├── ES5For-ofTypeCheck1(target=es2015).symbols │ ├── ES5For-ofTypeCheck1(target=es2015).types │ ├── ES5For-ofTypeCheck1(target=es5).errors.txt │ ├── ES5For-ofTypeCheck1(target=es5).js │ ├── ES5For-ofTypeCheck1(target=es5).symbols │ ├── ES5For-ofTypeCheck1(target=es5).types │ ├── ES5For-ofTypeCheck10(target=es2015).js │ ├── ES5For-ofTypeCheck10(target=es2015).symbols │ ├── ES5For-ofTypeCheck10(target=es2015).types │ ├── ES5For-ofTypeCheck10(target=es5).errors.txt │ ├── ES5For-ofTypeCheck10(target=es5).js │ ├── ES5For-ofTypeCheck10(target=es5).symbols │ ├── ES5For-ofTypeCheck10(target=es5).types │ ├── ES5For-ofTypeCheck11(target=es2015).errors.txt │ ├── ES5For-ofTypeCheck11(target=es2015).js │ ├── ES5For-ofTypeCheck11(target=es2015).symbols │ ├── ES5For-ofTypeCheck11(target=es2015).types │ ├── ES5For-ofTypeCheck11(target=es5).errors.txt │ ├── ES5For-ofTypeCheck11(target=es5).js │ ├── ES5For-ofTypeCheck11(target=es5).symbols │ ├── ES5For-ofTypeCheck11(target=es5).types │ ├── ES5For-ofTypeCheck12(target=es2015).errors.txt │ ├── ES5For-ofTypeCheck12(target=es2015).js │ ├── ES5For-ofTypeCheck12(target=es2015).symbols │ ├── ES5For-ofTypeCheck12(target=es2015).types │ ├── ES5For-ofTypeCheck12(target=es5).errors.txt │ ├── ES5For-ofTypeCheck12(target=es5).js │ ├── ES5For-ofTypeCheck12(target=es5).symbols │ ├── ES5For-ofTypeCheck12(target=es5).types │ ├── ES5For-ofTypeCheck13(target=es2015).js │ ├── ES5For-ofTypeCheck13(target=es2015).symbols │ ├── ES5For-ofTypeCheck13(target=es2015).types │ ├── ES5For-ofTypeCheck13(target=es5).errors.txt │ ├── ES5For-ofTypeCheck13(target=es5).js │ ├── ES5For-ofTypeCheck13(target=es5).symbols │ ├── ES5For-ofTypeCheck13(target=es5).types │ ├── ES5For-ofTypeCheck14(target=es2015).js │ ├── ES5For-ofTypeCheck14(target=es2015).symbols │ ├── ES5For-ofTypeCheck14(target=es2015).types │ ├── ES5For-ofTypeCheck14(target=es5).errors.txt │ ├── ES5For-ofTypeCheck14(target=es5).js │ ├── ES5For-ofTypeCheck14(target=es5).symbols │ ├── ES5For-ofTypeCheck14(target=es5).types │ ├── ES5For-ofTypeCheck2(target=es2015).js │ ├── ES5For-ofTypeCheck2(target=es2015).symbols │ ├── ES5For-ofTypeCheck2(target=es2015).types │ ├── ES5For-ofTypeCheck2(target=es5).errors.txt │ ├── ES5For-ofTypeCheck2(target=es5).js │ ├── ES5For-ofTypeCheck2(target=es5).symbols │ ├── ES5For-ofTypeCheck2(target=es5).types │ ├── ES5For-ofTypeCheck3(target=es2015).js │ ├── ES5For-ofTypeCheck3(target=es2015).symbols │ ├── ES5For-ofTypeCheck3(target=es2015).types │ ├── ES5For-ofTypeCheck3(target=es5).errors.txt │ ├── ES5For-ofTypeCheck3(target=es5).js │ ├── ES5For-ofTypeCheck3(target=es5).symbols │ ├── ES5For-ofTypeCheck3(target=es5).types │ ├── ES5For-ofTypeCheck4(target=es2015).errors.txt │ ├── ES5For-ofTypeCheck4(target=es2015).js │ ├── ES5For-ofTypeCheck4(target=es2015).symbols │ ├── ES5For-ofTypeCheck4(target=es2015).types │ ├── ES5For-ofTypeCheck4(target=es5).errors.txt │ ├── ES5For-ofTypeCheck4(target=es5).js │ ├── ES5For-ofTypeCheck4(target=es5).symbols │ ├── ES5For-ofTypeCheck4(target=es5).types │ ├── ES5For-ofTypeCheck5(target=es2015).errors.txt │ ├── ES5For-ofTypeCheck5(target=es2015).js │ ├── ES5For-ofTypeCheck5(target=es2015).symbols │ ├── ES5For-ofTypeCheck5(target=es2015).types │ ├── ES5For-ofTypeCheck5(target=es5).errors.txt │ ├── ES5For-ofTypeCheck5(target=es5).js │ ├── ES5For-ofTypeCheck5(target=es5).symbols │ ├── ES5For-ofTypeCheck5(target=es5).types │ ├── ES5For-ofTypeCheck6(target=es2015).errors.txt │ ├── ES5For-ofTypeCheck6(target=es2015).js │ ├── ES5For-ofTypeCheck6(target=es2015).symbols │ ├── ES5For-ofTypeCheck6(target=es2015).types │ ├── ES5For-ofTypeCheck6(target=es5).errors.txt │ ├── ES5For-ofTypeCheck6(target=es5).js │ ├── ES5For-ofTypeCheck6(target=es5).symbols │ ├── ES5For-ofTypeCheck6(target=es5).types │ ├── ES5For-ofTypeCheck7(target=es2015).errors.txt │ ├── ES5For-ofTypeCheck7(target=es2015).js │ ├── ES5For-ofTypeCheck7(target=es2015).symbols │ ├── ES5For-ofTypeCheck7(target=es2015).types │ ├── ES5For-ofTypeCheck7(target=es5).errors.txt │ ├── ES5For-ofTypeCheck7(target=es5).js │ ├── ES5For-ofTypeCheck7(target=es5).symbols │ ├── ES5For-ofTypeCheck7(target=es5).types │ ├── ES5For-ofTypeCheck8(target=es2015).errors.txt │ ├── ES5For-ofTypeCheck8(target=es2015).js │ ├── ES5For-ofTypeCheck8(target=es2015).symbols │ ├── ES5For-ofTypeCheck8(target=es2015).types │ ├── ES5For-ofTypeCheck8(target=es5).errors.txt │ ├── ES5For-ofTypeCheck8(target=es5).js │ ├── ES5For-ofTypeCheck8(target=es5).symbols │ ├── ES5For-ofTypeCheck8(target=es5).types │ ├── ES5For-ofTypeCheck9(target=es2015).errors.txt │ ├── ES5For-ofTypeCheck9(target=es2015).js │ ├── ES5For-ofTypeCheck9(target=es2015).symbols │ ├── ES5For-ofTypeCheck9(target=es2015).types │ ├── ES5For-ofTypeCheck9(target=es5).errors.txt │ ├── ES5For-ofTypeCheck9(target=es5).js │ ├── ES5For-ofTypeCheck9(target=es5).symbols │ ├── ES5For-ofTypeCheck9(target=es5).types │ ├── ES5SymbolProperty1(target=es2015).js │ ├── ES5SymbolProperty1(target=es2015).symbols │ ├── ES5SymbolProperty1(target=es2015).types │ ├── ES5SymbolProperty1(target=es5).errors.txt │ ├── ES5SymbolProperty1(target=es5).js │ ├── ES5SymbolProperty1(target=es5).symbols │ ├── ES5SymbolProperty1(target=es5).types │ ├── ES5SymbolProperty2(target=es2015).js │ ├── ES5SymbolProperty2(target=es2015).symbols │ ├── ES5SymbolProperty2(target=es2015).types │ ├── ES5SymbolProperty2(target=es5).errors.txt │ ├── ES5SymbolProperty2(target=es5).js │ ├── ES5SymbolProperty2(target=es5).symbols │ ├── ES5SymbolProperty2(target=es5).types │ ├── ES5SymbolProperty3(target=es2015).errors.txt │ ├── ES5SymbolProperty3(target=es2015).js │ ├── ES5SymbolProperty3(target=es2015).symbols │ ├── ES5SymbolProperty3(target=es2015).types │ ├── ES5SymbolProperty3(target=es5).errors.txt │ ├── ES5SymbolProperty3(target=es5).js │ ├── ES5SymbolProperty3(target=es5).symbols │ ├── ES5SymbolProperty3(target=es5).types │ ├── ES5SymbolProperty4(target=es2015).errors.txt │ ├── ES5SymbolProperty4(target=es2015).js │ ├── ES5SymbolProperty4(target=es2015).symbols │ ├── ES5SymbolProperty4(target=es2015).types │ ├── ES5SymbolProperty4(target=es5).errors.txt │ ├── ES5SymbolProperty4(target=es5).js │ ├── ES5SymbolProperty4(target=es5).symbols │ ├── ES5SymbolProperty4(target=es5).types │ ├── ES5SymbolProperty5(target=es2015).errors.txt │ ├── ES5SymbolProperty5(target=es2015).js │ ├── ES5SymbolProperty5(target=es2015).symbols │ ├── ES5SymbolProperty5(target=es2015).types │ ├── ES5SymbolProperty5(target=es5).errors.txt │ ├── ES5SymbolProperty5(target=es5).js │ ├── ES5SymbolProperty5(target=es5).symbols │ ├── ES5SymbolProperty5(target=es5).types │ ├── ES5SymbolProperty6(target=es2015).js │ ├── ES5SymbolProperty6(target=es2015).symbols │ ├── ES5SymbolProperty6(target=es2015).types │ ├── ES5SymbolProperty6(target=es5).errors.txt │ ├── ES5SymbolProperty6(target=es5).js │ ├── ES5SymbolProperty6(target=es5).symbols │ ├── ES5SymbolProperty6(target=es5).types │ ├── ES5SymbolProperty7(target=es2015).errors.txt │ ├── ES5SymbolProperty7(target=es2015).js │ ├── ES5SymbolProperty7(target=es2015).symbols │ ├── ES5SymbolProperty7(target=es2015).types │ ├── ES5SymbolProperty7(target=es5).errors.txt │ ├── ES5SymbolProperty7(target=es5).js │ ├── ES5SymbolProperty7(target=es5).symbols │ ├── ES5SymbolProperty7(target=es5).types │ ├── ES5SymbolType1(target=es2015).errors.txt │ ├── ES5SymbolType1(target=es2015).js │ ├── ES5SymbolType1(target=es2015).symbols │ ├── ES5SymbolType1(target=es2015).types │ ├── ES5SymbolType1(target=es5).errors.txt │ ├── ES5SymbolType1(target=es5).js │ ├── ES5SymbolType1(target=es5).symbols │ ├── ES5SymbolType1(target=es5).types │ ├── ES5for-of32(target=es2015).js │ ├── ES5for-of32(target=es2015).symbols │ ├── ES5for-of32(target=es2015).types │ ├── ES5for-of32(target=es5).errors.txt │ ├── ES5for-of32(target=es5).js │ ├── ES5for-of32(target=es5).symbols │ ├── ES5for-of32(target=es5).types │ ├── EnumAndModuleWithSameNameAndCommonRoot.js │ ├── EnumAndModuleWithSameNameAndCommonRoot.symbols │ ├── EnumAndModuleWithSameNameAndCommonRoot.types │ ├── ExportAssignment7.errors.txt │ ├── ExportAssignment7.js │ ├── ExportAssignment7.symbols │ ├── ExportAssignment7.types │ ├── ExportAssignment8.errors.txt │ ├── ExportAssignment8.js │ ├── ExportAssignment8.symbols │ ├── ExportAssignment8.types │ ├── ExportClassWhichExtendsInterfaceWithInaccessibleType.js │ ├── ExportClassWhichExtendsInterfaceWithInaccessibleType.symbols │ ├── ExportClassWhichExtendsInterfaceWithInaccessibleType.types │ ├── ExportClassWithAccessibleTypesInTypeParameterConstraintsClassHeritageListMemberTypeAnnotations.errors.txt │ ├── ExportClassWithAccessibleTypesInTypeParameterConstraintsClassHeritageListMemberTypeAnnotations.js │ ├── ExportClassWithAccessibleTypesInTypeParameterConstraintsClassHeritageListMemberTypeAnnotations.symbols │ ├── ExportClassWithAccessibleTypesInTypeParameterConstraintsClassHeritageListMemberTypeAnnotations.types │ ├── ExportClassWithInaccessibleTypeInIndexerTypeAnnotations.errors.txt │ ├── ExportClassWithInaccessibleTypeInIndexerTypeAnnotations.js │ ├── ExportClassWithInaccessibleTypeInIndexerTypeAnnotations.symbols │ ├── ExportClassWithInaccessibleTypeInIndexerTypeAnnotations.types │ ├── ExportClassWithInaccessibleTypeInTypeParameterConstraint.errors.txt │ ├── ExportClassWithInaccessibleTypeInTypeParameterConstraint.js │ ├── ExportClassWithInaccessibleTypeInTypeParameterConstraint.symbols │ ├── ExportClassWithInaccessibleTypeInTypeParameterConstraint.types │ ├── ExportFunctionWithAccessibleTypesInParameterAndReturnTypeAnnotation.errors.txt │ ├── ExportFunctionWithAccessibleTypesInParameterAndReturnTypeAnnotation.js │ ├── ExportFunctionWithAccessibleTypesInParameterAndReturnTypeAnnotation.symbols │ ├── ExportFunctionWithAccessibleTypesInParameterAndReturnTypeAnnotation.types │ ├── ExportFunctionWithInaccessibleTypesInParameterTypeAnnotation.errors.txt │ ├── ExportFunctionWithInaccessibleTypesInParameterTypeAnnotation.js │ ├── ExportFunctionWithInaccessibleTypesInParameterTypeAnnotation.symbols │ ├── ExportFunctionWithInaccessibleTypesInParameterTypeAnnotation.types │ ├── ExportFunctionWithInaccessibleTypesInReturnTypeAnnotation.errors.txt │ ├── ExportFunctionWithInaccessibleTypesInReturnTypeAnnotation.js │ ├── ExportFunctionWithInaccessibleTypesInReturnTypeAnnotation.symbols │ ├── ExportFunctionWithInaccessibleTypesInReturnTypeAnnotation.types │ ├── ExportInterfaceWithAccessibleTypesInTypeParameterConstraintsClassHeritageListMemberTypeAnnotations.js │ ├── ExportInterfaceWithAccessibleTypesInTypeParameterConstraintsClassHeritageListMemberTypeAnnotations.symbols │ ├── ExportInterfaceWithAccessibleTypesInTypeParameterConstraintsClassHeritageListMemberTypeAnnotations.types │ ├── ExportInterfaceWithInaccessibleTypeInIndexerTypeAnnotations.js │ ├── ExportInterfaceWithInaccessibleTypeInIndexerTypeAnnotations.symbols │ ├── ExportInterfaceWithInaccessibleTypeInIndexerTypeAnnotations.types │ ├── ExportInterfaceWithInaccessibleTypeInTypeParameterConstraint.js │ ├── ExportInterfaceWithInaccessibleTypeInTypeParameterConstraint.symbols │ ├── ExportInterfaceWithInaccessibleTypeInTypeParameterConstraint.types │ ├── ExportModuleWithAccessibleTypesOnItsExportedMembers.js │ ├── ExportModuleWithAccessibleTypesOnItsExportedMembers.symbols │ ├── ExportModuleWithAccessibleTypesOnItsExportedMembers.types │ ├── ExportObjectLiteralAndObjectTypeLiteralWithAccessibleTypesInMemberTypeAnnotations.js │ ├── ExportObjectLiteralAndObjectTypeLiteralWithAccessibleTypesInMemberTypeAnnotations.symbols │ ├── ExportObjectLiteralAndObjectTypeLiteralWithAccessibleTypesInMemberTypeAnnotations.types │ ├── ExportObjectLiteralAndObjectTypeLiteralWithAccessibleTypesInNestedMemberTypeAnnotations.errors.txt │ ├── ExportObjectLiteralAndObjectTypeLiteralWithAccessibleTypesInNestedMemberTypeAnnotations.js │ ├── ExportObjectLiteralAndObjectTypeLiteralWithAccessibleTypesInNestedMemberTypeAnnotations.symbols │ ├── ExportObjectLiteralAndObjectTypeLiteralWithAccessibleTypesInNestedMemberTypeAnnotations.types │ ├── ExportVariableOfGenericTypeWithInaccessibleTypeAsTypeArgument.errors.txt │ ├── ExportVariableOfGenericTypeWithInaccessibleTypeAsTypeArgument.js │ ├── ExportVariableOfGenericTypeWithInaccessibleTypeAsTypeArgument.symbols │ ├── ExportVariableOfGenericTypeWithInaccessibleTypeAsTypeArgument.types │ ├── ExportVariableWithAccessibleTypeInTypeAnnotation.js │ ├── ExportVariableWithAccessibleTypeInTypeAnnotation.symbols │ ├── ExportVariableWithAccessibleTypeInTypeAnnotation.types │ ├── ExportVariableWithInaccessibleTypeInTypeAnnotation.js │ ├── ExportVariableWithInaccessibleTypeInTypeAnnotation.symbols │ ├── ExportVariableWithInaccessibleTypeInTypeAnnotation.types │ ├── FunctionAndModuleWithSameNameAndCommonRoot.errors.txt │ ├── FunctionAndModuleWithSameNameAndCommonRoot.js │ ├── FunctionAndModuleWithSameNameAndCommonRoot.symbols │ ├── FunctionAndModuleWithSameNameAndCommonRoot.types │ ├── FunctionAndModuleWithSameNameAndDifferentCommonRoot.js │ ├── FunctionAndModuleWithSameNameAndDifferentCommonRoot.symbols │ ├── FunctionAndModuleWithSameNameAndDifferentCommonRoot.types │ ├── FunctionDeclaration10_es6.errors.txt │ ├── FunctionDeclaration10_es6.js │ ├── FunctionDeclaration10_es6.symbols │ ├── FunctionDeclaration10_es6.types │ ├── FunctionDeclaration11_es6.errors.txt │ ├── FunctionDeclaration11_es6.js │ ├── FunctionDeclaration11_es6.symbols │ ├── FunctionDeclaration11_es6.types │ ├── FunctionDeclaration12_es6.errors.txt │ ├── FunctionDeclaration12_es6.js │ ├── FunctionDeclaration12_es6.symbols │ ├── FunctionDeclaration12_es6.types │ ├── FunctionDeclaration13_es6.errors.txt │ ├── FunctionDeclaration13_es6.js │ ├── FunctionDeclaration13_es6.symbols │ ├── FunctionDeclaration13_es6.types │ ├── FunctionDeclaration1_es6.js │ ├── FunctionDeclaration1_es6.symbols │ ├── FunctionDeclaration1_es6.types │ ├── FunctionDeclaration2_es6(alwaysstrict=false).js │ ├── FunctionDeclaration2_es6(alwaysstrict=false).symbols │ ├── FunctionDeclaration2_es6(alwaysstrict=false).types │ ├── FunctionDeclaration2_es6(alwaysstrict=true).errors.txt │ ├── FunctionDeclaration2_es6(alwaysstrict=true).js │ ├── FunctionDeclaration2_es6(alwaysstrict=true).symbols │ ├── FunctionDeclaration2_es6(alwaysstrict=true).types │ ├── FunctionDeclaration3.errors.txt │ ├── FunctionDeclaration3.js │ ├── FunctionDeclaration3.symbols │ ├── FunctionDeclaration3.types │ ├── FunctionDeclaration3_es6.errors.txt │ ├── FunctionDeclaration3_es6.js │ ├── FunctionDeclaration3_es6.symbols │ ├── FunctionDeclaration3_es6.types │ ├── FunctionDeclaration4.errors.txt │ ├── FunctionDeclaration4.js │ ├── FunctionDeclaration4.symbols │ ├── FunctionDeclaration4.types │ ├── FunctionDeclaration4_es6.errors.txt │ ├── FunctionDeclaration4_es6.js │ ├── FunctionDeclaration4_es6.symbols │ ├── FunctionDeclaration4_es6.types │ ├── FunctionDeclaration5_es6.errors.txt │ ├── FunctionDeclaration5_es6.js │ ├── FunctionDeclaration5_es6.symbols │ ├── FunctionDeclaration5_es6.types │ ├── FunctionDeclaration6.errors.txt │ ├── FunctionDeclaration6.js │ ├── FunctionDeclaration6.symbols │ ├── FunctionDeclaration6.types │ ├── FunctionDeclaration6_es6.errors.txt │ ├── FunctionDeclaration6_es6.js │ ├── FunctionDeclaration6_es6.symbols │ ├── FunctionDeclaration6_es6.types │ ├── FunctionDeclaration7.errors.txt │ ├── FunctionDeclaration7.js │ ├── FunctionDeclaration7.symbols │ ├── FunctionDeclaration7.types │ ├── FunctionDeclaration7_es6.errors.txt │ ├── FunctionDeclaration7_es6.js │ ├── FunctionDeclaration7_es6.symbols │ ├── FunctionDeclaration7_es6.types │ ├── FunctionDeclaration8_es6.errors.txt │ ├── FunctionDeclaration8_es6.js │ ├── FunctionDeclaration8_es6.symbols │ ├── FunctionDeclaration8_es6.types │ ├── FunctionDeclaration9_es6.js │ ├── FunctionDeclaration9_es6.symbols │ ├── FunctionDeclaration9_es6.types │ ├── FunctionExpression1_es6.js │ ├── FunctionExpression1_es6.symbols │ ├── FunctionExpression1_es6.types │ ├── FunctionExpression2_es6.js │ ├── FunctionExpression2_es6.symbols │ ├── FunctionExpression2_es6.types │ ├── FunctionPropertyAssignments1_es6.js │ ├── FunctionPropertyAssignments1_es6.symbols │ ├── FunctionPropertyAssignments1_es6.types │ ├── FunctionPropertyAssignments2_es6.errors.txt │ ├── FunctionPropertyAssignments2_es6.js │ ├── FunctionPropertyAssignments2_es6.symbols │ ├── FunctionPropertyAssignments2_es6.types │ ├── FunctionPropertyAssignments3_es6.errors.txt │ ├── FunctionPropertyAssignments3_es6.js │ ├── FunctionPropertyAssignments3_es6.symbols │ ├── FunctionPropertyAssignments3_es6.types │ ├── FunctionPropertyAssignments4_es6.errors.txt │ ├── FunctionPropertyAssignments4_es6.js │ ├── FunctionPropertyAssignments4_es6.symbols │ ├── FunctionPropertyAssignments4_es6.types │ ├── FunctionPropertyAssignments5_es6.errors.txt │ ├── FunctionPropertyAssignments5_es6.js │ ├── FunctionPropertyAssignments5_es6.symbols │ ├── FunctionPropertyAssignments5_es6.types │ ├── FunctionPropertyAssignments6_es6.errors.txt │ ├── FunctionPropertyAssignments6_es6.js │ ├── FunctionPropertyAssignments6_es6.symbols │ ├── FunctionPropertyAssignments6_es6.types │ ├── InterfaceDeclaration8.errors.txt │ ├── InterfaceDeclaration8.js │ ├── InterfaceDeclaration8.symbols │ ├── InterfaceDeclaration8.types │ ├── InvalidNonInstantiatedModule.errors.txt │ ├── InvalidNonInstantiatedModule.js │ ├── InvalidNonInstantiatedModule.symbols │ ├── InvalidNonInstantiatedModule.types │ ├── JSDocParsing/ │ │ ├── DocComments.parsesCorrectly.@@ does not start a new tag.json │ │ ├── DocComments.parsesCorrectly.@link tags.json │ │ ├── DocComments.parsesCorrectly.Chained tags, no leading whitespace.json │ │ ├── DocComments.parsesCorrectly.Initial email address is not a tag.json │ │ ├── DocComments.parsesCorrectly.Initial star is not a tag.json │ │ ├── DocComments.parsesCorrectly.Initial star space is not a tag.json │ │ ├── DocComments.parsesCorrectly.Nested @param tags.json │ │ ├── DocComments.parsesCorrectly.Single trailing whitespace.json │ │ ├── DocComments.parsesCorrectly.argSynonymForParamTag.json │ │ ├── DocComments.parsesCorrectly.argumentSynonymForParamTag.json │ │ ├── DocComments.parsesCorrectly.asteriskAfterPreamble.json │ │ ├── DocComments.parsesCorrectly.authorTag.json │ │ ├── DocComments.parsesCorrectly.consecutive newline tokens.json │ │ ├── DocComments.parsesCorrectly.emptyComment.json │ │ ├── DocComments.parsesCorrectly.exceptionTag1.json │ │ ├── DocComments.parsesCorrectly.exceptionTag2.json │ │ ├── DocComments.parsesCorrectly.exceptionTag3.json │ │ ├── DocComments.parsesCorrectly.importTag1.json │ │ ├── DocComments.parsesCorrectly.importTag2.json │ │ ├── DocComments.parsesCorrectly.importTag3.json │ │ ├── DocComments.parsesCorrectly.importTag4.json │ │ ├── DocComments.parsesCorrectly.leadingAsterisk.json │ │ ├── DocComments.parsesCorrectly.less-than and greater-than characters.json │ │ ├── DocComments.parsesCorrectly.no space before @ is not a new tag.json │ │ ├── DocComments.parsesCorrectly.noLeadingAsterisk.json │ │ ├── DocComments.parsesCorrectly.noReturnType.json │ │ ├── DocComments.parsesCorrectly.oneParamTag.json │ │ ├── DocComments.parsesCorrectly.paramTag1.json │ │ ├── DocComments.parsesCorrectly.paramTagBracketedName1.json │ │ ├── DocComments.parsesCorrectly.paramTagBracketedName2.json │ │ ├── DocComments.parsesCorrectly.paramTagNameThenType1.json │ │ ├── DocComments.parsesCorrectly.paramTagNameThenType2.json │ │ ├── DocComments.parsesCorrectly.paramWithoutType.json │ │ ├── DocComments.parsesCorrectly.returnTag1.json │ │ ├── DocComments.parsesCorrectly.returnTag2.json │ │ ├── DocComments.parsesCorrectly.returnsTag1.json │ │ ├── DocComments.parsesCorrectly.satisfiesTag.json │ │ ├── DocComments.parsesCorrectly.templateTag.json │ │ ├── DocComments.parsesCorrectly.templateTag2.json │ │ ├── DocComments.parsesCorrectly.templateTag3.json │ │ ├── DocComments.parsesCorrectly.templateTag4.json │ │ ├── DocComments.parsesCorrectly.templateTag5.json │ │ ├── DocComments.parsesCorrectly.templateTag6.json │ │ ├── DocComments.parsesCorrectly.threeAsterisks.json │ │ ├── DocComments.parsesCorrectly.throwsTag1.json │ │ ├── DocComments.parsesCorrectly.throwsTag2.json │ │ ├── DocComments.parsesCorrectly.throwsTag3.json │ │ ├── DocComments.parsesCorrectly.twoParamTag2.json │ │ ├── DocComments.parsesCorrectly.twoParamTagOnSameLine.json │ │ ├── DocComments.parsesCorrectly.typeTag.json │ │ ├── DocComments.parsesCorrectly.typedefTagWithChildrenTags.json │ │ ├── TypeExpressions.parsesCorrectly.allType.json │ │ ├── TypeExpressions.parsesCorrectly.arrayType1.json │ │ ├── TypeExpressions.parsesCorrectly.arrayType2.json │ │ ├── TypeExpressions.parsesCorrectly.arrayType3.json │ │ ├── TypeExpressions.parsesCorrectly.callSignatureInRecordType.json │ │ ├── TypeExpressions.parsesCorrectly.functionReturnType1.json │ │ ├── TypeExpressions.parsesCorrectly.functionType1.json │ │ ├── TypeExpressions.parsesCorrectly.functionType2.json │ │ ├── TypeExpressions.parsesCorrectly.functionTypeWithTrailingComma.json │ │ ├── TypeExpressions.parsesCorrectly.keyword1.json │ │ ├── TypeExpressions.parsesCorrectly.keyword2.json │ │ ├── TypeExpressions.parsesCorrectly.keyword3.json │ │ ├── TypeExpressions.parsesCorrectly.methodInRecordType.json │ │ ├── TypeExpressions.parsesCorrectly.newType1.json │ │ ├── TypeExpressions.parsesCorrectly.nonNullableType.json │ │ ├── TypeExpressions.parsesCorrectly.nonNullableType2.json │ │ ├── TypeExpressions.parsesCorrectly.nullableType.json │ │ ├── TypeExpressions.parsesCorrectly.nullableType2.json │ │ ├── TypeExpressions.parsesCorrectly.optionalNullable.json │ │ ├── TypeExpressions.parsesCorrectly.optionalType.json │ │ ├── TypeExpressions.parsesCorrectly.recordType1.json │ │ ├── TypeExpressions.parsesCorrectly.recordType2.json │ │ ├── TypeExpressions.parsesCorrectly.recordType3.json │ │ ├── TypeExpressions.parsesCorrectly.recordType4.json │ │ ├── TypeExpressions.parsesCorrectly.recordType5.json │ │ ├── TypeExpressions.parsesCorrectly.recordType6.json │ │ ├── TypeExpressions.parsesCorrectly.recordType7.json │ │ ├── TypeExpressions.parsesCorrectly.recordType8.json │ │ ├── TypeExpressions.parsesCorrectly.thisType1.json │ │ ├── TypeExpressions.parsesCorrectly.topLevelNoParenUnionType.json │ │ ├── TypeExpressions.parsesCorrectly.trailingCommaInRecordType.json │ │ ├── TypeExpressions.parsesCorrectly.tsConstructorType.json │ │ ├── TypeExpressions.parsesCorrectly.tsFunctionType.json │ │ ├── TypeExpressions.parsesCorrectly.tupleType0.json │ │ ├── TypeExpressions.parsesCorrectly.tupleType1.json │ │ ├── TypeExpressions.parsesCorrectly.tupleType2.json │ │ ├── TypeExpressions.parsesCorrectly.tupleType3.json │ │ ├── TypeExpressions.parsesCorrectly.tupleTypeWithTrailingComma.json │ │ ├── TypeExpressions.parsesCorrectly.typeArgumentsNotFollowingDot.json │ │ ├── TypeExpressions.parsesCorrectly.typeOfType.json │ │ ├── TypeExpressions.parsesCorrectly.typeReference1.json │ │ ├── TypeExpressions.parsesCorrectly.typeReference2.json │ │ ├── TypeExpressions.parsesCorrectly.typeReference3.json │ │ ├── TypeExpressions.parsesCorrectly.unionType.json │ │ ├── TypeExpressions.parsesCorrectly.unionTypeWithLeadingOperator.json │ │ ├── TypeExpressions.parsesCorrectly.unionTypeWithOneElementAndLeadingOperator.json │ │ ├── TypeExpressions.parsesCorrectly.unknownType.json │ │ └── TypeExpressions.parsesCorrectly.variadicType.json │ ├── MemberAccessorDeclaration15.errors.txt │ ├── MemberAccessorDeclaration15.js │ ├── MemberAccessorDeclaration15.symbols │ ├── MemberAccessorDeclaration15.types │ ├── MemberFunctionDeclaration1_es6.js │ ├── MemberFunctionDeclaration1_es6.symbols │ ├── MemberFunctionDeclaration1_es6.types │ ├── MemberFunctionDeclaration2_es6.js │ ├── MemberFunctionDeclaration2_es6.symbols │ ├── MemberFunctionDeclaration2_es6.types │ ├── MemberFunctionDeclaration3_es6.errors.txt │ ├── MemberFunctionDeclaration3_es6.js │ ├── MemberFunctionDeclaration3_es6.symbols │ ├── MemberFunctionDeclaration3_es6.types │ ├── MemberFunctionDeclaration4_es6.errors.txt │ ├── MemberFunctionDeclaration4_es6.js │ ├── MemberFunctionDeclaration4_es6.symbols │ ├── MemberFunctionDeclaration4_es6.types │ ├── MemberFunctionDeclaration5_es6.errors.txt │ ├── MemberFunctionDeclaration5_es6.js │ ├── MemberFunctionDeclaration5_es6.symbols │ ├── MemberFunctionDeclaration5_es6.types │ ├── MemberFunctionDeclaration6_es6.errors.txt │ ├── MemberFunctionDeclaration6_es6.js │ ├── MemberFunctionDeclaration6_es6.symbols │ ├── MemberFunctionDeclaration6_es6.types │ ├── MemberFunctionDeclaration7_es6.js │ ├── MemberFunctionDeclaration7_es6.symbols │ ├── MemberFunctionDeclaration7_es6.types │ ├── MemberFunctionDeclaration8_es6.errors.txt │ ├── MemberFunctionDeclaration8_es6.js │ ├── MemberFunctionDeclaration8_es6.symbols │ ├── MemberFunctionDeclaration8_es6.types │ ├── ModuleAndClassWithSameNameAndCommonRoot.errors.txt │ ├── ModuleAndClassWithSameNameAndCommonRoot.js │ ├── ModuleAndClassWithSameNameAndCommonRoot.symbols │ ├── ModuleAndClassWithSameNameAndCommonRoot.types │ ├── ModuleAndEnumWithSameNameAndCommonRoot.js │ ├── ModuleAndEnumWithSameNameAndCommonRoot.symbols │ ├── ModuleAndEnumWithSameNameAndCommonRoot.types │ ├── ModuleAndFunctionWithSameNameAndCommonRoot.errors.txt │ ├── ModuleAndFunctionWithSameNameAndCommonRoot.js │ ├── ModuleAndFunctionWithSameNameAndCommonRoot.symbols │ ├── ModuleAndFunctionWithSameNameAndCommonRoot.types │ ├── ModuleWithExportedAndNonExportedClasses.errors.txt │ ├── ModuleWithExportedAndNonExportedClasses.js │ ├── ModuleWithExportedAndNonExportedClasses.symbols │ ├── ModuleWithExportedAndNonExportedClasses.types │ ├── ModuleWithExportedAndNonExportedEnums.errors.txt │ ├── ModuleWithExportedAndNonExportedEnums.js │ ├── ModuleWithExportedAndNonExportedEnums.symbols │ ├── ModuleWithExportedAndNonExportedEnums.types │ ├── ModuleWithExportedAndNonExportedFunctions.errors.txt │ ├── ModuleWithExportedAndNonExportedFunctions.js │ ├── ModuleWithExportedAndNonExportedFunctions.symbols │ ├── ModuleWithExportedAndNonExportedFunctions.types │ ├── ModuleWithExportedAndNonExportedImportAlias.errors.txt │ ├── ModuleWithExportedAndNonExportedImportAlias.js │ ├── ModuleWithExportedAndNonExportedImportAlias.symbols │ ├── ModuleWithExportedAndNonExportedImportAlias.types │ ├── ModuleWithExportedAndNonExportedVariables.errors.txt │ ├── ModuleWithExportedAndNonExportedVariables.js │ ├── ModuleWithExportedAndNonExportedVariables.symbols │ ├── ModuleWithExportedAndNonExportedVariables.types │ ├── NonInitializedExportInInternalModule(alwaysstrict=false).errors.txt │ ├── NonInitializedExportInInternalModule(alwaysstrict=false).js │ ├── NonInitializedExportInInternalModule(alwaysstrict=false).symbols │ ├── NonInitializedExportInInternalModule(alwaysstrict=false).types │ ├── NonInitializedExportInInternalModule(alwaysstrict=true).errors.txt │ ├── NonInitializedExportInInternalModule(alwaysstrict=true).js │ ├── NonInitializedExportInInternalModule(alwaysstrict=true).symbols │ ├── NonInitializedExportInInternalModule(alwaysstrict=true).types │ ├── ParameterList13.errors.txt │ ├── ParameterList13.js │ ├── ParameterList13.symbols │ ├── ParameterList13.types │ ├── ParameterList4.errors.txt │ ├── ParameterList4.js │ ├── ParameterList4.symbols │ ├── ParameterList4.types │ ├── ParameterList5.errors.txt │ ├── ParameterList5.js │ ├── ParameterList5.symbols │ ├── ParameterList5.types │ ├── ParameterList6.errors.txt │ ├── ParameterList6.js │ ├── ParameterList6.symbols │ ├── ParameterList6.types │ ├── ParameterList7.errors.txt │ ├── ParameterList7.js │ ├── ParameterList7.symbols │ ├── ParameterList7.types │ ├── ParameterList8.errors.txt │ ├── ParameterList8.js │ ├── ParameterList8.symbols │ ├── ParameterList8.types │ ├── Protected1.errors.txt │ ├── Protected1.js │ ├── Protected1.symbols │ ├── Protected1.types │ ├── Protected2.errors.txt │ ├── Protected2.js │ ├── Protected2.symbols │ ├── Protected2.types │ ├── Protected3.js │ ├── Protected3.symbols │ ├── Protected3.types │ ├── Protected4.errors.txt │ ├── Protected4.js │ ├── Protected4.symbols │ ├── Protected4.types │ ├── Protected5.js │ ├── Protected5.symbols │ ├── Protected5.types │ ├── Protected6.errors.txt │ ├── Protected6.js │ ├── Protected6.symbols │ ├── Protected6.types │ ├── Protected7.errors.txt │ ├── Protected7.js │ ├── Protected7.symbols │ ├── Protected7.types │ ├── Protected8.js │ ├── Protected8.symbols │ ├── Protected8.types │ ├── Protected9.js │ ├── Protected9.symbols │ ├── Protected9.types │ ├── SystemModuleForStatementNoInitializer.errors.txt │ ├── SystemModuleForStatementNoInitializer.js │ ├── SystemModuleForStatementNoInitializer.symbols │ ├── SystemModuleForStatementNoInitializer.types │ ├── TemplateExpression1.errors.txt │ ├── TemplateExpression1.js │ ├── TemplateExpression1.symbols │ ├── TemplateExpression1.types │ ├── TransportStream.errors.txt │ ├── TransportStream.js │ ├── TransportStream.symbols │ ├── TransportStream.types │ ├── TupleType1.js │ ├── TupleType1.symbols │ ├── TupleType1.types │ ├── TupleType2.js │ ├── TupleType2.symbols │ ├── TupleType2.types │ ├── TupleType3.js │ ├── TupleType3.symbols │ ├── TupleType3.types │ ├── TupleType4.errors.txt │ ├── TupleType4.js │ ├── TupleType4.symbols │ ├── TupleType4.types │ ├── TupleType5.js │ ├── TupleType5.symbols │ ├── TupleType5.types │ ├── TupleType6.errors.txt │ ├── TupleType6.js │ ├── TupleType6.symbols │ ├── TupleType6.types │ ├── TwoInternalModulesThatMergeEachWithExportedAndNonExportedClassesOfTheSameName.errors.txt │ ├── TwoInternalModulesThatMergeEachWithExportedAndNonExportedClassesOfTheSameName.js │ ├── TwoInternalModulesThatMergeEachWithExportedAndNonExportedClassesOfTheSameName.symbols │ ├── TwoInternalModulesThatMergeEachWithExportedAndNonExportedClassesOfTheSameName.types │ ├── TwoInternalModulesThatMergeEachWithExportedAndNonExportedInterfacesOfTheSameName.js │ ├── TwoInternalModulesThatMergeEachWithExportedAndNonExportedInterfacesOfTheSameName.symbols │ ├── TwoInternalModulesThatMergeEachWithExportedAndNonExportedInterfacesOfTheSameName.types │ ├── TwoInternalModulesThatMergeEachWithExportedAndNonExportedLocalVarsOfTheSameName.js │ ├── TwoInternalModulesThatMergeEachWithExportedAndNonExportedLocalVarsOfTheSameName.symbols │ ├── TwoInternalModulesThatMergeEachWithExportedAndNonExportedLocalVarsOfTheSameName.types │ ├── TwoInternalModulesThatMergeEachWithExportedClassesOfTheSameName.errors.txt │ ├── TwoInternalModulesThatMergeEachWithExportedClassesOfTheSameName.js │ ├── TwoInternalModulesThatMergeEachWithExportedClassesOfTheSameName.symbols │ ├── TwoInternalModulesThatMergeEachWithExportedClassesOfTheSameName.types │ ├── TwoInternalModulesThatMergeEachWithExportedInterfacesOfTheSameName.js │ ├── TwoInternalModulesThatMergeEachWithExportedInterfacesOfTheSameName.symbols │ ├── TwoInternalModulesThatMergeEachWithExportedInterfacesOfTheSameName.types │ ├── TwoInternalModulesThatMergeEachWithExportedLocalVarsOfTheSameName.errors.txt │ ├── TwoInternalModulesThatMergeEachWithExportedLocalVarsOfTheSameName.js │ ├── TwoInternalModulesThatMergeEachWithExportedLocalVarsOfTheSameName.symbols │ ├── TwoInternalModulesThatMergeEachWithExportedLocalVarsOfTheSameName.types │ ├── TwoInternalModulesThatMergeEachWithExportedModulesOfTheSameName.errors.txt │ ├── TwoInternalModulesThatMergeEachWithExportedModulesOfTheSameName.js │ ├── TwoInternalModulesThatMergeEachWithExportedModulesOfTheSameName.symbols │ ├── TwoInternalModulesThatMergeEachWithExportedModulesOfTheSameName.types │ ├── TwoInternalModulesWithTheSameNameAndDifferentCommonRoot.js │ ├── TwoInternalModulesWithTheSameNameAndDifferentCommonRoot.symbols │ ├── TwoInternalModulesWithTheSameNameAndDifferentCommonRoot.types │ ├── TwoInternalModulesWithTheSameNameAndSameCommonRoot.js │ ├── TwoInternalModulesWithTheSameNameAndSameCommonRoot.symbols │ ├── TwoInternalModulesWithTheSameNameAndSameCommonRoot.types │ ├── TypeArgumentList1.errors.txt │ ├── TypeArgumentList1.js │ ├── TypeArgumentList1.symbols │ ├── TypeArgumentList1.types │ ├── TypeGuardWithArrayUnion.errors.txt │ ├── TypeGuardWithArrayUnion.js │ ├── TypeGuardWithArrayUnion.symbols │ ├── TypeGuardWithArrayUnion.types │ ├── TypeGuardWithEnumUnion.js │ ├── TypeGuardWithEnumUnion.symbols │ ├── TypeGuardWithEnumUnion.types │ ├── VariableDeclaration10_es6.js │ ├── VariableDeclaration10_es6.symbols │ ├── VariableDeclaration10_es6.types │ ├── VariableDeclaration11_es6.errors.txt │ ├── VariableDeclaration11_es6.js │ ├── VariableDeclaration11_es6.symbols │ ├── VariableDeclaration11_es6.types │ ├── VariableDeclaration12_es6.js │ ├── VariableDeclaration12_es6.symbols │ ├── VariableDeclaration12_es6.types │ ├── VariableDeclaration13_es6.errors.txt │ ├── VariableDeclaration13_es6.js │ ├── VariableDeclaration13_es6.symbols │ ├── VariableDeclaration13_es6.types │ ├── VariableDeclaration1_es6.errors.txt │ ├── VariableDeclaration1_es6.js │ ├── VariableDeclaration1_es6.symbols │ ├── VariableDeclaration1_es6.types │ ├── VariableDeclaration2_es6.errors.txt │ ├── VariableDeclaration2_es6.js │ ├── VariableDeclaration2_es6.symbols │ ├── VariableDeclaration2_es6.types │ ├── VariableDeclaration3_es6.js │ ├── VariableDeclaration3_es6.symbols │ ├── VariableDeclaration3_es6.types │ ├── VariableDeclaration4_es6.errors.txt │ ├── VariableDeclaration4_es6.js │ ├── VariableDeclaration4_es6.symbols │ ├── VariableDeclaration4_es6.types │ ├── VariableDeclaration5_es6.js │ ├── VariableDeclaration5_es6.symbols │ ├── VariableDeclaration5_es6.types │ ├── VariableDeclaration6_es6.errors.txt │ ├── VariableDeclaration6_es6.js │ ├── VariableDeclaration6_es6.symbols │ ├── VariableDeclaration6_es6.types │ ├── VariableDeclaration7_es6.js │ ├── VariableDeclaration7_es6.symbols │ ├── VariableDeclaration7_es6.types │ ├── VariableDeclaration8_es6.js │ ├── VariableDeclaration8_es6.symbols │ ├── VariableDeclaration8_es6.types │ ├── VariableDeclaration9_es6.js │ ├── VariableDeclaration9_es6.symbols │ ├── VariableDeclaration9_es6.types │ ├── YieldExpression10_es6.errors.txt │ ├── YieldExpression10_es6.js │ ├── YieldExpression10_es6.symbols │ ├── YieldExpression10_es6.types │ ├── YieldExpression11_es6.errors.txt │ ├── YieldExpression11_es6.js │ ├── YieldExpression11_es6.symbols │ ├── YieldExpression11_es6.types │ ├── YieldExpression12_es6.errors.txt │ ├── YieldExpression12_es6.js │ ├── YieldExpression12_es6.symbols │ ├── YieldExpression12_es6.types │ ├── YieldExpression13_es6.js │ ├── YieldExpression13_es6.symbols │ ├── YieldExpression13_es6.types │ ├── YieldExpression14_es6.errors.txt │ ├── YieldExpression14_es6.js │ ├── YieldExpression14_es6.symbols │ ├── YieldExpression14_es6.types │ ├── YieldExpression15_es6.errors.txt │ ├── YieldExpression15_es6.js │ ├── YieldExpression15_es6.symbols │ ├── YieldExpression15_es6.types │ ├── YieldExpression16_es6.errors.txt │ ├── YieldExpression16_es6.js │ ├── YieldExpression16_es6.symbols │ ├── YieldExpression16_es6.types │ ├── YieldExpression17_es6.errors.txt │ ├── YieldExpression17_es6.js │ ├── YieldExpression17_es6.symbols │ ├── YieldExpression17_es6.types │ ├── YieldExpression18_es6.errors.txt │ ├── YieldExpression18_es6.js │ ├── YieldExpression18_es6.symbols │ ├── YieldExpression18_es6.types │ ├── YieldExpression19_es6.js │ ├── YieldExpression19_es6.symbols │ ├── YieldExpression19_es6.types │ ├── YieldExpression1_es6.errors.txt │ ├── YieldExpression1_es6.js │ ├── YieldExpression1_es6.symbols │ ├── YieldExpression1_es6.types │ ├── YieldExpression20_es6.errors.txt │ ├── YieldExpression20_es6.js │ ├── YieldExpression20_es6.symbols │ ├── YieldExpression20_es6.types │ ├── YieldExpression2_es6.errors.txt │ ├── YieldExpression2_es6.js │ ├── YieldExpression2_es6.symbols │ ├── YieldExpression2_es6.types │ ├── YieldExpression3_es6.js │ ├── YieldExpression3_es6.symbols │ ├── YieldExpression3_es6.types │ ├── YieldExpression4_es6.js │ ├── YieldExpression4_es6.symbols │ ├── YieldExpression4_es6.types │ ├── YieldExpression5_es6.errors.txt │ ├── YieldExpression5_es6.js │ ├── YieldExpression5_es6.symbols │ ├── YieldExpression5_es6.types │ ├── YieldExpression6_es6.errors.txt │ ├── YieldExpression6_es6.js │ ├── YieldExpression6_es6.symbols │ ├── YieldExpression6_es6.types │ ├── YieldExpression7_es6.js │ ├── YieldExpression7_es6.symbols │ ├── YieldExpression7_es6.types │ ├── YieldExpression8_es6.errors.txt │ ├── YieldExpression8_es6.js │ ├── YieldExpression8_es6.symbols │ ├── YieldExpression8_es6.types │ ├── YieldExpression9_es6.errors.txt │ ├── YieldExpression9_es6.js │ ├── YieldExpression9_es6.symbols │ ├── YieldExpression9_es6.types │ ├── YieldStarExpression1_es6.errors.txt │ ├── YieldStarExpression1_es6.js │ ├── YieldStarExpression1_es6.symbols │ ├── YieldStarExpression1_es6.types │ ├── YieldStarExpression2_es6.errors.txt │ ├── YieldStarExpression2_es6.js │ ├── YieldStarExpression2_es6.symbols │ ├── YieldStarExpression2_es6.types │ ├── YieldStarExpression3_es6.errors.txt │ ├── YieldStarExpression3_es6.js │ ├── YieldStarExpression3_es6.symbols │ ├── YieldStarExpression3_es6.types │ ├── YieldStarExpression4_es6.js │ ├── YieldStarExpression4_es6.symbols │ ├── YieldStarExpression4_es6.types │ ├── abstractClassInLocalScope.js │ ├── abstractClassInLocalScope.symbols │ ├── abstractClassInLocalScope.types │ ├── abstractClassInLocalScopeIsAbstract.errors.txt │ ├── abstractClassInLocalScopeIsAbstract.js │ ├── abstractClassInLocalScopeIsAbstract.symbols │ ├── abstractClassInLocalScopeIsAbstract.types │ ├── abstractClassUnionInstantiation.errors.txt │ ├── abstractClassUnionInstantiation.js │ ├── abstractClassUnionInstantiation.symbols │ ├── abstractClassUnionInstantiation.types │ ├── abstractIdentifierNameStrict.js │ ├── abstractIdentifierNameStrict.symbols │ ├── abstractIdentifierNameStrict.types │ ├── abstractInterfaceIdentifierName.js │ ├── abstractInterfaceIdentifierName.symbols │ ├── abstractInterfaceIdentifierName.types │ ├── abstractProperty(target=es2015).js │ ├── abstractProperty(target=es2015).symbols │ ├── abstractProperty(target=es2015).types │ ├── abstractProperty(target=esnext).js │ ├── abstractProperty(target=esnext).symbols │ ├── abstractProperty(target=esnext).types │ ├── abstractPropertyBasics(target=es2015).js │ ├── abstractPropertyBasics(target=es2015).symbols │ ├── abstractPropertyBasics(target=es2015).types │ ├── abstractPropertyBasics(target=es5).errors.txt │ ├── abstractPropertyBasics(target=es5).js │ ├── abstractPropertyBasics(target=es5).symbols │ ├── abstractPropertyBasics(target=es5).types │ ├── abstractPropertyInConstructor.errors.txt │ ├── abstractPropertyInConstructor.js │ ├── abstractPropertyInConstructor.symbols │ ├── abstractPropertyInConstructor.types │ ├── abstractPropertyInitializer.errors.txt │ ├── abstractPropertyInitializer.js │ ├── abstractPropertyInitializer.symbols │ ├── abstractPropertyInitializer.types │ ├── abstractPropertyNegative(target=es2015).errors.txt │ ├── abstractPropertyNegative(target=es2015).js │ ├── abstractPropertyNegative(target=es2015).symbols │ ├── abstractPropertyNegative(target=es2015).types │ ├── abstractPropertyNegative(target=es5).errors.txt │ ├── abstractPropertyNegative(target=es5).js │ ├── abstractPropertyNegative(target=es5).symbols │ ├── abstractPropertyNegative(target=es5).types │ ├── acceptSymbolAsWeakType.js │ ├── acceptSymbolAsWeakType.symbols │ ├── acceptSymbolAsWeakType.types │ ├── acceptableAlias1.js │ ├── acceptableAlias1.symbols │ ├── acceptableAlias1.types │ ├── accessInstanceMemberFromStaticMethod01.errors.txt │ ├── accessInstanceMemberFromStaticMethod01.js │ ├── accessInstanceMemberFromStaticMethod01.symbols │ ├── accessInstanceMemberFromStaticMethod01.types │ ├── accessOverriddenBaseClassMember1.js │ ├── accessOverriddenBaseClassMember1.symbols │ ├── accessOverriddenBaseClassMember1.types │ ├── accessStaticMemberFromInstanceMethod01.errors.txt │ ├── accessStaticMemberFromInstanceMethod01.js │ ├── accessStaticMemberFromInstanceMethod01.symbols │ ├── accessStaticMemberFromInstanceMethod01.types │ ├── accessibilityModifiers(target=es2015).errors.txt │ ├── accessibilityModifiers(target=es2015).js │ ├── accessibilityModifiers(target=es2015).symbols │ ├── accessibilityModifiers(target=es2015).types │ ├── accessibilityModifiers(target=es5).errors.txt │ ├── accessibilityModifiers(target=es5).js │ ├── accessibilityModifiers(target=es5).symbols │ ├── accessibilityModifiers(target=es5).types │ ├── accessorAccidentalCallDiagnostic(target=es2015).errors.txt │ ├── accessorAccidentalCallDiagnostic(target=es2015).js │ ├── accessorAccidentalCallDiagnostic(target=es2015).symbols │ ├── accessorAccidentalCallDiagnostic(target=es2015).types │ ├── accessorAccidentalCallDiagnostic(target=es5).errors.txt │ ├── accessorAccidentalCallDiagnostic(target=es5).js │ ├── accessorAccidentalCallDiagnostic(target=es5).symbols │ ├── accessorAccidentalCallDiagnostic(target=es5).types │ ├── accessorBodyInTypeContext.errors.txt │ ├── accessorBodyInTypeContext.js │ ├── accessorBodyInTypeContext.symbols │ ├── accessorBodyInTypeContext.types │ ├── accessorDeclarationEmitJs.js │ ├── accessorDeclarationEmitJs.symbols │ ├── accessorDeclarationEmitJs.types │ ├── accessorDeclarationEmitVisibilityErrors.errors.txt │ ├── accessorDeclarationEmitVisibilityErrors.js │ ├── accessorDeclarationEmitVisibilityErrors.symbols │ ├── accessorDeclarationEmitVisibilityErrors.types │ ├── accessorDeclarationOrder.errors.txt │ ├── accessorDeclarationOrder.js │ ├── accessorDeclarationOrder.symbols │ ├── accessorDeclarationOrder.types │ ├── accessorInAmbientContextES5(target=es2015).errors.txt │ ├── accessorInAmbientContextES5(target=es2015).js │ ├── accessorInAmbientContextES5(target=es2015).symbols │ ├── accessorInAmbientContextES5(target=es2015).types │ ├── accessorInAmbientContextES5(target=es5).errors.txt │ ├── accessorInAmbientContextES5(target=es5).js │ ├── accessorInAmbientContextES5(target=es5).symbols │ ├── accessorInAmbientContextES5(target=es5).types │ ├── accessorInferredReturnTypeErrorInReturnStatement.errors.txt │ ├── accessorInferredReturnTypeErrorInReturnStatement.js │ ├── accessorInferredReturnTypeErrorInReturnStatement.symbols │ ├── accessorInferredReturnTypeErrorInReturnStatement.types │ ├── accessorParameterAccessibilityModifier(target=es2015).errors.txt │ ├── accessorParameterAccessibilityModifier(target=es2015).js │ ├── accessorParameterAccessibilityModifier(target=es2015).symbols │ ├── accessorParameterAccessibilityModifier(target=es2015).types │ ├── accessorParameterAccessibilityModifier(target=es5).errors.txt │ ├── accessorParameterAccessibilityModifier(target=es5).js │ ├── accessorParameterAccessibilityModifier(target=es5).symbols │ ├── accessorParameterAccessibilityModifier(target=es5).types │ ├── accessorWithES5(target=es2015).js │ ├── accessorWithES5(target=es2015).symbols │ ├── accessorWithES5(target=es2015).types │ ├── accessorWithES5(target=es5).errors.txt │ ├── accessorWithES5(target=es5).js │ ├── accessorWithES5(target=es5).symbols │ ├── accessorWithES5(target=es5).types │ ├── accessorWithInitializer(target=es2015).errors.txt │ ├── accessorWithInitializer(target=es2015).js │ ├── accessorWithInitializer(target=es2015).symbols │ ├── accessorWithInitializer(target=es2015).types │ ├── accessorWithInitializer(target=es5).errors.txt │ ├── accessorWithInitializer(target=es5).js │ ├── accessorWithInitializer(target=es5).symbols │ ├── accessorWithInitializer(target=es5).types │ ├── accessorWithLineTerminator(target=es2015).js │ ├── accessorWithLineTerminator(target=es2015).symbols │ ├── accessorWithLineTerminator(target=es2015).types │ ├── accessorWithLineTerminator(target=es5).errors.txt │ ├── accessorWithLineTerminator(target=es5).js │ ├── accessorWithLineTerminator(target=es5).symbols │ ├── accessorWithLineTerminator(target=es5).types │ ├── accessorWithMismatchedAccessibilityModifiers(target=es2015).js │ ├── accessorWithMismatchedAccessibilityModifiers(target=es2015).symbols │ ├── accessorWithMismatchedAccessibilityModifiers(target=es2015).types │ ├── accessorWithMismatchedAccessibilityModifiers(target=es5).errors.txt │ ├── accessorWithMismatchedAccessibilityModifiers(target=es5).js │ ├── accessorWithMismatchedAccessibilityModifiers(target=es5).symbols │ ├── accessorWithMismatchedAccessibilityModifiers(target=es5).types │ ├── accessorWithRestParam(target=es2015).errors.txt │ ├── accessorWithRestParam(target=es2015).js │ ├── accessorWithRestParam(target=es2015).symbols │ ├── accessorWithRestParam(target=es2015).types │ ├── accessorWithRestParam(target=es5).errors.txt │ ├── accessorWithRestParam(target=es5).js │ ├── accessorWithRestParam(target=es5).symbols │ ├── accessorWithRestParam(target=es5).types │ ├── accessorWithoutBody1(target=es2015).errors.txt │ ├── accessorWithoutBody1(target=es2015).js │ ├── accessorWithoutBody1(target=es2015).symbols │ ├── accessorWithoutBody1(target=es2015).types │ ├── accessorWithoutBody1(target=es5).errors.txt │ ├── accessorWithoutBody1(target=es5).js │ ├── accessorWithoutBody1(target=es5).symbols │ ├── accessorWithoutBody1(target=es5).types │ ├── accessorWithoutBody2(target=es2015).errors.txt │ ├── accessorWithoutBody2(target=es2015).js │ ├── accessorWithoutBody2(target=es2015).symbols │ ├── accessorWithoutBody2(target=es2015).types │ ├── accessorWithoutBody2(target=es5).errors.txt │ ├── accessorWithoutBody2(target=es5).js │ ├── accessorWithoutBody2(target=es5).symbols │ ├── accessorWithoutBody2(target=es5).types │ ├── accessorsAreNotContextuallyTyped.errors.txt │ ├── accessorsAreNotContextuallyTyped.js │ ├── accessorsAreNotContextuallyTyped.symbols │ ├── accessorsAreNotContextuallyTyped.types │ ├── accessorsEmit.js │ ├── accessorsEmit.symbols │ ├── accessorsEmit.types │ ├── accessorsInAmbientContext(target=es2015).errors.txt │ ├── accessorsInAmbientContext(target=es2015).js │ ├── accessorsInAmbientContext(target=es2015).symbols │ ├── accessorsInAmbientContext(target=es2015).types │ ├── accessorsInAmbientContext(target=es5).errors.txt │ ├── accessorsInAmbientContext(target=es5).js │ ├── accessorsInAmbientContext(target=es5).symbols │ ├── accessorsInAmbientContext(target=es5).types │ ├── accessorsOverrideMethod.errors.txt │ ├── accessorsOverrideMethod.js │ ├── accessorsOverrideMethod.symbols │ ├── accessorsOverrideMethod.types │ ├── accessorsOverrideProperty.errors.txt │ ├── accessorsOverrideProperty.js │ ├── accessorsOverrideProperty.symbols │ ├── accessorsOverrideProperty.types │ ├── accessorsOverrideProperty10.errors.txt │ ├── accessorsOverrideProperty10.symbols │ ├── accessorsOverrideProperty10.types │ ├── accessorsOverrideProperty2.errors.txt │ ├── accessorsOverrideProperty2.js │ ├── accessorsOverrideProperty2.symbols │ ├── accessorsOverrideProperty2.types │ ├── accessorsOverrideProperty3.errors.txt │ ├── accessorsOverrideProperty3.js │ ├── accessorsOverrideProperty3.symbols │ ├── accessorsOverrideProperty3.types │ ├── accessorsOverrideProperty4.errors.txt │ ├── accessorsOverrideProperty4.js │ ├── accessorsOverrideProperty4.symbols │ ├── accessorsOverrideProperty4.types │ ├── accessorsOverrideProperty5.js │ ├── accessorsOverrideProperty5.symbols │ ├── accessorsOverrideProperty5.types │ ├── accessorsOverrideProperty6.errors.txt │ ├── accessorsOverrideProperty6.js │ ├── accessorsOverrideProperty6.symbols │ ├── accessorsOverrideProperty6.types │ ├── accessorsOverrideProperty7(target=es2015).errors.txt │ ├── accessorsOverrideProperty7(target=es2015).js │ ├── accessorsOverrideProperty7(target=es2015).symbols │ ├── accessorsOverrideProperty7(target=es2015).types │ ├── accessorsOverrideProperty7(target=es5).errors.txt │ ├── accessorsOverrideProperty7(target=es5).js │ ├── accessorsOverrideProperty7(target=es5).symbols │ ├── accessorsOverrideProperty7(target=es5).types │ ├── accessorsOverrideProperty8.js │ ├── accessorsOverrideProperty8.symbols │ ├── accessorsOverrideProperty8.types │ ├── accessorsOverrideProperty9.js │ ├── accessorsOverrideProperty9.symbols │ ├── accessorsOverrideProperty9.types │ ├── accessors_spec_section-4.5_error-cases.errors.txt │ ├── accessors_spec_section-4.5_error-cases.js │ ├── accessors_spec_section-4.5_error-cases.symbols │ ├── accessors_spec_section-4.5_error-cases.types │ ├── accessors_spec_section-4.5_inference.js │ ├── accessors_spec_section-4.5_inference.symbols │ ├── accessors_spec_section-4.5_inference.types │ ├── addMoreCallSignaturesToBaseSignature.errors.txt │ ├── addMoreCallSignaturesToBaseSignature.js │ ├── addMoreCallSignaturesToBaseSignature.symbols │ ├── addMoreCallSignaturesToBaseSignature.types │ ├── addMoreCallSignaturesToBaseSignature2.errors.txt │ ├── addMoreCallSignaturesToBaseSignature2.js │ ├── addMoreCallSignaturesToBaseSignature2.symbols │ ├── addMoreCallSignaturesToBaseSignature2.types │ ├── addMoreOverloadsToBaseSignature.errors.txt │ ├── addMoreOverloadsToBaseSignature.js │ ├── addMoreOverloadsToBaseSignature.symbols │ ├── addMoreOverloadsToBaseSignature.types │ ├── additionOperatorWithAnyAndEveryType.js │ ├── additionOperatorWithAnyAndEveryType.symbols │ ├── additionOperatorWithAnyAndEveryType.types │ ├── additionOperatorWithConstrainedTypeParameter.js │ ├── additionOperatorWithConstrainedTypeParameter.symbols │ ├── additionOperatorWithConstrainedTypeParameter.types │ ├── additionOperatorWithInvalidOperands.errors.txt │ ├── additionOperatorWithInvalidOperands.js │ ├── additionOperatorWithInvalidOperands.symbols │ ├── additionOperatorWithInvalidOperands.types │ ├── additionOperatorWithNullValueAndInvalidOperator.errors.txt │ ├── additionOperatorWithNullValueAndInvalidOperator.js │ ├── additionOperatorWithNullValueAndInvalidOperator.symbols │ ├── additionOperatorWithNullValueAndInvalidOperator.types │ ├── additionOperatorWithNullValueAndValidOperator.errors.txt │ ├── additionOperatorWithNullValueAndValidOperator.js │ ├── additionOperatorWithNullValueAndValidOperator.symbols │ ├── additionOperatorWithNullValueAndValidOperator.types │ ├── additionOperatorWithNumberAndEnum.errors.txt │ ├── additionOperatorWithNumberAndEnum.js │ ├── additionOperatorWithNumberAndEnum.symbols │ ├── additionOperatorWithNumberAndEnum.types │ ├── additionOperatorWithOnlyNullValueOrUndefinedValue.errors.txt │ ├── additionOperatorWithOnlyNullValueOrUndefinedValue.js │ ├── additionOperatorWithOnlyNullValueOrUndefinedValue.symbols │ ├── additionOperatorWithOnlyNullValueOrUndefinedValue.types │ ├── additionOperatorWithStringAndEveryType.errors.txt │ ├── additionOperatorWithStringAndEveryType.js │ ├── additionOperatorWithStringAndEveryType.symbols │ ├── additionOperatorWithStringAndEveryType.types │ ├── additionOperatorWithTypeParameter.errors.txt │ ├── additionOperatorWithTypeParameter.js │ ├── additionOperatorWithTypeParameter.symbols │ ├── additionOperatorWithTypeParameter.types │ ├── additionOperatorWithUndefinedValueAndInvalidOperands.errors.txt │ ├── additionOperatorWithUndefinedValueAndInvalidOperands.js │ ├── additionOperatorWithUndefinedValueAndInvalidOperands.symbols │ ├── additionOperatorWithUndefinedValueAndInvalidOperands.types │ ├── additionOperatorWithUndefinedValueAndValidOperator.errors.txt │ ├── additionOperatorWithUndefinedValueAndValidOperator.js │ ├── additionOperatorWithUndefinedValueAndValidOperator.symbols │ ├── additionOperatorWithUndefinedValueAndValidOperator.types │ ├── aliasAssignments.errors.txt │ ├── aliasAssignments.js │ ├── aliasAssignments.symbols │ ├── aliasAssignments.types │ ├── aliasBug.errors.txt │ ├── aliasBug.js │ ├── aliasBug.symbols │ ├── aliasBug.types │ ├── aliasDoesNotDuplicateSignatures.errors.txt │ ├── aliasDoesNotDuplicateSignatures.js │ ├── aliasDoesNotDuplicateSignatures.symbols │ ├── aliasDoesNotDuplicateSignatures.types │ ├── aliasErrors.errors.txt │ ├── aliasErrors.js │ ├── aliasErrors.symbols │ ├── aliasErrors.types │ ├── aliasInaccessibleModule.js │ ├── aliasInaccessibleModule.symbols │ ├── aliasInaccessibleModule.types │ ├── aliasInaccessibleModule2.js │ ├── aliasInaccessibleModule2.symbols │ ├── aliasInaccessibleModule2.types │ ├── aliasInstantiationExpressionGenericIntersectionNoCrash1.errors.txt │ ├── aliasInstantiationExpressionGenericIntersectionNoCrash1.js │ ├── aliasInstantiationExpressionGenericIntersectionNoCrash1.symbols │ ├── aliasInstantiationExpressionGenericIntersectionNoCrash1.types │ ├── aliasInstantiationExpressionGenericIntersectionNoCrash2.errors.txt │ ├── aliasInstantiationExpressionGenericIntersectionNoCrash2.js │ ├── aliasInstantiationExpressionGenericIntersectionNoCrash2.symbols │ ├── aliasInstantiationExpressionGenericIntersectionNoCrash2.types │ ├── aliasOfGenericFunctionWithRestBehavedSameAsUnaliased.js │ ├── aliasOfGenericFunctionWithRestBehavedSameAsUnaliased.symbols │ ├── aliasOfGenericFunctionWithRestBehavedSameAsUnaliased.types │ ├── aliasOnMergedModuleInterface.errors.txt │ ├── aliasOnMergedModuleInterface.js │ ├── aliasOnMergedModuleInterface.symbols │ ├── aliasOnMergedModuleInterface.types │ ├── aliasUsageInAccessorsOfClass(target=es2015).errors.txt │ ├── aliasUsageInAccessorsOfClass(target=es2015).js │ ├── aliasUsageInAccessorsOfClass(target=es2015).symbols │ ├── aliasUsageInAccessorsOfClass(target=es2015).types │ ├── aliasUsageInAccessorsOfClass(target=es5).errors.txt │ ├── aliasUsageInAccessorsOfClass(target=es5).js │ ├── aliasUsageInAccessorsOfClass(target=es5).symbols │ ├── aliasUsageInAccessorsOfClass(target=es5).types │ ├── aliasUsageInArray.errors.txt │ ├── aliasUsageInArray.js │ ├── aliasUsageInArray.symbols │ ├── aliasUsageInArray.types │ ├── aliasUsageInFunctionExpression.errors.txt │ ├── aliasUsageInFunctionExpression.js │ ├── aliasUsageInFunctionExpression.symbols │ ├── aliasUsageInFunctionExpression.types │ ├── aliasUsageInGenericFunction.errors.txt │ ├── aliasUsageInGenericFunction.js │ ├── aliasUsageInGenericFunction.symbols │ ├── aliasUsageInGenericFunction.types │ ├── aliasUsageInIndexerOfClass.errors.txt │ ├── aliasUsageInIndexerOfClass.js │ ├── aliasUsageInIndexerOfClass.symbols │ ├── aliasUsageInIndexerOfClass.types │ ├── aliasUsageInObjectLiteral.errors.txt │ ├── aliasUsageInObjectLiteral.js │ ├── aliasUsageInObjectLiteral.symbols │ ├── aliasUsageInObjectLiteral.types │ ├── aliasUsageInOrExpression.errors.txt │ ├── aliasUsageInOrExpression.js │ ├── aliasUsageInOrExpression.symbols │ ├── aliasUsageInOrExpression.types │ ├── aliasUsageInTypeArgumentOfExtendsClause.errors.txt │ ├── aliasUsageInTypeArgumentOfExtendsClause.js │ ├── aliasUsageInTypeArgumentOfExtendsClause.symbols │ ├── aliasUsageInTypeArgumentOfExtendsClause.types │ ├── aliasUsageInVarAssignment.errors.txt │ ├── aliasUsageInVarAssignment.js │ ├── aliasUsageInVarAssignment.symbols │ ├── aliasUsageInVarAssignment.types │ ├── aliasUsedAsNameValue.js │ ├── aliasUsedAsNameValue.symbols │ ├── aliasUsedAsNameValue.types │ ├── aliasWithInterfaceExportAssignmentUsedInVarInitializer.errors.txt │ ├── aliasWithInterfaceExportAssignmentUsedInVarInitializer.js │ ├── aliasWithInterfaceExportAssignmentUsedInVarInitializer.symbols │ ├── aliasWithInterfaceExportAssignmentUsedInVarInitializer.types │ ├── aliasesInSystemModule1.errors.txt │ ├── aliasesInSystemModule1.js │ ├── aliasesInSystemModule1.symbols │ ├── aliasesInSystemModule1.types │ ├── aliasesInSystemModule2.errors.txt │ ├── aliasesInSystemModule2.js │ ├── aliasesInSystemModule2.symbols │ ├── aliasesInSystemModule2.types │ ├── allowImportClausesToMergeWithTypes.errors.txt │ ├── allowImportClausesToMergeWithTypes.js │ ├── allowImportClausesToMergeWithTypes.symbols │ ├── allowImportClausesToMergeWithTypes.types │ ├── allowImportingTsExtensions(moduleresolution=bundler).errors.txt │ ├── allowImportingTsExtensions(moduleresolution=classic).errors.txt │ ├── allowImportingTsExtensions(moduleresolution=node16).errors.txt │ ├── allowImportingTsExtensions(moduleresolution=nodenext).errors.txt │ ├── allowImportingTypesDtsExtension(allowimportingtsextensions=false,moduleresolution=classic).errors.txt │ ├── allowImportingTypesDtsExtension(allowimportingtsextensions=false,moduleresolution=node16).errors.txt │ ├── allowImportingTypesDtsExtension(allowimportingtsextensions=false,moduleresolution=nodenext).errors.txt │ ├── allowImportingTypesDtsExtension(allowimportingtsextensions=true,moduleresolution=classic).errors.txt │ ├── allowImportingTypesDtsExtension(allowimportingtsextensions=true,moduleresolution=node16).errors.txt │ ├── allowImportingTypesDtsExtension(allowimportingtsextensions=true,moduleresolution=nodenext).errors.txt │ ├── allowJsClassThisTypeCrash.symbols │ ├── allowJsClassThisTypeCrash.types │ ├── allowJsCrossMonorepoPackage.symbols │ ├── allowJsCrossMonorepoPackage.trace.json │ ├── allowJsCrossMonorepoPackage.types │ ├── allowJscheckJsTypeParameterNoCrash.errors.txt │ ├── allowJscheckJsTypeParameterNoCrash.js │ ├── allowJscheckJsTypeParameterNoCrash.symbols │ ├── allowJscheckJsTypeParameterNoCrash.types │ ├── allowSyntheticDefaultImports1.js │ ├── allowSyntheticDefaultImports1.symbols │ ├── allowSyntheticDefaultImports1.types │ ├── allowSyntheticDefaultImports10.errors.txt │ ├── allowSyntheticDefaultImports10.js │ ├── allowSyntheticDefaultImports10.symbols │ ├── allowSyntheticDefaultImports10.types │ ├── allowSyntheticDefaultImports2.errors.txt │ ├── allowSyntheticDefaultImports2.js │ ├── allowSyntheticDefaultImports2.symbols │ ├── allowSyntheticDefaultImports2.types │ ├── allowSyntheticDefaultImports3.errors.txt │ ├── allowSyntheticDefaultImports3.js │ ├── allowSyntheticDefaultImports3.symbols │ ├── allowSyntheticDefaultImports3.types │ ├── allowSyntheticDefaultImports4.js │ ├── allowSyntheticDefaultImports4.symbols │ ├── allowSyntheticDefaultImports4.types │ ├── allowSyntheticDefaultImports5.errors.txt │ ├── allowSyntheticDefaultImports5.js │ ├── allowSyntheticDefaultImports5.symbols │ ├── allowSyntheticDefaultImports5.types │ ├── allowSyntheticDefaultImports6.errors.txt │ ├── allowSyntheticDefaultImports6.js │ ├── allowSyntheticDefaultImports6.symbols │ ├── allowSyntheticDefaultImports6.types │ ├── allowSyntheticDefaultImports7.errors.txt │ ├── allowSyntheticDefaultImports7.js │ ├── allowSyntheticDefaultImports7.symbols │ ├── allowSyntheticDefaultImports7.types │ ├── allowSyntheticDefaultImports8.errors.txt │ ├── allowSyntheticDefaultImports8.js │ ├── allowSyntheticDefaultImports8.symbols │ ├── allowSyntheticDefaultImports8.types │ ├── allowSyntheticDefaultImports9.js │ ├── allowSyntheticDefaultImports9.symbols │ ├── allowSyntheticDefaultImports9.types │ ├── allowSyntheticDefaultImportsCanPaintCrossModuleDeclaration.js │ ├── allowSyntheticDefaultImportsCanPaintCrossModuleDeclaration.symbols │ ├── allowSyntheticDefaultImportsCanPaintCrossModuleDeclaration.types │ ├── allowUnescapedParagraphAndLineSeparatorsInStringLiteral.js │ ├── allowUnescapedParagraphAndLineSeparatorsInStringLiteral.symbols │ ├── allowUnescapedParagraphAndLineSeparatorsInStringLiteral.types │ ├── allowsImportingTsExtension.errors.txt │ ├── allowsImportingTsExtension.js │ ├── allowsImportingTsExtension.symbols │ ├── allowsImportingTsExtension.types │ ├── alwaysStrict.errors.txt │ ├── alwaysStrict.js │ ├── alwaysStrict.symbols │ ├── alwaysStrict.types │ ├── alwaysStrictAlreadyUseStrict.js │ ├── alwaysStrictAlreadyUseStrict.symbols │ ├── alwaysStrictAlreadyUseStrict.types │ ├── alwaysStrictES6.errors.txt │ ├── alwaysStrictES6.js │ ├── alwaysStrictES6.symbols │ ├── alwaysStrictES6.types │ ├── alwaysStrictModule.errors.txt │ ├── alwaysStrictModule.js │ ├── alwaysStrictModule.symbols │ ├── alwaysStrictModule.types │ ├── alwaysStrictModule2.errors.txt │ ├── alwaysStrictModule2.js │ ├── alwaysStrictModule2.symbols │ ├── alwaysStrictModule2.types │ ├── alwaysStrictModule3.js │ ├── alwaysStrictModule3.symbols │ ├── alwaysStrictModule3.types │ ├── alwaysStrictModule4.js │ ├── alwaysStrictModule4.symbols │ ├── alwaysStrictModule4.types │ ├── alwaysStrictModule5.js │ ├── alwaysStrictModule5.symbols │ ├── alwaysStrictModule5.types │ ├── alwaysStrictModule6(target=es2015).js │ ├── alwaysStrictModule6(target=es2015).symbols │ ├── alwaysStrictModule6(target=es2015).types │ ├── alwaysStrictModule6(target=es5).errors.txt │ ├── alwaysStrictModule6(target=es5).js │ ├── alwaysStrictModule6(target=es5).symbols │ ├── alwaysStrictModule6(target=es5).types │ ├── alwaysStrictNoImplicitUseStrict.errors.txt │ ├── alwaysStrictNoImplicitUseStrict.js │ ├── alwaysStrictNoImplicitUseStrict.symbols │ ├── alwaysStrictNoImplicitUseStrict.types │ ├── ambient.js │ ├── ambient.symbols │ ├── ambient.types │ ├── ambientAccessors(target=es2015).js │ ├── ambientAccessors(target=es2015).symbols │ ├── ambientAccessors(target=es2015).types │ ├── ambientAccessors(target=es5).errors.txt │ ├── ambientAccessors(target=es5).js │ ├── ambientAccessors(target=es5).symbols │ ├── ambientAccessors(target=es5).types │ ├── ambientClassDeclarationWithExtends.js │ ├── ambientClassDeclarationWithExtends.symbols │ ├── ambientClassDeclarationWithExtends.types │ ├── ambientClassDeclaredBeforeBase.symbols │ ├── ambientClassDeclaredBeforeBase.types │ ├── ambientClassMergesOverloadsWithInterface.js │ ├── ambientClassMergesOverloadsWithInterface.symbols │ ├── ambientClassMergesOverloadsWithInterface.types │ ├── ambientClassOverloadForFunction.js │ ├── ambientClassOverloadForFunction.symbols │ ├── ambientClassOverloadForFunction.types │ ├── ambientConstLiterals.js │ ├── ambientConstLiterals.symbols │ ├── ambientConstLiterals.types │ ├── ambientDeclarations.js │ ├── ambientDeclarations.symbols │ ├── ambientDeclarations.types │ ├── ambientDeclarationsExternal.js │ ├── ambientDeclarationsExternal.symbols │ ├── ambientDeclarationsExternal.types │ ├── ambientDeclarationsPatterns.js │ ├── ambientDeclarationsPatterns.symbols │ ├── ambientDeclarationsPatterns.types │ ├── ambientDeclarationsPatterns_merging1.errors.txt │ ├── ambientDeclarationsPatterns_merging1.js │ ├── ambientDeclarationsPatterns_merging1.symbols │ ├── ambientDeclarationsPatterns_merging1.types │ ├── ambientDeclarationsPatterns_merging2.errors.txt │ ├── ambientDeclarationsPatterns_merging2.js │ ├── ambientDeclarationsPatterns_merging2.symbols │ ├── ambientDeclarationsPatterns_merging2.types │ ├── ambientDeclarationsPatterns_merging3.errors.txt │ ├── ambientDeclarationsPatterns_merging3.js │ ├── ambientDeclarationsPatterns_merging3.symbols │ ├── ambientDeclarationsPatterns_merging3.types │ ├── ambientDeclarationsPatterns_tooManyAsterisks.errors.txt │ ├── ambientDeclarationsPatterns_tooManyAsterisks.js │ ├── ambientDeclarationsPatterns_tooManyAsterisks.symbols │ ├── ambientDeclarationsPatterns_tooManyAsterisks.types │ ├── ambientEnum1.errors.txt │ ├── ambientEnum1.js │ ├── ambientEnum1.symbols │ ├── ambientEnum1.types │ ├── ambientEnumDeclaration1.js │ ├── ambientEnumDeclaration1.symbols │ ├── ambientEnumDeclaration1.types │ ├── ambientEnumDeclaration2.js │ ├── ambientEnumDeclaration2.symbols │ ├── ambientEnumDeclaration2.types │ ├── ambientEnumElementInitializer1.js │ ├── ambientEnumElementInitializer1.symbols │ ├── ambientEnumElementInitializer1.types │ ├── ambientEnumElementInitializer2.js │ ├── ambientEnumElementInitializer2.symbols │ ├── ambientEnumElementInitializer2.types │ ├── ambientEnumElementInitializer3.js │ ├── ambientEnumElementInitializer3.symbols │ ├── ambientEnumElementInitializer3.types │ ├── ambientEnumElementInitializer4.js │ ├── ambientEnumElementInitializer4.symbols │ ├── ambientEnumElementInitializer4.types │ ├── ambientEnumElementInitializer5.js │ ├── ambientEnumElementInitializer5.symbols │ ├── ambientEnumElementInitializer5.types │ ├── ambientEnumElementInitializer6.js │ ├── ambientEnumElementInitializer6.symbols │ ├── ambientEnumElementInitializer6.types │ ├── ambientErrors.errors.txt │ ├── ambientErrors.js │ ├── ambientErrors.symbols │ ├── ambientErrors.types │ ├── ambientErrors1.errors.txt │ ├── ambientErrors1.js │ ├── ambientErrors1.symbols │ ├── ambientErrors1.types │ ├── ambientExportDefaultErrors.errors.txt │ ├── ambientExportDefaultErrors.js │ ├── ambientExportDefaultErrors.symbols │ ├── ambientExportDefaultErrors.types │ ├── ambientExternalModuleInAnotherExternalModule.errors.txt │ ├── ambientExternalModuleInAnotherExternalModule.js │ ├── ambientExternalModuleInAnotherExternalModule.symbols │ ├── ambientExternalModuleInAnotherExternalModule.types │ ├── ambientExternalModuleInsideNonAmbient.errors.txt │ ├── ambientExternalModuleInsideNonAmbient.js │ ├── ambientExternalModuleInsideNonAmbient.symbols │ ├── ambientExternalModuleInsideNonAmbient.types │ ├── ambientExternalModuleInsideNonAmbientExternalModule.errors.txt │ ├── ambientExternalModuleInsideNonAmbientExternalModule.js │ ├── ambientExternalModuleInsideNonAmbientExternalModule.symbols │ ├── ambientExternalModuleInsideNonAmbientExternalModule.types │ ├── ambientExternalModuleMerging.errors.txt │ ├── ambientExternalModuleMerging.js │ ├── ambientExternalModuleMerging.symbols │ ├── ambientExternalModuleMerging.types │ ├── ambientExternalModuleReopen.js │ ├── ambientExternalModuleReopen.symbols │ ├── ambientExternalModuleReopen.types │ ├── ambientExternalModuleWithInternalImportDeclaration.errors.txt │ ├── ambientExternalModuleWithInternalImportDeclaration.js │ ├── ambientExternalModuleWithInternalImportDeclaration.symbols │ ├── ambientExternalModuleWithInternalImportDeclaration.types │ ├── ambientExternalModuleWithRelativeExternalImportDeclaration.errors.txt │ ├── ambientExternalModuleWithRelativeExternalImportDeclaration.js │ ├── ambientExternalModuleWithRelativeExternalImportDeclaration.symbols │ ├── ambientExternalModuleWithRelativeExternalImportDeclaration.types │ ├── ambientExternalModuleWithRelativeModuleName.errors.txt │ ├── ambientExternalModuleWithRelativeModuleName.js │ ├── ambientExternalModuleWithRelativeModuleName.symbols │ ├── ambientExternalModuleWithRelativeModuleName.types │ ├── ambientExternalModuleWithoutInternalImportDeclaration.errors.txt │ ├── ambientExternalModuleWithoutInternalImportDeclaration.js │ ├── ambientExternalModuleWithoutInternalImportDeclaration.symbols │ ├── ambientExternalModuleWithoutInternalImportDeclaration.types │ ├── ambientFundule.js │ ├── ambientFundule.symbols │ ├── ambientFundule.types │ ├── ambientGetters(target=es2015).errors.txt │ ├── ambientGetters(target=es2015).js │ ├── ambientGetters(target=es2015).symbols │ ├── ambientGetters(target=es2015).types │ ├── ambientGetters(target=es5).errors.txt │ ├── ambientGetters(target=es5).js │ ├── ambientGetters(target=es5).symbols │ ├── ambientGetters(target=es5).types │ ├── ambientInsideNonAmbient.js │ ├── ambientInsideNonAmbient.symbols │ ├── ambientInsideNonAmbient.types │ ├── ambientInsideNonAmbientExternalModule.errors.txt │ ├── ambientInsideNonAmbientExternalModule.js │ ├── ambientInsideNonAmbientExternalModule.symbols │ ├── ambientInsideNonAmbientExternalModule.types │ ├── ambientModuleDeclarationWithReservedIdentifierInDottedPath.errors.txt │ ├── ambientModuleDeclarationWithReservedIdentifierInDottedPath.js │ ├── ambientModuleDeclarationWithReservedIdentifierInDottedPath.symbols │ ├── ambientModuleDeclarationWithReservedIdentifierInDottedPath.types │ ├── ambientModuleDeclarationWithReservedIdentifierInDottedPath2.errors.txt │ ├── ambientModuleDeclarationWithReservedIdentifierInDottedPath2.js │ ├── ambientModuleDeclarationWithReservedIdentifierInDottedPath2.symbols │ ├── ambientModuleDeclarationWithReservedIdentifierInDottedPath2.types │ ├── ambientModuleExports.js │ ├── ambientModuleExports.symbols │ ├── ambientModuleExports.types │ ├── ambientModuleWithClassDeclarationWithExtends.js │ ├── ambientModuleWithClassDeclarationWithExtends.symbols │ ├── ambientModuleWithClassDeclarationWithExtends.types │ ├── ambientModuleWithTemplateLiterals.js │ ├── ambientModuleWithTemplateLiterals.symbols │ ├── ambientModuleWithTemplateLiterals.types │ ├── ambientModules.js │ ├── ambientModules.symbols │ ├── ambientModules.types │ ├── ambientNameRestrictions.js │ ├── ambientNameRestrictions.symbols │ ├── ambientNameRestrictions.types │ ├── ambientPropertyDeclarationInJs.errors.txt │ ├── ambientPropertyDeclarationInJs.symbols │ ├── ambientPropertyDeclarationInJs.types │ ├── ambientRequireFunction(module=commonjs).js │ ├── ambientRequireFunction(module=commonjs).symbols │ ├── ambientRequireFunction(module=commonjs).types │ ├── ambientRequireFunction(module=preserve).js │ ├── ambientRequireFunction(module=preserve).symbols │ ├── ambientRequireFunction(module=preserve).types │ ├── ambientShorthand.js │ ├── ambientShorthand.symbols │ ├── ambientShorthand.types │ ├── ambientShorthandFindAllRefs.baseline.jsonc │ ├── ambientShorthandGotoDefinition.baseline.jsonc │ ├── ambientShorthand_declarationEmit.js │ ├── ambientShorthand_declarationEmit.symbols │ ├── ambientShorthand_declarationEmit.types │ ├── ambientShorthand_duplicate.js │ ├── ambientShorthand_duplicate.symbols │ ├── ambientShorthand_duplicate.types │ ├── ambientShorthand_merging.js │ ├── ambientShorthand_merging.symbols │ ├── ambientShorthand_merging.types │ ├── ambientShorthand_reExport.js │ ├── ambientShorthand_reExport.symbols │ ├── ambientShorthand_reExport.types │ ├── ambientStatement1.errors.txt │ ├── ambientStatement1.js │ ├── ambientStatement1.symbols │ ├── ambientStatement1.types │ ├── ambientWithStatements(alwaysstrict=false).errors.txt │ ├── ambientWithStatements(alwaysstrict=false).js │ ├── ambientWithStatements(alwaysstrict=false).symbols │ ├── ambientWithStatements(alwaysstrict=false).types │ ├── ambientWithStatements(alwaysstrict=true).errors.txt │ ├── ambientWithStatements(alwaysstrict=true).js │ ├── ambientWithStatements(alwaysstrict=true).symbols │ ├── ambientWithStatements(alwaysstrict=true).types │ ├── ambiguousCallsWhereReturnTypesAgree.js │ ├── ambiguousCallsWhereReturnTypesAgree.symbols │ ├── ambiguousCallsWhereReturnTypesAgree.types │ ├── ambiguousGenericAssertion1.errors.txt │ ├── ambiguousGenericAssertion1.js │ ├── ambiguousGenericAssertion1.symbols │ ├── ambiguousGenericAssertion1.types │ ├── ambiguousOverload.errors.txt │ ├── ambiguousOverload.js │ ├── ambiguousOverload.symbols │ ├── ambiguousOverload.types │ ├── ambiguousOverloadResolution.js │ ├── ambiguousOverloadResolution.symbols │ ├── ambiguousOverloadResolution.types │ ├── amdDeclarationEmitNoExtraDeclare.errors.txt │ ├── amdDeclarationEmitNoExtraDeclare.js │ ├── amdDeclarationEmitNoExtraDeclare.symbols │ ├── amdDeclarationEmitNoExtraDeclare.types │ ├── amdDependencyComment1.errors.txt │ ├── amdDependencyComment1.js │ ├── amdDependencyComment1.symbols │ ├── amdDependencyComment1.types │ ├── amdDependencyComment2.errors.txt │ ├── amdDependencyComment2.js │ ├── amdDependencyComment2.symbols │ ├── amdDependencyComment2.types │ ├── amdDependencyCommentName1.errors.txt │ ├── amdDependencyCommentName1.js │ ├── amdDependencyCommentName1.symbols │ ├── amdDependencyCommentName1.types │ ├── amdDependencyCommentName2.errors.txt │ ├── amdDependencyCommentName2.js │ ├── amdDependencyCommentName2.symbols │ ├── amdDependencyCommentName2.types │ ├── amdDependencyCommentName3.errors.txt │ ├── amdDependencyCommentName3.js │ ├── amdDependencyCommentName3.symbols │ ├── amdDependencyCommentName3.types │ ├── amdDependencyCommentName4.errors.txt │ ├── amdDependencyCommentName4.js │ ├── amdDependencyCommentName4.symbols │ ├── amdDependencyCommentName4.types │ ├── amdImportAsPrimaryExpression.errors.txt │ ├── amdImportAsPrimaryExpression.js │ ├── amdImportAsPrimaryExpression.symbols │ ├── amdImportAsPrimaryExpression.types │ ├── amdImportNotAsPrimaryExpression.errors.txt │ ├── amdImportNotAsPrimaryExpression.js │ ├── amdImportNotAsPrimaryExpression.symbols │ ├── amdImportNotAsPrimaryExpression.types │ ├── amdLikeInputDeclarationEmit.js │ ├── amdLikeInputDeclarationEmit.symbols │ ├── amdLikeInputDeclarationEmit.types │ ├── amdModuleBundleNoDuplicateDeclarationEmitComments.errors.txt │ ├── amdModuleBundleNoDuplicateDeclarationEmitComments.js │ ├── amdModuleBundleNoDuplicateDeclarationEmitComments.symbols │ ├── amdModuleBundleNoDuplicateDeclarationEmitComments.types │ ├── amdModuleConstEnumUsage.errors.txt │ ├── amdModuleConstEnumUsage.js │ ├── amdModuleConstEnumUsage.symbols │ ├── amdModuleConstEnumUsage.types │ ├── amdModuleName1.errors.txt │ ├── amdModuleName1.js │ ├── amdModuleName1.symbols │ ├── amdModuleName1.types │ ├── amdModuleName2.errors.txt │ ├── amdModuleName2.js │ ├── amdModuleName2.symbols │ ├── amdModuleName2.types │ ├── annotatedThisPropertyInitializerDoesntNarrow.symbols │ ├── annotatedThisPropertyInitializerDoesntNarrow.types │ ├── anonClassDeclarationEmitIsAnon.js │ ├── anonClassDeclarationEmitIsAnon.symbols │ ├── anonClassDeclarationEmitIsAnon.types │ ├── anonterface.js │ ├── anonterface.symbols │ ├── anonterface.types │ ├── anonymousClassAccessorsDeclarationEmit1.js │ ├── anonymousClassAccessorsDeclarationEmit1.symbols │ ├── anonymousClassAccessorsDeclarationEmit1.types │ ├── anonymousClassDeclarationDoesntPrintWithReadonly.js │ ├── anonymousClassDeclarationDoesntPrintWithReadonly.symbols │ ├── anonymousClassDeclarationDoesntPrintWithReadonly.types │ ├── anonymousClassExpression1.js │ ├── anonymousClassExpression1.symbols │ ├── anonymousClassExpression1.types │ ├── anonymousClassExpression2.errors.txt │ ├── anonymousClassExpression2.js │ ├── anonymousClassExpression2.symbols │ ├── anonymousClassExpression2.types │ ├── anonymousDefaultExportsAmd.errors.txt │ ├── anonymousDefaultExportsAmd.js │ ├── anonymousDefaultExportsAmd.symbols │ ├── anonymousDefaultExportsAmd.types │ ├── anonymousDefaultExportsCommonjs.js │ ├── anonymousDefaultExportsCommonjs.symbols │ ├── anonymousDefaultExportsCommonjs.types │ ├── anonymousDefaultExportsSystem.errors.txt │ ├── anonymousDefaultExportsSystem.js │ ├── anonymousDefaultExportsSystem.symbols │ ├── anonymousDefaultExportsSystem.types │ ├── anonymousDefaultExportsUmd.errors.txt │ ├── anonymousDefaultExportsUmd.js │ ├── anonymousDefaultExportsUmd.symbols │ ├── anonymousDefaultExportsUmd.types │ ├── anonymousModules.errors.txt │ ├── anonymousModules.js │ ├── anonymousModules.symbols │ ├── anonymousModules.types │ ├── anyAndUnknownHaveFalsyComponents.js │ ├── anyAndUnknownHaveFalsyComponents.symbols │ ├── anyAndUnknownHaveFalsyComponents.types │ ├── anyAsConstructor.errors.txt │ ├── anyAsConstructor.js │ ├── anyAsConstructor.symbols │ ├── anyAsConstructor.types │ ├── anyAsFunctionCall.js │ ├── anyAsFunctionCall.symbols │ ├── anyAsFunctionCall.types │ ├── anyAsGenericFunctionCall.errors.txt │ ├── anyAsGenericFunctionCall.js │ ├── anyAsGenericFunctionCall.symbols │ ├── anyAsGenericFunctionCall.types │ ├── anyAsReturnTypeForNewOnCall.js │ ├── anyAsReturnTypeForNewOnCall.symbols │ ├── anyAsReturnTypeForNewOnCall.types │ ├── anyAssignabilityInInheritance.js │ ├── anyAssignabilityInInheritance.symbols │ ├── anyAssignabilityInInheritance.types │ ├── anyAssignableToEveryType.errors.txt │ ├── anyAssignableToEveryType.js │ ├── anyAssignableToEveryType.symbols │ ├── anyAssignableToEveryType.types │ ├── anyAssignableToEveryType2.js │ ├── anyAssignableToEveryType2.symbols │ ├── anyAssignableToEveryType2.types │ ├── anyDeclare.errors.txt │ ├── anyDeclare.js │ ├── anyDeclare.symbols │ ├── anyDeclare.types │ ├── anyIdenticalToItself.errors.txt │ ├── anyIdenticalToItself.js │ ├── anyIdenticalToItself.symbols │ ├── anyIdenticalToItself.types │ ├── anyIndexedAccessArrayNoException.errors.txt │ ├── anyIndexedAccessArrayNoException.js │ ├── anyIndexedAccessArrayNoException.symbols │ ├── anyIndexedAccessArrayNoException.types │ ├── anyInferenceAnonymousFunctions.errors.txt │ ├── anyInferenceAnonymousFunctions.js │ ├── anyInferenceAnonymousFunctions.symbols │ ├── anyInferenceAnonymousFunctions.types │ ├── anyIsAssignableToObject.js │ ├── anyIsAssignableToObject.symbols │ ├── anyIsAssignableToObject.types │ ├── anyIsAssignableToVoid.js │ ├── anyIsAssignableToVoid.symbols │ ├── anyIsAssignableToVoid.types │ ├── anyMappedTypesError.errors.txt │ ├── anyMappedTypesError.js │ ├── anyMappedTypesError.symbols │ ├── anyMappedTypesError.types │ ├── anyPlusAny1.js │ ├── anyPlusAny1.symbols │ ├── anyPlusAny1.types │ ├── anyPropertyAccess.js │ ├── anyPropertyAccess.symbols │ ├── anyPropertyAccess.types │ ├── api/ │ │ └── typescript.d.ts │ ├── apparentTypeSubtyping.errors.txt │ ├── apparentTypeSubtyping.js │ ├── apparentTypeSubtyping.symbols │ ├── apparentTypeSubtyping.types │ ├── apparentTypeSupertype.errors.txt │ ├── apparentTypeSupertype.js │ ├── apparentTypeSupertype.symbols │ ├── apparentTypeSupertype.types │ ├── arbitraryModuleNamespaceIdentifiers_exportEmpty.errors.txt │ ├── arbitraryModuleNamespaceIdentifiers_exportEmpty.js │ ├── arbitraryModuleNamespaceIdentifiers_exportEmpty.symbols │ ├── arbitraryModuleNamespaceIdentifiers_exportEmpty.types │ ├── arbitraryModuleNamespaceIdentifiers_importEmpty.errors.txt │ ├── arbitraryModuleNamespaceIdentifiers_importEmpty.js │ ├── arbitraryModuleNamespaceIdentifiers_importEmpty.symbols │ ├── arbitraryModuleNamespaceIdentifiers_importEmpty.types │ ├── arbitraryModuleNamespaceIdentifiers_module(module=amd).errors.txt │ ├── arbitraryModuleNamespaceIdentifiers_module(module=amd).js │ ├── arbitraryModuleNamespaceIdentifiers_module(module=amd).symbols │ ├── arbitraryModuleNamespaceIdentifiers_module(module=amd).types │ ├── arbitraryModuleNamespaceIdentifiers_module(module=commonjs).errors.txt │ ├── arbitraryModuleNamespaceIdentifiers_module(module=commonjs).js │ ├── arbitraryModuleNamespaceIdentifiers_module(module=commonjs).symbols │ ├── arbitraryModuleNamespaceIdentifiers_module(module=commonjs).types │ ├── arbitraryModuleNamespaceIdentifiers_module(module=es2020).errors.txt │ ├── arbitraryModuleNamespaceIdentifiers_module(module=es2020).js │ ├── arbitraryModuleNamespaceIdentifiers_module(module=es2020).symbols │ ├── arbitraryModuleNamespaceIdentifiers_module(module=es2020).types │ ├── arbitraryModuleNamespaceIdentifiers_module(module=es2022).errors.txt │ ├── arbitraryModuleNamespaceIdentifiers_module(module=es2022).js │ ├── arbitraryModuleNamespaceIdentifiers_module(module=es2022).symbols │ ├── arbitraryModuleNamespaceIdentifiers_module(module=es2022).types │ ├── arbitraryModuleNamespaceIdentifiers_module(module=es6).errors.txt │ ├── arbitraryModuleNamespaceIdentifiers_module(module=es6).js │ ├── arbitraryModuleNamespaceIdentifiers_module(module=es6).symbols │ ├── arbitraryModuleNamespaceIdentifiers_module(module=es6).types │ ├── arbitraryModuleNamespaceIdentifiers_module(module=esnext).errors.txt │ ├── arbitraryModuleNamespaceIdentifiers_module(module=esnext).js │ ├── arbitraryModuleNamespaceIdentifiers_module(module=esnext).symbols │ ├── arbitraryModuleNamespaceIdentifiers_module(module=esnext).types │ ├── arbitraryModuleNamespaceIdentifiers_module(module=node16).errors.txt │ ├── arbitraryModuleNamespaceIdentifiers_module(module=node16).js │ ├── arbitraryModuleNamespaceIdentifiers_module(module=node16).symbols │ ├── arbitraryModuleNamespaceIdentifiers_module(module=node16).types │ ├── arbitraryModuleNamespaceIdentifiers_module(module=node18).errors.txt │ ├── arbitraryModuleNamespaceIdentifiers_module(module=node18).js │ ├── arbitraryModuleNamespaceIdentifiers_module(module=node18).symbols │ ├── arbitraryModuleNamespaceIdentifiers_module(module=node18).types │ ├── arbitraryModuleNamespaceIdentifiers_module(module=node20).errors.txt │ ├── arbitraryModuleNamespaceIdentifiers_module(module=node20).js │ ├── arbitraryModuleNamespaceIdentifiers_module(module=node20).symbols │ ├── arbitraryModuleNamespaceIdentifiers_module(module=node20).types │ ├── arbitraryModuleNamespaceIdentifiers_module(module=nodenext).errors.txt │ ├── arbitraryModuleNamespaceIdentifiers_module(module=nodenext).js │ ├── arbitraryModuleNamespaceIdentifiers_module(module=nodenext).symbols │ ├── arbitraryModuleNamespaceIdentifiers_module(module=nodenext).types │ ├── arbitraryModuleNamespaceIdentifiers_module(module=none).errors.txt │ ├── arbitraryModuleNamespaceIdentifiers_module(module=none).js │ ├── arbitraryModuleNamespaceIdentifiers_module(module=none).symbols │ ├── arbitraryModuleNamespaceIdentifiers_module(module=none).types │ ├── arbitraryModuleNamespaceIdentifiers_module(module=preserve).errors.txt │ ├── arbitraryModuleNamespaceIdentifiers_module(module=preserve).js │ ├── arbitraryModuleNamespaceIdentifiers_module(module=preserve).symbols │ ├── arbitraryModuleNamespaceIdentifiers_module(module=preserve).types │ ├── arbitraryModuleNamespaceIdentifiers_module(module=system).errors.txt │ ├── arbitraryModuleNamespaceIdentifiers_module(module=system).js │ ├── arbitraryModuleNamespaceIdentifiers_module(module=system).symbols │ ├── arbitraryModuleNamespaceIdentifiers_module(module=system).types │ ├── arbitraryModuleNamespaceIdentifiers_module(module=umd).errors.txt │ ├── arbitraryModuleNamespaceIdentifiers_module(module=umd).js │ ├── arbitraryModuleNamespaceIdentifiers_module(module=umd).symbols │ ├── arbitraryModuleNamespaceIdentifiers_module(module=umd).types │ ├── arbitraryModuleNamespaceIdentifiers_syntax.errors.txt │ ├── arbitraryModuleNamespaceIdentifiers_syntax.js │ ├── arbitraryModuleNamespaceIdentifiers_syntax.symbols │ ├── arbitraryModuleNamespaceIdentifiers_syntax.types │ ├── arbitraryModuleNamespaceIdentifiers_types.baseline.jsonc │ ├── arbitraryModuleNamespaceIdentifiers_values.baseline.jsonc │ ├── argsInScope.js │ ├── argsInScope.symbols │ ├── argsInScope.types │ ├── argumentExpressionContextualTyping.errors.txt │ ├── argumentExpressionContextualTyping.js │ ├── argumentExpressionContextualTyping.symbols │ ├── argumentExpressionContextualTyping.types │ ├── arguments.errors.txt │ ├── arguments.js │ ├── arguments.symbols │ ├── arguments.types │ ├── argumentsAsPropertyName.js │ ├── argumentsAsPropertyName.symbols │ ├── argumentsAsPropertyName.types │ ├── argumentsAsPropertyName2.js │ ├── argumentsAsPropertyName2.symbols │ ├── argumentsAsPropertyName2.types │ ├── argumentsBindsToFunctionScopeArgumentList(alwaysstrict=false).errors.txt │ ├── argumentsBindsToFunctionScopeArgumentList(alwaysstrict=false).js │ ├── argumentsBindsToFunctionScopeArgumentList(alwaysstrict=false).symbols │ ├── argumentsBindsToFunctionScopeArgumentList(alwaysstrict=false).types │ ├── argumentsBindsToFunctionScopeArgumentList(alwaysstrict=true).errors.txt │ ├── argumentsBindsToFunctionScopeArgumentList(alwaysstrict=true).js │ ├── argumentsBindsToFunctionScopeArgumentList(alwaysstrict=true).symbols │ ├── argumentsBindsToFunctionScopeArgumentList(alwaysstrict=true).types │ ├── argumentsObjectCreatesRestForJs.symbols │ ├── argumentsObjectCreatesRestForJs.types │ ├── argumentsObjectIterator01_ES5(target=es2015).js │ ├── argumentsObjectIterator01_ES5(target=es2015).symbols │ ├── argumentsObjectIterator01_ES5(target=es2015).types │ ├── argumentsObjectIterator01_ES5(target=es5).errors.txt │ ├── argumentsObjectIterator01_ES5(target=es5).js │ ├── argumentsObjectIterator01_ES5(target=es5).symbols │ ├── argumentsObjectIterator01_ES5(target=es5).types │ ├── argumentsObjectIterator01_ES6.js │ ├── argumentsObjectIterator01_ES6.symbols │ ├── argumentsObjectIterator01_ES6.types │ ├── argumentsObjectIterator02_ES5(target=es2015).js │ ├── argumentsObjectIterator02_ES5(target=es2015).symbols │ ├── argumentsObjectIterator02_ES5(target=es2015).types │ ├── argumentsObjectIterator02_ES5(target=es5).errors.txt │ ├── argumentsObjectIterator02_ES5(target=es5).js │ ├── argumentsObjectIterator02_ES5(target=es5).symbols │ ├── argumentsObjectIterator02_ES5(target=es5).types │ ├── argumentsObjectIterator02_ES6.js │ ├── argumentsObjectIterator02_ES6.symbols │ ├── argumentsObjectIterator02_ES6.types │ ├── argumentsObjectIterator03_ES5(target=es2015).js │ ├── argumentsObjectIterator03_ES5(target=es2015).symbols │ ├── argumentsObjectIterator03_ES5(target=es2015).types │ ├── argumentsObjectIterator03_ES5(target=es5).errors.txt │ ├── argumentsObjectIterator03_ES5(target=es5).js │ ├── argumentsObjectIterator03_ES5(target=es5).symbols │ ├── argumentsObjectIterator03_ES5(target=es5).types │ ├── argumentsObjectIterator03_ES6.js │ ├── argumentsObjectIterator03_ES6.symbols │ ├── argumentsObjectIterator03_ES6.types │ ├── argumentsPropertyNameInJsMode1.errors.txt │ ├── argumentsPropertyNameInJsMode1.js │ ├── argumentsPropertyNameInJsMode1.symbols │ ├── argumentsPropertyNameInJsMode1.types │ ├── argumentsPropertyNameInJsMode2.js │ ├── argumentsPropertyNameInJsMode2.symbols │ ├── argumentsPropertyNameInJsMode2.types │ ├── argumentsReferenceInConstructor1_Js.js │ ├── argumentsReferenceInConstructor1_Js.symbols │ ├── argumentsReferenceInConstructor1_Js.types │ ├── argumentsReferenceInConstructor2_Js.js │ ├── argumentsReferenceInConstructor2_Js.symbols │ ├── argumentsReferenceInConstructor2_Js.types │ ├── argumentsReferenceInConstructor3_Js.js │ ├── argumentsReferenceInConstructor3_Js.symbols │ ├── argumentsReferenceInConstructor3_Js.types │ ├── argumentsReferenceInConstructor4_Js.errors.txt │ ├── argumentsReferenceInConstructor4_Js.js │ ├── argumentsReferenceInConstructor4_Js.symbols │ ├── argumentsReferenceInConstructor4_Js.types │ ├── argumentsReferenceInConstructor5_Js.js │ ├── argumentsReferenceInConstructor5_Js.symbols │ ├── argumentsReferenceInConstructor5_Js.types │ ├── argumentsReferenceInConstructor6_Js.js │ ├── argumentsReferenceInConstructor6_Js.symbols │ ├── argumentsReferenceInConstructor6_Js.types │ ├── argumentsReferenceInConstructor7_Js.js │ ├── argumentsReferenceInConstructor7_Js.symbols │ ├── argumentsReferenceInConstructor7_Js.types │ ├── argumentsReferenceInFunction1_Js.errors.txt │ ├── argumentsReferenceInFunction1_Js.symbols │ ├── argumentsReferenceInFunction1_Js.types │ ├── argumentsReferenceInMethod1_Js.js │ ├── argumentsReferenceInMethod1_Js.symbols │ ├── argumentsReferenceInMethod1_Js.types │ ├── argumentsReferenceInMethod2_Js.js │ ├── argumentsReferenceInMethod2_Js.symbols │ ├── argumentsReferenceInMethod2_Js.types │ ├── argumentsReferenceInMethod3_Js.js │ ├── argumentsReferenceInMethod3_Js.symbols │ ├── argumentsReferenceInMethod3_Js.types │ ├── argumentsReferenceInMethod4_Js.errors.txt │ ├── argumentsReferenceInMethod4_Js.js │ ├── argumentsReferenceInMethod4_Js.symbols │ ├── argumentsReferenceInMethod4_Js.types │ ├── argumentsReferenceInMethod5_Js.js │ ├── argumentsReferenceInMethod5_Js.symbols │ ├── argumentsReferenceInMethod5_Js.types │ ├── argumentsReferenceInMethod6_Js.js │ ├── argumentsReferenceInMethod6_Js.symbols │ ├── argumentsReferenceInMethod6_Js.types │ ├── argumentsReferenceInMethod7_Js.js │ ├── argumentsReferenceInMethod7_Js.symbols │ ├── argumentsReferenceInMethod7_Js.types │ ├── argumentsReferenceInObjectLiteral_Js(alwaysstrict=false).errors.txt │ ├── argumentsReferenceInObjectLiteral_Js(alwaysstrict=false).js │ ├── argumentsReferenceInObjectLiteral_Js(alwaysstrict=false).symbols │ ├── argumentsReferenceInObjectLiteral_Js(alwaysstrict=false).types │ ├── argumentsReferenceInObjectLiteral_Js(alwaysstrict=true).errors.txt │ ├── argumentsReferenceInObjectLiteral_Js(alwaysstrict=true).js │ ├── argumentsReferenceInObjectLiteral_Js(alwaysstrict=true).symbols │ ├── argumentsReferenceInObjectLiteral_Js(alwaysstrict=true).types │ ├── argumentsSpreadRestIterables(target=es5).errors.txt │ ├── argumentsSpreadRestIterables(target=es5).symbols │ ├── argumentsSpreadRestIterables(target=es5).types │ ├── argumentsSpreadRestIterables(target=esnext).symbols │ ├── argumentsSpreadRestIterables(target=esnext).types │ ├── argumentsUsedInClassFieldInitializerOrStaticInitializationBlock.errors.txt │ ├── argumentsUsedInClassFieldInitializerOrStaticInitializationBlock.js │ ├── argumentsUsedInClassFieldInitializerOrStaticInitializationBlock.symbols │ ├── argumentsUsedInClassFieldInitializerOrStaticInitializationBlock.types │ ├── argumentsUsedInObjectLiteralProperty.js │ ├── argumentsUsedInObjectLiteralProperty.symbols │ ├── argumentsUsedInObjectLiteralProperty.types │ ├── arithAssignTyping.errors.txt │ ├── arithAssignTyping.js │ ├── arithAssignTyping.symbols │ ├── arithAssignTyping.types │ ├── arithmeticOnInvalidTypes.errors.txt │ ├── arithmeticOnInvalidTypes.js │ ├── arithmeticOnInvalidTypes.symbols │ ├── arithmeticOnInvalidTypes.types │ ├── arithmeticOnInvalidTypes2.errors.txt │ ├── arithmeticOnInvalidTypes2.js │ ├── arithmeticOnInvalidTypes2.symbols │ ├── arithmeticOnInvalidTypes2.types │ ├── arithmeticOperatorWithAnyAndNumber.errors.txt │ ├── arithmeticOperatorWithAnyAndNumber.js │ ├── arithmeticOperatorWithAnyAndNumber.symbols │ ├── arithmeticOperatorWithAnyAndNumber.types │ ├── arithmeticOperatorWithEnum.errors.txt │ ├── arithmeticOperatorWithEnum.js │ ├── arithmeticOperatorWithEnum.symbols │ ├── arithmeticOperatorWithEnum.types │ ├── arithmeticOperatorWithEnumUnion.errors.txt │ ├── arithmeticOperatorWithEnumUnion.js │ ├── arithmeticOperatorWithEnumUnion.symbols │ ├── arithmeticOperatorWithEnumUnion.types │ ├── arithmeticOperatorWithInvalidOperands.errors.txt │ ├── arithmeticOperatorWithInvalidOperands.js │ ├── arithmeticOperatorWithInvalidOperands.symbols │ ├── arithmeticOperatorWithInvalidOperands.types │ ├── arithmeticOperatorWithNullValueAndInvalidOperands.errors.txt │ ├── arithmeticOperatorWithNullValueAndInvalidOperands.js │ ├── arithmeticOperatorWithNullValueAndInvalidOperands.symbols │ ├── arithmeticOperatorWithNullValueAndInvalidOperands.types │ ├── arithmeticOperatorWithNullValueAndValidOperands.errors.txt │ ├── arithmeticOperatorWithNullValueAndValidOperands.js │ ├── arithmeticOperatorWithNullValueAndValidOperands.symbols │ ├── arithmeticOperatorWithNullValueAndValidOperands.types │ ├── arithmeticOperatorWithOnlyNullValueOrUndefinedValue.errors.txt │ ├── arithmeticOperatorWithOnlyNullValueOrUndefinedValue.js │ ├── arithmeticOperatorWithOnlyNullValueOrUndefinedValue.symbols │ ├── arithmeticOperatorWithOnlyNullValueOrUndefinedValue.types │ ├── arithmeticOperatorWithTypeParameter.errors.txt │ ├── arithmeticOperatorWithTypeParameter.js │ ├── arithmeticOperatorWithTypeParameter.symbols │ ├── arithmeticOperatorWithTypeParameter.types │ ├── arithmeticOperatorWithUndefinedValueAndInvalidOperands.errors.txt │ ├── arithmeticOperatorWithUndefinedValueAndInvalidOperands.js │ ├── arithmeticOperatorWithUndefinedValueAndInvalidOperands.symbols │ ├── arithmeticOperatorWithUndefinedValueAndInvalidOperands.types │ ├── arithmeticOperatorWithUndefinedValueAndValidOperands.errors.txt │ ├── arithmeticOperatorWithUndefinedValueAndValidOperands.js │ ├── arithmeticOperatorWithUndefinedValueAndValidOperands.symbols │ ├── arithmeticOperatorWithUndefinedValueAndValidOperands.types │ ├── arityAndOrderCompatibility01.errors.txt │ ├── arityAndOrderCompatibility01.js │ ├── arityAndOrderCompatibility01.symbols │ ├── arityAndOrderCompatibility01.types │ ├── arityErrorRelatedSpanBindingPattern.errors.txt │ ├── arityErrorRelatedSpanBindingPattern.js │ ├── arityErrorRelatedSpanBindingPattern.symbols │ ├── arityErrorRelatedSpanBindingPattern.types │ ├── arrayAssignmentPatternWithAny.js │ ├── arrayAssignmentPatternWithAny.symbols │ ├── arrayAssignmentPatternWithAny.types │ ├── arrayAssignmentTest1.errors.txt │ ├── arrayAssignmentTest1.js │ ├── arrayAssignmentTest1.symbols │ ├── arrayAssignmentTest1.types │ ├── arrayAssignmentTest2.errors.txt │ ├── arrayAssignmentTest2.js │ ├── arrayAssignmentTest2.symbols │ ├── arrayAssignmentTest2.types │ ├── arrayAssignmentTest3.errors.txt │ ├── arrayAssignmentTest3.js │ ├── arrayAssignmentTest3.symbols │ ├── arrayAssignmentTest3.types │ ├── arrayAssignmentTest4.errors.txt │ ├── arrayAssignmentTest4.js │ ├── arrayAssignmentTest4.symbols │ ├── arrayAssignmentTest4.types │ ├── arrayAssignmentTest5.errors.txt │ ├── arrayAssignmentTest5.js │ ├── arrayAssignmentTest5.symbols │ ├── arrayAssignmentTest5.types │ ├── arrayAssignmentTest6.errors.txt │ ├── arrayAssignmentTest6.js │ ├── arrayAssignmentTest6.symbols │ ├── arrayAssignmentTest6.types │ ├── arrayAugment.js │ ├── arrayAugment.symbols │ ├── arrayAugment.types │ ├── arrayBestCommonTypes.errors.txt │ ├── arrayBestCommonTypes.js │ ├── arrayBestCommonTypes.symbols │ ├── arrayBestCommonTypes.types │ ├── arrayBindingPatternOmittedExpressions.errors.txt │ ├── arrayBindingPatternOmittedExpressions.js │ ├── arrayBindingPatternOmittedExpressions.symbols │ ├── arrayBindingPatternOmittedExpressions.types │ ├── arrayBufferIsViewNarrowsType.errors.txt │ ├── arrayBufferIsViewNarrowsType.js │ ├── arrayBufferIsViewNarrowsType.symbols │ ├── arrayBufferIsViewNarrowsType.types │ ├── arrayCast.errors.txt │ ├── arrayCast.js │ ├── arrayCast.symbols │ ├── arrayCast.types │ ├── arrayConcat2.js │ ├── arrayConcat2.symbols │ ├── arrayConcat2.types │ ├── arrayConcat3.js │ ├── arrayConcat3.symbols │ ├── arrayConcat3.types │ ├── arrayConcatMap.errors.txt │ ├── arrayConcatMap.js │ ├── arrayConcatMap.symbols │ ├── arrayConcatMap.types │ ├── arrayConstructors1.js │ ├── arrayConstructors1.symbols │ ├── arrayConstructors1.types │ ├── arrayDestructuringInSwitch1.js │ ├── arrayDestructuringInSwitch1.symbols │ ├── arrayDestructuringInSwitch1.types │ ├── arrayDestructuringInSwitch2.errors.txt │ ├── arrayDestructuringInSwitch2.js │ ├── arrayDestructuringInSwitch2.symbols │ ├── arrayDestructuringInSwitch2.types │ ├── arrayEvery.js │ ├── arrayEvery.symbols │ ├── arrayEvery.types │ ├── arrayFakeFlatNoCrashInferenceDeclarations.errors.txt │ ├── arrayFakeFlatNoCrashInferenceDeclarations.js │ ├── arrayFakeFlatNoCrashInferenceDeclarations.symbols │ ├── arrayFakeFlatNoCrashInferenceDeclarations.types │ ├── arrayFilter.js │ ├── arrayFilter.symbols │ ├── arrayFilter.types │ ├── arrayFind.js │ ├── arrayFind.symbols │ ├── arrayFind.types │ ├── arrayFlatMap.js │ ├── arrayFlatMap.symbols │ ├── arrayFlatMap.types │ ├── arrayFlatNoCrashInference.js │ ├── arrayFlatNoCrashInference.symbols │ ├── arrayFlatNoCrashInference.types │ ├── arrayFlatNoCrashInferenceDeclarations.js │ ├── arrayFlatNoCrashInferenceDeclarations.symbols │ ├── arrayFlatNoCrashInferenceDeclarations.types │ ├── arrayFrom.errors.txt │ ├── arrayFrom.js │ ├── arrayFrom.symbols │ ├── arrayFrom.types │ ├── arrayFromAsync.js │ ├── arrayFromAsync.symbols │ ├── arrayFromAsync.types │ ├── arrayIndexWithArrayFails.errors.txt │ ├── arrayIndexWithArrayFails.js │ ├── arrayIndexWithArrayFails.symbols │ ├── arrayIndexWithArrayFails.types │ ├── arrayIterationLibES5TargetDifferent(nolib=false,target=es2015).errors.txt │ ├── arrayIterationLibES5TargetDifferent(nolib=false,target=es2015).js │ ├── arrayIterationLibES5TargetDifferent(nolib=false,target=es2015).symbols │ ├── arrayIterationLibES5TargetDifferent(nolib=false,target=es2015).types │ ├── arrayIterationLibES5TargetDifferent(nolib=false,target=es5).errors.txt │ ├── arrayIterationLibES5TargetDifferent(nolib=false,target=es5).js │ ├── arrayIterationLibES5TargetDifferent(nolib=false,target=es5).symbols │ ├── arrayIterationLibES5TargetDifferent(nolib=false,target=es5).types │ ├── arrayIterationLibES5TargetDifferent(nolib=false,target=esnext).errors.txt │ ├── arrayIterationLibES5TargetDifferent(nolib=false,target=esnext).js │ ├── arrayIterationLibES5TargetDifferent(nolib=false,target=esnext).symbols │ ├── arrayIterationLibES5TargetDifferent(nolib=false,target=esnext).types │ ├── arrayIterationLibES5TargetDifferent(nolib=true,target=es2015).errors.txt │ ├── arrayIterationLibES5TargetDifferent(nolib=true,target=es2015).js │ ├── arrayIterationLibES5TargetDifferent(nolib=true,target=es2015).symbols │ ├── arrayIterationLibES5TargetDifferent(nolib=true,target=es2015).types │ ├── arrayIterationLibES5TargetDifferent(nolib=true,target=es5).errors.txt │ ├── arrayIterationLibES5TargetDifferent(nolib=true,target=es5).js │ ├── arrayIterationLibES5TargetDifferent(nolib=true,target=es5).symbols │ ├── arrayIterationLibES5TargetDifferent(nolib=true,target=es5).types │ ├── arrayIterationLibES5TargetDifferent(nolib=true,target=esnext).errors.txt │ ├── arrayIterationLibES5TargetDifferent(nolib=true,target=esnext).js │ ├── arrayIterationLibES5TargetDifferent(nolib=true,target=esnext).symbols │ ├── arrayIterationLibES5TargetDifferent(nolib=true,target=esnext).types │ ├── arrayLiteral.js │ ├── arrayLiteral.symbols │ ├── arrayLiteral.types │ ├── arrayLiteral1.js │ ├── arrayLiteral1.symbols │ ├── arrayLiteral1.types │ ├── arrayLiteral2.js │ ├── arrayLiteral2.symbols │ ├── arrayLiteral2.types │ ├── arrayLiteralAndArrayConstructorEquivalence1.errors.txt │ ├── arrayLiteralAndArrayConstructorEquivalence1.js │ ├── arrayLiteralAndArrayConstructorEquivalence1.symbols │ ├── arrayLiteralAndArrayConstructorEquivalence1.types │ ├── arrayLiteralComments.js │ ├── arrayLiteralComments.symbols │ ├── arrayLiteralComments.types │ ├── arrayLiteralContextualType.js │ ├── arrayLiteralContextualType.symbols │ ├── arrayLiteralContextualType.types │ ├── arrayLiteralExpressionContextualTyping.errors.txt │ ├── arrayLiteralExpressionContextualTyping.js │ ├── arrayLiteralExpressionContextualTyping.symbols │ ├── arrayLiteralExpressionContextualTyping.types │ ├── arrayLiteralInNonVarArgParameter.js │ ├── arrayLiteralInNonVarArgParameter.symbols │ ├── arrayLiteralInNonVarArgParameter.types │ ├── arrayLiteralInference.js │ ├── arrayLiteralInference.symbols │ ├── arrayLiteralInference.types │ ├── arrayLiteralSpread.js │ ├── arrayLiteralSpread.symbols │ ├── arrayLiteralSpread.types │ ├── arrayLiteralSpreadES5iterable(target=es2015).errors.txt │ ├── arrayLiteralSpreadES5iterable(target=es2015).js │ ├── arrayLiteralSpreadES5iterable(target=es2015).symbols │ ├── arrayLiteralSpreadES5iterable(target=es2015).types │ ├── arrayLiteralSpreadES5iterable(target=es5).errors.txt │ ├── arrayLiteralSpreadES5iterable(target=es5).js │ ├── arrayLiteralSpreadES5iterable(target=es5).symbols │ ├── arrayLiteralSpreadES5iterable(target=es5).types │ ├── arrayLiteralTypeInference.errors.txt │ ├── arrayLiteralTypeInference.js │ ├── arrayLiteralTypeInference.symbols │ ├── arrayLiteralTypeInference.types │ ├── arrayLiteralWidened.js │ ├── arrayLiteralWidened.symbols │ ├── arrayLiteralWidened.types │ ├── arrayLiteralWithMultipleBestCommonTypes.errors.txt │ ├── arrayLiteralWithMultipleBestCommonTypes.js │ ├── arrayLiteralWithMultipleBestCommonTypes.symbols │ ├── arrayLiteralWithMultipleBestCommonTypes.types │ ├── arrayLiterals.errors.txt │ ├── arrayLiterals.js │ ├── arrayLiterals.symbols │ ├── arrayLiterals.types │ ├── arrayLiterals2ES5.js │ ├── arrayLiterals2ES5.symbols │ ├── arrayLiterals2ES5.types │ ├── arrayLiterals2ES6.js │ ├── arrayLiterals2ES6.symbols │ ├── arrayLiterals2ES6.types │ ├── arrayLiterals3.errors.txt │ ├── arrayLiterals3.js │ ├── arrayLiterals3.symbols │ ├── arrayLiterals3.types │ ├── arrayLiteralsWithRecursiveGenerics.js │ ├── arrayLiteralsWithRecursiveGenerics.symbols │ ├── arrayLiteralsWithRecursiveGenerics.types │ ├── arrayOfExportedClass.errors.txt │ ├── arrayOfExportedClass.js │ ├── arrayOfExportedClass.symbols │ ├── arrayOfExportedClass.types │ ├── arrayOfFunctionTypes3.errors.txt │ ├── arrayOfFunctionTypes3.js │ ├── arrayOfFunctionTypes3.symbols │ ├── arrayOfFunctionTypes3.types │ ├── arrayOfSubtypeIsAssignableToReadonlyArray.errors.txt │ ├── arrayOfSubtypeIsAssignableToReadonlyArray.js │ ├── arrayOfSubtypeIsAssignableToReadonlyArray.symbols │ ├── arrayOfSubtypeIsAssignableToReadonlyArray.types │ ├── arrayReferenceWithoutTypeArgs.errors.txt │ ├── arrayReferenceWithoutTypeArgs.js │ ├── arrayReferenceWithoutTypeArgs.symbols │ ├── arrayReferenceWithoutTypeArgs.types │ ├── arraySigChecking.errors.txt │ ├── arraySigChecking.js │ ├── arraySigChecking.symbols │ ├── arraySigChecking.types │ ├── arraySlice.errors.txt │ ├── arraySlice.js │ ├── arraySlice.symbols │ ├── arraySlice.types │ ├── arraySpreadImportHelpers(target=es5).errors.txt │ ├── arraySpreadInCall.errors.txt │ ├── arraySpreadInCall.symbols │ ├── arraySpreadInCall.types │ ├── arrayToLocaleStringES2015.js │ ├── arrayToLocaleStringES2015.symbols │ ├── arrayToLocaleStringES2015.types │ ├── arrayToLocaleStringES2020.js │ ├── arrayToLocaleStringES2020.symbols │ ├── arrayToLocaleStringES2020.types │ ├── arrayToLocaleStringES5(target=es2015).js │ ├── arrayToLocaleStringES5(target=es2015).symbols │ ├── arrayToLocaleStringES5(target=es2015).types │ ├── arrayToLocaleStringES5(target=es5).errors.txt │ ├── arrayToLocaleStringES5(target=es5).js │ ├── arrayToLocaleStringES5(target=es5).symbols │ ├── arrayToLocaleStringES5(target=es5).types │ ├── arrayTypeInSignatureOfInterfaceAndClass.js │ ├── arrayTypeInSignatureOfInterfaceAndClass.symbols │ ├── arrayTypeInSignatureOfInterfaceAndClass.types │ ├── arrayTypeOfFunctionTypes.errors.txt │ ├── arrayTypeOfFunctionTypes.js │ ├── arrayTypeOfFunctionTypes.symbols │ ├── arrayTypeOfFunctionTypes.types │ ├── arrayTypeOfFunctionTypes2.errors.txt │ ├── arrayTypeOfFunctionTypes2.js │ ├── arrayTypeOfFunctionTypes2.symbols │ ├── arrayTypeOfFunctionTypes2.types │ ├── arrayTypeOfTypeOf.js │ ├── arrayTypeOfTypeOf.symbols │ ├── arrayTypeOfTypeOf.types │ ├── arrayconcat.errors.txt │ ├── arrayconcat.js │ ├── arrayconcat.symbols │ ├── arrayconcat.types │ ├── arrowExpressionBodyJSDoc.errors.txt │ ├── arrowExpressionBodyJSDoc.symbols │ ├── arrowExpressionBodyJSDoc.types │ ├── arrowExpressionJs.symbols │ ├── arrowExpressionJs.types │ ├── arrowFunctionContexts(alwaysstrict=false).errors.txt │ ├── arrowFunctionContexts(alwaysstrict=false).js │ ├── arrowFunctionContexts(alwaysstrict=false).symbols │ ├── arrowFunctionContexts(alwaysstrict=false).types │ ├── arrowFunctionContexts(alwaysstrict=true).errors.txt │ ├── arrowFunctionContexts(alwaysstrict=true).js │ ├── arrowFunctionContexts(alwaysstrict=true).symbols │ ├── arrowFunctionContexts(alwaysstrict=true).types │ ├── arrowFunctionErrorSpan.errors.txt │ ├── arrowFunctionErrorSpan.js │ ├── arrowFunctionErrorSpan.symbols │ ├── arrowFunctionErrorSpan.types │ ├── arrowFunctionExpressions.js │ ├── arrowFunctionExpressions.symbols │ ├── arrowFunctionExpressions.types │ ├── arrowFunctionInConstructorArgument1.errors.txt │ ├── arrowFunctionInConstructorArgument1.js │ ├── arrowFunctionInConstructorArgument1.symbols │ ├── arrowFunctionInConstructorArgument1.types │ ├── arrowFunctionInExpressionStatement1.js │ ├── arrowFunctionInExpressionStatement1.symbols │ ├── arrowFunctionInExpressionStatement1.types │ ├── arrowFunctionInExpressionStatement2.js │ ├── arrowFunctionInExpressionStatement2.symbols │ ├── arrowFunctionInExpressionStatement2.types │ ├── arrowFunctionJSDocAnnotation.symbols │ ├── arrowFunctionJSDocAnnotation.types │ ├── arrowFunctionMissingCurlyWithSemicolon.errors.txt │ ├── arrowFunctionMissingCurlyWithSemicolon.js │ ├── arrowFunctionMissingCurlyWithSemicolon.symbols │ ├── arrowFunctionMissingCurlyWithSemicolon.types │ ├── arrowFunctionParsingDoesNotConfuseParenthesizedObjectForArrowHead.js │ ├── arrowFunctionParsingDoesNotConfuseParenthesizedObjectForArrowHead.symbols │ ├── arrowFunctionParsingDoesNotConfuseParenthesizedObjectForArrowHead.types │ ├── arrowFunctionParsingGenericInObject.js │ ├── arrowFunctionParsingGenericInObject.symbols │ ├── arrowFunctionParsingGenericInObject.types │ ├── arrowFunctionWithObjectLiteralBody1.errors.txt │ ├── arrowFunctionWithObjectLiteralBody1.js │ ├── arrowFunctionWithObjectLiteralBody1.symbols │ ├── arrowFunctionWithObjectLiteralBody1.types │ ├── arrowFunctionWithObjectLiteralBody2.errors.txt │ ├── arrowFunctionWithObjectLiteralBody2.js │ ├── arrowFunctionWithObjectLiteralBody2.symbols │ ├── arrowFunctionWithObjectLiteralBody2.types │ ├── arrowFunctionWithObjectLiteralBody3.js │ ├── arrowFunctionWithObjectLiteralBody3.symbols │ ├── arrowFunctionWithObjectLiteralBody3.types │ ├── arrowFunctionWithObjectLiteralBody4.js │ ├── arrowFunctionWithObjectLiteralBody4.symbols │ ├── arrowFunctionWithObjectLiteralBody4.types │ ├── arrowFunctionWithObjectLiteralBody5.js │ ├── arrowFunctionWithObjectLiteralBody5.symbols │ ├── arrowFunctionWithObjectLiteralBody5.types │ ├── arrowFunctionWithObjectLiteralBody6.js │ ├── arrowFunctionWithObjectLiteralBody6.symbols │ ├── arrowFunctionWithObjectLiteralBody6.types │ ├── arrowFunctionWithParameterNameAsync_es2017(target=es2015).js │ ├── arrowFunctionWithParameterNameAsync_es2017(target=es2015).symbols │ ├── arrowFunctionWithParameterNameAsync_es2017(target=es2015).types │ ├── arrowFunctionWithParameterNameAsync_es2017(target=es5).errors.txt │ ├── arrowFunctionWithParameterNameAsync_es2017(target=es5).js │ ├── arrowFunctionWithParameterNameAsync_es2017(target=es5).symbols │ ├── arrowFunctionWithParameterNameAsync_es2017(target=es5).types │ ├── arrowFunctionWithParameterNameAsync_es5(target=es2015).js │ ├── arrowFunctionWithParameterNameAsync_es5(target=es2015).symbols │ ├── arrowFunctionWithParameterNameAsync_es5(target=es2015).types │ ├── arrowFunctionWithParameterNameAsync_es5(target=es5).errors.txt │ ├── arrowFunctionWithParameterNameAsync_es5(target=es5).js │ ├── arrowFunctionWithParameterNameAsync_es5(target=es5).symbols │ ├── arrowFunctionWithParameterNameAsync_es5(target=es5).types │ ├── arrowFunctionWithParameterNameAsync_es6(target=es2015).js │ ├── arrowFunctionWithParameterNameAsync_es6(target=es2015).symbols │ ├── arrowFunctionWithParameterNameAsync_es6(target=es2015).types │ ├── arrowFunctionWithParameterNameAsync_es6(target=es5).errors.txt │ ├── arrowFunctionWithParameterNameAsync_es6(target=es5).js │ ├── arrowFunctionWithParameterNameAsync_es6(target=es5).symbols │ ├── arrowFunctionWithParameterNameAsync_es6(target=es5).types │ ├── arrowFunctionsMissingTokens.errors.txt │ ├── arrowFunctionsMissingTokens.js │ ├── arrowFunctionsMissingTokens.symbols │ ├── arrowFunctionsMissingTokens.types │ ├── asConstRefsNoErrors1.baseline.jsonc │ ├── asConstRefsNoErrors2.baseline.jsonc │ ├── asConstRefsNoErrors3.baseline.jsonc │ ├── asOpEmitParens.js │ ├── asOpEmitParens.symbols │ ├── asOpEmitParens.types │ ├── asOperator1.errors.txt │ ├── asOperator1.js │ ├── asOperator1.symbols │ ├── asOperator1.types │ ├── asOperator2.errors.txt │ ├── asOperator2.js │ ├── asOperator2.symbols │ ├── asOperator2.types │ ├── asOperator3.js │ ├── asOperator3.symbols │ ├── asOperator3.types │ ├── asOperator4.js │ ├── asOperator4.symbols │ ├── asOperator4.types │ ├── asOperatorASI.js │ ├── asOperatorASI.symbols │ ├── asOperatorASI.types │ ├── asOperatorAmbiguity.errors.txt │ ├── asOperatorAmbiguity.js │ ├── asOperatorAmbiguity.symbols │ ├── asOperatorAmbiguity.types │ ├── asOperatorContextualType.errors.txt │ ├── asOperatorContextualType.js │ ├── asOperatorContextualType.symbols │ ├── asOperatorContextualType.types │ ├── asOperatorNames.errors.txt │ ├── asOperatorNames.js │ ├── asOperatorNames.symbols │ ├── asOperatorNames.types │ ├── asiAbstract.errors.txt │ ├── asiAbstract.js │ ├── asiAbstract.symbols │ ├── asiAbstract.types │ ├── asiAmbientFunctionDeclaration.errors.txt │ ├── asiAmbientFunctionDeclaration.js │ ├── asiAmbientFunctionDeclaration.symbols │ ├── asiAmbientFunctionDeclaration.types │ ├── asiArith.js │ ├── asiArith.symbols │ ├── asiArith.types │ ├── asiBreak.js │ ├── asiBreak.symbols │ ├── asiBreak.types │ ├── asiContinue.js │ ├── asiContinue.symbols │ ├── asiContinue.types │ ├── asiInES6Classes.js │ ├── asiInES6Classes.symbols │ ├── asiInES6Classes.types │ ├── asiPreventsParsingAsAmbientExternalModule01.errors.txt │ ├── asiPreventsParsingAsAmbientExternalModule01.js │ ├── asiPreventsParsingAsAmbientExternalModule01.symbols │ ├── asiPreventsParsingAsAmbientExternalModule01.types │ ├── asiPreventsParsingAsAmbientExternalModule02.js │ ├── asiPreventsParsingAsAmbientExternalModule02.symbols │ ├── asiPreventsParsingAsAmbientExternalModule02.types │ ├── asiPreventsParsingAsInterface01.errors.txt │ ├── asiPreventsParsingAsInterface01.js │ ├── asiPreventsParsingAsInterface01.symbols │ ├── asiPreventsParsingAsInterface01.types │ ├── asiPreventsParsingAsInterface02.errors.txt │ ├── asiPreventsParsingAsInterface02.js │ ├── asiPreventsParsingAsInterface02.symbols │ ├── asiPreventsParsingAsInterface02.types │ ├── asiPreventsParsingAsInterface03.errors.txt │ ├── asiPreventsParsingAsInterface03.js │ ├── asiPreventsParsingAsInterface03.symbols │ ├── asiPreventsParsingAsInterface03.types │ ├── asiPreventsParsingAsInterface04.errors.txt │ ├── asiPreventsParsingAsInterface04.js │ ├── asiPreventsParsingAsInterface04.symbols │ ├── asiPreventsParsingAsInterface04.types │ ├── asiPreventsParsingAsInterface05.errors.txt │ ├── asiPreventsParsingAsInterface05.js │ ├── asiPreventsParsingAsInterface05.symbols │ ├── asiPreventsParsingAsInterface05.types │ ├── asiPreventsParsingAsNamespace01.errors.txt │ ├── asiPreventsParsingAsNamespace01.js │ ├── asiPreventsParsingAsNamespace01.symbols │ ├── asiPreventsParsingAsNamespace01.types │ ├── asiPreventsParsingAsNamespace02.errors.txt │ ├── asiPreventsParsingAsNamespace02.js │ ├── asiPreventsParsingAsNamespace02.symbols │ ├── asiPreventsParsingAsNamespace02.types │ ├── asiPreventsParsingAsNamespace03.js │ ├── asiPreventsParsingAsNamespace03.symbols │ ├── asiPreventsParsingAsNamespace03.types │ ├── asiPreventsParsingAsNamespace04.js │ ├── asiPreventsParsingAsNamespace04.symbols │ ├── asiPreventsParsingAsNamespace04.types │ ├── asiPreventsParsingAsNamespace05.js │ ├── asiPreventsParsingAsNamespace05.symbols │ ├── asiPreventsParsingAsNamespace05.types │ ├── asiPreventsParsingAsTypeAlias01.js │ ├── asiPreventsParsingAsTypeAlias01.symbols │ ├── asiPreventsParsingAsTypeAlias01.types │ ├── asiPreventsParsingAsTypeAlias02.js │ ├── asiPreventsParsingAsTypeAlias02.symbols │ ├── asiPreventsParsingAsTypeAlias02.types │ ├── asiPublicPrivateProtected(alwaysstrict=false).errors.txt │ ├── asiPublicPrivateProtected(alwaysstrict=false).js │ ├── asiPublicPrivateProtected(alwaysstrict=false).symbols │ ├── asiPublicPrivateProtected(alwaysstrict=false).types │ ├── asiPublicPrivateProtected(alwaysstrict=true).errors.txt │ ├── asiPublicPrivateProtected(alwaysstrict=true).js │ ├── asiPublicPrivateProtected(alwaysstrict=true).symbols │ ├── asiPublicPrivateProtected(alwaysstrict=true).types │ ├── asiReturn.errors.txt │ ├── asiReturn.js │ ├── asiReturn.symbols │ ├── asiReturn.types │ ├── assertInWrapSomeTypeParameter.errors.txt │ ├── assertInWrapSomeTypeParameter.js │ ├── assertInWrapSomeTypeParameter.symbols │ ├── assertInWrapSomeTypeParameter.types │ ├── assertionFunctionWildcardImport1.js │ ├── assertionFunctionWildcardImport1.symbols │ ├── assertionFunctionWildcardImport1.types │ ├── assertionFunctionWildcardImport2.js │ ├── assertionFunctionWildcardImport2.symbols │ ├── assertionFunctionWildcardImport2.types │ ├── assertionFunctionsCanNarrowByDiscriminant.js │ ├── assertionFunctionsCanNarrowByDiscriminant.symbols │ ├── assertionFunctionsCanNarrowByDiscriminant.types │ ├── assertionTypePredicates1.errors.txt │ ├── assertionTypePredicates1.js │ ├── assertionTypePredicates1.symbols │ ├── assertionTypePredicates1.types │ ├── assertionTypePredicates2.js │ ├── assertionTypePredicates2.symbols │ ├── assertionTypePredicates2.types │ ├── assertionsAndNonReturningFunctions.errors.txt │ ├── assertionsAndNonReturningFunctions.symbols │ ├── assertionsAndNonReturningFunctions.types │ ├── assign1.js │ ├── assign1.symbols │ ├── assign1.types │ ├── assignAnyToEveryType.errors.txt │ ├── assignAnyToEveryType.js │ ├── assignAnyToEveryType.symbols │ ├── assignAnyToEveryType.types │ ├── assignEveryTypeToAny.errors.txt │ ├── assignEveryTypeToAny.js │ ├── assignEveryTypeToAny.symbols │ ├── assignEveryTypeToAny.types │ ├── assignFromBooleanInterface.errors.txt │ ├── assignFromBooleanInterface.js │ ├── assignFromBooleanInterface.symbols │ ├── assignFromBooleanInterface.types │ ├── assignFromBooleanInterface2.errors.txt │ ├── assignFromBooleanInterface2.js │ ├── assignFromBooleanInterface2.symbols │ ├── assignFromBooleanInterface2.types │ ├── assignFromNumberInterface.errors.txt │ ├── assignFromNumberInterface.js │ ├── assignFromNumberInterface.symbols │ ├── assignFromNumberInterface.types │ ├── assignFromNumberInterface2.errors.txt │ ├── assignFromNumberInterface2.js │ ├── assignFromNumberInterface2.symbols │ ├── assignFromNumberInterface2.types │ ├── assignFromStringInterface.errors.txt │ ├── assignFromStringInterface.js │ ├── assignFromStringInterface.symbols │ ├── assignFromStringInterface.types │ ├── assignFromStringInterface2.errors.txt │ ├── assignFromStringInterface2.js │ ├── assignFromStringInterface2.symbols │ ├── assignFromStringInterface2.types │ ├── assignLambdaToNominalSubtypeOfFunction.errors.txt │ ├── assignLambdaToNominalSubtypeOfFunction.js │ ├── assignLambdaToNominalSubtypeOfFunction.symbols │ ├── assignLambdaToNominalSubtypeOfFunction.types │ ├── assignObjectToNonPrimitive.js │ ├── assignObjectToNonPrimitive.symbols │ ├── assignObjectToNonPrimitive.types │ ├── assignParameterPropertyToPropertyDeclarationES2022.errors.txt │ ├── assignParameterPropertyToPropertyDeclarationES2022.js │ ├── assignParameterPropertyToPropertyDeclarationES2022.symbols │ ├── assignParameterPropertyToPropertyDeclarationES2022.types │ ├── assignParameterPropertyToPropertyDeclarationESNext.errors.txt │ ├── assignParameterPropertyToPropertyDeclarationESNext.js │ ├── assignParameterPropertyToPropertyDeclarationESNext.symbols │ ├── assignParameterPropertyToPropertyDeclarationESNext.types │ ├── assignSharedArrayBufferToArrayBuffer(target=es2015).errors.txt │ ├── assignSharedArrayBufferToArrayBuffer(target=es2015).js │ ├── assignSharedArrayBufferToArrayBuffer(target=es2015).symbols │ ├── assignSharedArrayBufferToArrayBuffer(target=es2015).types │ ├── assignSharedArrayBufferToArrayBuffer(target=es5).errors.txt │ ├── assignSharedArrayBufferToArrayBuffer(target=es5).js │ ├── assignSharedArrayBufferToArrayBuffer(target=es5).symbols │ ├── assignSharedArrayBufferToArrayBuffer(target=es5).types │ ├── assignToEnum.errors.txt │ ├── assignToEnum.js │ ├── assignToEnum.symbols │ ├── assignToEnum.types │ ├── assignToExistingClass.errors.txt │ ├── assignToExistingClass.js │ ├── assignToExistingClass.symbols │ ├── assignToExistingClass.types │ ├── assignToFn.errors.txt │ ├── assignToFn.js │ ├── assignToFn.symbols │ ├── assignToFn.types │ ├── assignToInvalidLHS.errors.txt │ ├── assignToInvalidLHS.js │ ├── assignToInvalidLHS.symbols │ ├── assignToInvalidLHS.types │ ├── assignToModule.errors.txt │ ├── assignToModule.js │ ├── assignToModule.symbols │ ├── assignToModule.types │ ├── assignToObjectTypeWithPrototypeProperty.js │ ├── assignToObjectTypeWithPrototypeProperty.symbols │ ├── assignToObjectTypeWithPrototypeProperty.types │ ├── assignToPrototype1.js │ ├── assignToPrototype1.symbols │ ├── assignToPrototype1.types │ ├── assigningFromObjectToAnythingElse.errors.txt │ ├── assigningFromObjectToAnythingElse.js │ ├── assigningFromObjectToAnythingElse.symbols │ ├── assigningFromObjectToAnythingElse.types │ ├── assigningFunctionToTupleIssuesError.errors.txt │ ├── assigningFunctionToTupleIssuesError.js │ ├── assigningFunctionToTupleIssuesError.symbols │ ├── assigningFunctionToTupleIssuesError.types │ ├── assignmentCompat1.errors.txt │ ├── assignmentCompat1.js │ ├── assignmentCompat1.symbols │ ├── assignmentCompat1.types │ ├── assignmentCompatBetweenTupleAndArray.errors.txt │ ├── assignmentCompatBetweenTupleAndArray.js │ ├── assignmentCompatBetweenTupleAndArray.symbols │ ├── assignmentCompatBetweenTupleAndArray.types │ ├── assignmentCompatBug2.errors.txt │ ├── assignmentCompatBug2.js │ ├── assignmentCompatBug2.symbols │ ├── assignmentCompatBug2.types │ ├── assignmentCompatBug3.js │ ├── assignmentCompatBug3.symbols │ ├── assignmentCompatBug3.types │ ├── assignmentCompatBug5.errors.txt │ ├── assignmentCompatBug5.js │ ├── assignmentCompatBug5.symbols │ ├── assignmentCompatBug5.types │ ├── assignmentCompatForEnums.js │ ├── assignmentCompatForEnums.symbols │ ├── assignmentCompatForEnums.types │ ├── assignmentCompatFunctionsWithOptionalArgs.errors.txt │ ├── assignmentCompatFunctionsWithOptionalArgs.js │ ├── assignmentCompatFunctionsWithOptionalArgs.symbols │ ├── assignmentCompatFunctionsWithOptionalArgs.types │ ├── assignmentCompatInterfaceWithStringIndexSignature.errors.txt │ ├── assignmentCompatInterfaceWithStringIndexSignature.js │ ├── assignmentCompatInterfaceWithStringIndexSignature.symbols │ ├── assignmentCompatInterfaceWithStringIndexSignature.types │ ├── assignmentCompatOnNew.js │ ├── assignmentCompatOnNew.symbols │ ├── assignmentCompatOnNew.types │ ├── assignmentCompatWithCallSignatures.errors.txt │ ├── assignmentCompatWithCallSignatures.js │ ├── assignmentCompatWithCallSignatures.symbols │ ├── assignmentCompatWithCallSignatures.types │ ├── assignmentCompatWithCallSignatures2.errors.txt │ ├── assignmentCompatWithCallSignatures2.js │ ├── assignmentCompatWithCallSignatures2.symbols │ ├── assignmentCompatWithCallSignatures2.types │ ├── assignmentCompatWithCallSignatures3.errors.txt │ ├── assignmentCompatWithCallSignatures3.js │ ├── assignmentCompatWithCallSignatures3.symbols │ ├── assignmentCompatWithCallSignatures3.types │ ├── assignmentCompatWithCallSignatures4.errors.txt │ ├── assignmentCompatWithCallSignatures4.js │ ├── assignmentCompatWithCallSignatures4.symbols │ ├── assignmentCompatWithCallSignatures4.types │ ├── assignmentCompatWithCallSignatures5.errors.txt │ ├── assignmentCompatWithCallSignatures5.js │ ├── assignmentCompatWithCallSignatures5.symbols │ ├── assignmentCompatWithCallSignatures5.types │ ├── assignmentCompatWithCallSignatures6.errors.txt │ ├── assignmentCompatWithCallSignatures6.js │ ├── assignmentCompatWithCallSignatures6.symbols │ ├── assignmentCompatWithCallSignatures6.types │ ├── assignmentCompatWithCallSignaturesWithOptionalParameters.errors.txt │ ├── assignmentCompatWithCallSignaturesWithOptionalParameters.js │ ├── assignmentCompatWithCallSignaturesWithOptionalParameters.symbols │ ├── assignmentCompatWithCallSignaturesWithOptionalParameters.types │ ├── assignmentCompatWithCallSignaturesWithRestParameters.errors.txt │ ├── assignmentCompatWithCallSignaturesWithRestParameters.js │ ├── assignmentCompatWithCallSignaturesWithRestParameters.symbols │ ├── assignmentCompatWithCallSignaturesWithRestParameters.types │ ├── assignmentCompatWithConstructSignatures.errors.txt │ ├── assignmentCompatWithConstructSignatures.js │ ├── assignmentCompatWithConstructSignatures.symbols │ ├── assignmentCompatWithConstructSignatures.types │ ├── assignmentCompatWithConstructSignatures2.errors.txt │ ├── assignmentCompatWithConstructSignatures2.js │ ├── assignmentCompatWithConstructSignatures2.symbols │ ├── assignmentCompatWithConstructSignatures2.types │ ├── assignmentCompatWithConstructSignatures3.errors.txt │ ├── assignmentCompatWithConstructSignatures3.js │ ├── assignmentCompatWithConstructSignatures3.symbols │ ├── assignmentCompatWithConstructSignatures3.types │ ├── assignmentCompatWithConstructSignatures4.errors.txt │ ├── assignmentCompatWithConstructSignatures4.js │ ├── assignmentCompatWithConstructSignatures4.symbols │ ├── assignmentCompatWithConstructSignatures4.types │ ├── assignmentCompatWithConstructSignatures5.errors.txt │ ├── assignmentCompatWithConstructSignatures5.js │ ├── assignmentCompatWithConstructSignatures5.symbols │ ├── assignmentCompatWithConstructSignatures5.types │ ├── assignmentCompatWithConstructSignatures6.errors.txt │ ├── assignmentCompatWithConstructSignatures6.js │ ├── assignmentCompatWithConstructSignatures6.symbols │ ├── assignmentCompatWithConstructSignatures6.types │ ├── assignmentCompatWithConstructSignaturesWithOptionalParameters.errors.txt │ ├── assignmentCompatWithConstructSignaturesWithOptionalParameters.js │ ├── assignmentCompatWithConstructSignaturesWithOptionalParameters.symbols │ ├── assignmentCompatWithConstructSignaturesWithOptionalParameters.types │ ├── assignmentCompatWithDiscriminatedUnion.errors.txt │ ├── assignmentCompatWithDiscriminatedUnion.js │ ├── assignmentCompatWithDiscriminatedUnion.symbols │ ├── assignmentCompatWithDiscriminatedUnion.types │ ├── assignmentCompatWithEnumIndexer.errors.txt │ ├── assignmentCompatWithEnumIndexer.js │ ├── assignmentCompatWithEnumIndexer.symbols │ ├── assignmentCompatWithEnumIndexer.types │ ├── assignmentCompatWithGenericCallSignatures.errors.txt │ ├── assignmentCompatWithGenericCallSignatures.js │ ├── assignmentCompatWithGenericCallSignatures.symbols │ ├── assignmentCompatWithGenericCallSignatures.types │ ├── assignmentCompatWithGenericCallSignatures2.errors.txt │ ├── assignmentCompatWithGenericCallSignatures2.js │ ├── assignmentCompatWithGenericCallSignatures2.symbols │ ├── assignmentCompatWithGenericCallSignatures2.types │ ├── assignmentCompatWithGenericCallSignatures3.errors.txt │ ├── assignmentCompatWithGenericCallSignatures3.js │ ├── assignmentCompatWithGenericCallSignatures3.symbols │ ├── assignmentCompatWithGenericCallSignatures3.types │ ├── assignmentCompatWithGenericCallSignatures4.errors.txt │ ├── assignmentCompatWithGenericCallSignatures4.js │ ├── assignmentCompatWithGenericCallSignatures4.symbols │ ├── assignmentCompatWithGenericCallSignatures4.types │ ├── assignmentCompatWithGenericCallSignaturesWithOptionalParameters.errors.txt │ ├── assignmentCompatWithGenericCallSignaturesWithOptionalParameters.js │ ├── assignmentCompatWithGenericCallSignaturesWithOptionalParameters.symbols │ ├── assignmentCompatWithGenericCallSignaturesWithOptionalParameters.types │ ├── assignmentCompatWithNumericIndexer.errors.txt │ ├── assignmentCompatWithNumericIndexer.js │ ├── assignmentCompatWithNumericIndexer.symbols │ ├── assignmentCompatWithNumericIndexer.types │ ├── assignmentCompatWithNumericIndexer2.errors.txt │ ├── assignmentCompatWithNumericIndexer2.js │ ├── assignmentCompatWithNumericIndexer2.symbols │ ├── assignmentCompatWithNumericIndexer2.types │ ├── assignmentCompatWithNumericIndexer3.errors.txt │ ├── assignmentCompatWithNumericIndexer3.js │ ├── assignmentCompatWithNumericIndexer3.symbols │ ├── assignmentCompatWithNumericIndexer3.types │ ├── assignmentCompatWithObjectMembers.js │ ├── assignmentCompatWithObjectMembers.symbols │ ├── assignmentCompatWithObjectMembers.types │ ├── assignmentCompatWithObjectMembers2.js │ ├── assignmentCompatWithObjectMembers2.symbols │ ├── assignmentCompatWithObjectMembers2.types │ ├── assignmentCompatWithObjectMembers3.js │ ├── assignmentCompatWithObjectMembers3.symbols │ ├── assignmentCompatWithObjectMembers3.types │ ├── assignmentCompatWithObjectMembers4.errors.txt │ ├── assignmentCompatWithObjectMembers4.js │ ├── assignmentCompatWithObjectMembers4.symbols │ ├── assignmentCompatWithObjectMembers4.types │ ├── assignmentCompatWithObjectMembers5.errors.txt │ ├── assignmentCompatWithObjectMembers5.js │ ├── assignmentCompatWithObjectMembers5.symbols │ ├── assignmentCompatWithObjectMembers5.types │ ├── assignmentCompatWithObjectMembersAccessibility.errors.txt │ ├── assignmentCompatWithObjectMembersAccessibility.js │ ├── assignmentCompatWithObjectMembersAccessibility.symbols │ ├── assignmentCompatWithObjectMembersAccessibility.types │ ├── assignmentCompatWithObjectMembersNumericNames.js │ ├── assignmentCompatWithObjectMembersNumericNames.symbols │ ├── assignmentCompatWithObjectMembersNumericNames.types │ ├── assignmentCompatWithObjectMembersOptionality.errors.txt │ ├── assignmentCompatWithObjectMembersOptionality.js │ ├── assignmentCompatWithObjectMembersOptionality.symbols │ ├── assignmentCompatWithObjectMembersOptionality.types │ ├── assignmentCompatWithObjectMembersOptionality2.errors.txt │ ├── assignmentCompatWithObjectMembersOptionality2.js │ ├── assignmentCompatWithObjectMembersOptionality2.symbols │ ├── assignmentCompatWithObjectMembersOptionality2.types │ ├── assignmentCompatWithObjectMembersStringNumericNames.errors.txt │ ├── assignmentCompatWithObjectMembersStringNumericNames.js │ ├── assignmentCompatWithObjectMembersStringNumericNames.symbols │ ├── assignmentCompatWithObjectMembersStringNumericNames.types │ ├── assignmentCompatWithOverloads.errors.txt │ ├── assignmentCompatWithOverloads.js │ ├── assignmentCompatWithOverloads.symbols │ ├── assignmentCompatWithOverloads.types │ ├── assignmentCompatWithStringIndexer.errors.txt │ ├── assignmentCompatWithStringIndexer.js │ ├── assignmentCompatWithStringIndexer.symbols │ ├── assignmentCompatWithStringIndexer.types │ ├── assignmentCompatWithStringIndexer2.errors.txt │ ├── assignmentCompatWithStringIndexer2.js │ ├── assignmentCompatWithStringIndexer2.symbols │ ├── assignmentCompatWithStringIndexer2.types │ ├── assignmentCompatWithStringIndexer3.errors.txt │ ├── assignmentCompatWithStringIndexer3.js │ ├── assignmentCompatWithStringIndexer3.symbols │ ├── assignmentCompatWithStringIndexer3.types │ ├── assignmentCompatWithWithGenericConstructSignatures.js │ ├── assignmentCompatWithWithGenericConstructSignatures.symbols │ ├── assignmentCompatWithWithGenericConstructSignatures.types │ ├── assignmentCompatability1.js │ ├── assignmentCompatability1.symbols │ ├── assignmentCompatability1.types │ ├── assignmentCompatability10.js │ ├── assignmentCompatability10.symbols │ ├── assignmentCompatability10.types │ ├── assignmentCompatability11.errors.txt │ ├── assignmentCompatability11.js │ ├── assignmentCompatability11.symbols │ ├── assignmentCompatability11.types │ ├── assignmentCompatability12.errors.txt │ ├── assignmentCompatability12.js │ ├── assignmentCompatability12.symbols │ ├── assignmentCompatability12.types │ ├── assignmentCompatability13.errors.txt │ ├── assignmentCompatability13.js │ ├── assignmentCompatability13.symbols │ ├── assignmentCompatability13.types │ ├── assignmentCompatability14.errors.txt │ ├── assignmentCompatability14.js │ ├── assignmentCompatability14.symbols │ ├── assignmentCompatability14.types │ ├── assignmentCompatability15.errors.txt │ ├── assignmentCompatability15.js │ ├── assignmentCompatability15.symbols │ ├── assignmentCompatability15.types │ ├── assignmentCompatability16.errors.txt │ ├── assignmentCompatability16.js │ ├── assignmentCompatability16.symbols │ ├── assignmentCompatability16.types │ ├── assignmentCompatability17.errors.txt │ ├── assignmentCompatability17.js │ ├── assignmentCompatability17.symbols │ ├── assignmentCompatability17.types │ ├── assignmentCompatability18.errors.txt │ ├── assignmentCompatability18.js │ ├── assignmentCompatability18.symbols │ ├── assignmentCompatability18.types │ ├── assignmentCompatability19.errors.txt │ ├── assignmentCompatability19.js │ ├── assignmentCompatability19.symbols │ ├── assignmentCompatability19.types │ ├── assignmentCompatability2.errors.txt │ ├── assignmentCompatability2.js │ ├── assignmentCompatability2.symbols │ ├── assignmentCompatability2.types │ ├── assignmentCompatability20.errors.txt │ ├── assignmentCompatability20.js │ ├── assignmentCompatability20.symbols │ ├── assignmentCompatability20.types │ ├── assignmentCompatability21.errors.txt │ ├── assignmentCompatability21.js │ ├── assignmentCompatability21.symbols │ ├── assignmentCompatability21.types │ ├── assignmentCompatability22.errors.txt │ ├── assignmentCompatability22.js │ ├── assignmentCompatability22.symbols │ ├── assignmentCompatability22.types │ ├── assignmentCompatability23.errors.txt │ ├── assignmentCompatability23.js │ ├── assignmentCompatability23.symbols │ ├── assignmentCompatability23.types │ ├── assignmentCompatability24.errors.txt │ ├── assignmentCompatability24.js │ ├── assignmentCompatability24.symbols │ ├── assignmentCompatability24.types │ ├── assignmentCompatability25.errors.txt │ ├── assignmentCompatability25.js │ ├── assignmentCompatability25.symbols │ ├── assignmentCompatability25.types │ ├── assignmentCompatability26.errors.txt │ ├── assignmentCompatability26.js │ ├── assignmentCompatability26.symbols │ ├── assignmentCompatability26.types │ ├── assignmentCompatability27.errors.txt │ ├── assignmentCompatability27.js │ ├── assignmentCompatability27.symbols │ ├── assignmentCompatability27.types │ ├── assignmentCompatability28.errors.txt │ ├── assignmentCompatability28.js │ ├── assignmentCompatability28.symbols │ ├── assignmentCompatability28.types │ ├── assignmentCompatability29.errors.txt │ ├── assignmentCompatability29.js │ ├── assignmentCompatability29.symbols │ ├── assignmentCompatability29.types │ ├── assignmentCompatability3.js │ ├── assignmentCompatability3.symbols │ ├── assignmentCompatability3.types │ ├── assignmentCompatability30.errors.txt │ ├── assignmentCompatability30.js │ ├── assignmentCompatability30.symbols │ ├── assignmentCompatability30.types │ ├── assignmentCompatability31.errors.txt │ ├── assignmentCompatability31.js │ ├── assignmentCompatability31.symbols │ ├── assignmentCompatability31.types │ ├── assignmentCompatability32.errors.txt │ ├── assignmentCompatability32.js │ ├── assignmentCompatability32.symbols │ ├── assignmentCompatability32.types │ ├── assignmentCompatability33.errors.txt │ ├── assignmentCompatability33.js │ ├── assignmentCompatability33.symbols │ ├── assignmentCompatability33.types │ ├── assignmentCompatability34.errors.txt │ ├── assignmentCompatability34.js │ ├── assignmentCompatability34.symbols │ ├── assignmentCompatability34.types │ ├── assignmentCompatability35.errors.txt │ ├── assignmentCompatability35.js │ ├── assignmentCompatability35.symbols │ ├── assignmentCompatability35.types │ ├── assignmentCompatability36.errors.txt │ ├── assignmentCompatability36.js │ ├── assignmentCompatability36.symbols │ ├── assignmentCompatability36.types │ ├── assignmentCompatability37.errors.txt │ ├── assignmentCompatability37.js │ ├── assignmentCompatability37.symbols │ ├── assignmentCompatability37.types │ ├── assignmentCompatability38.errors.txt │ ├── assignmentCompatability38.js │ ├── assignmentCompatability38.symbols │ ├── assignmentCompatability38.types │ ├── assignmentCompatability39.errors.txt │ ├── assignmentCompatability39.js │ ├── assignmentCompatability39.symbols │ ├── assignmentCompatability39.types │ ├── assignmentCompatability4.errors.txt │ ├── assignmentCompatability4.js │ ├── assignmentCompatability4.symbols │ ├── assignmentCompatability4.types │ ├── assignmentCompatability40.errors.txt │ ├── assignmentCompatability40.js │ ├── assignmentCompatability40.symbols │ ├── assignmentCompatability40.types │ ├── assignmentCompatability41.errors.txt │ ├── assignmentCompatability41.js │ ├── assignmentCompatability41.symbols │ ├── assignmentCompatability41.types │ ├── assignmentCompatability42.errors.txt │ ├── assignmentCompatability42.js │ ├── assignmentCompatability42.symbols │ ├── assignmentCompatability42.types │ ├── assignmentCompatability43.errors.txt │ ├── assignmentCompatability43.js │ ├── assignmentCompatability43.symbols │ ├── assignmentCompatability43.types │ ├── assignmentCompatability44.errors.txt │ ├── assignmentCompatability44.js │ ├── assignmentCompatability44.symbols │ ├── assignmentCompatability44.types │ ├── assignmentCompatability45.errors.txt │ ├── assignmentCompatability45.js │ ├── assignmentCompatability45.symbols │ ├── assignmentCompatability45.types │ ├── assignmentCompatability46.errors.txt │ ├── assignmentCompatability46.js │ ├── assignmentCompatability46.symbols │ ├── assignmentCompatability46.types │ ├── assignmentCompatability5.js │ ├── assignmentCompatability5.symbols │ ├── assignmentCompatability5.types │ ├── assignmentCompatability6.js │ ├── assignmentCompatability6.symbols │ ├── assignmentCompatability6.types │ ├── assignmentCompatability7.js │ ├── assignmentCompatability7.symbols │ ├── assignmentCompatability7.types │ ├── assignmentCompatability8.js │ ├── assignmentCompatability8.symbols │ ├── assignmentCompatability8.types │ ├── assignmentCompatability9.js │ ├── assignmentCompatability9.symbols │ ├── assignmentCompatability9.types │ ├── assignmentCompatability_checking-apply-member-off-of-function-interface.errors.txt │ ├── assignmentCompatability_checking-apply-member-off-of-function-interface.js │ ├── assignmentCompatability_checking-apply-member-off-of-function-interface.symbols │ ├── assignmentCompatability_checking-apply-member-off-of-function-interface.types │ ├── assignmentCompatability_checking-call-member-off-of-function-interface.errors.txt │ ├── assignmentCompatability_checking-call-member-off-of-function-interface.js │ ├── assignmentCompatability_checking-call-member-off-of-function-interface.symbols │ ├── assignmentCompatability_checking-call-member-off-of-function-interface.types │ ├── assignmentCompatibilityForConstrainedTypeParameters.errors.txt │ ├── assignmentCompatibilityForConstrainedTypeParameters.js │ ├── assignmentCompatibilityForConstrainedTypeParameters.symbols │ ├── assignmentCompatibilityForConstrainedTypeParameters.types │ ├── assignmentGenericLookupTypeNarrowing.js │ ├── assignmentGenericLookupTypeNarrowing.symbols │ ├── assignmentGenericLookupTypeNarrowing.types │ ├── assignmentIndexedToPrimitives.errors.txt │ ├── assignmentIndexedToPrimitives.js │ ├── assignmentIndexedToPrimitives.symbols │ ├── assignmentIndexedToPrimitives.types │ ├── assignmentLHSIsReference.errors.txt │ ├── assignmentLHSIsReference.js │ ├── assignmentLHSIsReference.symbols │ ├── assignmentLHSIsReference.types │ ├── assignmentLHSIsValue.errors.txt │ ├── assignmentLHSIsValue.js │ ├── assignmentLHSIsValue.symbols │ ├── assignmentLHSIsValue.types │ ├── assignmentNestedInLiterals.js │ ├── assignmentNestedInLiterals.symbols │ ├── assignmentNestedInLiterals.types │ ├── assignmentNonObjectTypeConstraints.js │ ├── assignmentNonObjectTypeConstraints.symbols │ ├── assignmentNonObjectTypeConstraints.types │ ├── assignmentRestElementWithErrorSourceType.errors.txt │ ├── assignmentRestElementWithErrorSourceType.js │ ├── assignmentRestElementWithErrorSourceType.symbols │ ├── assignmentRestElementWithErrorSourceType.types │ ├── assignmentStricterConstraints.errors.txt │ ├── assignmentStricterConstraints.js │ ├── assignmentStricterConstraints.symbols │ ├── assignmentStricterConstraints.types │ ├── assignmentToAnyArrayRestParameters.errors.txt │ ├── assignmentToAnyArrayRestParameters.symbols │ ├── assignmentToAnyArrayRestParameters.types │ ├── assignmentToConditionalBrandedStringTemplateOrMapping.js │ ├── assignmentToConditionalBrandedStringTemplateOrMapping.symbols │ ├── assignmentToConditionalBrandedStringTemplateOrMapping.types │ ├── assignmentToExpandingArrayType.js │ ├── assignmentToExpandingArrayType.symbols │ ├── assignmentToExpandingArrayType.types │ ├── assignmentToFunction.errors.txt │ ├── assignmentToFunction.js │ ├── assignmentToFunction.symbols │ ├── assignmentToFunction.types │ ├── assignmentToInstantiationExpression.errors.txt │ ├── assignmentToInstantiationExpression.js │ ├── assignmentToInstantiationExpression.symbols │ ├── assignmentToInstantiationExpression.types │ ├── assignmentToObject.errors.txt │ ├── assignmentToObject.js │ ├── assignmentToObject.symbols │ ├── assignmentToObject.types │ ├── assignmentToObjectAndFunction.errors.txt │ ├── assignmentToObjectAndFunction.js │ ├── assignmentToObjectAndFunction.symbols │ ├── assignmentToObjectAndFunction.types │ ├── assignmentToParenthesizedExpression1.errors.txt │ ├── assignmentToParenthesizedExpression1.js │ ├── assignmentToParenthesizedExpression1.symbols │ ├── assignmentToParenthesizedExpression1.types │ ├── assignmentToParenthesizedIdentifiers.errors.txt │ ├── assignmentToParenthesizedIdentifiers.js │ ├── assignmentToParenthesizedIdentifiers.symbols │ ├── assignmentToParenthesizedIdentifiers.types │ ├── assignmentToReferenceTypes.errors.txt │ ├── assignmentToReferenceTypes.js │ ├── assignmentToReferenceTypes.symbols │ ├── assignmentToReferenceTypes.types │ ├── assignmentToVoidZero1.errors.txt │ ├── assignmentToVoidZero1.js │ ├── assignmentToVoidZero1.symbols │ ├── assignmentToVoidZero1.types │ ├── assignmentToVoidZero2.errors.txt │ ├── assignmentToVoidZero2.js │ ├── assignmentToVoidZero2.symbols │ ├── assignmentToVoidZero2.types │ ├── assignmentTypeNarrowing.errors.txt │ ├── assignmentTypeNarrowing.js │ ├── assignmentTypeNarrowing.symbols │ ├── assignmentTypeNarrowing.types │ ├── assignments.errors.txt │ ├── assignments.js │ ├── assignments.symbols │ ├── assignments.types │ ├── asyncAliasReturnType_es5(target=es2015).js │ ├── asyncAliasReturnType_es5(target=es2015).symbols │ ├── asyncAliasReturnType_es5(target=es2015).types │ ├── asyncAliasReturnType_es5(target=es5).errors.txt │ ├── asyncAliasReturnType_es5(target=es5).js │ ├── asyncAliasReturnType_es5(target=es5).symbols │ ├── asyncAliasReturnType_es5(target=es5).types │ ├── asyncAliasReturnType_es6.js │ ├── asyncAliasReturnType_es6.symbols │ ├── asyncAliasReturnType_es6.types │ ├── asyncArrowFunction10_es2017.errors.txt │ ├── asyncArrowFunction10_es2017.js │ ├── asyncArrowFunction10_es2017.symbols │ ├── asyncArrowFunction10_es2017.types │ ├── asyncArrowFunction10_es5(target=es2015).errors.txt │ ├── asyncArrowFunction10_es5(target=es2015).js │ ├── asyncArrowFunction10_es5(target=es2015).symbols │ ├── asyncArrowFunction10_es5(target=es2015).types │ ├── asyncArrowFunction10_es5(target=es5).errors.txt │ ├── asyncArrowFunction10_es5(target=es5).js │ ├── asyncArrowFunction10_es5(target=es5).symbols │ ├── asyncArrowFunction10_es5(target=es5).types │ ├── asyncArrowFunction10_es6.errors.txt │ ├── asyncArrowFunction10_es6.js │ ├── asyncArrowFunction10_es6.symbols │ ├── asyncArrowFunction10_es6.types │ ├── asyncArrowFunction11_es5(target=es2015).errors.txt │ ├── asyncArrowFunction11_es5(target=es2015).js │ ├── asyncArrowFunction11_es5(target=es2015).symbols │ ├── asyncArrowFunction11_es5(target=es2015).types │ ├── asyncArrowFunction11_es5(target=es5).errors.txt │ ├── asyncArrowFunction11_es5(target=es5).js │ ├── asyncArrowFunction11_es5(target=es5).symbols │ ├── asyncArrowFunction11_es5(target=es5).types │ ├── asyncArrowFunction1_es2017.js │ ├── asyncArrowFunction1_es2017.symbols │ ├── asyncArrowFunction1_es2017.types │ ├── asyncArrowFunction1_es5(target=es2015).js │ ├── asyncArrowFunction1_es5(target=es2015).symbols │ ├── asyncArrowFunction1_es5(target=es2015).types │ ├── asyncArrowFunction1_es5(target=es5).errors.txt │ ├── asyncArrowFunction1_es5(target=es5).js │ ├── asyncArrowFunction1_es5(target=es5).symbols │ ├── asyncArrowFunction1_es5(target=es5).types │ ├── asyncArrowFunction1_es6.js │ ├── asyncArrowFunction1_es6.symbols │ ├── asyncArrowFunction1_es6.types │ ├── asyncArrowFunction2_es2017.js │ ├── asyncArrowFunction2_es2017.symbols │ ├── asyncArrowFunction2_es2017.types │ ├── asyncArrowFunction2_es5(target=es2015).js │ ├── asyncArrowFunction2_es5(target=es2015).symbols │ ├── asyncArrowFunction2_es5(target=es2015).types │ ├── asyncArrowFunction2_es5(target=es5).errors.txt │ ├── asyncArrowFunction2_es5(target=es5).js │ ├── asyncArrowFunction2_es5(target=es5).symbols │ ├── asyncArrowFunction2_es5(target=es5).types │ ├── asyncArrowFunction2_es6.js │ ├── asyncArrowFunction2_es6.symbols │ ├── asyncArrowFunction2_es6.types │ ├── asyncArrowFunction3_es2017.errors.txt │ ├── asyncArrowFunction3_es2017.js │ ├── asyncArrowFunction3_es2017.symbols │ ├── asyncArrowFunction3_es2017.types │ ├── asyncArrowFunction3_es5(target=es2015).errors.txt │ ├── asyncArrowFunction3_es5(target=es2015).js │ ├── asyncArrowFunction3_es5(target=es2015).symbols │ ├── asyncArrowFunction3_es5(target=es2015).types │ ├── asyncArrowFunction3_es5(target=es5).errors.txt │ ├── asyncArrowFunction3_es5(target=es5).js │ ├── asyncArrowFunction3_es5(target=es5).symbols │ ├── asyncArrowFunction3_es5(target=es5).types │ ├── asyncArrowFunction3_es6.errors.txt │ ├── asyncArrowFunction3_es6.js │ ├── asyncArrowFunction3_es6.symbols │ ├── asyncArrowFunction3_es6.types │ ├── asyncArrowFunction4_es2017.js │ ├── asyncArrowFunction4_es2017.symbols │ ├── asyncArrowFunction4_es2017.types │ ├── asyncArrowFunction4_es5(target=es2015).js │ ├── asyncArrowFunction4_es5(target=es2015).symbols │ ├── asyncArrowFunction4_es5(target=es2015).types │ ├── asyncArrowFunction4_es5(target=es5).errors.txt │ ├── asyncArrowFunction4_es5(target=es5).js │ ├── asyncArrowFunction4_es5(target=es5).symbols │ ├── asyncArrowFunction4_es5(target=es5).types │ ├── asyncArrowFunction4_es6.js │ ├── asyncArrowFunction4_es6.symbols │ ├── asyncArrowFunction4_es6.types │ ├── asyncArrowFunction5_es2017.errors.txt │ ├── asyncArrowFunction5_es2017.js │ ├── asyncArrowFunction5_es2017.symbols │ ├── asyncArrowFunction5_es2017.types │ ├── asyncArrowFunction5_es5(target=es2015).errors.txt │ ├── asyncArrowFunction5_es5(target=es2015).js │ ├── asyncArrowFunction5_es5(target=es2015).symbols │ ├── asyncArrowFunction5_es5(target=es2015).types │ ├── asyncArrowFunction5_es5(target=es5).errors.txt │ ├── asyncArrowFunction5_es5(target=es5).js │ ├── asyncArrowFunction5_es5(target=es5).symbols │ ├── asyncArrowFunction5_es5(target=es5).types │ ├── asyncArrowFunction5_es6.errors.txt │ ├── asyncArrowFunction5_es6.js │ ├── asyncArrowFunction5_es6.symbols │ ├── asyncArrowFunction5_es6.types │ ├── asyncArrowFunction6_es2017.errors.txt │ ├── asyncArrowFunction6_es2017.js │ ├── asyncArrowFunction6_es2017.symbols │ ├── asyncArrowFunction6_es2017.types │ ├── asyncArrowFunction6_es5(target=es2015).errors.txt │ ├── asyncArrowFunction6_es5(target=es2015).js │ ├── asyncArrowFunction6_es5(target=es2015).symbols │ ├── asyncArrowFunction6_es5(target=es2015).types │ ├── asyncArrowFunction6_es5(target=es5).errors.txt │ ├── asyncArrowFunction6_es5(target=es5).js │ ├── asyncArrowFunction6_es5(target=es5).symbols │ ├── asyncArrowFunction6_es5(target=es5).types │ ├── asyncArrowFunction6_es6.errors.txt │ ├── asyncArrowFunction6_es6.js │ ├── asyncArrowFunction6_es6.symbols │ ├── asyncArrowFunction6_es6.types │ ├── asyncArrowFunction7_es2017.errors.txt │ ├── asyncArrowFunction7_es2017.js │ ├── asyncArrowFunction7_es2017.symbols │ ├── asyncArrowFunction7_es2017.types │ ├── asyncArrowFunction7_es5(target=es2015).errors.txt │ ├── asyncArrowFunction7_es5(target=es2015).js │ ├── asyncArrowFunction7_es5(target=es2015).symbols │ ├── asyncArrowFunction7_es5(target=es2015).types │ ├── asyncArrowFunction7_es5(target=es5).errors.txt │ ├── asyncArrowFunction7_es5(target=es5).js │ ├── asyncArrowFunction7_es5(target=es5).symbols │ ├── asyncArrowFunction7_es5(target=es5).types │ ├── asyncArrowFunction7_es6.errors.txt │ ├── asyncArrowFunction7_es6.js │ ├── asyncArrowFunction7_es6.symbols │ ├── asyncArrowFunction7_es6.types │ ├── asyncArrowFunction8_es2017.errors.txt │ ├── asyncArrowFunction8_es2017.js │ ├── asyncArrowFunction8_es2017.symbols │ ├── asyncArrowFunction8_es2017.types │ ├── asyncArrowFunction8_es5(target=es2015).errors.txt │ ├── asyncArrowFunction8_es5(target=es2015).js │ ├── asyncArrowFunction8_es5(target=es2015).symbols │ ├── asyncArrowFunction8_es5(target=es2015).types │ ├── asyncArrowFunction8_es5(target=es5).errors.txt │ ├── asyncArrowFunction8_es5(target=es5).js │ ├── asyncArrowFunction8_es5(target=es5).symbols │ ├── asyncArrowFunction8_es5(target=es5).types │ ├── asyncArrowFunction8_es6.errors.txt │ ├── asyncArrowFunction8_es6.js │ ├── asyncArrowFunction8_es6.symbols │ ├── asyncArrowFunction8_es6.types │ ├── asyncArrowFunction9_es2017.errors.txt │ ├── asyncArrowFunction9_es2017.js │ ├── asyncArrowFunction9_es2017.symbols │ ├── asyncArrowFunction9_es2017.types │ ├── asyncArrowFunction9_es5(target=es2015).errors.txt │ ├── asyncArrowFunction9_es5(target=es2015).js │ ├── asyncArrowFunction9_es5(target=es2015).symbols │ ├── asyncArrowFunction9_es5(target=es2015).types │ ├── asyncArrowFunction9_es5(target=es5).errors.txt │ ├── asyncArrowFunction9_es5(target=es5).js │ ├── asyncArrowFunction9_es5(target=es5).symbols │ ├── asyncArrowFunction9_es5(target=es5).types │ ├── asyncArrowFunction9_es6.errors.txt │ ├── asyncArrowFunction9_es6.js │ ├── asyncArrowFunction9_es6.symbols │ ├── asyncArrowFunction9_es6.types │ ├── asyncArrowFunctionCapturesArguments_es2017.errors.txt │ ├── asyncArrowFunctionCapturesArguments_es2017.js │ ├── asyncArrowFunctionCapturesArguments_es2017.symbols │ ├── asyncArrowFunctionCapturesArguments_es2017.types │ ├── asyncArrowFunctionCapturesArguments_es5(target=es2015).errors.txt │ ├── asyncArrowFunctionCapturesArguments_es5(target=es2015).js │ ├── asyncArrowFunctionCapturesArguments_es5(target=es2015).symbols │ ├── asyncArrowFunctionCapturesArguments_es5(target=es2015).types │ ├── asyncArrowFunctionCapturesArguments_es5(target=es5).errors.txt │ ├── asyncArrowFunctionCapturesArguments_es5(target=es5).js │ ├── asyncArrowFunctionCapturesArguments_es5(target=es5).symbols │ ├── asyncArrowFunctionCapturesArguments_es5(target=es5).types │ ├── asyncArrowFunctionCapturesArguments_es6.errors.txt │ ├── asyncArrowFunctionCapturesArguments_es6.js │ ├── asyncArrowFunctionCapturesArguments_es6.symbols │ ├── asyncArrowFunctionCapturesArguments_es6.types │ ├── asyncArrowFunctionCapturesThis_es2017.js │ ├── asyncArrowFunctionCapturesThis_es2017.symbols │ ├── asyncArrowFunctionCapturesThis_es2017.types │ ├── asyncArrowFunctionCapturesThis_es5(target=es2015).js │ ├── asyncArrowFunctionCapturesThis_es5(target=es2015).symbols │ ├── asyncArrowFunctionCapturesThis_es5(target=es2015).types │ ├── asyncArrowFunctionCapturesThis_es5(target=es5).errors.txt │ ├── asyncArrowFunctionCapturesThis_es5(target=es5).js │ ├── asyncArrowFunctionCapturesThis_es5(target=es5).symbols │ ├── asyncArrowFunctionCapturesThis_es5(target=es5).types │ ├── asyncArrowFunctionCapturesThis_es6.js │ ├── asyncArrowFunctionCapturesThis_es6.symbols │ ├── asyncArrowFunctionCapturesThis_es6.types │ ├── asyncArrowFunction_allowJs.errors.txt │ ├── asyncArrowFunction_allowJs.symbols │ ├── asyncArrowFunction_allowJs.types │ ├── asyncArrowInClassES5(target=es2015).js │ ├── asyncArrowInClassES5(target=es2015).symbols │ ├── asyncArrowInClassES5(target=es2015).types │ ├── asyncArrowInClassES5(target=es5).errors.txt │ ├── asyncArrowInClassES5(target=es5).js │ ├── asyncArrowInClassES5(target=es5).symbols │ ├── asyncArrowInClassES5(target=es5).types │ ├── asyncAwaitIsolatedModules_es2017.errors.txt │ ├── asyncAwaitIsolatedModules_es2017.js │ ├── asyncAwaitIsolatedModules_es2017.symbols │ ├── asyncAwaitIsolatedModules_es2017.types │ ├── asyncAwaitIsolatedModules_es5(target=es2015).errors.txt │ ├── asyncAwaitIsolatedModules_es5(target=es2015).js │ ├── asyncAwaitIsolatedModules_es5(target=es2015).symbols │ ├── asyncAwaitIsolatedModules_es5(target=es2015).types │ ├── asyncAwaitIsolatedModules_es5(target=es5).errors.txt │ ├── asyncAwaitIsolatedModules_es5(target=es5).js │ ├── asyncAwaitIsolatedModules_es5(target=es5).symbols │ ├── asyncAwaitIsolatedModules_es5(target=es5).types │ ├── asyncAwaitIsolatedModules_es6.errors.txt │ ├── asyncAwaitIsolatedModules_es6.js │ ├── asyncAwaitIsolatedModules_es6.symbols │ ├── asyncAwaitIsolatedModules_es6.types │ ├── asyncAwaitNestedClasses_es5(target=es2015).errors.txt │ ├── asyncAwaitNestedClasses_es5(target=es2015).js │ ├── asyncAwaitNestedClasses_es5(target=es2015).symbols │ ├── asyncAwaitNestedClasses_es5(target=es2015).types │ ├── asyncAwaitNestedClasses_es5(target=es5).errors.txt │ ├── asyncAwaitNestedClasses_es5(target=es5).js │ ├── asyncAwaitNestedClasses_es5(target=es5).symbols │ ├── asyncAwaitNestedClasses_es5(target=es5).types │ ├── asyncAwaitWithCapturedBlockScopeVar(target=es2015).errors.txt │ ├── asyncAwaitWithCapturedBlockScopeVar(target=es2015).js │ ├── asyncAwaitWithCapturedBlockScopeVar(target=es2015).symbols │ ├── asyncAwaitWithCapturedBlockScopeVar(target=es2015).types │ ├── asyncAwaitWithCapturedBlockScopeVar(target=es5).errors.txt │ ├── asyncAwaitWithCapturedBlockScopeVar(target=es5).js │ ├── asyncAwaitWithCapturedBlockScopeVar(target=es5).symbols │ ├── asyncAwaitWithCapturedBlockScopeVar(target=es5).types │ ├── asyncAwait_es2017.js │ ├── asyncAwait_es2017.symbols │ ├── asyncAwait_es2017.types │ ├── asyncAwait_es5(target=es2015).js │ ├── asyncAwait_es5(target=es2015).symbols │ ├── asyncAwait_es5(target=es2015).types │ ├── asyncAwait_es5(target=es5).errors.txt │ ├── asyncAwait_es5(target=es5).js │ ├── asyncAwait_es5(target=es5).symbols │ ├── asyncAwait_es5(target=es5).types │ ├── asyncAwait_es6.js │ ├── asyncAwait_es6.symbols │ ├── asyncAwait_es6.types │ ├── asyncClass_es5(target=es2015).errors.txt │ ├── asyncClass_es5(target=es2015).js │ ├── asyncClass_es5(target=es2015).symbols │ ├── asyncClass_es5(target=es2015).types │ ├── asyncClass_es5(target=es5).errors.txt │ ├── asyncClass_es5(target=es5).js │ ├── asyncClass_es5(target=es5).symbols │ ├── asyncClass_es5(target=es5).types │ ├── asyncClass_es6.errors.txt │ ├── asyncClass_es6.js │ ├── asyncClass_es6.symbols │ ├── asyncClass_es6.types │ ├── asyncConstructor_es5(target=es2015).errors.txt │ ├── asyncConstructor_es5(target=es2015).js │ ├── asyncConstructor_es5(target=es2015).symbols │ ├── asyncConstructor_es5(target=es2015).types │ ├── asyncConstructor_es5(target=es5).errors.txt │ ├── asyncConstructor_es5(target=es5).js │ ├── asyncConstructor_es5(target=es5).symbols │ ├── asyncConstructor_es5(target=es5).types │ ├── asyncConstructor_es6.errors.txt │ ├── asyncConstructor_es6.js │ ├── asyncConstructor_es6.symbols │ ├── asyncConstructor_es6.types │ ├── asyncDeclare_es5(target=es2015).errors.txt │ ├── asyncDeclare_es5(target=es2015).js │ ├── asyncDeclare_es5(target=es2015).symbols │ ├── asyncDeclare_es5(target=es2015).types │ ├── asyncDeclare_es5(target=es5).errors.txt │ ├── asyncDeclare_es5(target=es5).js │ ├── asyncDeclare_es5(target=es5).symbols │ ├── asyncDeclare_es5(target=es5).types │ ├── asyncDeclare_es6.errors.txt │ ├── asyncDeclare_es6.js │ ├── asyncDeclare_es6.symbols │ ├── asyncDeclare_es6.types │ ├── asyncEnum_es5(target=es2015).errors.txt │ ├── asyncEnum_es5(target=es2015).js │ ├── asyncEnum_es5(target=es2015).symbols │ ├── asyncEnum_es5(target=es2015).types │ ├── asyncEnum_es5(target=es5).errors.txt │ ├── asyncEnum_es5(target=es5).js │ ├── asyncEnum_es5(target=es5).symbols │ ├── asyncEnum_es5(target=es5).types │ ├── asyncEnum_es6.errors.txt │ ├── asyncEnum_es6.js │ ├── asyncEnum_es6.symbols │ ├── asyncEnum_es6.types │ ├── asyncFunctionContextuallyTypedReturns.js │ ├── asyncFunctionContextuallyTypedReturns.symbols │ ├── asyncFunctionContextuallyTypedReturns.types │ ├── asyncFunctionDeclaration10_es2017.errors.txt │ ├── asyncFunctionDeclaration10_es2017.js │ ├── asyncFunctionDeclaration10_es2017.symbols │ ├── asyncFunctionDeclaration10_es2017.types │ ├── asyncFunctionDeclaration10_es5(target=es2015).errors.txt │ ├── asyncFunctionDeclaration10_es5(target=es2015).js │ ├── asyncFunctionDeclaration10_es5(target=es2015).symbols │ ├── asyncFunctionDeclaration10_es5(target=es2015).types │ ├── asyncFunctionDeclaration10_es5(target=es5).errors.txt │ ├── asyncFunctionDeclaration10_es5(target=es5).js │ ├── asyncFunctionDeclaration10_es5(target=es5).symbols │ ├── asyncFunctionDeclaration10_es5(target=es5).types │ ├── asyncFunctionDeclaration10_es6.errors.txt │ ├── asyncFunctionDeclaration10_es6.js │ ├── asyncFunctionDeclaration10_es6.symbols │ ├── asyncFunctionDeclaration10_es6.types │ ├── asyncFunctionDeclaration11_es2017.js │ ├── asyncFunctionDeclaration11_es2017.symbols │ ├── asyncFunctionDeclaration11_es2017.types │ ├── asyncFunctionDeclaration11_es5(target=es2015).js │ ├── asyncFunctionDeclaration11_es5(target=es2015).symbols │ ├── asyncFunctionDeclaration11_es5(target=es2015).types │ ├── asyncFunctionDeclaration11_es5(target=es5).errors.txt │ ├── asyncFunctionDeclaration11_es5(target=es5).js │ ├── asyncFunctionDeclaration11_es5(target=es5).symbols │ ├── asyncFunctionDeclaration11_es5(target=es5).types │ ├── asyncFunctionDeclaration11_es6.js │ ├── asyncFunctionDeclaration11_es6.symbols │ ├── asyncFunctionDeclaration11_es6.types │ ├── asyncFunctionDeclaration12_es2017.errors.txt │ ├── asyncFunctionDeclaration12_es2017.js │ ├── asyncFunctionDeclaration12_es2017.symbols │ ├── asyncFunctionDeclaration12_es2017.types │ ├── asyncFunctionDeclaration12_es5(target=es2015).errors.txt │ ├── asyncFunctionDeclaration12_es5(target=es2015).js │ ├── asyncFunctionDeclaration12_es5(target=es2015).symbols │ ├── asyncFunctionDeclaration12_es5(target=es2015).types │ ├── asyncFunctionDeclaration12_es5(target=es5).errors.txt │ ├── asyncFunctionDeclaration12_es5(target=es5).js │ ├── asyncFunctionDeclaration12_es5(target=es5).symbols │ ├── asyncFunctionDeclaration12_es5(target=es5).types │ ├── asyncFunctionDeclaration12_es6.errors.txt │ ├── asyncFunctionDeclaration12_es6.js │ ├── asyncFunctionDeclaration12_es6.symbols │ ├── asyncFunctionDeclaration12_es6.types │ ├── asyncFunctionDeclaration13_es2017.errors.txt │ ├── asyncFunctionDeclaration13_es2017.js │ ├── asyncFunctionDeclaration13_es2017.symbols │ ├── asyncFunctionDeclaration13_es2017.types │ ├── asyncFunctionDeclaration13_es5(target=es2015).errors.txt │ ├── asyncFunctionDeclaration13_es5(target=es2015).js │ ├── asyncFunctionDeclaration13_es5(target=es2015).symbols │ ├── asyncFunctionDeclaration13_es5(target=es2015).types │ ├── asyncFunctionDeclaration13_es5(target=es5).errors.txt │ ├── asyncFunctionDeclaration13_es5(target=es5).js │ ├── asyncFunctionDeclaration13_es5(target=es5).symbols │ ├── asyncFunctionDeclaration13_es5(target=es5).types │ ├── asyncFunctionDeclaration13_es6.errors.txt │ ├── asyncFunctionDeclaration13_es6.js │ ├── asyncFunctionDeclaration13_es6.symbols │ ├── asyncFunctionDeclaration13_es6.types │ ├── asyncFunctionDeclaration14_es2017.js │ ├── asyncFunctionDeclaration14_es2017.symbols │ ├── asyncFunctionDeclaration14_es2017.types │ ├── asyncFunctionDeclaration14_es5(target=es2015).js │ ├── asyncFunctionDeclaration14_es5(target=es2015).symbols │ ├── asyncFunctionDeclaration14_es5(target=es2015).types │ ├── asyncFunctionDeclaration14_es5(target=es5).errors.txt │ ├── asyncFunctionDeclaration14_es5(target=es5).js │ ├── asyncFunctionDeclaration14_es5(target=es5).symbols │ ├── asyncFunctionDeclaration14_es5(target=es5).types │ ├── asyncFunctionDeclaration14_es6.js │ ├── asyncFunctionDeclaration14_es6.symbols │ ├── asyncFunctionDeclaration14_es6.types │ ├── asyncFunctionDeclaration15_es5(target=es2015).errors.txt │ ├── asyncFunctionDeclaration15_es5(target=es2015).js │ ├── asyncFunctionDeclaration15_es5(target=es2015).symbols │ ├── asyncFunctionDeclaration15_es5(target=es2015).types │ ├── asyncFunctionDeclaration15_es5(target=es5).errors.txt │ ├── asyncFunctionDeclaration15_es5(target=es5).js │ ├── asyncFunctionDeclaration15_es5(target=es5).symbols │ ├── asyncFunctionDeclaration15_es5(target=es5).types │ ├── asyncFunctionDeclaration15_es6.errors.txt │ ├── asyncFunctionDeclaration15_es6.js │ ├── asyncFunctionDeclaration15_es6.symbols │ ├── asyncFunctionDeclaration15_es6.types │ ├── asyncFunctionDeclaration16_es5(target=es2015).errors.txt │ ├── asyncFunctionDeclaration16_es5(target=es2015).symbols │ ├── asyncFunctionDeclaration16_es5(target=es2015).types │ ├── asyncFunctionDeclaration16_es5(target=es5).errors.txt │ ├── asyncFunctionDeclaration16_es5(target=es5).symbols │ ├── asyncFunctionDeclaration16_es5(target=es5).types │ ├── asyncFunctionDeclaration1_es2017.js │ ├── asyncFunctionDeclaration1_es2017.symbols │ ├── asyncFunctionDeclaration1_es2017.types │ ├── asyncFunctionDeclaration1_es5(target=es2015).js │ ├── asyncFunctionDeclaration1_es5(target=es2015).symbols │ ├── asyncFunctionDeclaration1_es5(target=es2015).types │ ├── asyncFunctionDeclaration1_es5(target=es5).errors.txt │ ├── asyncFunctionDeclaration1_es5(target=es5).js │ ├── asyncFunctionDeclaration1_es5(target=es5).symbols │ ├── asyncFunctionDeclaration1_es5(target=es5).types │ ├── asyncFunctionDeclaration1_es6.js │ ├── asyncFunctionDeclaration1_es6.symbols │ ├── asyncFunctionDeclaration1_es6.types │ ├── asyncFunctionDeclaration2_es2017.js │ ├── asyncFunctionDeclaration2_es2017.symbols │ ├── asyncFunctionDeclaration2_es2017.types │ ├── asyncFunctionDeclaration2_es5(target=es2015).js │ ├── asyncFunctionDeclaration2_es5(target=es2015).symbols │ ├── asyncFunctionDeclaration2_es5(target=es2015).types │ ├── asyncFunctionDeclaration2_es5(target=es5).errors.txt │ ├── asyncFunctionDeclaration2_es5(target=es5).js │ ├── asyncFunctionDeclaration2_es5(target=es5).symbols │ ├── asyncFunctionDeclaration2_es5(target=es5).types │ ├── asyncFunctionDeclaration2_es6.js │ ├── asyncFunctionDeclaration2_es6.symbols │ ├── asyncFunctionDeclaration2_es6.types │ ├── asyncFunctionDeclaration3_es2017.errors.txt │ ├── asyncFunctionDeclaration3_es2017.js │ ├── asyncFunctionDeclaration3_es2017.symbols │ ├── asyncFunctionDeclaration3_es2017.types │ ├── asyncFunctionDeclaration3_es5(target=es2015).errors.txt │ ├── asyncFunctionDeclaration3_es5(target=es2015).js │ ├── asyncFunctionDeclaration3_es5(target=es2015).symbols │ ├── asyncFunctionDeclaration3_es5(target=es2015).types │ ├── asyncFunctionDeclaration3_es5(target=es5).errors.txt │ ├── asyncFunctionDeclaration3_es5(target=es5).js │ ├── asyncFunctionDeclaration3_es5(target=es5).symbols │ ├── asyncFunctionDeclaration3_es5(target=es5).types │ ├── asyncFunctionDeclaration3_es6.errors.txt │ ├── asyncFunctionDeclaration3_es6.js │ ├── asyncFunctionDeclaration3_es6.symbols │ ├── asyncFunctionDeclaration3_es6.types │ ├── asyncFunctionDeclaration4_es2017.js │ ├── asyncFunctionDeclaration4_es2017.symbols │ ├── asyncFunctionDeclaration4_es2017.types │ ├── asyncFunctionDeclaration4_es5(target=es2015).js │ ├── asyncFunctionDeclaration4_es5(target=es2015).symbols │ ├── asyncFunctionDeclaration4_es5(target=es2015).types │ ├── asyncFunctionDeclaration4_es5(target=es5).errors.txt │ ├── asyncFunctionDeclaration4_es5(target=es5).js │ ├── asyncFunctionDeclaration4_es5(target=es5).symbols │ ├── asyncFunctionDeclaration4_es5(target=es5).types │ ├── asyncFunctionDeclaration4_es6.js │ ├── asyncFunctionDeclaration4_es6.symbols │ ├── asyncFunctionDeclaration4_es6.types │ ├── asyncFunctionDeclaration5_es2017.errors.txt │ ├── asyncFunctionDeclaration5_es2017.js │ ├── asyncFunctionDeclaration5_es2017.symbols │ ├── asyncFunctionDeclaration5_es2017.types │ ├── asyncFunctionDeclaration5_es5(target=es2015).errors.txt │ ├── asyncFunctionDeclaration5_es5(target=es2015).js │ ├── asyncFunctionDeclaration5_es5(target=es2015).symbols │ ├── asyncFunctionDeclaration5_es5(target=es2015).types │ ├── asyncFunctionDeclaration5_es5(target=es5).errors.txt │ ├── asyncFunctionDeclaration5_es5(target=es5).js │ ├── asyncFunctionDeclaration5_es5(target=es5).symbols │ ├── asyncFunctionDeclaration5_es5(target=es5).types │ ├── asyncFunctionDeclaration5_es6.errors.txt │ ├── asyncFunctionDeclaration5_es6.js │ ├── asyncFunctionDeclaration5_es6.symbols │ ├── asyncFunctionDeclaration5_es6.types │ ├── asyncFunctionDeclaration6_es2017.errors.txt │ ├── asyncFunctionDeclaration6_es2017.js │ ├── asyncFunctionDeclaration6_es2017.symbols │ ├── asyncFunctionDeclaration6_es2017.types │ ├── asyncFunctionDeclaration6_es5(target=es2015).errors.txt │ ├── asyncFunctionDeclaration6_es5(target=es2015).js │ ├── asyncFunctionDeclaration6_es5(target=es2015).symbols │ ├── asyncFunctionDeclaration6_es5(target=es2015).types │ ├── asyncFunctionDeclaration6_es5(target=es5).errors.txt │ ├── asyncFunctionDeclaration6_es5(target=es5).js │ ├── asyncFunctionDeclaration6_es5(target=es5).symbols │ ├── asyncFunctionDeclaration6_es5(target=es5).types │ ├── asyncFunctionDeclaration6_es6.errors.txt │ ├── asyncFunctionDeclaration6_es6.js │ ├── asyncFunctionDeclaration6_es6.symbols │ ├── asyncFunctionDeclaration6_es6.types │ ├── asyncFunctionDeclaration7_es2017.errors.txt │ ├── asyncFunctionDeclaration7_es2017.js │ ├── asyncFunctionDeclaration7_es2017.symbols │ ├── asyncFunctionDeclaration7_es2017.types │ ├── asyncFunctionDeclaration7_es5(target=es2015).errors.txt │ ├── asyncFunctionDeclaration7_es5(target=es2015).js │ ├── asyncFunctionDeclaration7_es5(target=es2015).symbols │ ├── asyncFunctionDeclaration7_es5(target=es2015).types │ ├── asyncFunctionDeclaration7_es5(target=es5).errors.txt │ ├── asyncFunctionDeclaration7_es5(target=es5).js │ ├── asyncFunctionDeclaration7_es5(target=es5).symbols │ ├── asyncFunctionDeclaration7_es5(target=es5).types │ ├── asyncFunctionDeclaration7_es6.errors.txt │ ├── asyncFunctionDeclaration7_es6.js │ ├── asyncFunctionDeclaration7_es6.symbols │ ├── asyncFunctionDeclaration7_es6.types │ ├── asyncFunctionDeclaration8_es2017.errors.txt │ ├── asyncFunctionDeclaration8_es2017.js │ ├── asyncFunctionDeclaration8_es2017.symbols │ ├── asyncFunctionDeclaration8_es2017.types │ ├── asyncFunctionDeclaration8_es5(target=es2015).errors.txt │ ├── asyncFunctionDeclaration8_es5(target=es2015).js │ ├── asyncFunctionDeclaration8_es5(target=es2015).symbols │ ├── asyncFunctionDeclaration8_es5(target=es2015).types │ ├── asyncFunctionDeclaration8_es5(target=es5).errors.txt │ ├── asyncFunctionDeclaration8_es5(target=es5).js │ ├── asyncFunctionDeclaration8_es5(target=es5).symbols │ ├── asyncFunctionDeclaration8_es5(target=es5).types │ ├── asyncFunctionDeclaration8_es6.errors.txt │ ├── asyncFunctionDeclaration8_es6.js │ ├── asyncFunctionDeclaration8_es6.symbols │ ├── asyncFunctionDeclaration8_es6.types │ ├── asyncFunctionDeclaration9_es2017.errors.txt │ ├── asyncFunctionDeclaration9_es2017.js │ ├── asyncFunctionDeclaration9_es2017.symbols │ ├── asyncFunctionDeclaration9_es2017.types │ ├── asyncFunctionDeclaration9_es5(target=es2015).errors.txt │ ├── asyncFunctionDeclaration9_es5(target=es2015).js │ ├── asyncFunctionDeclaration9_es5(target=es2015).symbols │ ├── asyncFunctionDeclaration9_es5(target=es2015).types │ ├── asyncFunctionDeclaration9_es5(target=es5).errors.txt │ ├── asyncFunctionDeclaration9_es5(target=es5).js │ ├── asyncFunctionDeclaration9_es5(target=es5).symbols │ ├── asyncFunctionDeclaration9_es5(target=es5).types │ ├── asyncFunctionDeclaration9_es6.errors.txt │ ├── asyncFunctionDeclaration9_es6.js │ ├── asyncFunctionDeclaration9_es6.symbols │ ├── asyncFunctionDeclaration9_es6.types │ ├── asyncFunctionDeclarationCapturesArguments_es5(target=es2015).errors.txt │ ├── asyncFunctionDeclarationCapturesArguments_es5(target=es2015).js │ ├── asyncFunctionDeclarationCapturesArguments_es5(target=es2015).symbols │ ├── asyncFunctionDeclarationCapturesArguments_es5(target=es2015).types │ ├── asyncFunctionDeclarationCapturesArguments_es5(target=es5).errors.txt │ ├── asyncFunctionDeclarationCapturesArguments_es5(target=es5).js │ ├── asyncFunctionDeclarationCapturesArguments_es5(target=es5).symbols │ ├── asyncFunctionDeclarationCapturesArguments_es5(target=es5).types │ ├── asyncFunctionDeclarationParameterEvaluation(target=es2015).errors.txt │ ├── asyncFunctionDeclarationParameterEvaluation(target=es2015).js │ ├── asyncFunctionDeclarationParameterEvaluation(target=es2017).errors.txt │ ├── asyncFunctionDeclarationParameterEvaluation(target=es2017).js │ ├── asyncFunctionNoReturnType.js │ ├── asyncFunctionNoReturnType.symbols │ ├── asyncFunctionNoReturnType.types │ ├── asyncFunctionReturnExpressionErrorSpans.errors.txt │ ├── asyncFunctionReturnExpressionErrorSpans.js │ ├── asyncFunctionReturnExpressionErrorSpans.symbols │ ├── asyncFunctionReturnExpressionErrorSpans.types │ ├── asyncFunctionReturnType.2.js │ ├── asyncFunctionReturnType.2.symbols │ ├── asyncFunctionReturnType.2.types │ ├── asyncFunctionReturnType.js │ ├── asyncFunctionReturnType.symbols │ ├── asyncFunctionReturnType.types │ ├── asyncFunctionTempVariableScoping(target=es2015).js │ ├── asyncFunctionTempVariableScoping(target=es2015).symbols │ ├── asyncFunctionTempVariableScoping(target=es2015).types │ ├── asyncFunctionTempVariableScoping(target=es5).errors.txt │ ├── asyncFunctionTempVariableScoping(target=es5).js │ ├── asyncFunctionTempVariableScoping(target=es5).symbols │ ├── asyncFunctionTempVariableScoping(target=es5).types │ ├── asyncFunctionWithForStatementNoInitializer.js │ ├── asyncFunctionWithForStatementNoInitializer.symbols │ ├── asyncFunctionWithForStatementNoInitializer.types │ ├── asyncFunctionsAcrossFiles.js │ ├── asyncFunctionsAcrossFiles.symbols │ ├── asyncFunctionsAcrossFiles.types │ ├── asyncFunctionsAndStrictNullChecks.js │ ├── asyncFunctionsAndStrictNullChecks.symbols │ ├── asyncFunctionsAndStrictNullChecks.types │ ├── asyncGeneratorGenericNonWrappedReturn.symbols │ ├── asyncGeneratorGenericNonWrappedReturn.types │ ├── asyncGeneratorParameterEvaluation(target=es2015).errors.txt │ ├── asyncGeneratorParameterEvaluation(target=es2015).js │ ├── asyncGeneratorParameterEvaluation(target=es2017).errors.txt │ ├── asyncGeneratorParameterEvaluation(target=es2017).js │ ├── asyncGeneratorParameterEvaluation(target=es2018).errors.txt │ ├── asyncGeneratorParameterEvaluation(target=es2018).js │ ├── asyncGeneratorPromiseNextType.symbols │ ├── asyncGeneratorPromiseNextType.types │ ├── asyncGetter_es5(target=es2015).errors.txt │ ├── asyncGetter_es5(target=es2015).js │ ├── asyncGetter_es5(target=es2015).symbols │ ├── asyncGetter_es5(target=es2015).types │ ├── asyncGetter_es5(target=es5).errors.txt │ ├── asyncGetter_es5(target=es5).js │ ├── asyncGetter_es5(target=es5).symbols │ ├── asyncGetter_es5(target=es5).types │ ├── asyncGetter_es6.errors.txt │ ├── asyncGetter_es6.js │ ├── asyncGetter_es6.symbols │ ├── asyncGetter_es6.types │ ├── asyncIIFE.js │ ├── asyncIIFE.symbols │ ├── asyncIIFE.types │ ├── asyncImportNestedYield.js │ ├── asyncImportNestedYield.symbols │ ├── asyncImportNestedYield.types │ ├── asyncImportedPromise_es5(target=es2015).errors.txt │ ├── asyncImportedPromise_es5(target=es2015).js │ ├── asyncImportedPromise_es5(target=es2015).symbols │ ├── asyncImportedPromise_es5(target=es2015).types │ ├── asyncImportedPromise_es5(target=es5).errors.txt │ ├── asyncImportedPromise_es5(target=es5).js │ ├── asyncImportedPromise_es5(target=es5).symbols │ ├── asyncImportedPromise_es5(target=es5).types │ ├── asyncImportedPromise_es6.errors.txt │ ├── asyncImportedPromise_es6.js │ ├── asyncImportedPromise_es6.symbols │ ├── asyncImportedPromise_es6.types │ ├── asyncInterface_es5(target=es2015).errors.txt │ ├── asyncInterface_es5(target=es2015).js │ ├── asyncInterface_es5(target=es2015).symbols │ ├── asyncInterface_es5(target=es2015).types │ ├── asyncInterface_es5(target=es5).errors.txt │ ├── asyncInterface_es5(target=es5).js │ ├── asyncInterface_es5(target=es5).symbols │ ├── asyncInterface_es5(target=es5).types │ ├── asyncInterface_es6.errors.txt │ ├── asyncInterface_es6.js │ ├── asyncInterface_es6.symbols │ ├── asyncInterface_es6.types │ ├── asyncIteratorExtraParameters.errors.txt │ ├── asyncMethodWithSuperConflict_es6.js │ ├── asyncMethodWithSuperConflict_es6.symbols │ ├── asyncMethodWithSuperConflict_es6.types │ ├── asyncMethodWithSuper_es2017.js │ ├── asyncMethodWithSuper_es2017.symbols │ ├── asyncMethodWithSuper_es2017.types │ ├── asyncMethodWithSuper_es5(target=es2015).js │ ├── asyncMethodWithSuper_es5(target=es2015).symbols │ ├── asyncMethodWithSuper_es5(target=es2015).types │ ├── asyncMethodWithSuper_es5(target=es5).errors.txt │ ├── asyncMethodWithSuper_es5(target=es5).js │ ├── asyncMethodWithSuper_es5(target=es5).symbols │ ├── asyncMethodWithSuper_es5(target=es5).types │ ├── asyncMethodWithSuper_es6.js │ ├── asyncMethodWithSuper_es6.symbols │ ├── asyncMethodWithSuper_es6.types │ ├── asyncModule_es5(target=es2015).errors.txt │ ├── asyncModule_es5(target=es2015).js │ ├── asyncModule_es5(target=es2015).symbols │ ├── asyncModule_es5(target=es2015).types │ ├── asyncModule_es5(target=es5).errors.txt │ ├── asyncModule_es5(target=es5).js │ ├── asyncModule_es5(target=es5).symbols │ ├── asyncModule_es5(target=es5).types │ ├── asyncModule_es6.errors.txt │ ├── asyncModule_es6.js │ ├── asyncModule_es6.symbols │ ├── asyncModule_es6.types │ ├── asyncMultiFile_es5(target=es2015).js │ ├── asyncMultiFile_es5(target=es2015).symbols │ ├── asyncMultiFile_es5(target=es2015).types │ ├── asyncMultiFile_es5(target=es5).errors.txt │ ├── asyncMultiFile_es5(target=es5).js │ ├── asyncMultiFile_es5(target=es5).symbols │ ├── asyncMultiFile_es5(target=es5).types │ ├── asyncMultiFile_es6.js │ ├── asyncMultiFile_es6.symbols │ ├── asyncMultiFile_es6.types │ ├── asyncOrYieldAsBindingIdentifier1.errors.txt │ ├── asyncOrYieldAsBindingIdentifier1.js │ ├── asyncOrYieldAsBindingIdentifier1.symbols │ ├── asyncOrYieldAsBindingIdentifier1.types │ ├── asyncQualifiedReturnType_es5(target=es2015).errors.txt │ ├── asyncQualifiedReturnType_es5(target=es2015).js │ ├── asyncQualifiedReturnType_es5(target=es2015).symbols │ ├── asyncQualifiedReturnType_es5(target=es2015).types │ ├── asyncQualifiedReturnType_es5(target=es5).errors.txt │ ├── asyncQualifiedReturnType_es5(target=es5).js │ ├── asyncQualifiedReturnType_es5(target=es5).symbols │ ├── asyncQualifiedReturnType_es5(target=es5).types │ ├── asyncQualifiedReturnType_es6.errors.txt │ ├── asyncQualifiedReturnType_es6.js │ ├── asyncQualifiedReturnType_es6.symbols │ ├── asyncQualifiedReturnType_es6.types │ ├── asyncSetter_es5(target=es2015).errors.txt │ ├── asyncSetter_es5(target=es2015).js │ ├── asyncSetter_es5(target=es2015).symbols │ ├── asyncSetter_es5(target=es2015).types │ ├── asyncSetter_es5(target=es5).errors.txt │ ├── asyncSetter_es5(target=es5).js │ ├── asyncSetter_es5(target=es5).symbols │ ├── asyncSetter_es5(target=es5).types │ ├── asyncSetter_es6.errors.txt │ ├── asyncSetter_es6.js │ ├── asyncSetter_es6.symbols │ ├── asyncSetter_es6.types │ ├── asyncUnParenthesizedArrowFunction_es2017.js │ ├── asyncUnParenthesizedArrowFunction_es2017.symbols │ ├── asyncUnParenthesizedArrowFunction_es2017.types │ ├── asyncUnParenthesizedArrowFunction_es5(target=es2015).js │ ├── asyncUnParenthesizedArrowFunction_es5(target=es2015).symbols │ ├── asyncUnParenthesizedArrowFunction_es5(target=es2015).types │ ├── asyncUnParenthesizedArrowFunction_es5(target=es5).errors.txt │ ├── asyncUnParenthesizedArrowFunction_es5(target=es5).js │ ├── asyncUnParenthesizedArrowFunction_es5(target=es5).symbols │ ├── asyncUnParenthesizedArrowFunction_es5(target=es5).types │ ├── asyncUnParenthesizedArrowFunction_es6.js │ ├── asyncUnParenthesizedArrowFunction_es6.symbols │ ├── asyncUnParenthesizedArrowFunction_es6.types │ ├── asyncUseStrict_es2017.js │ ├── asyncUseStrict_es2017.symbols │ ├── asyncUseStrict_es2017.types │ ├── asyncUseStrict_es5(target=es2015).js │ ├── asyncUseStrict_es5(target=es2015).symbols │ ├── asyncUseStrict_es5(target=es2015).types │ ├── asyncUseStrict_es5(target=es5).errors.txt │ ├── asyncUseStrict_es5(target=es5).js │ ├── asyncUseStrict_es5(target=es5).symbols │ ├── asyncUseStrict_es5(target=es5).types │ ├── asyncUseStrict_es6.js │ ├── asyncUseStrict_es6.symbols │ ├── asyncUseStrict_es6.types │ ├── asyncWithVarShadowing_es6.js │ ├── asyncWithVarShadowing_es6.symbols │ ├── asyncWithVarShadowing_es6.types │ ├── asyncYieldStarContextualType.symbols │ ├── asyncYieldStarContextualType.types │ ├── augmentArray.js │ ├── augmentArray.symbols │ ├── augmentArray.types │ ├── augmentExportEquals1.errors.txt │ ├── augmentExportEquals1.js │ ├── augmentExportEquals1.symbols │ ├── augmentExportEquals1.types │ ├── augmentExportEquals1_1.errors.txt │ ├── augmentExportEquals1_1.js │ ├── augmentExportEquals1_1.symbols │ ├── augmentExportEquals1_1.types │ ├── augmentExportEquals2.errors.txt │ ├── augmentExportEquals2.js │ ├── augmentExportEquals2.symbols │ ├── augmentExportEquals2.types │ ├── augmentExportEquals2_1.errors.txt │ ├── augmentExportEquals2_1.js │ ├── augmentExportEquals2_1.symbols │ ├── augmentExportEquals2_1.types │ ├── augmentExportEquals3.js │ ├── augmentExportEquals3.symbols │ ├── augmentExportEquals3.types │ ├── augmentExportEquals3_1.errors.txt │ ├── augmentExportEquals3_1.js │ ├── augmentExportEquals3_1.symbols │ ├── augmentExportEquals3_1.types │ ├── augmentExportEquals4.js │ ├── augmentExportEquals4.symbols │ ├── augmentExportEquals4.types │ ├── augmentExportEquals4_1.errors.txt │ ├── augmentExportEquals4_1.js │ ├── augmentExportEquals4_1.symbols │ ├── augmentExportEquals4_1.types │ ├── augmentExportEquals5.errors.txt │ ├── augmentExportEquals5.js │ ├── augmentExportEquals5.symbols │ ├── augmentExportEquals5.types │ ├── augmentExportEquals6.js │ ├── augmentExportEquals6.symbols │ ├── augmentExportEquals6.types │ ├── augmentExportEquals6_1.errors.txt │ ├── augmentExportEquals6_1.js │ ├── augmentExportEquals6_1.symbols │ ├── augmentExportEquals6_1.types │ ├── augmentExportEquals7.errors.txt │ ├── augmentExportEquals7.symbols │ ├── augmentExportEquals7.types │ ├── augmentedClassWithPrototypePropertyOnModule.errors.txt │ ├── augmentedClassWithPrototypePropertyOnModule.js │ ├── augmentedClassWithPrototypePropertyOnModule.symbols │ ├── augmentedClassWithPrototypePropertyOnModule.types │ ├── augmentedTypeAssignmentCompatIndexSignature.errors.txt │ ├── augmentedTypeAssignmentCompatIndexSignature.js │ ├── augmentedTypeAssignmentCompatIndexSignature.symbols │ ├── augmentedTypeAssignmentCompatIndexSignature.types │ ├── augmentedTypeBracketAccessIndexSignature.js │ ├── augmentedTypeBracketAccessIndexSignature.symbols │ ├── augmentedTypeBracketAccessIndexSignature.types │ ├── augmentedTypeBracketNamedPropertyAccess.js │ ├── augmentedTypeBracketNamedPropertyAccess.symbols │ ├── augmentedTypeBracketNamedPropertyAccess.types │ ├── augmentedTypesClass.errors.txt │ ├── augmentedTypesClass.js │ ├── augmentedTypesClass.symbols │ ├── augmentedTypesClass.types │ ├── augmentedTypesClass2.errors.txt │ ├── augmentedTypesClass2.js │ ├── augmentedTypesClass2.symbols │ ├── augmentedTypesClass2.types │ ├── augmentedTypesClass2a.errors.txt │ ├── augmentedTypesClass2a.js │ ├── augmentedTypesClass2a.symbols │ ├── augmentedTypesClass2a.types │ ├── augmentedTypesClass3.js │ ├── augmentedTypesClass3.symbols │ ├── augmentedTypesClass3.types │ ├── augmentedTypesClass4.errors.txt │ ├── augmentedTypesClass4.js │ ├── augmentedTypesClass4.symbols │ ├── augmentedTypesClass4.types │ ├── augmentedTypesEnum.errors.txt │ ├── augmentedTypesEnum.js │ ├── augmentedTypesEnum.symbols │ ├── augmentedTypesEnum.types │ ├── augmentedTypesEnum2.errors.txt │ ├── augmentedTypesEnum2.js │ ├── augmentedTypesEnum2.symbols │ ├── augmentedTypesEnum2.types │ ├── augmentedTypesEnum3.errors.txt │ ├── augmentedTypesEnum3.js │ ├── augmentedTypesEnum3.symbols │ ├── augmentedTypesEnum3.types │ ├── augmentedTypesExternalModule1.errors.txt │ ├── augmentedTypesExternalModule1.js │ ├── augmentedTypesExternalModule1.symbols │ ├── augmentedTypesExternalModule1.types │ ├── augmentedTypesFunction.errors.txt │ ├── augmentedTypesFunction.js │ ├── augmentedTypesFunction.symbols │ ├── augmentedTypesFunction.types │ ├── augmentedTypesInterface.errors.txt │ ├── augmentedTypesInterface.js │ ├── augmentedTypesInterface.symbols │ ├── augmentedTypesInterface.types │ ├── augmentedTypesModules.errors.txt │ ├── augmentedTypesModules.js │ ├── augmentedTypesModules.symbols │ ├── augmentedTypesModules.types │ ├── augmentedTypesModules2.errors.txt │ ├── augmentedTypesModules2.js │ ├── augmentedTypesModules2.symbols │ ├── augmentedTypesModules2.types │ ├── augmentedTypesModules3.errors.txt │ ├── augmentedTypesModules3.js │ ├── augmentedTypesModules3.symbols │ ├── augmentedTypesModules3.types │ ├── augmentedTypesModules3b.js │ ├── augmentedTypesModules3b.symbols │ ├── augmentedTypesModules3b.types │ ├── augmentedTypesModules4.js │ ├── augmentedTypesModules4.symbols │ ├── augmentedTypesModules4.types │ ├── augmentedTypesVar.errors.txt │ ├── augmentedTypesVar.js │ ├── augmentedTypesVar.symbols │ ├── augmentedTypesVar.types │ ├── autoAccessor1(target=es2015).js │ ├── autoAccessor1(target=es2015).symbols │ ├── autoAccessor1(target=es2015).types │ ├── autoAccessor1(target=es2022).js │ ├── autoAccessor1(target=es2022).symbols │ ├── autoAccessor1(target=es2022).types │ ├── autoAccessor1(target=es5).errors.txt │ ├── autoAccessor1(target=es5).symbols │ ├── autoAccessor1(target=es5).types │ ├── autoAccessor1(target=esnext).js │ ├── autoAccessor1(target=esnext).symbols │ ├── autoAccessor1(target=esnext).types │ ├── autoAccessor10.js │ ├── autoAccessor10.symbols │ ├── autoAccessor10.types │ ├── autoAccessor11.errors.txt │ ├── autoAccessor11.js │ ├── autoAccessor11.symbols │ ├── autoAccessor11.types │ ├── autoAccessor2(target=es2015).js │ ├── autoAccessor2(target=es2015).symbols │ ├── autoAccessor2(target=es2015).types │ ├── autoAccessor2(target=es2022).js │ ├── autoAccessor2(target=es2022).symbols │ ├── autoAccessor2(target=es2022).types │ ├── autoAccessor2(target=esnext).js │ ├── autoAccessor2(target=esnext).symbols │ ├── autoAccessor2(target=esnext).types │ ├── autoAccessor3(target=es2015).js │ ├── autoAccessor3(target=es2015).symbols │ ├── autoAccessor3(target=es2015).types │ ├── autoAccessor3(target=es2022).js │ ├── autoAccessor3(target=es2022).symbols │ ├── autoAccessor3(target=es2022).types │ ├── autoAccessor3(target=es5).errors.txt │ ├── autoAccessor3(target=es5).symbols │ ├── autoAccessor3(target=es5).types │ ├── autoAccessor3(target=esnext).js │ ├── autoAccessor3(target=esnext).symbols │ ├── autoAccessor3(target=esnext).types │ ├── autoAccessor4(target=es2015).js │ ├── autoAccessor4(target=es2015).symbols │ ├── autoAccessor4(target=es2015).types │ ├── autoAccessor4(target=es2022).js │ ├── autoAccessor4(target=es2022).symbols │ ├── autoAccessor4(target=es2022).types │ ├── autoAccessor4(target=es5).errors.txt │ ├── autoAccessor4(target=es5).symbols │ ├── autoAccessor4(target=es5).types │ ├── autoAccessor4(target=esnext).js │ ├── autoAccessor4(target=esnext).symbols │ ├── autoAccessor4(target=esnext).types │ ├── autoAccessor5(target=es2015).errors.txt │ ├── autoAccessor5(target=es2015).js │ ├── autoAccessor5(target=es2015).symbols │ ├── autoAccessor5(target=es2015).types │ ├── autoAccessor5(target=es2022).errors.txt │ ├── autoAccessor5(target=es2022).js │ ├── autoAccessor5(target=es2022).symbols │ ├── autoAccessor5(target=es2022).types │ ├── autoAccessor5(target=es5).errors.txt │ ├── autoAccessor5(target=es5).js │ ├── autoAccessor5(target=es5).symbols │ ├── autoAccessor5(target=es5).types │ ├── autoAccessor5(target=esnext).errors.txt │ ├── autoAccessor5(target=esnext).js │ ├── autoAccessor5(target=esnext).symbols │ ├── autoAccessor5(target=esnext).types │ ├── autoAccessor6(target=es2015,usedefineforclassfields=false).errors.txt │ ├── autoAccessor6(target=es2015,usedefineforclassfields=false).js │ ├── autoAccessor6(target=es2015,usedefineforclassfields=false).symbols │ ├── autoAccessor6(target=es2015,usedefineforclassfields=false).types │ ├── autoAccessor6(target=es2015,usedefineforclassfields=true).errors.txt │ ├── autoAccessor6(target=es2015,usedefineforclassfields=true).js │ ├── autoAccessor6(target=es2015,usedefineforclassfields=true).symbols │ ├── autoAccessor6(target=es2015,usedefineforclassfields=true).types │ ├── autoAccessor6(target=es2022,usedefineforclassfields=false).errors.txt │ ├── autoAccessor6(target=es2022,usedefineforclassfields=false).js │ ├── autoAccessor6(target=es2022,usedefineforclassfields=false).symbols │ ├── autoAccessor6(target=es2022,usedefineforclassfields=false).types │ ├── autoAccessor6(target=es2022,usedefineforclassfields=true).errors.txt │ ├── autoAccessor6(target=es2022,usedefineforclassfields=true).js │ ├── autoAccessor6(target=es2022,usedefineforclassfields=true).symbols │ ├── autoAccessor6(target=es2022,usedefineforclassfields=true).types │ ├── autoAccessor6(target=esnext,usedefineforclassfields=false).errors.txt │ ├── autoAccessor6(target=esnext,usedefineforclassfields=false).js │ ├── autoAccessor6(target=esnext,usedefineforclassfields=false).symbols │ ├── autoAccessor6(target=esnext,usedefineforclassfields=false).types │ ├── autoAccessor6(target=esnext,usedefineforclassfields=true).errors.txt │ ├── autoAccessor6(target=esnext,usedefineforclassfields=true).js │ ├── autoAccessor6(target=esnext,usedefineforclassfields=true).symbols │ ├── autoAccessor6(target=esnext,usedefineforclassfields=true).types │ ├── autoAccessor7(target=es2015,usedefineforclassfields=false).js │ ├── autoAccessor7(target=es2015,usedefineforclassfields=false).symbols │ ├── autoAccessor7(target=es2015,usedefineforclassfields=false).types │ ├── autoAccessor7(target=es2015,usedefineforclassfields=true).js │ ├── autoAccessor7(target=es2015,usedefineforclassfields=true).symbols │ ├── autoAccessor7(target=es2015,usedefineforclassfields=true).types │ ├── autoAccessor7(target=es2022,usedefineforclassfields=false).js │ ├── autoAccessor7(target=es2022,usedefineforclassfields=false).symbols │ ├── autoAccessor7(target=es2022,usedefineforclassfields=false).types │ ├── autoAccessor7(target=es2022,usedefineforclassfields=true).js │ ├── autoAccessor7(target=es2022,usedefineforclassfields=true).symbols │ ├── autoAccessor7(target=es2022,usedefineforclassfields=true).types │ ├── autoAccessor7(target=esnext,usedefineforclassfields=false).js │ ├── autoAccessor7(target=esnext,usedefineforclassfields=false).symbols │ ├── autoAccessor7(target=esnext,usedefineforclassfields=false).types │ ├── autoAccessor7(target=esnext,usedefineforclassfields=true).js │ ├── autoAccessor7(target=esnext,usedefineforclassfields=true).symbols │ ├── autoAccessor7(target=esnext,usedefineforclassfields=true).types │ ├── autoAccessor8.js │ ├── autoAccessor8.symbols │ ├── autoAccessor8.types │ ├── autoAccessor9.js │ ├── autoAccessor9.symbols │ ├── autoAccessor9.types │ ├── autoAccessorAllowedModifiers.js │ ├── autoAccessorDisallowedModifiers(target=es2017).errors.txt │ ├── autoAccessorDisallowedModifiers(target=es2017).js │ ├── autoAccessorDisallowedModifiers(target=esnext).errors.txt │ ├── autoAccessorDisallowedModifiers(target=esnext).js │ ├── autoAccessorExperimentalDecorators(target=es2015).errors.txt │ ├── autoAccessorExperimentalDecorators(target=es2015).js │ ├── autoAccessorExperimentalDecorators(target=es2015).symbols │ ├── autoAccessorExperimentalDecorators(target=es2015).types │ ├── autoAccessorExperimentalDecorators(target=es2022).errors.txt │ ├── autoAccessorExperimentalDecorators(target=es2022).js │ ├── autoAccessorExperimentalDecorators(target=es2022).symbols │ ├── autoAccessorExperimentalDecorators(target=es2022).types │ ├── autoAccessorExperimentalDecorators(target=esnext).errors.txt │ ├── autoAccessorExperimentalDecorators(target=esnext).js │ ├── autoAccessorExperimentalDecorators(target=esnext).symbols │ ├── autoAccessorExperimentalDecorators(target=esnext).types │ ├── autoAccessorNoUseDefineForClassFields.js │ ├── autoAccessorNoUseDefineForClassFields.symbols │ ├── autoAccessorNoUseDefineForClassFields.types │ ├── autoAsiForStaticsInClassDeclaration.js │ ├── autoAsiForStaticsInClassDeclaration.symbols │ ├── autoAsiForStaticsInClassDeclaration.types │ ├── autoImportAllowTsExtensions1.baseline.md │ ├── autoImportAllowTsExtensions2.baseline.md │ ├── autoImportAllowTsExtensions3.baseline.md │ ├── autoImportAllowTsExtensions4.baseline.md │ ├── autoImportProvider_referencesCrash.baseline.jsonc │ ├── autoImportVerbatimCJS1.baseline.md │ ├── autoLift2.errors.txt │ ├── autoLift2.js │ ├── autoLift2.symbols │ ├── autoLift2.types │ ├── autoTypeAssignedUsingDestructuringFromNeverNoCrash.errors.txt │ ├── autoTypeAssignedUsingDestructuringFromNeverNoCrash.symbols │ ├── autoTypeAssignedUsingDestructuringFromNeverNoCrash.types │ ├── autolift3.errors.txt │ ├── autolift3.js │ ├── autolift3.symbols │ ├── autolift3.types │ ├── autolift4.errors.txt │ ├── autolift4.js │ ├── autolift4.symbols │ ├── autolift4.types │ ├── autonumberingInEnums.js │ ├── autonumberingInEnums.symbols │ ├── autonumberingInEnums.types │ ├── avoid.js │ ├── avoid.symbols │ ├── avoid.types │ ├── avoidCycleWithVoidExpressionReturnedFromArrow.symbols │ ├── avoidCycleWithVoidExpressionReturnedFromArrow.types │ ├── avoidListingPropertiesForTypesWithOnlyCallOrConstructSignatures.errors.txt │ ├── avoidListingPropertiesForTypesWithOnlyCallOrConstructSignatures.js │ ├── avoidListingPropertiesForTypesWithOnlyCallOrConstructSignatures.symbols │ ├── avoidListingPropertiesForTypesWithOnlyCallOrConstructSignatures.types │ ├── avoidNarrowingUsingConstVariableFromBindingElementWithLiteralInitializer.symbols │ ├── avoidNarrowingUsingConstVariableFromBindingElementWithLiteralInitializer.types │ ├── awaitAndYield.errors.txt │ ├── awaitAndYield.js │ ├── awaitAndYieldInProperty.errors.txt │ ├── awaitAndYieldInProperty.js │ ├── awaitBinaryExpression1_es2017.js │ ├── awaitBinaryExpression1_es2017.symbols │ ├── awaitBinaryExpression1_es2017.types │ ├── awaitBinaryExpression1_es5(target=es2015).js │ ├── awaitBinaryExpression1_es5(target=es2015).symbols │ ├── awaitBinaryExpression1_es5(target=es2015).types │ ├── awaitBinaryExpression1_es5(target=es5).errors.txt │ ├── awaitBinaryExpression1_es5(target=es5).js │ ├── awaitBinaryExpression1_es5(target=es5).symbols │ ├── awaitBinaryExpression1_es5(target=es5).types │ ├── awaitBinaryExpression1_es6.js │ ├── awaitBinaryExpression1_es6.symbols │ ├── awaitBinaryExpression1_es6.types │ ├── awaitBinaryExpression2_es2017.js │ ├── awaitBinaryExpression2_es2017.symbols │ ├── awaitBinaryExpression2_es2017.types │ ├── awaitBinaryExpression2_es5(target=es2015).js │ ├── awaitBinaryExpression2_es5(target=es2015).symbols │ ├── awaitBinaryExpression2_es5(target=es2015).types │ ├── awaitBinaryExpression2_es5(target=es5).errors.txt │ ├── awaitBinaryExpression2_es5(target=es5).js │ ├── awaitBinaryExpression2_es5(target=es5).symbols │ ├── awaitBinaryExpression2_es5(target=es5).types │ ├── awaitBinaryExpression2_es6.js │ ├── awaitBinaryExpression2_es6.symbols │ ├── awaitBinaryExpression2_es6.types │ ├── awaitBinaryExpression3_es2017.js │ ├── awaitBinaryExpression3_es2017.symbols │ ├── awaitBinaryExpression3_es2017.types │ ├── awaitBinaryExpression3_es5(target=es2015).js │ ├── awaitBinaryExpression3_es5(target=es2015).symbols │ ├── awaitBinaryExpression3_es5(target=es2015).types │ ├── awaitBinaryExpression3_es5(target=es5).errors.txt │ ├── awaitBinaryExpression3_es5(target=es5).js │ ├── awaitBinaryExpression3_es5(target=es5).symbols │ ├── awaitBinaryExpression3_es5(target=es5).types │ ├── awaitBinaryExpression3_es6.js │ ├── awaitBinaryExpression3_es6.symbols │ ├── awaitBinaryExpression3_es6.types │ ├── awaitBinaryExpression4_es2017.js │ ├── awaitBinaryExpression4_es2017.symbols │ ├── awaitBinaryExpression4_es2017.types │ ├── awaitBinaryExpression4_es5(target=es2015).js │ ├── awaitBinaryExpression4_es5(target=es2015).symbols │ ├── awaitBinaryExpression4_es5(target=es2015).types │ ├── awaitBinaryExpression4_es5(target=es5).errors.txt │ ├── awaitBinaryExpression4_es5(target=es5).js │ ├── awaitBinaryExpression4_es5(target=es5).symbols │ ├── awaitBinaryExpression4_es5(target=es5).types │ ├── awaitBinaryExpression4_es6.js │ ├── awaitBinaryExpression4_es6.symbols │ ├── awaitBinaryExpression4_es6.types │ ├── awaitBinaryExpression5_es2017.errors.txt │ ├── awaitBinaryExpression5_es2017.js │ ├── awaitBinaryExpression5_es2017.symbols │ ├── awaitBinaryExpression5_es2017.types │ ├── awaitBinaryExpression5_es5(target=es2015).errors.txt │ ├── awaitBinaryExpression5_es5(target=es2015).js │ ├── awaitBinaryExpression5_es5(target=es2015).symbols │ ├── awaitBinaryExpression5_es5(target=es2015).types │ ├── awaitBinaryExpression5_es5(target=es5).errors.txt │ ├── awaitBinaryExpression5_es5(target=es5).js │ ├── awaitBinaryExpression5_es5(target=es5).symbols │ ├── awaitBinaryExpression5_es5(target=es5).types │ ├── awaitBinaryExpression5_es6.errors.txt │ ├── awaitBinaryExpression5_es6.js │ ├── awaitBinaryExpression5_es6.symbols │ ├── awaitBinaryExpression5_es6.types │ ├── awaitCallExpression1_es2017.js │ ├── awaitCallExpression1_es2017.symbols │ ├── awaitCallExpression1_es2017.types │ ├── awaitCallExpression1_es5(target=es2015).js │ ├── awaitCallExpression1_es5(target=es2015).symbols │ ├── awaitCallExpression1_es5(target=es2015).types │ ├── awaitCallExpression1_es5(target=es5).errors.txt │ ├── awaitCallExpression1_es5(target=es5).js │ ├── awaitCallExpression1_es5(target=es5).symbols │ ├── awaitCallExpression1_es5(target=es5).types │ ├── awaitCallExpression1_es6.js │ ├── awaitCallExpression1_es6.symbols │ ├── awaitCallExpression1_es6.types │ ├── awaitCallExpression2_es2017.js │ ├── awaitCallExpression2_es2017.symbols │ ├── awaitCallExpression2_es2017.types │ ├── awaitCallExpression2_es5(target=es2015).js │ ├── awaitCallExpression2_es5(target=es2015).symbols │ ├── awaitCallExpression2_es5(target=es2015).types │ ├── awaitCallExpression2_es5(target=es5).errors.txt │ ├── awaitCallExpression2_es5(target=es5).js │ ├── awaitCallExpression2_es5(target=es5).symbols │ ├── awaitCallExpression2_es5(target=es5).types │ ├── awaitCallExpression2_es6.js │ ├── awaitCallExpression2_es6.symbols │ ├── awaitCallExpression2_es6.types │ ├── awaitCallExpression3_es2017.js │ ├── awaitCallExpression3_es2017.symbols │ ├── awaitCallExpression3_es2017.types │ ├── awaitCallExpression3_es5(target=es2015).js │ ├── awaitCallExpression3_es5(target=es2015).symbols │ ├── awaitCallExpression3_es5(target=es2015).types │ ├── awaitCallExpression3_es5(target=es5).errors.txt │ ├── awaitCallExpression3_es5(target=es5).js │ ├── awaitCallExpression3_es5(target=es5).symbols │ ├── awaitCallExpression3_es5(target=es5).types │ ├── awaitCallExpression3_es6.js │ ├── awaitCallExpression3_es6.symbols │ ├── awaitCallExpression3_es6.types │ ├── awaitCallExpression4_es2017.js │ ├── awaitCallExpression4_es2017.symbols │ ├── awaitCallExpression4_es2017.types │ ├── awaitCallExpression4_es5(target=es2015).js │ ├── awaitCallExpression4_es5(target=es2015).symbols │ ├── awaitCallExpression4_es5(target=es2015).types │ ├── awaitCallExpression4_es5(target=es5).errors.txt │ ├── awaitCallExpression4_es5(target=es5).js │ ├── awaitCallExpression4_es5(target=es5).symbols │ ├── awaitCallExpression4_es5(target=es5).types │ ├── awaitCallExpression4_es6.js │ ├── awaitCallExpression4_es6.symbols │ ├── awaitCallExpression4_es6.types │ ├── awaitCallExpression5_es2017.js │ ├── awaitCallExpression5_es2017.symbols │ ├── awaitCallExpression5_es2017.types │ ├── awaitCallExpression5_es5(target=es2015).js │ ├── awaitCallExpression5_es5(target=es2015).symbols │ ├── awaitCallExpression5_es5(target=es2015).types │ ├── awaitCallExpression5_es5(target=es5).errors.txt │ ├── awaitCallExpression5_es5(target=es5).js │ ├── awaitCallExpression5_es5(target=es5).symbols │ ├── awaitCallExpression5_es5(target=es5).types │ ├── awaitCallExpression5_es6.js │ ├── awaitCallExpression5_es6.symbols │ ├── awaitCallExpression5_es6.types │ ├── awaitCallExpression6_es2017.js │ ├── awaitCallExpression6_es2017.symbols │ ├── awaitCallExpression6_es2017.types │ ├── awaitCallExpression6_es5(target=es2015).js │ ├── awaitCallExpression6_es5(target=es2015).symbols │ ├── awaitCallExpression6_es5(target=es2015).types │ ├── awaitCallExpression6_es5(target=es5).errors.txt │ ├── awaitCallExpression6_es5(target=es5).js │ ├── awaitCallExpression6_es5(target=es5).symbols │ ├── awaitCallExpression6_es5(target=es5).types │ ├── awaitCallExpression6_es6.js │ ├── awaitCallExpression6_es6.symbols │ ├── awaitCallExpression6_es6.types │ ├── awaitCallExpression7_es2017.js │ ├── awaitCallExpression7_es2017.symbols │ ├── awaitCallExpression7_es2017.types │ ├── awaitCallExpression7_es5(target=es2015).js │ ├── awaitCallExpression7_es5(target=es2015).symbols │ ├── awaitCallExpression7_es5(target=es2015).types │ ├── awaitCallExpression7_es5(target=es5).errors.txt │ ├── awaitCallExpression7_es5(target=es5).js │ ├── awaitCallExpression7_es5(target=es5).symbols │ ├── awaitCallExpression7_es5(target=es5).types │ ├── awaitCallExpression7_es6.js │ ├── awaitCallExpression7_es6.symbols │ ├── awaitCallExpression7_es6.types │ ├── awaitCallExpression8_es2017.js │ ├── awaitCallExpression8_es2017.symbols │ ├── awaitCallExpression8_es2017.types │ ├── awaitCallExpression8_es5(target=es2015).js │ ├── awaitCallExpression8_es5(target=es2015).symbols │ ├── awaitCallExpression8_es5(target=es2015).types │ ├── awaitCallExpression8_es5(target=es5).errors.txt │ ├── awaitCallExpression8_es5(target=es5).js │ ├── awaitCallExpression8_es5(target=es5).symbols │ ├── awaitCallExpression8_es5(target=es5).types │ ├── awaitCallExpression8_es6.js │ ├── awaitCallExpression8_es6.symbols │ ├── awaitCallExpression8_es6.types │ ├── awaitCallExpressionInSyncFunction.errors.txt │ ├── awaitCallExpressionInSyncFunction.js │ ├── awaitCallExpressionInSyncFunction.symbols │ ├── awaitCallExpressionInSyncFunction.types │ ├── awaitClassExpression_es2017.js │ ├── awaitClassExpression_es2017.symbols │ ├── awaitClassExpression_es2017.types │ ├── awaitClassExpression_es5(target=es2015).js │ ├── awaitClassExpression_es5(target=es2015).symbols │ ├── awaitClassExpression_es5(target=es2015).types │ ├── awaitClassExpression_es5(target=es5).errors.txt │ ├── awaitClassExpression_es5(target=es5).js │ ├── awaitClassExpression_es5(target=es5).symbols │ ├── awaitClassExpression_es5(target=es5).types │ ├── awaitClassExpression_es6.js │ ├── awaitClassExpression_es6.symbols │ ├── awaitClassExpression_es6.types │ ├── awaitExpressionInnerCommentEmit.js │ ├── awaitExpressionInnerCommentEmit.symbols │ ├── awaitExpressionInnerCommentEmit.types │ ├── awaitInClassInAsyncFunction.errors.txt │ ├── awaitInClassInAsyncFunction.js │ ├── awaitInClassInAsyncFunction.symbols │ ├── awaitInClassInAsyncFunction.types │ ├── awaitInNonAsyncFunction.errors.txt │ ├── awaitInNonAsyncFunction.js │ ├── awaitInNonAsyncFunction.symbols │ ├── awaitInNonAsyncFunction.types │ ├── awaitInheritedPromise_es2017.js │ ├── awaitInheritedPromise_es2017.symbols │ ├── awaitInheritedPromise_es2017.types │ ├── awaitLiteralValues.errors.txt │ ├── awaitLiteralValues.js │ ├── awaitLiteralValues.symbols │ ├── awaitLiteralValues.types │ ├── awaitUnionPromise.errors.txt │ ├── awaitUnionPromise.js │ ├── awaitUnionPromise.symbols │ ├── awaitUnionPromise.types │ ├── awaitUnion_es5(target=es2015).js │ ├── awaitUnion_es5(target=es2015).symbols │ ├── awaitUnion_es5(target=es2015).types │ ├── awaitUnion_es5(target=es5).errors.txt │ ├── awaitUnion_es5(target=es5).js │ ├── awaitUnion_es5(target=es5).symbols │ ├── awaitUnion_es5(target=es5).types │ ├── awaitUnion_es6.js │ ├── awaitUnion_es6.symbols │ ├── awaitUnion_es6.types │ ├── awaitUsingDeclarations.1(target=es2015).errors.txt │ ├── awaitUsingDeclarations.1(target=es2015).js │ ├── awaitUsingDeclarations.1(target=es2017).js │ ├── awaitUsingDeclarations.1(target=es2022).js │ ├── awaitUsingDeclarations.1(target=es5).errors.txt │ ├── awaitUsingDeclarations.1(target=es5).js │ ├── awaitUsingDeclarations.1(target=esnext).js │ ├── awaitUsingDeclarations.10.errors.txt │ ├── awaitUsingDeclarations.10.js │ ├── awaitUsingDeclarations.11.errors.txt │ ├── awaitUsingDeclarations.11.js │ ├── awaitUsingDeclarations.12.errors.txt │ ├── awaitUsingDeclarations.12.js │ ├── awaitUsingDeclarations.13.errors.txt │ ├── awaitUsingDeclarations.13.js │ ├── awaitUsingDeclarations.14.errors.txt │ ├── awaitUsingDeclarations.14.js │ ├── awaitUsingDeclarations.15.js │ ├── awaitUsingDeclarations.16.errors.txt │ ├── awaitUsingDeclarations.16.js │ ├── awaitUsingDeclarations.17.errors.txt │ ├── awaitUsingDeclarations.17.js │ ├── awaitUsingDeclarations.2(target=es2015).errors.txt │ ├── awaitUsingDeclarations.2(target=es2015).js │ ├── awaitUsingDeclarations.2(target=es2017).js │ ├── awaitUsingDeclarations.2(target=es2022).js │ ├── awaitUsingDeclarations.2(target=es5).errors.txt │ ├── awaitUsingDeclarations.2(target=es5).js │ ├── awaitUsingDeclarations.2(target=esnext).js │ ├── awaitUsingDeclarations.3(target=es2015).errors.txt │ ├── awaitUsingDeclarations.3(target=es2015).js │ ├── awaitUsingDeclarations.3(target=es2017).js │ ├── awaitUsingDeclarations.3(target=es2022).js │ ├── awaitUsingDeclarations.3(target=es5).errors.txt │ ├── awaitUsingDeclarations.3(target=es5).js │ ├── awaitUsingDeclarations.3(target=esnext).js │ ├── awaitUsingDeclarations.4.errors.txt │ ├── awaitUsingDeclarations.4.js │ ├── awaitUsingDeclarations.5.errors.txt │ ├── awaitUsingDeclarations.5.js │ ├── awaitUsingDeclarations.6.errors.txt │ ├── awaitUsingDeclarations.6.js │ ├── awaitUsingDeclarations.7.errors.txt │ ├── awaitUsingDeclarations.7.js │ ├── awaitUsingDeclarations.8.errors.txt │ ├── awaitUsingDeclarations.8.js │ ├── awaitUsingDeclarations.9.errors.txt │ ├── awaitUsingDeclarations.9.js │ ├── awaitUsingDeclarationsInFor(target=es2015).js │ ├── awaitUsingDeclarationsInFor(target=es2017).js │ ├── awaitUsingDeclarationsInFor(target=es2022).js │ ├── awaitUsingDeclarationsInFor(target=es5).errors.txt │ ├── awaitUsingDeclarationsInFor(target=es5).js │ ├── awaitUsingDeclarationsInFor(target=esnext).js │ ├── awaitUsingDeclarationsInForAwaitOf(target=es2015).js │ ├── awaitUsingDeclarationsInForAwaitOf(target=es2017).js │ ├── awaitUsingDeclarationsInForAwaitOf(target=es2022).js │ ├── awaitUsingDeclarationsInForAwaitOf(target=es5).errors.txt │ ├── awaitUsingDeclarationsInForAwaitOf(target=es5).js │ ├── awaitUsingDeclarationsInForAwaitOf(target=esnext).js │ ├── awaitUsingDeclarationsInForAwaitOf.2.errors.txt │ ├── awaitUsingDeclarationsInForAwaitOf.2.js │ ├── awaitUsingDeclarationsInForAwaitOf.3(target=es5).errors.txt │ ├── awaitUsingDeclarationsInForAwaitOf.3(target=es5).js │ ├── awaitUsingDeclarationsInForAwaitOf.3(target=esnext).errors.txt │ ├── awaitUsingDeclarationsInForAwaitOf.3(target=esnext).js │ ├── awaitUsingDeclarationsInForIn.errors.txt │ ├── awaitUsingDeclarationsInForIn.js │ ├── awaitUsingDeclarationsInForOf.1(target=es2015).js │ ├── awaitUsingDeclarationsInForOf.1(target=es2017).js │ ├── awaitUsingDeclarationsInForOf.1(target=es2022).js │ ├── awaitUsingDeclarationsInForOf.1(target=es5).errors.txt │ ├── awaitUsingDeclarationsInForOf.1(target=es5).js │ ├── awaitUsingDeclarationsInForOf.1(target=esnext).js │ ├── awaitUsingDeclarationsInForOf.2.js │ ├── awaitUsingDeclarationsInForOf.3.errors.txt │ ├── awaitUsingDeclarationsInForOf.3.js │ ├── awaitUsingDeclarationsInForOf.4.errors.txt │ ├── awaitUsingDeclarationsInForOf.4.js │ ├── awaitUsingDeclarationsInForOf.5(target=es5).errors.txt │ ├── awaitUsingDeclarationsInForOf.5(target=es5).js │ ├── awaitUsingDeclarationsInForOf.5(target=esnext).errors.txt │ ├── awaitUsingDeclarationsInForOf.5(target=esnext).js │ ├── awaitUsingDeclarationsTopLevelOfModule.1(module=esnext).js │ ├── awaitUsingDeclarationsTopLevelOfModule.1(module=system).errors.txt │ ├── awaitUsingDeclarationsTopLevelOfModule.1(module=system).js │ ├── awaitUsingDeclarationsWithAsyncIteratorObject.errors.txt │ ├── awaitUsingDeclarationsWithAsyncIteratorObject.symbols │ ├── awaitUsingDeclarationsWithAsyncIteratorObject.types │ ├── awaitUsingDeclarationsWithImportHelpers.errors.txt │ ├── awaitUsingDeclarationsWithImportHelpers.js │ ├── awaitUsingDeclarationsWithIteratorObject.errors.txt │ ├── awaitUsingDeclarationsWithIteratorObject.symbols │ ├── awaitUsingDeclarationsWithIteratorObject.types │ ├── await_incorrectThisType.errors.txt │ ├── await_unaryExpression_es2017.js │ ├── await_unaryExpression_es2017.symbols │ ├── await_unaryExpression_es2017.types │ ├── await_unaryExpression_es2017_1.errors.txt │ ├── await_unaryExpression_es2017_1.js │ ├── await_unaryExpression_es2017_1.symbols │ ├── await_unaryExpression_es2017_1.types │ ├── await_unaryExpression_es2017_2.errors.txt │ ├── await_unaryExpression_es2017_2.js │ ├── await_unaryExpression_es2017_2.symbols │ ├── await_unaryExpression_es2017_2.types │ ├── await_unaryExpression_es2017_3.errors.txt │ ├── await_unaryExpression_es2017_3.js │ ├── await_unaryExpression_es2017_3.symbols │ ├── await_unaryExpression_es2017_3.types │ ├── await_unaryExpression_es6.js │ ├── await_unaryExpression_es6.symbols │ ├── await_unaryExpression_es6.types │ ├── await_unaryExpression_es6_1.errors.txt │ ├── await_unaryExpression_es6_1.js │ ├── await_unaryExpression_es6_1.symbols │ ├── await_unaryExpression_es6_1.types │ ├── await_unaryExpression_es6_2.errors.txt │ ├── await_unaryExpression_es6_2.js │ ├── await_unaryExpression_es6_2.symbols │ ├── await_unaryExpression_es6_2.types │ ├── await_unaryExpression_es6_3.errors.txt │ ├── await_unaryExpression_es6_3.js │ ├── await_unaryExpression_es6_3.symbols │ ├── await_unaryExpression_es6_3.types │ ├── awaitedType.errors.txt │ ├── awaitedType.js │ ├── awaitedType.symbols │ ├── awaitedType.types │ ├── awaitedTypeCrash.js │ ├── awaitedTypeCrash.symbols │ ├── awaitedTypeCrash.types │ ├── awaitedTypeJQuery.js │ ├── awaitedTypeJQuery.symbols │ ├── awaitedTypeJQuery.types │ ├── awaitedTypeNoLib.errors.txt │ ├── awaitedTypeNoLib.js │ ├── awaitedTypeNoLib.symbols │ ├── awaitedTypeNoLib.types │ ├── awaitedTypeStrictNull.errors.txt │ ├── awaitedTypeStrictNull.js │ ├── awaitedTypeStrictNull.symbols │ ├── awaitedTypeStrictNull.types │ ├── badArrayIndex.errors.txt │ ├── badArrayIndex.js │ ├── badArrayIndex.symbols │ ├── badArrayIndex.types │ ├── badArraySyntax.errors.txt │ ├── badArraySyntax.js │ ├── badArraySyntax.symbols │ ├── badArraySyntax.types │ ├── badExternalModuleReference.errors.txt │ ├── badExternalModuleReference.js │ ├── badExternalModuleReference.symbols │ ├── badExternalModuleReference.types │ ├── badInferenceLowerPriorityThanGoodInference.js │ ├── badInferenceLowerPriorityThanGoodInference.symbols │ ├── badInferenceLowerPriorityThanGoodInference.types │ ├── badOverloadError.js │ ├── badOverloadError.symbols │ ├── badOverloadError.types │ ├── badThisBinding.js │ ├── badThisBinding.symbols │ ├── badThisBinding.types │ ├── bangInModuleName.errors.txt │ ├── bangInModuleName.js │ ├── bangInModuleName.symbols │ ├── bangInModuleName.types │ ├── baseCheck.errors.txt │ ├── baseCheck.js │ ├── baseCheck.symbols │ ├── baseCheck.types │ ├── baseClassImprovedMismatchErrors.errors.txt │ ├── baseClassImprovedMismatchErrors.js │ ├── baseClassImprovedMismatchErrors.symbols │ ├── baseClassImprovedMismatchErrors.types │ ├── baseConstraintOfDecorator.errors.txt │ ├── baseConstraintOfDecorator.js │ ├── baseConstraintOfDecorator.symbols │ ├── baseConstraintOfDecorator.types │ ├── baseExpressionTypeParameters.errors.txt │ ├── baseExpressionTypeParameters.js │ ├── baseExpressionTypeParameters.symbols │ ├── baseExpressionTypeParameters.types │ ├── baseIndexSignatureResolution.errors.txt │ ├── baseIndexSignatureResolution.js │ ├── baseIndexSignatureResolution.symbols │ ├── baseIndexSignatureResolution.types │ ├── baseTypeAfterDerivedType.js │ ├── baseTypeAfterDerivedType.symbols │ ├── baseTypeAfterDerivedType.types │ ├── baseTypeOrderChecking.errors.txt │ ├── baseTypeOrderChecking.js │ ├── baseTypeOrderChecking.symbols │ ├── baseTypeOrderChecking.types │ ├── baseTypePrivateMemberClash.errors.txt │ ├── baseTypePrivateMemberClash.js │ ├── baseTypePrivateMemberClash.symbols │ ├── baseTypePrivateMemberClash.types │ ├── baseTypeWrappingInstantiationChain.errors.txt │ ├── baseTypeWrappingInstantiationChain.js │ ├── baseTypeWrappingInstantiationChain.symbols │ ├── baseTypeWrappingInstantiationChain.types │ ├── bases.errors.txt │ ├── bases.js │ ├── bases.symbols │ ├── bases.types │ ├── bestChoiceType.js │ ├── bestChoiceType.symbols │ ├── bestChoiceType.types │ ├── bestCommonTypeOfConditionalExpressions.errors.txt │ ├── bestCommonTypeOfConditionalExpressions.js │ ├── bestCommonTypeOfConditionalExpressions.symbols │ ├── bestCommonTypeOfConditionalExpressions.types │ ├── bestCommonTypeOfConditionalExpressions2.errors.txt │ ├── bestCommonTypeOfConditionalExpressions2.js │ ├── bestCommonTypeOfConditionalExpressions2.symbols │ ├── bestCommonTypeOfConditionalExpressions2.types │ ├── bestCommonTypeOfTuple.errors.txt │ ├── bestCommonTypeOfTuple.js │ ├── bestCommonTypeOfTuple.symbols │ ├── bestCommonTypeOfTuple.types │ ├── bestCommonTypeOfTuple2.errors.txt │ ├── bestCommonTypeOfTuple2.js │ ├── bestCommonTypeOfTuple2.symbols │ ├── bestCommonTypeOfTuple2.types │ ├── bestCommonTypeReturnStatement.errors.txt │ ├── bestCommonTypeReturnStatement.js │ ├── bestCommonTypeReturnStatement.symbols │ ├── bestCommonTypeReturnStatement.types │ ├── bestCommonTypeWithContextualTyping.errors.txt │ ├── bestCommonTypeWithContextualTyping.js │ ├── bestCommonTypeWithContextualTyping.symbols │ ├── bestCommonTypeWithContextualTyping.types │ ├── bestCommonTypeWithOptionalProperties.errors.txt │ ├── bestCommonTypeWithOptionalProperties.js │ ├── bestCommonTypeWithOptionalProperties.symbols │ ├── bestCommonTypeWithOptionalProperties.types │ ├── betterErrorForAccidentalCall.errors.txt │ ├── betterErrorForAccidentalCall.js │ ├── betterErrorForAccidentalCall.symbols │ ├── betterErrorForAccidentalCall.types │ ├── betterErrorForUnionCall.errors.txt │ ├── betterErrorForUnionCall.js │ ├── betterErrorForUnionCall.symbols │ ├── betterErrorForUnionCall.types │ ├── bigIntWithTargetES2016.js │ ├── bigIntWithTargetES2016.symbols │ ├── bigIntWithTargetES2016.types │ ├── bigIntWithTargetLessThanES2016.errors.txt │ ├── bigIntWithTargetLessThanES2016.js │ ├── bigIntWithTargetLessThanES2016.symbols │ ├── bigIntWithTargetLessThanES2016.types │ ├── bigint64ArraySubarray.js │ ├── bigint64ArraySubarray.symbols │ ├── bigint64ArraySubarray.types │ ├── bigintAmbientMinimal(target=es2015).errors.txt │ ├── bigintAmbientMinimal(target=es2015).js │ ├── bigintAmbientMinimal(target=es2015).symbols │ ├── bigintAmbientMinimal(target=es2015).types │ ├── bigintAmbientMinimal(target=es5).errors.txt │ ├── bigintAmbientMinimal(target=es5).js │ ├── bigintAmbientMinimal(target=es5).symbols │ ├── bigintAmbientMinimal(target=es5).types │ ├── bigintArbirtraryIdentifier.errors.txt │ ├── bigintArbirtraryIdentifier.js │ ├── bigintArbirtraryIdentifier.symbols │ ├── bigintArbirtraryIdentifier.types │ ├── bigintIndex.errors.txt │ ├── bigintIndex.js │ ├── bigintIndex.symbols │ ├── bigintIndex.types │ ├── bigintMissingES2019.js │ ├── bigintMissingES2019.symbols │ ├── bigintMissingES2019.types │ ├── bigintMissingES2020.js │ ├── bigintMissingES2020.symbols │ ├── bigintMissingES2020.types │ ├── bigintMissingESNext.js │ ├── bigintMissingESNext.symbols │ ├── bigintMissingESNext.types │ ├── bigintPropertyName.errors.txt │ ├── bigintPropertyName.js │ ├── bigintPropertyName.symbols │ ├── bigintPropertyName.types │ ├── bigintWithLib.errors.txt │ ├── bigintWithLib.js │ ├── bigintWithLib.symbols │ ├── bigintWithLib.types │ ├── bigintWithoutLib(target=es2015).errors.txt │ ├── bigintWithoutLib(target=es2015).js │ ├── bigintWithoutLib(target=es2015).symbols │ ├── bigintWithoutLib(target=es2015).types │ ├── bigintWithoutLib(target=es5).errors.txt │ ├── bigintWithoutLib(target=es5).js │ ├── bigintWithoutLib(target=es5).symbols │ ├── bigintWithoutLib(target=es5).types │ ├── binaryArithmatic1.errors.txt │ ├── binaryArithmatic1.js │ ├── binaryArithmatic1.symbols │ ├── binaryArithmatic1.types │ ├── binaryArithmatic2.errors.txt │ ├── binaryArithmatic2.js │ ├── binaryArithmatic2.symbols │ ├── binaryArithmatic2.types │ ├── binaryArithmatic3.errors.txt │ ├── binaryArithmatic3.js │ ├── binaryArithmatic3.symbols │ ├── binaryArithmatic3.types │ ├── binaryArithmatic4.errors.txt │ ├── binaryArithmatic4.js │ ├── binaryArithmatic4.symbols │ ├── binaryArithmatic4.types │ ├── binaryArithmeticControlFlowGraphNotTooLarge.js │ ├── binaryArithmeticControlFlowGraphNotTooLarge.symbols │ ├── binaryArithmeticControlFlowGraphNotTooLarge.types │ ├── binaryIntegerLiteral(target=es2015).errors.txt │ ├── binaryIntegerLiteral(target=es2015).js │ ├── binaryIntegerLiteral(target=es2015).symbols │ ├── binaryIntegerLiteral(target=es2015).types │ ├── binaryIntegerLiteral(target=es5).errors.txt │ ├── binaryIntegerLiteral(target=es5).js │ ├── binaryIntegerLiteral(target=es5).symbols │ ├── binaryIntegerLiteral(target=es5).types │ ├── binaryIntegerLiteralES6.errors.txt │ ├── binaryIntegerLiteralES6.js │ ├── binaryIntegerLiteralES6.symbols │ ├── binaryIntegerLiteralES6.types │ ├── binaryIntegerLiteralError.errors.txt │ ├── binaryIntegerLiteralError.js │ ├── binaryIntegerLiteralError.symbols │ ├── binaryIntegerLiteralError.types │ ├── bind1.errors.txt │ ├── bind1.js │ ├── bind1.symbols │ ├── bind1.types │ ├── bind2.js │ ├── bind2.symbols │ ├── bind2.types │ ├── binderBinaryExpressionStress.js │ ├── binderUninitializedModuleExportsAssignment.symbols │ ├── binderUninitializedModuleExportsAssignment.types │ ├── bindingPatternCannotBeOnlyInferenceSource.errors.txt │ ├── bindingPatternCannotBeOnlyInferenceSource.js │ ├── bindingPatternCannotBeOnlyInferenceSource.symbols │ ├── bindingPatternCannotBeOnlyInferenceSource.types │ ├── bindingPatternContextualTypeDoesNotCauseWidening.js │ ├── bindingPatternContextualTypeDoesNotCauseWidening.symbols │ ├── bindingPatternContextualTypeDoesNotCauseWidening.types │ ├── bindingPatternInParameter01.js │ ├── bindingPatternInParameter01.symbols │ ├── bindingPatternInParameter01.types │ ├── bindingPatternOmittedExpressionNesting.js │ ├── bindingPatternOmittedExpressionNesting.symbols │ ├── bindingPatternOmittedExpressionNesting.types │ ├── binopAssignmentShouldHaveType.js │ ├── binopAssignmentShouldHaveType.symbols │ ├── binopAssignmentShouldHaveType.types │ ├── bitwiseCompoundAssignmentOperators.errors.txt │ ├── bitwiseCompoundAssignmentOperators.js │ ├── bitwiseCompoundAssignmentOperators.symbols │ ├── bitwiseCompoundAssignmentOperators.types │ ├── bitwiseNotOperatorInvalidOperations.errors.txt │ ├── bitwiseNotOperatorInvalidOperations.js │ ├── bitwiseNotOperatorInvalidOperations.symbols │ ├── bitwiseNotOperatorInvalidOperations.types │ ├── bitwiseNotOperatorWithAnyOtherType.errors.txt │ ├── bitwiseNotOperatorWithAnyOtherType.js │ ├── bitwiseNotOperatorWithAnyOtherType.symbols │ ├── bitwiseNotOperatorWithAnyOtherType.types │ ├── bitwiseNotOperatorWithBooleanType.errors.txt │ ├── bitwiseNotOperatorWithBooleanType.js │ ├── bitwiseNotOperatorWithBooleanType.symbols │ ├── bitwiseNotOperatorWithBooleanType.types │ ├── bitwiseNotOperatorWithEnumType.js │ ├── bitwiseNotOperatorWithEnumType.symbols │ ├── bitwiseNotOperatorWithEnumType.types │ ├── bitwiseNotOperatorWithNumberType.errors.txt │ ├── bitwiseNotOperatorWithNumberType.js │ ├── bitwiseNotOperatorWithNumberType.symbols │ ├── bitwiseNotOperatorWithNumberType.types │ ├── bitwiseNotOperatorWithStringType.errors.txt │ ├── bitwiseNotOperatorWithStringType.js │ ├── bitwiseNotOperatorWithStringType.symbols │ ├── bitwiseNotOperatorWithStringType.types │ ├── bivariantInferences.js │ ├── bivariantInferences.symbols │ ├── bivariantInferences.types │ ├── blockScopedBindingCaptureThisInFunction.js │ ├── blockScopedBindingCaptureThisInFunction.symbols │ ├── blockScopedBindingCaptureThisInFunction.types │ ├── blockScopedBindingUsedBeforeDef.errors.txt │ ├── blockScopedBindingUsedBeforeDef.js │ ├── blockScopedBindingUsedBeforeDef.symbols │ ├── blockScopedBindingUsedBeforeDef.types │ ├── blockScopedBindingsInDownlevelGenerator(target=es2015).errors.txt │ ├── blockScopedBindingsInDownlevelGenerator(target=es2015).js │ ├── blockScopedBindingsInDownlevelGenerator(target=es2015).symbols │ ├── blockScopedBindingsInDownlevelGenerator(target=es2015).types │ ├── blockScopedBindingsInDownlevelGenerator(target=es5).errors.txt │ ├── blockScopedBindingsInDownlevelGenerator(target=es5).js │ ├── blockScopedBindingsInDownlevelGenerator(target=es5).symbols │ ├── blockScopedBindingsInDownlevelGenerator(target=es5).types │ ├── blockScopedBindingsReassignedInLoop1.js │ ├── blockScopedBindingsReassignedInLoop1.symbols │ ├── blockScopedBindingsReassignedInLoop1.types │ ├── blockScopedBindingsReassignedInLoop2.js │ ├── blockScopedBindingsReassignedInLoop2.symbols │ ├── blockScopedBindingsReassignedInLoop2.types │ ├── blockScopedBindingsReassignedInLoop3.js │ ├── blockScopedBindingsReassignedInLoop3.symbols │ ├── blockScopedBindingsReassignedInLoop3.types │ ├── blockScopedBindingsReassignedInLoop4.js │ ├── blockScopedBindingsReassignedInLoop4.symbols │ ├── blockScopedBindingsReassignedInLoop4.types │ ├── blockScopedBindingsReassignedInLoop5.js │ ├── blockScopedBindingsReassignedInLoop5.symbols │ ├── blockScopedBindingsReassignedInLoop5.types │ ├── blockScopedBindingsReassignedInLoop6.js │ ├── blockScopedBindingsReassignedInLoop6.symbols │ ├── blockScopedBindingsReassignedInLoop6.types │ ├── blockScopedClassDeclarationAcrossFiles.errors.txt │ ├── blockScopedClassDeclarationAcrossFiles.js │ ├── blockScopedClassDeclarationAcrossFiles.symbols │ ├── blockScopedClassDeclarationAcrossFiles.types │ ├── blockScopedEnumVariablesUseBeforeDef(target=es2015).errors.txt │ ├── blockScopedEnumVariablesUseBeforeDef(target=es2015).js │ ├── blockScopedEnumVariablesUseBeforeDef(target=es2015).symbols │ ├── blockScopedEnumVariablesUseBeforeDef(target=es2015).types │ ├── blockScopedEnumVariablesUseBeforeDef(target=es5).errors.txt │ ├── blockScopedEnumVariablesUseBeforeDef(target=es5).js │ ├── blockScopedEnumVariablesUseBeforeDef(target=es5).symbols │ ├── blockScopedEnumVariablesUseBeforeDef(target=es5).types │ ├── blockScopedEnumVariablesUseBeforeDef_isolatedModules(target=es2015).errors.txt │ ├── blockScopedEnumVariablesUseBeforeDef_isolatedModules(target=es2015).js │ ├── blockScopedEnumVariablesUseBeforeDef_isolatedModules(target=es2015).symbols │ ├── blockScopedEnumVariablesUseBeforeDef_isolatedModules(target=es2015).types │ ├── blockScopedEnumVariablesUseBeforeDef_isolatedModules(target=es5).errors.txt │ ├── blockScopedEnumVariablesUseBeforeDef_isolatedModules(target=es5).js │ ├── blockScopedEnumVariablesUseBeforeDef_isolatedModules(target=es5).symbols │ ├── blockScopedEnumVariablesUseBeforeDef_isolatedModules(target=es5).types │ ├── blockScopedEnumVariablesUseBeforeDef_preserve(target=es2015).errors.txt │ ├── blockScopedEnumVariablesUseBeforeDef_preserve(target=es2015).js │ ├── blockScopedEnumVariablesUseBeforeDef_preserve(target=es2015).symbols │ ├── blockScopedEnumVariablesUseBeforeDef_preserve(target=es2015).types │ ├── blockScopedEnumVariablesUseBeforeDef_preserve(target=es5).errors.txt │ ├── blockScopedEnumVariablesUseBeforeDef_preserve(target=es5).js │ ├── blockScopedEnumVariablesUseBeforeDef_preserve(target=es5).symbols │ ├── blockScopedEnumVariablesUseBeforeDef_preserve(target=es5).types │ ├── blockScopedEnumVariablesUseBeforeDef_verbatimModuleSyntax(target=es2015).errors.txt │ ├── blockScopedEnumVariablesUseBeforeDef_verbatimModuleSyntax(target=es2015).js │ ├── blockScopedEnumVariablesUseBeforeDef_verbatimModuleSyntax(target=es2015).symbols │ ├── blockScopedEnumVariablesUseBeforeDef_verbatimModuleSyntax(target=es2015).types │ ├── blockScopedEnumVariablesUseBeforeDef_verbatimModuleSyntax(target=es5).errors.txt │ ├── blockScopedEnumVariablesUseBeforeDef_verbatimModuleSyntax(target=es5).js │ ├── blockScopedEnumVariablesUseBeforeDef_verbatimModuleSyntax(target=es5).symbols │ ├── blockScopedEnumVariablesUseBeforeDef_verbatimModuleSyntax(target=es5).types │ ├── blockScopedFunctionDeclarationES5(target=es2015).errors.txt │ ├── blockScopedFunctionDeclarationES5(target=es2015).js │ ├── blockScopedFunctionDeclarationES5(target=es2015).symbols │ ├── blockScopedFunctionDeclarationES5(target=es2015).types │ ├── blockScopedFunctionDeclarationES5(target=es5).errors.txt │ ├── blockScopedFunctionDeclarationES5(target=es5).js │ ├── blockScopedFunctionDeclarationES5(target=es5).symbols │ ├── blockScopedFunctionDeclarationES5(target=es5).types │ ├── blockScopedFunctionDeclarationES6.errors.txt │ ├── blockScopedFunctionDeclarationES6.js │ ├── blockScopedFunctionDeclarationES6.symbols │ ├── blockScopedFunctionDeclarationES6.types │ ├── blockScopedFunctionDeclarationInStrictClass(target=es2015).errors.txt │ ├── blockScopedFunctionDeclarationInStrictClass(target=es2015).js │ ├── blockScopedFunctionDeclarationInStrictClass(target=es2015).symbols │ ├── blockScopedFunctionDeclarationInStrictClass(target=es2015).types │ ├── blockScopedFunctionDeclarationInStrictClass(target=es5).errors.txt │ ├── blockScopedFunctionDeclarationInStrictClass(target=es5).js │ ├── blockScopedFunctionDeclarationInStrictClass(target=es5).symbols │ ├── blockScopedFunctionDeclarationInStrictClass(target=es5).types │ ├── blockScopedFunctionDeclarationInStrictModule.errors.txt │ ├── blockScopedFunctionDeclarationInStrictModule.js │ ├── blockScopedFunctionDeclarationInStrictModule.symbols │ ├── blockScopedFunctionDeclarationInStrictModule.types │ ├── blockScopedFunctionDeclarationStrictES5(target=es2015).errors.txt │ ├── blockScopedFunctionDeclarationStrictES5(target=es2015).js │ ├── blockScopedFunctionDeclarationStrictES5(target=es2015).symbols │ ├── blockScopedFunctionDeclarationStrictES5(target=es2015).types │ ├── blockScopedFunctionDeclarationStrictES5(target=es5).errors.txt │ ├── blockScopedFunctionDeclarationStrictES5(target=es5).js │ ├── blockScopedFunctionDeclarationStrictES5(target=es5).symbols │ ├── blockScopedFunctionDeclarationStrictES5(target=es5).types │ ├── blockScopedFunctionDeclarationStrictES6.errors.txt │ ├── blockScopedFunctionDeclarationStrictES6.js │ ├── blockScopedFunctionDeclarationStrictES6.symbols │ ├── blockScopedFunctionDeclarationStrictES6.types │ ├── blockScopedNamespaceDifferentFile(target=es2015).errors.txt │ ├── blockScopedNamespaceDifferentFile(target=es2015).js │ ├── blockScopedNamespaceDifferentFile(target=es2015).symbols │ ├── blockScopedNamespaceDifferentFile(target=es2015).types │ ├── blockScopedNamespaceDifferentFile(target=es5).errors.txt │ ├── blockScopedNamespaceDifferentFile(target=es5).js │ ├── blockScopedNamespaceDifferentFile(target=es5).symbols │ ├── blockScopedNamespaceDifferentFile(target=es5).types │ ├── blockScopedSameNameFunctionDeclarationES5(target=es2015).errors.txt │ ├── blockScopedSameNameFunctionDeclarationES5(target=es2015).js │ ├── blockScopedSameNameFunctionDeclarationES5(target=es2015).symbols │ ├── blockScopedSameNameFunctionDeclarationES5(target=es2015).types │ ├── blockScopedSameNameFunctionDeclarationES5(target=es5).errors.txt │ ├── blockScopedSameNameFunctionDeclarationES5(target=es5).js │ ├── blockScopedSameNameFunctionDeclarationES5(target=es5).symbols │ ├── blockScopedSameNameFunctionDeclarationES5(target=es5).types │ ├── blockScopedSameNameFunctionDeclarationES6.errors.txt │ ├── blockScopedSameNameFunctionDeclarationES6.js │ ├── blockScopedSameNameFunctionDeclarationES6.symbols │ ├── blockScopedSameNameFunctionDeclarationES6.types │ ├── blockScopedSameNameFunctionDeclarationStrictES5(target=es2015).errors.txt │ ├── blockScopedSameNameFunctionDeclarationStrictES5(target=es2015).js │ ├── blockScopedSameNameFunctionDeclarationStrictES5(target=es2015).symbols │ ├── blockScopedSameNameFunctionDeclarationStrictES5(target=es2015).types │ ├── blockScopedSameNameFunctionDeclarationStrictES5(target=es5).errors.txt │ ├── blockScopedSameNameFunctionDeclarationStrictES5(target=es5).js │ ├── blockScopedSameNameFunctionDeclarationStrictES5(target=es5).symbols │ ├── blockScopedSameNameFunctionDeclarationStrictES5(target=es5).types │ ├── blockScopedSameNameFunctionDeclarationStrictES6.errors.txt │ ├── blockScopedSameNameFunctionDeclarationStrictES6.js │ ├── blockScopedSameNameFunctionDeclarationStrictES6.symbols │ ├── blockScopedSameNameFunctionDeclarationStrictES6.types │ ├── blockScopedVariablesUseBeforeDef(target=es2015).errors.txt │ ├── blockScopedVariablesUseBeforeDef(target=es2015).js │ ├── blockScopedVariablesUseBeforeDef(target=es2015).symbols │ ├── blockScopedVariablesUseBeforeDef(target=es2015).types │ ├── blockScopedVariablesUseBeforeDef(target=es5).errors.txt │ ├── blockScopedVariablesUseBeforeDef(target=es5).js │ ├── blockScopedVariablesUseBeforeDef(target=es5).symbols │ ├── blockScopedVariablesUseBeforeDef(target=es5).types │ ├── bluebirdStaticThis.errors.txt │ ├── bluebirdStaticThis.js │ ├── bluebirdStaticThis.symbols │ ├── bluebirdStaticThis.types │ ├── bom-utf16be.js │ ├── bom-utf16be.symbols │ ├── bom-utf16be.types │ ├── bom-utf16le.js │ ├── bom-utf16le.symbols │ ├── bom-utf16le.types │ ├── bom-utf8.js │ ├── bom-utf8.symbols │ ├── bom-utf8.types │ ├── boolInsteadOfBoolean.errors.txt │ ├── boolInsteadOfBoolean.js │ ├── boolInsteadOfBoolean.symbols │ ├── boolInsteadOfBoolean.types │ ├── booleanAssignment.errors.txt │ ├── booleanAssignment.js │ ├── booleanAssignment.symbols │ ├── booleanAssignment.types │ ├── booleanFilterAnyArray.js │ ├── booleanFilterAnyArray.symbols │ ├── booleanFilterAnyArray.types │ ├── booleanLiteralTypes1.js │ ├── booleanLiteralTypes1.symbols │ ├── booleanLiteralTypes1.types │ ├── booleanLiteralTypes2.js │ ├── booleanLiteralTypes2.symbols │ ├── booleanLiteralTypes2.types │ ├── booleanLiteralsContextuallyTypedFromUnion.js │ ├── booleanLiteralsContextuallyTypedFromUnion.symbols │ ├── booleanLiteralsContextuallyTypedFromUnion.types │ ├── booleanPropertyAccess.js │ ├── booleanPropertyAccess.symbols │ ├── booleanPropertyAccess.types │ ├── bpSpan_arrayLiteralExpressions.baseline │ ├── bpSpan_binaryExpressions.baseline │ ├── bpSpan_breakOrContinue.baseline │ ├── bpSpan_class.baseline │ ├── bpSpan_classAmbient.baseline │ ├── bpSpan_classes.baseline │ ├── bpSpan_conditionalExpressions.baseline │ ├── bpSpan_const.baseline │ ├── bpSpan_debugger.baseline │ ├── bpSpan_decorators.baseline │ ├── bpSpan_do.baseline │ ├── bpSpan_enums.baseline │ ├── bpSpan_exportAssignment.baseline │ ├── bpSpan_exports.baseline │ ├── bpSpan_for.baseline │ ├── bpSpan_forIn.baseline │ ├── bpSpan_functionExpressions.baseline │ ├── bpSpan_functions.baseline │ ├── bpSpan_ifElse.baseline │ ├── bpSpan_import.baseline │ ├── bpSpan_imports.baseline │ ├── bpSpan_inBlankLine.baseline │ ├── bpSpan_inComments.baseline │ ├── bpSpan_interface.baseline │ ├── bpSpan_labeled.baseline │ ├── bpSpan_let.baseline │ ├── bpSpan_module.baseline │ ├── bpSpan_moduleAmbient.baseline │ ├── bpSpan_moduleEmpty.baseline │ ├── bpSpan_objectLiteralExpressions.baseline │ ├── bpSpan_parenCallOrNewExpressions.baseline │ ├── bpSpan_stmts.baseline │ ├── bpSpan_switch.baseline │ ├── bpSpan_tryCatchFinally.baseline │ ├── bpSpan_typeAssertionExpressions.baseline │ ├── bpSpan_typealias.baseline │ ├── bpSpan_unaryExpressions.baseline │ ├── bpSpan_variables.baseline │ ├── bpSpan_while.baseline │ ├── bpSpan_with.baseline │ ├── breakInIterationOrSwitchStatement1.js │ ├── breakInIterationOrSwitchStatement1.symbols │ ├── breakInIterationOrSwitchStatement1.types │ ├── breakInIterationOrSwitchStatement2.js │ ├── breakInIterationOrSwitchStatement2.symbols │ ├── breakInIterationOrSwitchStatement2.types │ ├── breakInIterationOrSwitchStatement3.js │ ├── breakInIterationOrSwitchStatement3.symbols │ ├── breakInIterationOrSwitchStatement3.types │ ├── breakInIterationOrSwitchStatement4.errors.txt │ ├── breakInIterationOrSwitchStatement4.js │ ├── breakInIterationOrSwitchStatement4.symbols │ ├── breakInIterationOrSwitchStatement4.types │ ├── breakNotInIterationOrSwitchStatement1.errors.txt │ ├── breakNotInIterationOrSwitchStatement1.js │ ├── breakNotInIterationOrSwitchStatement1.symbols │ ├── breakNotInIterationOrSwitchStatement1.types │ ├── breakNotInIterationOrSwitchStatement2.errors.txt │ ├── breakNotInIterationOrSwitchStatement2.js │ ├── breakNotInIterationOrSwitchStatement2.symbols │ ├── breakNotInIterationOrSwitchStatement2.types │ ├── breakTarget1.js │ ├── breakTarget1.symbols │ ├── breakTarget1.types │ ├── breakTarget2.js │ ├── breakTarget2.symbols │ ├── breakTarget2.types │ ├── breakTarget3.js │ ├── breakTarget3.symbols │ ├── breakTarget3.types │ ├── breakTarget4.js │ ├── breakTarget4.symbols │ ├── breakTarget4.types │ ├── breakTarget5.errors.txt │ ├── breakTarget5.js │ ├── breakTarget5.symbols │ ├── breakTarget5.types │ ├── breakTarget6.errors.txt │ ├── breakTarget6.js │ ├── breakTarget6.symbols │ ├── breakTarget6.types │ ├── breakpointValidationDestructuringAssignmentForArrayBindingPattern.baseline │ ├── breakpointValidationDestructuringAssignmentForArrayBindingPatternDefaultValues.baseline │ ├── breakpointValidationDestructuringAssignmentForObjectBindingPattern.baseline │ ├── breakpointValidationDestructuringAssignmentForObjectBindingPatternDefaultValues.baseline │ ├── breakpointValidationDestructuringAssignmentForOfArrayBindingPattern.baseline │ ├── breakpointValidationDestructuringAssignmentForOfArrayBindingPatternDefaultValues.baseline │ ├── breakpointValidationDestructuringAssignmentForOfObjectBindingPattern.baseline │ ├── breakpointValidationDestructuringAssignmentForOfObjectBindingPatternDefaultValues.baseline │ ├── breakpointValidationDestructuringAssignmentStatementArrayBindingPattern.baseline │ ├── breakpointValidationDestructuringAssignmentStatementArrayBindingPatternDefaultValues.baseline │ ├── breakpointValidationDestructuringForArrayBindingPattern.baseline │ ├── breakpointValidationDestructuringForArrayBindingPatternDefaultValues.baseline │ ├── breakpointValidationDestructuringForObjectBindingPattern.baseline │ ├── breakpointValidationDestructuringForObjectBindingPatternDefaultValues.baseline │ ├── breakpointValidationDestructuringForOfArrayBindingPattern.baseline │ ├── breakpointValidationDestructuringForOfArrayBindingPatternDefaultValues.baseline │ ├── breakpointValidationDestructuringForOfObjectBindingPattern.baseline │ ├── breakpointValidationDestructuringForOfObjectBindingPatternDefaultValues.baseline │ ├── breakpointValidationDestructuringParameterArrayBindingPattern.baseline │ ├── breakpointValidationDestructuringParameterArrayBindingPattern2.baseline │ ├── breakpointValidationDestructuringParameterArrayBindingPatternDefaultValues.baseline │ ├── breakpointValidationDestructuringParameterArrayBindingPatternDefaultValues2.baseline │ ├── breakpointValidationDestructuringParameterNestedObjectBindingPattern.baseline │ ├── breakpointValidationDestructuringParameterNestedObjectBindingPatternDefaultValues.baseline │ ├── breakpointValidationDestructuringParameterObjectBindingPattern.baseline │ ├── breakpointValidationDestructuringParameterObjectBindingPatternDefaultValues.baseline │ ├── breakpointValidationDestructuringVariableStatement.baseline │ ├── breakpointValidationDestructuringVariableStatement1.baseline │ ├── breakpointValidationDestructuringVariableStatementArrayBindingPattern.baseline │ ├── breakpointValidationDestructuringVariableStatementArrayBindingPattern2.baseline │ ├── breakpointValidationDestructuringVariableStatementArrayBindingPatternDefaultValues.baseline │ ├── breakpointValidationDestructuringVariableStatementArrayBindingPatternDefaultValues2.baseline │ ├── breakpointValidationDestructuringVariableStatementDefaultValues.baseline │ ├── breakpointValidationDestructuringVariableStatementNestedObjectBindingPattern.baseline │ ├── breakpointValidationDestructuringVariableStatementNestedObjectBindingPatternWithDefaultValues.baseline │ ├── builtinIterator.errors.txt │ ├── builtinIterator.js │ ├── builtinIterator.symbols │ ├── builtinIterator.types │ ├── builtinIteratorReturn(strictbuiltiniteratorreturn=false).symbols │ ├── builtinIteratorReturn(strictbuiltiniteratorreturn=false).types │ ├── builtinIteratorReturn(strictbuiltiniteratorreturn=true).symbols │ ├── builtinIteratorReturn(strictbuiltiniteratorreturn=true).types │ ├── bundledDtsLateExportRenaming.errors.txt │ ├── bundledDtsLateExportRenaming.js │ ├── bundledDtsLateExportRenaming.symbols │ ├── bundledDtsLateExportRenaming.types │ ├── bundlerCommonJS.errors.txt │ ├── bundlerCommonJS.js │ ├── bundlerCommonJS.trace.json │ ├── bundlerConditionsExcludesNode(module=esnext).errors.txt │ ├── bundlerConditionsExcludesNode(module=esnext).js │ ├── bundlerConditionsExcludesNode(module=esnext).symbols │ ├── bundlerConditionsExcludesNode(module=esnext).trace.json │ ├── bundlerConditionsExcludesNode(module=esnext).types │ ├── bundlerConditionsExcludesNode(module=preserve).errors.txt │ ├── bundlerConditionsExcludesNode(module=preserve).js │ ├── bundlerConditionsExcludesNode(module=preserve).symbols │ ├── bundlerConditionsExcludesNode(module=preserve).trace.json │ ├── bundlerConditionsExcludesNode(module=preserve).types │ ├── bundlerDirectoryModule(module=node18,moduleresolution=bundler).errors.txt │ ├── bundlerDirectoryModule(module=node18,moduleresolution=bundler).trace.json │ ├── bundlerDirectoryModule(module=node18,moduleresolution=nodenext).trace.json │ ├── bundlerDirectoryModule(module=node20,moduleresolution=bundler).errors.txt │ ├── bundlerDirectoryModule(module=node20,moduleresolution=bundler).trace.json │ ├── bundlerDirectoryModule(module=node20,moduleresolution=nodenext).trace.json │ ├── bundlerDirectoryModule(module=nodenext,moduleresolution=bundler).errors.txt │ ├── bundlerDirectoryModule(module=nodenext,moduleresolution=bundler).trace.json │ ├── bundlerDirectoryModule(module=nodenext,moduleresolution=nodenext).trace.json │ ├── bundlerImportESM(module=esnext).js │ ├── bundlerImportESM(module=esnext).symbols │ ├── bundlerImportESM(module=esnext).types │ ├── bundlerImportESM(module=preserve).js │ ├── bundlerImportESM(module=preserve).symbols │ ├── bundlerImportESM(module=preserve).types │ ├── bundlerImportTsExtensions(allowimportingtsextensions=false,noemit=false).errors.txt │ ├── bundlerImportTsExtensions(allowimportingtsextensions=false,noemit=false).js │ ├── bundlerImportTsExtensions(allowimportingtsextensions=false,noemit=false).symbols │ ├── bundlerImportTsExtensions(allowimportingtsextensions=false,noemit=false).trace.json │ ├── bundlerImportTsExtensions(allowimportingtsextensions=false,noemit=false).types │ ├── bundlerImportTsExtensions(allowimportingtsextensions=false,noemit=true).errors.txt │ ├── bundlerImportTsExtensions(allowimportingtsextensions=false,noemit=true).symbols │ ├── bundlerImportTsExtensions(allowimportingtsextensions=false,noemit=true).trace.json │ ├── bundlerImportTsExtensions(allowimportingtsextensions=false,noemit=true).types │ ├── bundlerImportTsExtensions(allowimportingtsextensions=true,noemit=false).errors.txt │ ├── bundlerImportTsExtensions(allowimportingtsextensions=true,noemit=false).js │ ├── bundlerImportTsExtensions(allowimportingtsextensions=true,noemit=false).symbols │ ├── bundlerImportTsExtensions(allowimportingtsextensions=true,noemit=false).trace.json │ ├── bundlerImportTsExtensions(allowimportingtsextensions=true,noemit=false).types │ ├── bundlerImportTsExtensions(allowimportingtsextensions=true,noemit=true).errors.txt │ ├── bundlerImportTsExtensions(allowimportingtsextensions=true,noemit=true).symbols │ ├── bundlerImportTsExtensions(allowimportingtsextensions=true,noemit=true).trace.json │ ├── bundlerImportTsExtensions(allowimportingtsextensions=true,noemit=true).types │ ├── bundlerNodeModules1(module=esnext).errors.txt │ ├── bundlerNodeModules1(module=esnext).js │ ├── bundlerNodeModules1(module=esnext).symbols │ ├── bundlerNodeModules1(module=esnext).trace.json │ ├── bundlerNodeModules1(module=esnext).types │ ├── bundlerNodeModules1(module=preserve).errors.txt │ ├── bundlerNodeModules1(module=preserve).js │ ├── bundlerNodeModules1(module=preserve).symbols │ ├── bundlerNodeModules1(module=preserve).trace.json │ ├── bundlerNodeModules1(module=preserve).types │ ├── bundlerOptionsCompat.errors.txt │ ├── bundlerRelative1(module=esnext).errors.txt │ ├── bundlerRelative1(module=esnext).js │ ├── bundlerRelative1(module=esnext).symbols │ ├── bundlerRelative1(module=esnext).trace.json │ ├── bundlerRelative1(module=esnext).types │ ├── bundlerRelative1(module=preserve).errors.txt │ ├── bundlerRelative1(module=preserve).js │ ├── bundlerRelative1(module=preserve).symbols │ ├── bundlerRelative1(module=preserve).trace.json │ ├── bundlerRelative1(module=preserve).types │ ├── bundlerSyntaxRestrictions(module=esnext).errors.txt │ ├── bundlerSyntaxRestrictions(module=esnext).js │ ├── bundlerSyntaxRestrictions(module=esnext).symbols │ ├── bundlerSyntaxRestrictions(module=esnext).types │ ├── bundlerSyntaxRestrictions(module=preserve).js │ ├── bundlerSyntaxRestrictions(module=preserve).symbols │ ├── bundlerSyntaxRestrictions(module=preserve).types │ ├── cacheResolutions.errors.txt │ ├── cacheResolutions.js │ ├── cacheResolutions.symbols │ ├── cacheResolutions.trace.json │ ├── cacheResolutions.types │ ├── cachedContextualTypes.js │ ├── cachedContextualTypes.symbols │ ├── cachedContextualTypes.types │ ├── cachedModuleResolution1.js │ ├── cachedModuleResolution1.symbols │ ├── cachedModuleResolution1.trace.json │ ├── cachedModuleResolution1.types │ ├── cachedModuleResolution2.js │ ├── cachedModuleResolution2.symbols │ ├── cachedModuleResolution2.trace.json │ ├── cachedModuleResolution2.types │ ├── cachedModuleResolution3.errors.txt │ ├── cachedModuleResolution3.js │ ├── cachedModuleResolution3.symbols │ ├── cachedModuleResolution3.trace.json │ ├── cachedModuleResolution3.types │ ├── cachedModuleResolution4.errors.txt │ ├── cachedModuleResolution4.js │ ├── cachedModuleResolution4.symbols │ ├── cachedModuleResolution4.trace.json │ ├── cachedModuleResolution4.types │ ├── cachedModuleResolution5.js │ ├── cachedModuleResolution5.symbols │ ├── cachedModuleResolution5.trace.json │ ├── cachedModuleResolution5.types │ ├── cachedModuleResolution6.errors.txt │ ├── cachedModuleResolution6.js │ ├── cachedModuleResolution6.symbols │ ├── cachedModuleResolution6.trace.json │ ├── cachedModuleResolution6.types │ ├── cachedModuleResolution7.errors.txt │ ├── cachedModuleResolution7.js │ ├── cachedModuleResolution7.symbols │ ├── cachedModuleResolution7.trace.json │ ├── cachedModuleResolution7.types │ ├── cachedModuleResolution8.errors.txt │ ├── cachedModuleResolution8.js │ ├── cachedModuleResolution8.symbols │ ├── cachedModuleResolution8.trace.json │ ├── cachedModuleResolution8.types │ ├── cachedModuleResolution9.errors.txt │ ├── cachedModuleResolution9.js │ ├── cachedModuleResolution9.symbols │ ├── cachedModuleResolution9.trace.json │ ├── cachedModuleResolution9.types │ ├── callChain.2.js │ ├── callChain.2.symbols │ ├── callChain.2.types │ ├── callChain.3.errors.txt │ ├── callChain.3.js │ ├── callChain.3.symbols │ ├── callChain.3.types │ ├── callChain.js │ ├── callChain.symbols │ ├── callChain.types │ ├── callChainInference.js │ ├── callChainInference.symbols │ ├── callChainInference.types │ ├── callChainWithSuper(target=es2016).js │ ├── callChainWithSuper(target=es2017).js │ ├── callChainWithSuper(target=es2018).js │ ├── callChainWithSuper(target=es2019).js │ ├── callChainWithSuper(target=es2020).js │ ├── callChainWithSuper(target=es2021).js │ ├── callChainWithSuper(target=es2022).js │ ├── callChainWithSuper(target=es2023).js │ ├── callChainWithSuper(target=es2024).js │ ├── callChainWithSuper(target=es2025).js │ ├── callChainWithSuper(target=es5).errors.txt │ ├── callChainWithSuper(target=es5).js │ ├── callChainWithSuper(target=es6).js │ ├── callChainWithSuper(target=esnext).js │ ├── callConstructAssignment.errors.txt │ ├── callConstructAssignment.js │ ├── callConstructAssignment.symbols │ ├── callConstructAssignment.types │ ├── callExpressionWithMissingTypeArgument1.errors.txt │ ├── callExpressionWithMissingTypeArgument1.js │ ├── callExpressionWithMissingTypeArgument1.symbols │ ├── callExpressionWithMissingTypeArgument1.types │ ├── callExpressionWithTypeParameterConstrainedToOuterTypeParameter.errors.txt │ ├── callExpressionWithTypeParameterConstrainedToOuterTypeParameter.js │ ├── callExpressionWithTypeParameterConstrainedToOuterTypeParameter.symbols │ ├── callExpressionWithTypeParameterConstrainedToOuterTypeParameter.types │ ├── callGenericFunctionWithIncorrectNumberOfTypeArguments.errors.txt │ ├── callGenericFunctionWithIncorrectNumberOfTypeArguments.js │ ├── callGenericFunctionWithIncorrectNumberOfTypeArguments.symbols │ ├── callGenericFunctionWithIncorrectNumberOfTypeArguments.types │ ├── callGenericFunctionWithZeroTypeArguments.errors.txt │ ├── callGenericFunctionWithZeroTypeArguments.js │ ├── callGenericFunctionWithZeroTypeArguments.symbols │ ├── callGenericFunctionWithZeroTypeArguments.types │ ├── callHierarchyAccessor.callHierarchy.txt │ ├── callHierarchyCallExpressionByConstNamedFunctionExpression.callHierarchy.txt │ ├── callHierarchyClass.callHierarchy.txt │ ├── callHierarchyClassPropertyArrowFunction.callHierarchy.txt │ ├── callHierarchyClassStaticBlock.callHierarchy.txt │ ├── callHierarchyClassStaticBlock2.callHierarchy.txt │ ├── callHierarchyConstNamedArrowFunction.callHierarchy.txt │ ├── callHierarchyConstNamedClassExpression.callHierarchy.txt │ ├── callHierarchyConstNamedFunctionExpression.callHierarchy.txt │ ├── callHierarchyContainerName.callHierarchy.txt │ ├── callHierarchyContainerNameServer.callHierarchy.txt │ ├── callHierarchyCrossFile.callHierarchy.txt │ ├── callHierarchyDecorator.callHierarchy.txt │ ├── callHierarchyExportDefaultClass.callHierarchy.txt │ ├── callHierarchyExportDefaultFunction.callHierarchy.txt │ ├── callHierarchyExportEqualsFunction.callHierarchy.txt │ ├── callHierarchyFile.callHierarchy.txt │ ├── callHierarchyFunction.callHierarchy.txt │ ├── callHierarchyFunctionAmbiguity.1.callHierarchy.txt │ ├── callHierarchyFunctionAmbiguity.2.callHierarchy.txt │ ├── callHierarchyFunctionAmbiguity.3.callHierarchy.txt │ ├── callHierarchyFunctionAmbiguity.4.callHierarchy.txt │ ├── callHierarchyFunctionAmbiguity.5.callHierarchy.txt │ ├── callHierarchyInterfaceMethod.callHierarchy.txt │ ├── callHierarchyJsxElement.callHierarchy.txt │ ├── callHierarchyTaggedTemplate.callHierarchy.txt │ ├── callNonGenericFunctionWithTypeArguments.errors.txt │ ├── callNonGenericFunctionWithTypeArguments.js │ ├── callNonGenericFunctionWithTypeArguments.symbols │ ├── callNonGenericFunctionWithTypeArguments.types │ ├── callOfConditionalTypeWithConcreteBranches.js │ ├── callOfConditionalTypeWithConcreteBranches.symbols │ ├── callOfConditionalTypeWithConcreteBranches.types │ ├── callOfPropertylessConstructorFunction.errors.txt │ ├── callOfPropertylessConstructorFunction.symbols │ ├── callOfPropertylessConstructorFunction.types │ ├── callOnClass.errors.txt │ ├── callOnClass.js │ ├── callOnClass.symbols │ ├── callOnClass.types │ ├── callOnInstance.errors.txt │ ├── callOnInstance.js │ ├── callOnInstance.symbols │ ├── callOnInstance.types │ ├── callOverload.errors.txt │ ├── callOverload.js │ ├── callOverload.symbols │ ├── callOverload.types │ ├── callOverloadViaElementAccessExpression.errors.txt │ ├── callOverloadViaElementAccessExpression.js │ ├── callOverloadViaElementAccessExpression.symbols │ ├── callOverloadViaElementAccessExpression.types │ ├── callOverloads1.errors.txt │ ├── callOverloads1.js │ ├── callOverloads1.symbols │ ├── callOverloads1.types │ ├── callOverloads2.errors.txt │ ├── callOverloads2.js │ ├── callOverloads2.symbols │ ├── callOverloads2.types │ ├── callOverloads3.errors.txt │ ├── callOverloads3.js │ ├── callOverloads3.symbols │ ├── callOverloads3.types │ ├── callOverloads4.errors.txt │ ├── callOverloads4.js │ ├── callOverloads4.symbols │ ├── callOverloads4.types │ ├── callOverloads5.errors.txt │ ├── callOverloads5.js │ ├── callOverloads5.symbols │ ├── callOverloads5.types │ ├── callSignatureAssignabilityInInheritance.errors.txt │ ├── callSignatureAssignabilityInInheritance.js │ ├── callSignatureAssignabilityInInheritance.symbols │ ├── callSignatureAssignabilityInInheritance.types │ ├── callSignatureAssignabilityInInheritance2.errors.txt │ ├── callSignatureAssignabilityInInheritance2.js │ ├── callSignatureAssignabilityInInheritance2.symbols │ ├── callSignatureAssignabilityInInheritance2.types │ ├── callSignatureAssignabilityInInheritance3.errors.txt │ ├── callSignatureAssignabilityInInheritance3.js │ ├── callSignatureAssignabilityInInheritance3.symbols │ ├── callSignatureAssignabilityInInheritance3.types │ ├── callSignatureAssignabilityInInheritance4.errors.txt │ ├── callSignatureAssignabilityInInheritance4.js │ ├── callSignatureAssignabilityInInheritance4.symbols │ ├── callSignatureAssignabilityInInheritance4.types │ ├── callSignatureAssignabilityInInheritance5.errors.txt │ ├── callSignatureAssignabilityInInheritance5.js │ ├── callSignatureAssignabilityInInheritance5.symbols │ ├── callSignatureAssignabilityInInheritance5.types │ ├── callSignatureAssignabilityInInheritance6.errors.txt │ ├── callSignatureAssignabilityInInheritance6.js │ ├── callSignatureAssignabilityInInheritance6.symbols │ ├── callSignatureAssignabilityInInheritance6.types │ ├── callSignatureFunctionOverload.js │ ├── callSignatureFunctionOverload.symbols │ ├── callSignatureFunctionOverload.types │ ├── callSignatureWithOptionalParameterAndInitializer.errors.txt │ ├── callSignatureWithOptionalParameterAndInitializer.js │ ├── callSignatureWithOptionalParameterAndInitializer.symbols │ ├── callSignatureWithOptionalParameterAndInitializer.types │ ├── callSignatureWithoutAnnotationsOrBody.js │ ├── callSignatureWithoutAnnotationsOrBody.symbols │ ├── callSignatureWithoutAnnotationsOrBody.types │ ├── callSignatureWithoutReturnTypeAnnotationInference.js │ ├── callSignatureWithoutReturnTypeAnnotationInference.symbols │ ├── callSignatureWithoutReturnTypeAnnotationInference.types │ ├── callSignaturesShouldBeResolvedBeforeSpecialization.errors.txt │ ├── callSignaturesShouldBeResolvedBeforeSpecialization.js │ ├── callSignaturesShouldBeResolvedBeforeSpecialization.symbols │ ├── callSignaturesShouldBeResolvedBeforeSpecialization.types │ ├── callSignaturesThatDifferOnlyByReturnType.js │ ├── callSignaturesThatDifferOnlyByReturnType.symbols │ ├── callSignaturesThatDifferOnlyByReturnType.types │ ├── callSignaturesThatDifferOnlyByReturnType2.errors.txt │ ├── callSignaturesThatDifferOnlyByReturnType2.js │ ├── callSignaturesThatDifferOnlyByReturnType2.symbols │ ├── callSignaturesThatDifferOnlyByReturnType2.types │ ├── callSignaturesThatDifferOnlyByReturnType3.js │ ├── callSignaturesThatDifferOnlyByReturnType3.symbols │ ├── callSignaturesThatDifferOnlyByReturnType3.types │ ├── callSignaturesWithAccessibilityModifiersOnParameters.errors.txt │ ├── callSignaturesWithAccessibilityModifiersOnParameters.js │ ├── callSignaturesWithAccessibilityModifiersOnParameters.symbols │ ├── callSignaturesWithAccessibilityModifiersOnParameters.types │ ├── callSignaturesWithDuplicateParameters.errors.txt │ ├── callSignaturesWithDuplicateParameters.js │ ├── callSignaturesWithDuplicateParameters.symbols │ ├── callSignaturesWithDuplicateParameters.types │ ├── callSignaturesWithOptionalParameters.js │ ├── callSignaturesWithOptionalParameters.symbols │ ├── callSignaturesWithOptionalParameters.types │ ├── callSignaturesWithOptionalParameters2.js │ ├── callSignaturesWithOptionalParameters2.symbols │ ├── callSignaturesWithOptionalParameters2.types │ ├── callSignaturesWithParameterInitializers.errors.txt │ ├── callSignaturesWithParameterInitializers.js │ ├── callSignaturesWithParameterInitializers.symbols │ ├── callSignaturesWithParameterInitializers.types │ ├── callSignaturesWithParameterInitializers2.errors.txt │ ├── callSignaturesWithParameterInitializers2.js │ ├── callSignaturesWithParameterInitializers2.symbols │ ├── callSignaturesWithParameterInitializers2.types │ ├── callWithMissingVoid.errors.txt │ ├── callWithMissingVoid.js │ ├── callWithMissingVoid.symbols │ ├── callWithMissingVoid.types │ ├── callWithMissingVoidUndefinedUnknownAnyInJs(strict=false).errors.txt │ ├── callWithMissingVoidUndefinedUnknownAnyInJs(strict=false).symbols │ ├── callWithMissingVoidUndefinedUnknownAnyInJs(strict=false).types │ ├── callWithMissingVoidUndefinedUnknownAnyInJs(strict=true).errors.txt │ ├── callWithMissingVoidUndefinedUnknownAnyInJs(strict=true).symbols │ ├── callWithMissingVoidUndefinedUnknownAnyInJs(strict=true).types │ ├── callWithSpread.errors.txt │ ├── callWithSpread.js │ ├── callWithSpread.symbols │ ├── callWithSpread.types │ ├── callWithSpread2.errors.txt │ ├── callWithSpread2.js │ ├── callWithSpread2.symbols │ ├── callWithSpread2.types │ ├── callWithSpread3.errors.txt │ ├── callWithSpread3.js │ ├── callWithSpread3.symbols │ ├── callWithSpread3.types │ ├── callWithSpread4.errors.txt │ ├── callWithSpread4.js │ ├── callWithSpread4.symbols │ ├── callWithSpread4.types │ ├── callWithSpread5.errors.txt │ ├── callWithSpread5.js │ ├── callWithSpread5.symbols │ ├── callWithSpread5.types │ ├── callWithSpreadES6.js │ ├── callWithSpreadES6.symbols │ ├── callWithSpreadES6.types │ ├── callWithWrongNumberOfTypeArguments.errors.txt │ ├── callWithWrongNumberOfTypeArguments.js │ ├── callWithWrongNumberOfTypeArguments.symbols │ ├── callWithWrongNumberOfTypeArguments.types │ ├── callbackArgsDifferByOptionality.errors.txt │ ├── callbackArgsDifferByOptionality.js │ ├── callbackArgsDifferByOptionality.symbols │ ├── callbackArgsDifferByOptionality.types │ ├── callbackCrossModule.symbols │ ├── callbackCrossModule.types │ ├── callbackOnConstructor.js │ ├── callbackOnConstructor.symbols │ ├── callbackOnConstructor.types │ ├── callbackTag1.symbols │ ├── callbackTag1.types │ ├── callbackTag2.errors.txt │ ├── callbackTag2.symbols │ ├── callbackTag2.types │ ├── callbackTag3.symbols │ ├── callbackTag3.types │ ├── callbackTag4.symbols │ ├── callbackTag4.types │ ├── callbackTagNamespace.symbols │ ├── callbackTagNamespace.types │ ├── callbackTagNestedParameter.js │ ├── callbackTagNestedParameter.symbols │ ├── callbackTagNestedParameter.types │ ├── callbackTagVariadicType.js │ ├── callbackTagVariadicType.symbols │ ├── callbackTagVariadicType.types │ ├── callbacksDontShareTypes.errors.txt │ ├── callbacksDontShareTypes.js │ ├── callbacksDontShareTypes.symbols │ ├── callbacksDontShareTypes.types │ ├── callsOnComplexSignatures.js │ ├── callsOnComplexSignatures.symbols │ ├── callsOnComplexSignatures.types │ ├── canFollowGetSetKeyword.errors.txt │ ├── canFollowGetSetKeyword.js │ ├── canWatch/ │ │ ├── canWatchAffectingLocationDos.baseline.md │ │ ├── canWatchAffectingLocationPosix.baseline.md │ │ ├── canWatchAffectingLocationUnc.baseline.md │ │ ├── canWatchAffectingLocationUncDos.baseline.md │ │ ├── canWatchAtTypesDos.baseline.md │ │ ├── canWatchAtTypesPosix.baseline.md │ │ ├── canWatchAtTypesUnc.baseline.md │ │ ├── canWatchAtTypesUncDos.baseline.md │ │ ├── canWatchDirectoryOrFileDos.baseline.md │ │ ├── canWatchDirectoryOrFilePosix.baseline.md │ │ ├── canWatchDirectoryOrFileUnc.baseline.md │ │ ├── canWatchDirectoryOrFileUncDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationAtTypesIndirDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationAtTypesIndirNonRecursiveDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationAtTypesIndirNonRecursivePosix.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationAtTypesIndirNonRecursiveUnc.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationAtTypesIndirNonRecursiveUncDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationAtTypesIndirPosix.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationAtTypesIndirUnc.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationAtTypesIndirUncDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationAtTypesInfileDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationAtTypesInfileNonRecursiveDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationAtTypesInfileNonRecursivePosix.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationAtTypesInfileNonRecursiveUnc.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationAtTypesInfileNonRecursiveUncDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationAtTypesInfilePosix.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationAtTypesInfileUnc.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationAtTypesInfileUncDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationAtTypesInsubDirDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationAtTypesInsubDirNonRecursiveDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationAtTypesInsubDirNonRecursivePosix.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationAtTypesInsubDirNonRecursiveUnc.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationAtTypesInsubDirNonRecursiveUncDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationAtTypesInsubDirPosix.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationAtTypesInsubDirUnc.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationAtTypesInsubDirUncDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationFromTypeRootDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationFromTypeRootNonRecursiveDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationFromTypeRootNonRecursivePosix.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationFromTypeRootNonRecursiveUnc.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationFromTypeRootNonRecursiveUncDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationFromTypeRootPosix.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationFromTypeRootUnc.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationFromTypeRootUncDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationIndirDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationIndirNonRecursiveDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationIndirNonRecursivePosix.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationIndirNonRecursiveUnc.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationIndirNonRecursiveUncDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationIndirPosix.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationIndirUnc.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationIndirUncDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationInfileDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationInfileNonRecursiveDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationInfileNonRecursivePosix.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationInfileNonRecursiveUnc.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationInfileNonRecursiveUncDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationInfilePosix.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationInfileUnc.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationInfileUncDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationInsubDirDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationInsubDirNonRecursiveDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationInsubDirNonRecursivePosix.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationInsubDirNonRecursiveUnc.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationInsubDirNonRecursiveUncDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationInsubDirPosix.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationInsubDirUnc.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationInsubDirUncDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationNodeModulesIndirDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationNodeModulesIndirNonRecursiveDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationNodeModulesIndirNonRecursivePosix.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationNodeModulesIndirNonRecursiveUnc.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationNodeModulesIndirNonRecursiveUncDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationNodeModulesIndirPosix.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationNodeModulesIndirUnc.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationNodeModulesIndirUncDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationNodeModulesInfileDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationNodeModulesInfileNonRecursiveDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationNodeModulesInfileNonRecursivePosix.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationNodeModulesInfileNonRecursiveUnc.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationNodeModulesInfileNonRecursiveUncDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationNodeModulesInfilePosix.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationNodeModulesInfileUnc.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationNodeModulesInfileUncDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationNodeModulesInsubDirDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationNodeModulesInsubDirNonRecursiveDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationNodeModulesInsubDirNonRecursivePosix.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationNodeModulesInsubDirNonRecursiveUnc.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationNodeModulesInsubDirNonRecursiveUncDos.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationNodeModulesInsubDirPosix.baseline.md │ │ ├── getDirectoryToWatchFailedLookupLocationNodeModulesInsubDirUnc.baseline.md │ │ └── getDirectoryToWatchFailedLookupLocationNodeModulesInsubDirUncDos.baseline.md │ ├── cancellationWhenfindingAllRefsOnDefinition.baseline.jsonc │ ├── cannotIndexGenericWritingError.errors.txt │ ├── cannotIndexGenericWritingError.symbols │ ├── cannotIndexGenericWritingError.types │ ├── cannotInvokeNewOnErrorExpression.errors.txt │ ├── cannotInvokeNewOnErrorExpression.js │ ├── cannotInvokeNewOnErrorExpression.symbols │ ├── cannotInvokeNewOnErrorExpression.types │ ├── cannotInvokeNewOnIndexExpression.errors.txt │ ├── cannotInvokeNewOnIndexExpression.js │ ├── cannotInvokeNewOnIndexExpression.symbols │ ├── cannotInvokeNewOnIndexExpression.types │ ├── captureSuperPropertyAccessInSuperCall01.js │ ├── captureSuperPropertyAccessInSuperCall01.symbols │ ├── captureSuperPropertyAccessInSuperCall01.types │ ├── captureThisInSuperCall.js │ ├── captureThisInSuperCall.symbols │ ├── captureThisInSuperCall.types │ ├── capturedLetConstInLoop1.js │ ├── capturedLetConstInLoop1.symbols │ ├── capturedLetConstInLoop1.types │ ├── capturedLetConstInLoop10.js │ ├── capturedLetConstInLoop10.symbols │ ├── capturedLetConstInLoop10.types │ ├── capturedLetConstInLoop10_ES6.js │ ├── capturedLetConstInLoop10_ES6.symbols │ ├── capturedLetConstInLoop10_ES6.types │ ├── capturedLetConstInLoop11.js │ ├── capturedLetConstInLoop11.symbols │ ├── capturedLetConstInLoop11.types │ ├── capturedLetConstInLoop11_ES6.js │ ├── capturedLetConstInLoop11_ES6.symbols │ ├── capturedLetConstInLoop11_ES6.types │ ├── capturedLetConstInLoop12.js │ ├── capturedLetConstInLoop12.symbols │ ├── capturedLetConstInLoop12.types │ ├── capturedLetConstInLoop13.js │ ├── capturedLetConstInLoop13.symbols │ ├── capturedLetConstInLoop13.types │ ├── capturedLetConstInLoop14(target=es2015).errors.txt │ ├── capturedLetConstInLoop14(target=es2015).js │ ├── capturedLetConstInLoop14(target=es5).errors.txt │ ├── capturedLetConstInLoop14(target=es5).js │ ├── capturedLetConstInLoop1_ES6.js │ ├── capturedLetConstInLoop1_ES6.symbols │ ├── capturedLetConstInLoop1_ES6.types │ ├── capturedLetConstInLoop2.js │ ├── capturedLetConstInLoop2.symbols │ ├── capturedLetConstInLoop2.types │ ├── capturedLetConstInLoop2_ES6.js │ ├── capturedLetConstInLoop2_ES6.symbols │ ├── capturedLetConstInLoop2_ES6.types │ ├── capturedLetConstInLoop3.js │ ├── capturedLetConstInLoop3.symbols │ ├── capturedLetConstInLoop3.types │ ├── capturedLetConstInLoop3_ES6.js │ ├── capturedLetConstInLoop3_ES6.symbols │ ├── capturedLetConstInLoop3_ES6.types │ ├── capturedLetConstInLoop4.errors.txt │ ├── capturedLetConstInLoop4.js │ ├── capturedLetConstInLoop4.symbols │ ├── capturedLetConstInLoop4.types │ ├── capturedLetConstInLoop4_ES6.js │ ├── capturedLetConstInLoop4_ES6.symbols │ ├── capturedLetConstInLoop4_ES6.types │ ├── capturedLetConstInLoop5.errors.txt │ ├── capturedLetConstInLoop5.js │ ├── capturedLetConstInLoop5.symbols │ ├── capturedLetConstInLoop5.types │ ├── capturedLetConstInLoop5_ES6.errors.txt │ ├── capturedLetConstInLoop5_ES6.js │ ├── capturedLetConstInLoop5_ES6.symbols │ ├── capturedLetConstInLoop5_ES6.types │ ├── capturedLetConstInLoop6.errors.txt │ ├── capturedLetConstInLoop6.js │ ├── capturedLetConstInLoop6.symbols │ ├── capturedLetConstInLoop6.types │ ├── capturedLetConstInLoop6_ES6.errors.txt │ ├── capturedLetConstInLoop6_ES6.js │ ├── capturedLetConstInLoop6_ES6.symbols │ ├── capturedLetConstInLoop6_ES6.types │ ├── capturedLetConstInLoop7.errors.txt │ ├── capturedLetConstInLoop7.js │ ├── capturedLetConstInLoop7.symbols │ ├── capturedLetConstInLoop7.types │ ├── capturedLetConstInLoop7_ES6.errors.txt │ ├── capturedLetConstInLoop7_ES6.js │ ├── capturedLetConstInLoop7_ES6.symbols │ ├── capturedLetConstInLoop7_ES6.types │ ├── capturedLetConstInLoop8.errors.txt │ ├── capturedLetConstInLoop8.js │ ├── capturedLetConstInLoop8.symbols │ ├── capturedLetConstInLoop8.types │ ├── capturedLetConstInLoop8_ES6.errors.txt │ ├── capturedLetConstInLoop8_ES6.js │ ├── capturedLetConstInLoop8_ES6.symbols │ ├── capturedLetConstInLoop8_ES6.types │ ├── capturedLetConstInLoop9.js │ ├── capturedLetConstInLoop9.symbols │ ├── capturedLetConstInLoop9.types │ ├── capturedLetConstInLoop9_ES6.js │ ├── capturedLetConstInLoop9_ES6.symbols │ ├── capturedLetConstInLoop9_ES6.types │ ├── capturedParametersInInitializers1.errors.txt │ ├── capturedParametersInInitializers1.js │ ├── capturedParametersInInitializers1.symbols │ ├── capturedParametersInInitializers1.types │ ├── capturedParametersInInitializers2(target=es2015).errors.txt │ ├── capturedParametersInInitializers2(target=es2015).js │ ├── capturedParametersInInitializers2(target=es2015).symbols │ ├── capturedParametersInInitializers2(target=es2015).types │ ├── capturedParametersInInitializers2(target=es5).errors.txt │ ├── capturedParametersInInitializers2(target=es5).js │ ├── capturedParametersInInitializers2(target=es5).symbols │ ├── capturedParametersInInitializers2(target=es5).types │ ├── capturedShorthandPropertyAssignmentNoCheck(target=es2015).js │ ├── capturedShorthandPropertyAssignmentNoCheck(target=es2015).symbols │ ├── capturedShorthandPropertyAssignmentNoCheck(target=es2015).types │ ├── capturedShorthandPropertyAssignmentNoCheck(target=es5).errors.txt │ ├── capturedShorthandPropertyAssignmentNoCheck(target=es5).js │ ├── capturedShorthandPropertyAssignmentNoCheck(target=es5).symbols │ ├── capturedShorthandPropertyAssignmentNoCheck(target=es5).types │ ├── capturedVarInLoop(target=es2015).js │ ├── capturedVarInLoop(target=es2015).symbols │ ├── capturedVarInLoop(target=es2015).types │ ├── capturedVarInLoop(target=es5).errors.txt │ ├── capturedVarInLoop(target=es5).js │ ├── capturedVarInLoop(target=es5).symbols │ ├── capturedVarInLoop(target=es5).types │ ├── caseInsensitiveFileSystemWithCapsImportTypeDeclarations.js │ ├── caseInsensitiveFileSystemWithCapsImportTypeDeclarations.symbols │ ├── caseInsensitiveFileSystemWithCapsImportTypeDeclarations.types │ ├── castExpressionParentheses.js │ ├── castExpressionParentheses.symbols │ ├── castExpressionParentheses.types │ ├── castFunctionExpressionShouldBeParenthesized.js │ ├── castFunctionExpressionShouldBeParenthesized.symbols │ ├── castFunctionExpressionShouldBeParenthesized.types │ ├── castNewObjectBug.js │ ├── castNewObjectBug.symbols │ ├── castNewObjectBug.types │ ├── castOfAwait.errors.txt │ ├── castOfAwait.js │ ├── castOfAwait.symbols │ ├── castOfAwait.types │ ├── castOfYield.errors.txt │ ├── castOfYield.js │ ├── castOfYield.symbols │ ├── castOfYield.types │ ├── castParentheses.js │ ├── castParentheses.symbols │ ├── castParentheses.types │ ├── castTest.errors.txt │ ├── castTest.js │ ├── castTest.symbols │ ├── castTest.types │ ├── castingTuple.errors.txt │ ├── castingTuple.js │ ├── castingTuple.symbols │ ├── castingTuple.types │ ├── catch.js │ ├── catch.symbols │ ├── catch.types │ ├── catchClauseWithInitializer1.errors.txt │ ├── catchClauseWithInitializer1.js │ ├── catchClauseWithInitializer1.symbols │ ├── catchClauseWithInitializer1.types │ ├── catchClauseWithTypeAnnotation.errors.txt │ ├── catchClauseWithTypeAnnotation.js │ ├── catchClauseWithTypeAnnotation.symbols │ ├── catchClauseWithTypeAnnotation.types │ ├── cf.errors.txt │ ├── cf.js │ ├── cf.symbols │ ├── cf.types │ ├── chained.errors.txt │ ├── chained.js │ ├── chained.symbols │ ├── chained.types │ ├── chained2.errors.txt │ ├── chained2.js │ ├── chained2.symbols │ ├── chained2.types │ ├── chainedAssignment1.errors.txt │ ├── chainedAssignment1.js │ ├── chainedAssignment1.symbols │ ├── chainedAssignment1.types │ ├── chainedAssignment2.errors.txt │ ├── chainedAssignment2.js │ ├── chainedAssignment2.symbols │ ├── chainedAssignment2.types │ ├── chainedAssignment3.errors.txt │ ├── chainedAssignment3.js │ ├── chainedAssignment3.symbols │ ├── chainedAssignment3.types │ ├── chainedAssignmentChecking.errors.txt │ ├── chainedAssignmentChecking.js │ ├── chainedAssignmentChecking.symbols │ ├── chainedAssignmentChecking.types │ ├── chainedCallsWithTypeParameterConstrainedToOtherTypeParameter.errors.txt │ ├── chainedCallsWithTypeParameterConstrainedToOtherTypeParameter.js │ ├── chainedCallsWithTypeParameterConstrainedToOtherTypeParameter.symbols │ ├── chainedCallsWithTypeParameterConstrainedToOtherTypeParameter.types │ ├── chainedCallsWithTypeParameterConstrainedToOtherTypeParameter2.errors.txt │ ├── chainedCallsWithTypeParameterConstrainedToOtherTypeParameter2.js │ ├── chainedCallsWithTypeParameterConstrainedToOtherTypeParameter2.symbols │ ├── chainedCallsWithTypeParameterConstrainedToOtherTypeParameter2.types │ ├── chainedImportAlias.js │ ├── chainedImportAlias.symbols │ ├── chainedImportAlias.types │ ├── chainedPrototypeAssignment.errors.txt │ ├── chainedPrototypeAssignment.symbols │ ├── chainedPrototypeAssignment.types │ ├── chainedSpecializationToObjectTypeLiteral.errors.txt │ ├── chainedSpecializationToObjectTypeLiteral.js │ ├── chainedSpecializationToObjectTypeLiteral.symbols │ ├── chainedSpecializationToObjectTypeLiteral.types │ ├── checkDestructuringShorthandAssigment.errors.txt │ ├── checkDestructuringShorthandAssigment.symbols │ ├── checkDestructuringShorthandAssigment.types │ ├── checkDestructuringShorthandAssigment2.errors.txt │ ├── checkDestructuringShorthandAssigment2.symbols │ ├── checkDestructuringShorthandAssigment2.types │ ├── checkExportsObjectAssignProperty.errors.txt │ ├── checkExportsObjectAssignProperty.symbols │ ├── checkExportsObjectAssignProperty.types │ ├── checkExportsObjectAssignPrototypeProperty.errors.txt │ ├── checkExportsObjectAssignPrototypeProperty.symbols │ ├── checkExportsObjectAssignPrototypeProperty.types │ ├── checkForObjectTooStrict(target=es2015).errors.txt │ ├── checkForObjectTooStrict(target=es2015).js │ ├── checkForObjectTooStrict(target=es2015).symbols │ ├── checkForObjectTooStrict(target=es2015).types │ ├── checkForObjectTooStrict(target=es5).errors.txt │ ├── checkForObjectTooStrict(target=es5).js │ ├── checkForObjectTooStrict(target=es5).symbols │ ├── checkForObjectTooStrict(target=es5).types │ ├── checkIndexConstraintOfJavascriptClassExpression.errors.txt │ ├── checkIndexConstraintOfJavascriptClassExpression.symbols │ ├── checkIndexConstraintOfJavascriptClassExpression.types │ ├── checkInfiniteExpansionTermination.js │ ├── checkInfiniteExpansionTermination.symbols │ ├── checkInfiniteExpansionTermination.types │ ├── checkInfiniteExpansionTermination2.js │ ├── checkInfiniteExpansionTermination2.symbols │ ├── checkInfiniteExpansionTermination2.types │ ├── checkInheritedProperty.errors.txt │ ├── checkInheritedProperty.symbols │ ├── checkInheritedProperty.types │ ├── checkInterfaceBases.js │ ├── checkInterfaceBases.symbols │ ├── checkInterfaceBases.types │ ├── checkJsFiles.errors.txt │ ├── checkJsFiles.symbols │ ├── checkJsFiles.types │ ├── checkJsFiles2.errors.txt │ ├── checkJsFiles2.symbols │ ├── checkJsFiles2.types │ ├── checkJsFiles3.errors.txt │ ├── checkJsFiles3.symbols │ ├── checkJsFiles3.types │ ├── checkJsFiles4.errors.txt │ ├── checkJsFiles4.symbols │ ├── checkJsFiles4.types │ ├── checkJsFiles5.symbols │ ├── checkJsFiles5.types │ ├── checkJsFiles6.errors.txt │ ├── checkJsFiles7.symbols │ ├── checkJsFiles7.types │ ├── checkJsFiles_noErrorLocation.symbols │ ├── checkJsFiles_noErrorLocation.types │ ├── checkJsFiles_skipDiagnostics.errors.txt │ ├── checkJsFiles_skipDiagnostics.symbols │ ├── checkJsFiles_skipDiagnostics.types │ ├── checkJsObjectLiteralHasCheckedKeyof.errors.txt │ ├── checkJsObjectLiteralHasCheckedKeyof.js │ ├── checkJsObjectLiteralHasCheckedKeyof.symbols │ ├── checkJsObjectLiteralHasCheckedKeyof.types │ ├── checkJsObjectLiteralIndexSignatures.js │ ├── checkJsObjectLiteralIndexSignatures.symbols │ ├── checkJsObjectLiteralIndexSignatures.types │ ├── checkJsTypeDefNoUnusedLocalMarked.errors.txt │ ├── checkJsTypeDefNoUnusedLocalMarked.symbols │ ├── checkJsTypeDefNoUnusedLocalMarked.types │ ├── checkJsdocOnEndOfFile.errors.txt │ ├── checkJsdocOnEndOfFile.js │ ├── checkJsdocOnEndOfFile.symbols │ ├── checkJsdocOnEndOfFile.types │ ├── checkJsdocOptionalParamOrder.errors.txt │ ├── checkJsdocOptionalParamOrder.js │ ├── checkJsdocOptionalParamOrder.symbols │ ├── checkJsdocOptionalParamOrder.types │ ├── checkJsdocParamOnVariableDeclaredFunctionExpression.errors.txt │ ├── checkJsdocParamOnVariableDeclaredFunctionExpression.js │ ├── checkJsdocParamOnVariableDeclaredFunctionExpression.symbols │ ├── checkJsdocParamOnVariableDeclaredFunctionExpression.types │ ├── checkJsdocParamTag1.js │ ├── checkJsdocParamTag1.symbols │ ├── checkJsdocParamTag1.types │ ├── checkJsdocReturnTag1.errors.txt │ ├── checkJsdocReturnTag1.js │ ├── checkJsdocReturnTag1.symbols │ ├── checkJsdocReturnTag1.types │ ├── checkJsdocReturnTag2.errors.txt │ ├── checkJsdocReturnTag2.js │ ├── checkJsdocReturnTag2.symbols │ ├── checkJsdocReturnTag2.types │ ├── checkJsdocSatisfiesTag1.errors.txt │ ├── checkJsdocSatisfiesTag1.symbols │ ├── checkJsdocSatisfiesTag1.types │ ├── checkJsdocSatisfiesTag10.errors.txt │ ├── checkJsdocSatisfiesTag10.symbols │ ├── checkJsdocSatisfiesTag10.types │ ├── checkJsdocSatisfiesTag11.errors.txt │ ├── checkJsdocSatisfiesTag11.symbols │ ├── checkJsdocSatisfiesTag11.types │ ├── checkJsdocSatisfiesTag12.errors.txt │ ├── checkJsdocSatisfiesTag12.symbols │ ├── checkJsdocSatisfiesTag12.types │ ├── checkJsdocSatisfiesTag13.errors.txt │ ├── checkJsdocSatisfiesTag13.symbols │ ├── checkJsdocSatisfiesTag13.types │ ├── checkJsdocSatisfiesTag14.errors.txt │ ├── checkJsdocSatisfiesTag14.symbols │ ├── checkJsdocSatisfiesTag14.types │ ├── checkJsdocSatisfiesTag15.errors.txt │ ├── checkJsdocSatisfiesTag15.js │ ├── checkJsdocSatisfiesTag15.symbols │ ├── checkJsdocSatisfiesTag15.types │ ├── checkJsdocSatisfiesTag2.symbols │ ├── checkJsdocSatisfiesTag2.types │ ├── checkJsdocSatisfiesTag3.errors.txt │ ├── checkJsdocSatisfiesTag3.symbols │ ├── checkJsdocSatisfiesTag3.types │ ├── checkJsdocSatisfiesTag4.errors.txt │ ├── checkJsdocSatisfiesTag4.symbols │ ├── checkJsdocSatisfiesTag4.types │ ├── checkJsdocSatisfiesTag5.symbols │ ├── checkJsdocSatisfiesTag5.types │ ├── checkJsdocSatisfiesTag6.errors.txt │ ├── checkJsdocSatisfiesTag6.symbols │ ├── checkJsdocSatisfiesTag6.types │ ├── checkJsdocSatisfiesTag7.errors.txt │ ├── checkJsdocSatisfiesTag7.symbols │ ├── checkJsdocSatisfiesTag7.types │ ├── checkJsdocSatisfiesTag8.errors.txt │ ├── checkJsdocSatisfiesTag8.symbols │ ├── checkJsdocSatisfiesTag8.types │ ├── checkJsdocSatisfiesTag9.errors.txt │ ├── checkJsdocSatisfiesTag9.symbols │ ├── checkJsdocSatisfiesTag9.types │ ├── checkJsdocTypeTag1.errors.txt │ ├── checkJsdocTypeTag1.js │ ├── checkJsdocTypeTag1.symbols │ ├── checkJsdocTypeTag1.types │ ├── checkJsdocTypeTag2.errors.txt │ ├── checkJsdocTypeTag2.js │ ├── checkJsdocTypeTag2.symbols │ ├── checkJsdocTypeTag2.types │ ├── checkJsdocTypeTag3.symbols │ ├── checkJsdocTypeTag3.types │ ├── checkJsdocTypeTag4.errors.txt │ ├── checkJsdocTypeTag4.symbols │ ├── checkJsdocTypeTag4.types │ ├── checkJsdocTypeTag5.errors.txt │ ├── checkJsdocTypeTag5.symbols │ ├── checkJsdocTypeTag5.types │ ├── checkJsdocTypeTag6.errors.txt │ ├── checkJsdocTypeTag6.symbols │ ├── checkJsdocTypeTag6.types │ ├── checkJsdocTypeTag7.symbols │ ├── checkJsdocTypeTag7.types │ ├── checkJsdocTypeTag8.symbols │ ├── checkJsdocTypeTag8.types │ ├── checkJsdocTypeTagOnExportAssignment1.errors.txt │ ├── checkJsdocTypeTagOnExportAssignment1.js │ ├── checkJsdocTypeTagOnExportAssignment1.symbols │ ├── checkJsdocTypeTagOnExportAssignment1.types │ ├── checkJsdocTypeTagOnExportAssignment2.errors.txt │ ├── checkJsdocTypeTagOnExportAssignment2.js │ ├── checkJsdocTypeTagOnExportAssignment2.symbols │ ├── checkJsdocTypeTagOnExportAssignment2.types │ ├── checkJsdocTypeTagOnExportAssignment3.errors.txt │ ├── checkJsdocTypeTagOnExportAssignment3.js │ ├── checkJsdocTypeTagOnExportAssignment3.symbols │ ├── checkJsdocTypeTagOnExportAssignment3.types │ ├── checkJsdocTypeTagOnExportAssignment4.errors.txt │ ├── checkJsdocTypeTagOnExportAssignment4.js │ ├── checkJsdocTypeTagOnExportAssignment4.symbols │ ├── checkJsdocTypeTagOnExportAssignment4.types │ ├── checkJsdocTypeTagOnExportAssignment5.js │ ├── checkJsdocTypeTagOnExportAssignment5.symbols │ ├── checkJsdocTypeTagOnExportAssignment5.types │ ├── checkJsdocTypeTagOnExportAssignment6.errors.txt │ ├── checkJsdocTypeTagOnExportAssignment6.js │ ├── checkJsdocTypeTagOnExportAssignment6.symbols │ ├── checkJsdocTypeTagOnExportAssignment6.types │ ├── checkJsdocTypeTagOnExportAssignment7.js │ ├── checkJsdocTypeTagOnExportAssignment7.symbols │ ├── checkJsdocTypeTagOnExportAssignment7.types │ ├── checkJsdocTypeTagOnExportAssignment8.js │ ├── checkJsdocTypeTagOnExportAssignment8.symbols │ ├── checkJsdocTypeTagOnExportAssignment8.types │ ├── checkJsdocTypeTagOnObjectProperty1.js │ ├── checkJsdocTypeTagOnObjectProperty1.symbols │ ├── checkJsdocTypeTagOnObjectProperty1.types │ ├── checkJsdocTypeTagOnObjectProperty2.errors.txt │ ├── checkJsdocTypeTagOnObjectProperty2.js │ ├── checkJsdocTypeTagOnObjectProperty2.symbols │ ├── checkJsdocTypeTagOnObjectProperty2.types │ ├── checkJsdocTypedefInParamTag1.js │ ├── checkJsdocTypedefInParamTag1.symbols │ ├── checkJsdocTypedefInParamTag1.types │ ├── checkJsdocTypedefOnlySourceFile.errors.txt │ ├── checkJsdocTypedefOnlySourceFile.js │ ├── checkJsdocTypedefOnlySourceFile.symbols │ ├── checkJsdocTypedefOnlySourceFile.types │ ├── checkJsxChildrenCanBeTupleType.errors.txt │ ├── checkJsxChildrenCanBeTupleType.js │ ├── checkJsxChildrenCanBeTupleType.symbols │ ├── checkJsxChildrenCanBeTupleType.types │ ├── checkJsxChildrenProperty1.js │ ├── checkJsxChildrenProperty1.symbols │ ├── checkJsxChildrenProperty1.types │ ├── checkJsxChildrenProperty10.errors.txt │ ├── checkJsxChildrenProperty10.js │ ├── checkJsxChildrenProperty10.symbols │ ├── checkJsxChildrenProperty10.types │ ├── checkJsxChildrenProperty11.errors.txt │ ├── checkJsxChildrenProperty11.js │ ├── checkJsxChildrenProperty11.symbols │ ├── checkJsxChildrenProperty11.types │ ├── checkJsxChildrenProperty12.errors.txt │ ├── checkJsxChildrenProperty12.js │ ├── checkJsxChildrenProperty12.symbols │ ├── checkJsxChildrenProperty12.types │ ├── checkJsxChildrenProperty13.errors.txt │ ├── checkJsxChildrenProperty13.js │ ├── checkJsxChildrenProperty13.symbols │ ├── checkJsxChildrenProperty13.types │ ├── checkJsxChildrenProperty14.errors.txt │ ├── checkJsxChildrenProperty14.js │ ├── checkJsxChildrenProperty14.symbols │ ├── checkJsxChildrenProperty14.types │ ├── checkJsxChildrenProperty15.errors.txt │ ├── checkJsxChildrenProperty15.js │ ├── checkJsxChildrenProperty15.symbols │ ├── checkJsxChildrenProperty15.types │ ├── checkJsxChildrenProperty16.symbols │ ├── checkJsxChildrenProperty16.types │ ├── checkJsxChildrenProperty2.errors.txt │ ├── checkJsxChildrenProperty2.js │ ├── checkJsxChildrenProperty2.symbols │ ├── checkJsxChildrenProperty2.types │ ├── checkJsxChildrenProperty3.js │ ├── checkJsxChildrenProperty3.symbols │ ├── checkJsxChildrenProperty3.types │ ├── checkJsxChildrenProperty4.errors.txt │ ├── checkJsxChildrenProperty4.js │ ├── checkJsxChildrenProperty4.symbols │ ├── checkJsxChildrenProperty4.types │ ├── checkJsxChildrenProperty5.errors.txt │ ├── checkJsxChildrenProperty5.js │ ├── checkJsxChildrenProperty5.symbols │ ├── checkJsxChildrenProperty5.types │ ├── checkJsxChildrenProperty6.js │ ├── checkJsxChildrenProperty6.symbols │ ├── checkJsxChildrenProperty6.types │ ├── checkJsxChildrenProperty7.errors.txt │ ├── checkJsxChildrenProperty7.js │ ├── checkJsxChildrenProperty7.symbols │ ├── checkJsxChildrenProperty7.types │ ├── checkJsxChildrenProperty8.js │ ├── checkJsxChildrenProperty8.symbols │ ├── checkJsxChildrenProperty8.types │ ├── checkJsxChildrenProperty9.js │ ├── checkJsxChildrenProperty9.symbols │ ├── checkJsxChildrenProperty9.types │ ├── checkJsxGenericTagHasCorrectInferences.errors.txt │ ├── checkJsxGenericTagHasCorrectInferences.js │ ├── checkJsxGenericTagHasCorrectInferences.symbols │ ├── checkJsxGenericTagHasCorrectInferences.types │ ├── checkJsxIntersectionElementPropsType.js │ ├── checkJsxIntersectionElementPropsType.symbols │ ├── checkJsxIntersectionElementPropsType.types │ ├── checkJsxNamespaceNamesQuestionableForms.errors.txt │ ├── checkJsxNamespaceNamesQuestionableForms.js │ ├── checkJsxNamespaceNamesQuestionableForms.symbols │ ├── checkJsxNamespaceNamesQuestionableForms.types │ ├── checkJsxNotSetError.errors.txt │ ├── checkJsxNotSetError.js │ ├── checkJsxNotSetError.symbols │ ├── checkJsxNotSetError.types │ ├── checkJsxSubtleSkipContextSensitiveBug.js │ ├── checkJsxSubtleSkipContextSensitiveBug.symbols │ ├── checkJsxSubtleSkipContextSensitiveBug.types │ ├── checkJsxUnionSFXContextualTypeInferredCorrectly.js │ ├── checkJsxUnionSFXContextualTypeInferredCorrectly.symbols │ ├── checkJsxUnionSFXContextualTypeInferredCorrectly.types │ ├── checkMergedGlobalUMDSymbol.errors.txt │ ├── checkMergedGlobalUMDSymbol.js │ ├── checkMergedGlobalUMDSymbol.symbols │ ├── checkMergedGlobalUMDSymbol.types │ ├── checkObjectDefineProperty.errors.txt │ ├── checkObjectDefineProperty.symbols │ ├── checkObjectDefineProperty.types │ ├── checkOtherObjectAssignProperty.errors.txt │ ├── checkOtherObjectAssignProperty.symbols │ ├── checkOtherObjectAssignProperty.types │ ├── checkSpecialPropertyAssignments.errors.txt │ ├── checkSpecialPropertyAssignments.symbols │ ├── checkSpecialPropertyAssignments.types │ ├── checkSuperCallBeforeThisAccess.errors.txt │ ├── checkSuperCallBeforeThisAccess.js │ ├── checkSuperCallBeforeThisAccess.symbols │ ├── checkSuperCallBeforeThisAccess.types │ ├── checkSuperCallBeforeThisAccessing1.js │ ├── checkSuperCallBeforeThisAccessing1.symbols │ ├── checkSuperCallBeforeThisAccessing1.types │ ├── checkSuperCallBeforeThisAccessing2.errors.txt │ ├── checkSuperCallBeforeThisAccessing2.js │ ├── checkSuperCallBeforeThisAccessing2.symbols │ ├── checkSuperCallBeforeThisAccessing2.types │ ├── checkSuperCallBeforeThisAccessing3.js │ ├── checkSuperCallBeforeThisAccessing3.symbols │ ├── checkSuperCallBeforeThisAccessing3.types │ ├── checkSuperCallBeforeThisAccessing4.js │ ├── checkSuperCallBeforeThisAccessing4.symbols │ ├── checkSuperCallBeforeThisAccessing4.types │ ├── checkSuperCallBeforeThisAccessing5.errors.txt │ ├── checkSuperCallBeforeThisAccessing5.js │ ├── checkSuperCallBeforeThisAccessing5.symbols │ ├── checkSuperCallBeforeThisAccessing5.types │ ├── checkSuperCallBeforeThisAccessing6.js │ ├── checkSuperCallBeforeThisAccessing6.symbols │ ├── checkSuperCallBeforeThisAccessing6.types │ ├── checkSuperCallBeforeThisAccessing7.js │ ├── checkSuperCallBeforeThisAccessing7.symbols │ ├── checkSuperCallBeforeThisAccessing7.types │ ├── checkSuperCallBeforeThisAccessing8.errors.txt │ ├── checkSuperCallBeforeThisAccessing8.js │ ├── checkSuperCallBeforeThisAccessing8.symbols │ ├── checkSuperCallBeforeThisAccessing8.types │ ├── checkSuperCallBeforeThisAccessing9.errors.txt │ ├── checkSuperCallBeforeThisAccessing9.symbols │ ├── checkSuperCallBeforeThisAccessing9.types │ ├── checkSwitchStatementIfCaseTypeIsString.js │ ├── checkSwitchStatementIfCaseTypeIsString.symbols │ ├── checkSwitchStatementIfCaseTypeIsString.types │ ├── checkTypePredicateForRedundantProperties.errors.txt │ ├── checkTypePredicateForRedundantProperties.js │ ├── checkTypePredicateForRedundantProperties.symbols │ ├── checkTypePredicateForRedundantProperties.types │ ├── checkerInitializationCrash.errors.txt │ ├── checkerInitializationCrash.js │ ├── checkerInitializationCrash.symbols │ ├── checkerInitializationCrash.types │ ├── checkingObjectDefinePropertyOnFunctionNonexistentPropertyNoCrash1.errors.txt │ ├── checkingObjectDefinePropertyOnFunctionNonexistentPropertyNoCrash1.js │ ├── checkingObjectDefinePropertyOnFunctionNonexistentPropertyNoCrash1.symbols │ ├── checkingObjectDefinePropertyOnFunctionNonexistentPropertyNoCrash1.types │ ├── checkingObjectWithThisInNamePositionNoCrash.errors.txt │ ├── checkingObjectWithThisInNamePositionNoCrash.js │ ├── checkingObjectWithThisInNamePositionNoCrash.symbols │ ├── checkingObjectWithThisInNamePositionNoCrash.types │ ├── circular1.errors.txt │ ├── circular1.symbols │ ├── circular1.types │ ├── circular2.errors.txt │ ├── circular2.symbols │ ├── circular2.types │ ├── circular3.errors.txt │ ├── circular3.symbols │ ├── circular3.types │ ├── circular4.errors.txt │ ├── circular4.symbols │ ├── circular4.types │ ├── circularAccessorAnnotations.errors.txt │ ├── circularAccessorAnnotations.js │ ├── circularAccessorAnnotations.symbols │ ├── circularAccessorAnnotations.types │ ├── circularBaseConstraint.errors.txt │ ├── circularBaseConstraint.symbols │ ├── circularBaseConstraint.types │ ├── circularBaseTypes.errors.txt │ ├── circularBaseTypes.js │ ├── circularBaseTypes.symbols │ ├── circularBaseTypes.types │ ├── circularConstrainedMappedTypeNoCrash.js │ ├── circularConstrainedMappedTypeNoCrash.symbols │ ├── circularConstrainedMappedTypeNoCrash.types │ ├── circularConstraintYieldsAppropriateError.errors.txt │ ├── circularConstraintYieldsAppropriateError.js │ ├── circularConstraintYieldsAppropriateError.symbols │ ├── circularConstraintYieldsAppropriateError.types │ ├── circularConstructorWithReturn.js │ ├── circularConstructorWithReturn.symbols │ ├── circularConstructorWithReturn.types │ ├── circularContextualMappedType.js │ ├── circularContextualMappedType.symbols │ ├── circularContextualMappedType.types │ ├── circularContextualReturnType.js │ ├── circularContextualReturnType.symbols │ ├── circularContextualReturnType.types │ ├── circularGetAccessor(noimplicitany=false).errors.txt │ ├── circularGetAccessor(noimplicitany=false).js │ ├── circularGetAccessor(noimplicitany=false).symbols │ ├── circularGetAccessor(noimplicitany=false).types │ ├── circularGetAccessor(noimplicitany=true).errors.txt │ ├── circularGetAccessor(noimplicitany=true).js │ ├── circularGetAccessor(noimplicitany=true).symbols │ ├── circularGetAccessor(noimplicitany=true).types │ ├── circularImportAlias.errors.txt │ ├── circularImportAlias.js │ ├── circularImportAlias.symbols │ ├── circularImportAlias.types │ ├── circularIndexedAccessErrors.errors.txt │ ├── circularIndexedAccessErrors.js │ ├── circularIndexedAccessErrors.symbols │ ├── circularIndexedAccessErrors.types │ ├── circularInferredTypeOfVariable.js │ ├── circularInferredTypeOfVariable.symbols │ ├── circularInferredTypeOfVariable.types │ ├── circularInlineMappedGenericTupleTypeNoCrash.errors.txt │ ├── circularInlineMappedGenericTupleTypeNoCrash.symbols │ ├── circularInlineMappedGenericTupleTypeNoCrash.types │ ├── circularInstantiationExpression.js │ ├── circularInstantiationExpression.symbols │ ├── circularInstantiationExpression.types │ ├── circularMappedTypeConstraint.symbols │ ├── circularMappedTypeConstraint.types │ ├── circularModuleImports.errors.txt │ ├── circularModuleImports.js │ ├── circularModuleImports.symbols │ ├── circularModuleImports.types │ ├── circularMultipleAssignmentDeclaration.symbols │ ├── circularMultipleAssignmentDeclaration.types │ ├── circularObjectLiteralAccessors(target=es2015).js │ ├── circularObjectLiteralAccessors(target=es2015).symbols │ ├── circularObjectLiteralAccessors(target=es2015).types │ ├── circularObjectLiteralAccessors(target=es5).errors.txt │ ├── circularObjectLiteralAccessors(target=es5).js │ ├── circularObjectLiteralAccessors(target=es5).symbols │ ├── circularObjectLiteralAccessors(target=es5).types │ ├── circularOptionalityRemoval.errors.txt │ ├── circularOptionalityRemoval.js │ ├── circularOptionalityRemoval.symbols │ ├── circularOptionalityRemoval.types │ ├── circularReference.errors.txt │ ├── circularReference.js │ ├── circularReference.symbols │ ├── circularReference.types │ ├── circularReferenceInImport.js │ ├── circularReferenceInImport.symbols │ ├── circularReferenceInImport.types │ ├── circularReferenceInReturnType.errors.txt │ ├── circularReferenceInReturnType.symbols │ ├── circularReferenceInReturnType.types │ ├── circularReferenceInReturnType2.errors.txt │ ├── circularReferenceInReturnType2.symbols │ ├── circularReferenceInReturnType2.types │ ├── circularResolvedSignature.errors.txt │ ├── circularResolvedSignature.js │ ├── circularResolvedSignature.symbols │ ├── circularResolvedSignature.types │ ├── circularTypeAliasForUnionWithClass.errors.txt │ ├── circularTypeAliasForUnionWithClass.js │ ├── circularTypeAliasForUnionWithClass.symbols │ ├── circularTypeAliasForUnionWithClass.types │ ├── circularTypeAliasForUnionWithInterface.js │ ├── circularTypeAliasForUnionWithInterface.symbols │ ├── circularTypeAliasForUnionWithInterface.types │ ├── circularTypeArgumentsLocalAndOuterNoCrash1.errors.txt │ ├── circularTypeArgumentsLocalAndOuterNoCrash1.symbols │ ├── circularTypeArgumentsLocalAndOuterNoCrash1.types │ ├── circularTypeofWithFunctionModule.js │ ├── circularTypeofWithFunctionModule.symbols │ ├── circularTypeofWithFunctionModule.types │ ├── circularTypeofWithVarOrFunc.errors.txt │ ├── circularTypeofWithVarOrFunc.js │ ├── circularTypeofWithVarOrFunc.symbols │ ├── circularTypeofWithVarOrFunc.types │ ├── circularlyConstrainedMappedTypeContainingConditionalNoInfiniteInstantiationDepth.errors.txt │ ├── circularlyConstrainedMappedTypeContainingConditionalNoInfiniteInstantiationDepth.js │ ├── circularlyConstrainedMappedTypeContainingConditionalNoInfiniteInstantiationDepth.symbols │ ├── circularlyConstrainedMappedTypeContainingConditionalNoInfiniteInstantiationDepth.types │ ├── circularlyReferentialInterfaceAccessNoCrash.errors.txt │ ├── circularlyReferentialInterfaceAccessNoCrash.js │ ├── circularlyReferentialInterfaceAccessNoCrash.symbols │ ├── circularlyReferentialInterfaceAccessNoCrash.types │ ├── circularlySimplifyingConditionalTypesNoCrash.js │ ├── circularlySimplifyingConditionalTypesNoCrash.symbols │ ├── circularlySimplifyingConditionalTypesNoCrash.types │ ├── cjsErrors(module=node18).errors.txt │ ├── cjsErrors(module=node18).js │ ├── cjsErrors(module=node20).errors.txt │ ├── cjsErrors(module=node20).js │ ├── cjsErrors(module=nodenext).errors.txt │ ├── cjsErrors(module=nodenext).js │ ├── cjsImportInES2015.js │ ├── cjsImportInES2015.symbols │ ├── cjsImportInES2015.types │ ├── class2.errors.txt │ ├── class2.js │ ├── class2.symbols │ ├── class2.types │ ├── classAbstractAccessor(target=es2015).errors.txt │ ├── classAbstractAccessor(target=es2015).js │ ├── classAbstractAccessor(target=es2015).symbols │ ├── classAbstractAccessor(target=es2015).types │ ├── classAbstractAccessor(target=es5).errors.txt │ ├── classAbstractAccessor(target=es5).js │ ├── classAbstractAccessor(target=es5).symbols │ ├── classAbstractAccessor(target=es5).types │ ├── classAbstractAsIdentifier.js │ ├── classAbstractAsIdentifier.symbols │ ├── classAbstractAsIdentifier.types │ ├── classAbstractAssignabilityConstructorFunction.errors.txt │ ├── classAbstractAssignabilityConstructorFunction.js │ ├── classAbstractAssignabilityConstructorFunction.symbols │ ├── classAbstractAssignabilityConstructorFunction.types │ ├── classAbstractClinterfaceAssignability.errors.txt │ ├── classAbstractClinterfaceAssignability.js │ ├── classAbstractClinterfaceAssignability.symbols │ ├── classAbstractClinterfaceAssignability.types │ ├── classAbstractConstructor.errors.txt │ ├── classAbstractConstructor.js │ ├── classAbstractConstructor.symbols │ ├── classAbstractConstructor.types │ ├── classAbstractConstructorAssignability.errors.txt │ ├── classAbstractConstructorAssignability.js │ ├── classAbstractConstructorAssignability.symbols │ ├── classAbstractConstructorAssignability.types │ ├── classAbstractCrashedOnce.errors.txt │ ├── classAbstractCrashedOnce.js │ ├── classAbstractCrashedOnce.symbols │ ├── classAbstractCrashedOnce.types │ ├── classAbstractDeclarations.d.errors.txt │ ├── classAbstractDeclarations.d.symbols │ ├── classAbstractDeclarations.d.types │ ├── classAbstractExtends.errors.txt │ ├── classAbstractExtends.js │ ├── classAbstractExtends.symbols │ ├── classAbstractExtends.types │ ├── classAbstractFactoryFunction.errors.txt │ ├── classAbstractFactoryFunction.js │ ├── classAbstractFactoryFunction.symbols │ ├── classAbstractFactoryFunction.types │ ├── classAbstractGeneric.errors.txt │ ├── classAbstractGeneric.js │ ├── classAbstractGeneric.symbols │ ├── classAbstractGeneric.types │ ├── classAbstractImportInstantiation.errors.txt │ ├── classAbstractImportInstantiation.js │ ├── classAbstractImportInstantiation.symbols │ ├── classAbstractImportInstantiation.types │ ├── classAbstractInAModule.errors.txt │ ├── classAbstractInAModule.js │ ├── classAbstractInAModule.symbols │ ├── classAbstractInAModule.types │ ├── classAbstractInheritance1.errors.txt │ ├── classAbstractInheritance1.js │ ├── classAbstractInheritance1.symbols │ ├── classAbstractInheritance1.types │ ├── classAbstractInheritance2.errors.txt │ ├── classAbstractInheritance2.js │ ├── classAbstractInheritance2.symbols │ ├── classAbstractInheritance2.types │ ├── classAbstractInstantiations1.errors.txt │ ├── classAbstractInstantiations1.js │ ├── classAbstractInstantiations1.symbols │ ├── classAbstractInstantiations1.types │ ├── classAbstractInstantiations2.errors.txt │ ├── classAbstractInstantiations2.js │ ├── classAbstractInstantiations2.symbols │ ├── classAbstractInstantiations2.types │ ├── classAbstractManyKeywords.errors.txt │ ├── classAbstractManyKeywords.js │ ├── classAbstractManyKeywords.symbols │ ├── classAbstractManyKeywords.types │ ├── classAbstractMergedDeclaration.errors.txt │ ├── classAbstractMergedDeclaration.js │ ├── classAbstractMergedDeclaration.symbols │ ├── classAbstractMergedDeclaration.types │ ├── classAbstractMethodInNonAbstractClass.errors.txt │ ├── classAbstractMethodInNonAbstractClass.js │ ├── classAbstractMethodInNonAbstractClass.symbols │ ├── classAbstractMethodInNonAbstractClass.types │ ├── classAbstractMethodWithImplementation.errors.txt │ ├── classAbstractMethodWithImplementation.js │ ├── classAbstractMethodWithImplementation.symbols │ ├── classAbstractMethodWithImplementation.types │ ├── classAbstractMixedWithModifiers.errors.txt │ ├── classAbstractMixedWithModifiers.js │ ├── classAbstractMixedWithModifiers.symbols │ ├── classAbstractMixedWithModifiers.types │ ├── classAbstractOverloads.errors.txt │ ├── classAbstractOverloads.js │ ├── classAbstractOverloads.symbols │ ├── classAbstractOverloads.types │ ├── classAbstractOverrideWithAbstract.errors.txt │ ├── classAbstractOverrideWithAbstract.js │ ├── classAbstractOverrideWithAbstract.symbols │ ├── classAbstractOverrideWithAbstract.types │ ├── classAbstractProperties.errors.txt │ ├── classAbstractProperties.js │ ├── classAbstractProperties.symbols │ ├── classAbstractProperties.types │ ├── classAbstractSingleLineDecl.errors.txt │ ├── classAbstractSingleLineDecl.js │ ├── classAbstractSingleLineDecl.symbols │ ├── classAbstractSingleLineDecl.types │ ├── classAbstractSuperCalls.errors.txt │ ├── classAbstractSuperCalls.js │ ├── classAbstractSuperCalls.symbols │ ├── classAbstractSuperCalls.types │ ├── classAbstractUsingAbstractMethod1.errors.txt │ ├── classAbstractUsingAbstractMethod1.js │ ├── classAbstractUsingAbstractMethod1.symbols │ ├── classAbstractUsingAbstractMethod1.types │ ├── classAbstractUsingAbstractMethods2.errors.txt │ ├── classAbstractUsingAbstractMethods2.js │ ├── classAbstractUsingAbstractMethods2.symbols │ ├── classAbstractUsingAbstractMethods2.types │ ├── classAbstractWithInterface.errors.txt │ ├── classAbstractWithInterface.js │ ├── classAbstractWithInterface.symbols │ ├── classAbstractWithInterface.types │ ├── classAccessorInitializationInferenceWithElementAccess1.js │ ├── classAccessorInitializationInferenceWithElementAccess1.symbols │ ├── classAccessorInitializationInferenceWithElementAccess1.types │ ├── classAndInterfaceMerge.d.symbols │ ├── classAndInterfaceMerge.d.types │ ├── classAndInterfaceMergeConflictingMembers.errors.txt │ ├── classAndInterfaceMergeConflictingMembers.js │ ├── classAndInterfaceMergeConflictingMembers.symbols │ ├── classAndInterfaceMergeConflictingMembers.types │ ├── classAndInterfaceWithSameName.errors.txt │ ├── classAndInterfaceWithSameName.js │ ├── classAndInterfaceWithSameName.symbols │ ├── classAndInterfaceWithSameName.types │ ├── classAndVariableWithSameName.errors.txt │ ├── classAndVariableWithSameName.js │ ├── classAndVariableWithSameName.symbols │ ├── classAndVariableWithSameName.types │ ├── classAppearsToHaveMembersOfObject.errors.txt │ ├── classAppearsToHaveMembersOfObject.js │ ├── classAppearsToHaveMembersOfObject.symbols │ ├── classAppearsToHaveMembersOfObject.types │ ├── classAttributeInferenceTemplate.js │ ├── classAttributeInferenceTemplate.symbols │ ├── classAttributeInferenceTemplate.types │ ├── classAttributeInferenceTemplateJS.symbols │ ├── classAttributeInferenceTemplateJS.types │ ├── classBlockScoping.js │ ├── classBlockScoping.symbols │ ├── classBlockScoping.types │ ├── classBodyWithStatements.errors.txt │ ├── classBodyWithStatements.js │ ├── classBodyWithStatements.symbols │ ├── classBodyWithStatements.types │ ├── classCanExtendConstructorFunction.errors.txt │ ├── classCanExtendConstructorFunction.symbols │ ├── classCanExtendConstructorFunction.types │ ├── classCannotExtendVar.errors.txt │ ├── classCannotExtendVar.js │ ├── classCannotExtendVar.symbols │ ├── classCannotExtendVar.types │ ├── classConstructorAccessibility.errors.txt │ ├── classConstructorAccessibility.js │ ├── classConstructorAccessibility.symbols │ ├── classConstructorAccessibility.types │ ├── classConstructorAccessibility2.errors.txt │ ├── classConstructorAccessibility2.js │ ├── classConstructorAccessibility2.symbols │ ├── classConstructorAccessibility2.types │ ├── classConstructorAccessibility3.errors.txt │ ├── classConstructorAccessibility3.js │ ├── classConstructorAccessibility3.symbols │ ├── classConstructorAccessibility3.types │ ├── classConstructorAccessibility4.js │ ├── classConstructorAccessibility4.symbols │ ├── classConstructorAccessibility4.types │ ├── classConstructorAccessibility5.errors.txt │ ├── classConstructorAccessibility5.js │ ├── classConstructorAccessibility5.symbols │ ├── classConstructorAccessibility5.types │ ├── classConstructorOverloadsAccessibility.errors.txt │ ├── classConstructorOverloadsAccessibility.js │ ├── classConstructorOverloadsAccessibility.symbols │ ├── classConstructorOverloadsAccessibility.types │ ├── classConstructorParametersAccessibility.errors.txt │ ├── classConstructorParametersAccessibility.js │ ├── classConstructorParametersAccessibility.symbols │ ├── classConstructorParametersAccessibility.types │ ├── classConstructorParametersAccessibility2.errors.txt │ ├── classConstructorParametersAccessibility2.js │ ├── classConstructorParametersAccessibility2.symbols │ ├── classConstructorParametersAccessibility2.types │ ├── classConstructorParametersAccessibility3.errors.txt │ ├── classConstructorParametersAccessibility3.js │ ├── classConstructorParametersAccessibility3.symbols │ ├── classConstructorParametersAccessibility3.types │ ├── classDeclarationBlockScoping1.js │ ├── classDeclarationBlockScoping1.symbols │ ├── classDeclarationBlockScoping1.types │ ├── classDeclarationBlockScoping2.js │ ├── classDeclarationBlockScoping2.symbols │ ├── classDeclarationBlockScoping2.types │ ├── classDeclarationCheckUsedBeforeDefinitionInFunctionDeclaration.js │ ├── classDeclarationCheckUsedBeforeDefinitionInFunctionDeclaration.symbols │ ├── classDeclarationCheckUsedBeforeDefinitionInFunctionDeclaration.types │ ├── classDeclarationCheckUsedBeforeDefinitionInItself.js │ ├── classDeclarationCheckUsedBeforeDefinitionInItself.symbols │ ├── classDeclarationCheckUsedBeforeDefinitionInItself.types │ ├── classDeclarationLoop.js │ ├── classDeclarationLoop.symbols │ ├── classDeclarationLoop.types │ ├── classDeclarationMergedInModuleWithContinuation.js │ ├── classDeclarationMergedInModuleWithContinuation.symbols │ ├── classDeclarationMergedInModuleWithContinuation.types │ ├── classDeclarationShouldBeOutOfScopeInComputedNames.errors.txt │ ├── classDeclarationShouldBeOutOfScopeInComputedNames.js │ ├── classDeclarationShouldBeOutOfScopeInComputedNames.symbols │ ├── classDeclarationShouldBeOutOfScopeInComputedNames.types │ ├── classDeclaredBeforeClassFactory.js │ ├── classDeclaredBeforeClassFactory.symbols │ ├── classDeclaredBeforeClassFactory.types │ ├── classDoesNotDependOnBaseTypes.errors.txt │ ├── classDoesNotDependOnBaseTypes.js │ ├── classDoesNotDependOnBaseTypes.symbols │ ├── classDoesNotDependOnBaseTypes.types │ ├── classDoesNotDependOnPrivateMember.errors.txt │ ├── classDoesNotDependOnPrivateMember.js │ ├── classDoesNotDependOnPrivateMember.symbols │ ├── classDoesNotDependOnPrivateMember.types │ ├── classExpression.js │ ├── classExpression.symbols │ ├── classExpression.types │ ├── classExpression1.js │ ├── classExpression1.symbols │ ├── classExpression1.types │ ├── classExpression2.js │ ├── classExpression2.symbols │ ├── classExpression2.types │ ├── classExpression3.js │ ├── classExpression3.symbols │ ├── classExpression3.types │ ├── classExpression4.js │ ├── classExpression4.symbols │ ├── classExpression4.types │ ├── classExpression5.js │ ├── classExpression5.symbols │ ├── classExpression5.types │ ├── classExpressionAssignment.errors.txt │ ├── classExpressionAssignment.js │ ├── classExpressionAssignment.symbols │ ├── classExpressionAssignment.types │ ├── classExpressionES61.js │ ├── classExpressionES61.symbols │ ├── classExpressionES61.types │ ├── classExpressionES62.js │ ├── classExpressionES62.symbols │ ├── classExpressionES62.types │ ├── classExpressionES63.js │ ├── classExpressionES63.symbols │ ├── classExpressionES63.types │ ├── classExpressionExtendingAbstractClass.errors.txt │ ├── classExpressionExtendingAbstractClass.js │ ├── classExpressionExtendingAbstractClass.symbols │ ├── classExpressionExtendingAbstractClass.types │ ├── classExpressionInClassStaticDeclarations.js │ ├── classExpressionInClassStaticDeclarations.symbols │ ├── classExpressionInClassStaticDeclarations.types │ ├── classExpressionLoop.js │ ├── classExpressionLoop.symbols │ ├── classExpressionLoop.types │ ├── classExpressionNames.symbols │ ├── classExpressionNames.types │ ├── classExpressionPropertyModifiers.errors.txt │ ├── classExpressionTest1.errors.txt │ ├── classExpressionTest1.js │ ├── classExpressionTest1.symbols │ ├── classExpressionTest1.types │ ├── classExpressionTest2.errors.txt │ ├── classExpressionTest2.js │ ├── classExpressionTest2.symbols │ ├── classExpressionTest2.types │ ├── classExpressionWithDecorator1.errors.txt │ ├── classExpressionWithDecorator1.js │ ├── classExpressionWithDecorator1.symbols │ ├── classExpressionWithDecorator1.types │ ├── classExpressionWithResolutionOfNamespaceOfSameName01.errors.txt │ ├── classExpressionWithResolutionOfNamespaceOfSameName01.js │ ├── classExpressionWithResolutionOfNamespaceOfSameName01.symbols │ ├── classExpressionWithResolutionOfNamespaceOfSameName01.types │ ├── classExpressionWithStaticProperties1.js │ ├── classExpressionWithStaticProperties1.symbols │ ├── classExpressionWithStaticProperties1.types │ ├── classExpressionWithStaticProperties2(target=es2015).js │ ├── classExpressionWithStaticProperties2(target=es2015).symbols │ ├── classExpressionWithStaticProperties2(target=es2015).types │ ├── classExpressionWithStaticProperties2(target=es5).errors.txt │ ├── classExpressionWithStaticProperties2(target=es5).js │ ├── classExpressionWithStaticProperties2(target=es5).symbols │ ├── classExpressionWithStaticProperties2(target=es5).types │ ├── classExpressionWithStaticProperties3(target=es2015).js │ ├── classExpressionWithStaticProperties3(target=es2015).symbols │ ├── classExpressionWithStaticProperties3(target=es2015).types │ ├── classExpressionWithStaticProperties3(target=es5).errors.txt │ ├── classExpressionWithStaticProperties3(target=es5).js │ ├── classExpressionWithStaticProperties3(target=es5).symbols │ ├── classExpressionWithStaticProperties3(target=es5).types │ ├── classExpressionWithStaticPropertiesES61.js │ ├── classExpressionWithStaticPropertiesES61.symbols │ ├── classExpressionWithStaticPropertiesES61.types │ ├── classExpressionWithStaticPropertiesES62.js │ ├── classExpressionWithStaticPropertiesES62.symbols │ ├── classExpressionWithStaticPropertiesES62.types │ ├── classExpressionWithStaticPropertiesES63.js │ ├── classExpressionWithStaticPropertiesES63.symbols │ ├── classExpressionWithStaticPropertiesES63.types │ ├── classExpressionWithStaticPropertiesES64.js │ ├── classExpressionWithStaticPropertiesES64.symbols │ ├── classExpressionWithStaticPropertiesES64.types │ ├── classExpressions.errors.txt │ ├── classExpressions.js │ ├── classExpressions.symbols │ ├── classExpressions.types │ ├── classExtendingAbstractClassWithMemberCalledTheSameAsItsOwnTypeParam.symbols │ ├── classExtendingAbstractClassWithMemberCalledTheSameAsItsOwnTypeParam.types │ ├── classExtendingAny.errors.txt │ ├── classExtendingAny.symbols │ ├── classExtendingAny.types │ ├── classExtendingBuiltinType.js │ ├── classExtendingBuiltinType.symbols │ ├── classExtendingBuiltinType.types │ ├── classExtendingClass.errors.txt │ ├── classExtendingClass.js │ ├── classExtendingClass.symbols │ ├── classExtendingClass.types │ ├── classExtendingClassLikeType.errors.txt │ ├── classExtendingClassLikeType.js │ ├── classExtendingClassLikeType.symbols │ ├── classExtendingClassLikeType.types │ ├── classExtendingNonConstructor.errors.txt │ ├── classExtendingNonConstructor.js │ ├── classExtendingNonConstructor.symbols │ ├── classExtendingNonConstructor.types │ ├── classExtendingNull.js │ ├── classExtendingNull.symbols │ ├── classExtendingNull.types │ ├── classExtendingOptionalChain.errors.txt │ ├── classExtendingOptionalChain.js │ ├── classExtendingOptionalChain.symbols │ ├── classExtendingOptionalChain.types │ ├── classExtendingPrimitive.errors.txt │ ├── classExtendingPrimitive.js │ ├── classExtendingPrimitive.symbols │ ├── classExtendingPrimitive.types │ ├── classExtendingPrimitive2.errors.txt │ ├── classExtendingPrimitive2.js │ ├── classExtendingPrimitive2.symbols │ ├── classExtendingPrimitive2.types │ ├── classExtendingQualifiedName.errors.txt │ ├── classExtendingQualifiedName.js │ ├── classExtendingQualifiedName.symbols │ ├── classExtendingQualifiedName.types │ ├── classExtendingQualifiedName2.js │ ├── classExtendingQualifiedName2.symbols │ ├── classExtendingQualifiedName2.types │ ├── classExtendsAcrossFiles(target=es2015).js │ ├── classExtendsAcrossFiles(target=es2015).symbols │ ├── classExtendsAcrossFiles(target=es2015).types │ ├── classExtendsAcrossFiles(target=es5).errors.txt │ ├── classExtendsAcrossFiles(target=es5).js │ ├── classExtendsAcrossFiles(target=es5).symbols │ ├── classExtendsAcrossFiles(target=es5).types │ ├── classExtendsClauseClassMergedWithModuleNotReferingConstructor.errors.txt │ ├── classExtendsClauseClassMergedWithModuleNotReferingConstructor.js │ ├── classExtendsClauseClassMergedWithModuleNotReferingConstructor.symbols │ ├── classExtendsClauseClassMergedWithModuleNotReferingConstructor.types │ ├── classExtendsClauseClassNotReferringConstructor.errors.txt │ ├── classExtendsClauseClassNotReferringConstructor.js │ ├── classExtendsClauseClassNotReferringConstructor.symbols │ ├── classExtendsClauseClassNotReferringConstructor.types │ ├── classExtendsEveryObjectType.errors.txt │ ├── classExtendsEveryObjectType.js │ ├── classExtendsEveryObjectType.symbols │ ├── classExtendsEveryObjectType.types │ ├── classExtendsEveryObjectType2.errors.txt │ ├── classExtendsEveryObjectType2.js │ ├── classExtendsEveryObjectType2.symbols │ ├── classExtendsEveryObjectType2.types │ ├── classExtendsInterface.errors.txt │ ├── classExtendsInterface.js │ ├── classExtendsInterface.symbols │ ├── classExtendsInterface.types │ ├── classExtendsInterfaceInExpression.errors.txt │ ├── classExtendsInterfaceInExpression.js │ ├── classExtendsInterfaceInExpression.symbols │ ├── classExtendsInterfaceInExpression.types │ ├── classExtendsInterfaceInModule.errors.txt │ ├── classExtendsInterfaceInModule.js │ ├── classExtendsInterfaceInModule.symbols │ ├── classExtendsInterfaceInModule.types │ ├── classExtendsInterfaceThatExtendsClassWithPrivates1.errors.txt │ ├── classExtendsInterfaceThatExtendsClassWithPrivates1.js │ ├── classExtendsInterfaceThatExtendsClassWithPrivates1.symbols │ ├── classExtendsInterfaceThatExtendsClassWithPrivates1.types │ ├── classExtendsInterface_not.errors.txt │ ├── classExtendsInterface_not.js │ ├── classExtendsInterface_not.symbols │ ├── classExtendsInterface_not.types │ ├── classExtendsItself.errors.txt │ ├── classExtendsItself.js │ ├── classExtendsItself.symbols │ ├── classExtendsItself.types │ ├── classExtendsItselfIndirectly.errors.txt │ ├── classExtendsItselfIndirectly.js │ ├── classExtendsItselfIndirectly.symbols │ ├── classExtendsItselfIndirectly.types │ ├── classExtendsItselfIndirectly2.errors.txt │ ├── classExtendsItselfIndirectly2.js │ ├── classExtendsItselfIndirectly2.symbols │ ├── classExtendsItselfIndirectly2.types │ ├── classExtendsItselfIndirectly3.errors.txt │ ├── classExtendsItselfIndirectly3.js │ ├── classExtendsItselfIndirectly3.symbols │ ├── classExtendsItselfIndirectly3.types │ ├── classExtendsMultipleBaseClasses.errors.txt │ ├── classExtendsMultipleBaseClasses.js │ ├── classExtendsMultipleBaseClasses.symbols │ ├── classExtendsMultipleBaseClasses.types │ ├── classExtendsNull.errors.txt │ ├── classExtendsNull.js │ ├── classExtendsNull.symbols │ ├── classExtendsNull.types │ ├── classExtendsNull2.errors.txt │ ├── classExtendsNull2.symbols │ ├── classExtendsNull2.types │ ├── classExtendsNull3.errors.txt │ ├── classExtendsNull3.symbols │ ├── classExtendsNull3.types │ ├── classExtendsShadowedConstructorFunction.errors.txt │ ├── classExtendsShadowedConstructorFunction.js │ ├── classExtendsShadowedConstructorFunction.symbols │ ├── classExtendsShadowedConstructorFunction.types │ ├── classExtendsValidConstructorFunction.errors.txt │ ├── classExtendsValidConstructorFunction.js │ ├── classExtendsValidConstructorFunction.symbols │ ├── classExtendsValidConstructorFunction.types │ ├── classExtensionNameOutput.js │ ├── classExtensionNameOutput.symbols │ ├── classExtensionNameOutput.types │ ├── classFieldSuperAccessible.js │ ├── classFieldSuperAccessible.symbols │ ├── classFieldSuperAccessible.types │ ├── classFieldSuperAccessibleJs1.errors.txt │ ├── classFieldSuperAccessibleJs1.symbols │ ├── classFieldSuperAccessibleJs1.types │ ├── classFieldSuperAccessibleJs2.symbols │ ├── classFieldSuperAccessibleJs2.types │ ├── classFieldSuperNotAccessible.errors.txt │ ├── classFieldSuperNotAccessible.js │ ├── classFieldSuperNotAccessible.symbols │ ├── classFieldSuperNotAccessible.types │ ├── classFieldSuperNotAccessibleJs.errors.txt │ ├── classFieldSuperNotAccessibleJs.symbols │ ├── classFieldSuperNotAccessibleJs.types │ ├── classFieldsBrokenConstructorEmitNoCrash1.errors.txt │ ├── classFieldsBrokenConstructorEmitNoCrash1.js │ ├── classFieldsBrokenConstructorEmitNoCrash1.symbols │ ├── classFieldsBrokenConstructorEmitNoCrash1.types │ ├── classFunctionMerging.js │ ├── classFunctionMerging.symbols │ ├── classFunctionMerging.types │ ├── classFunctionMerging2.js │ ├── classFunctionMerging2.symbols │ ├── classFunctionMerging2.types │ ├── classHeritageWithTrailingSeparator.errors.txt │ ├── classHeritageWithTrailingSeparator.js │ ├── classHeritageWithTrailingSeparator.symbols │ ├── classHeritageWithTrailingSeparator.types │ ├── classImplementingInterfaceIndexer.js │ ├── classImplementingInterfaceIndexer.symbols │ ├── classImplementingInterfaceIndexer.types │ ├── classImplementsClass1.js │ ├── classImplementsClass1.symbols │ ├── classImplementsClass1.types │ ├── classImplementsClass2.errors.txt │ ├── classImplementsClass2.js │ ├── classImplementsClass2.symbols │ ├── classImplementsClass2.types │ ├── classImplementsClass3.errors.txt │ ├── classImplementsClass3.js │ ├── classImplementsClass3.symbols │ ├── classImplementsClass3.types │ ├── classImplementsClass4.errors.txt │ ├── classImplementsClass4.js │ ├── classImplementsClass4.symbols │ ├── classImplementsClass4.types │ ├── classImplementsClass5.errors.txt │ ├── classImplementsClass5.js │ ├── classImplementsClass5.symbols │ ├── classImplementsClass5.types │ ├── classImplementsClass6.errors.txt │ ├── classImplementsClass6.js │ ├── classImplementsClass6.symbols │ ├── classImplementsClass6.types │ ├── classImplementsClass7.errors.txt │ ├── classImplementsClass7.js │ ├── classImplementsClass7.symbols │ ├── classImplementsClass7.types │ ├── classImplementsImportedInterface.js │ ├── classImplementsImportedInterface.symbols │ ├── classImplementsImportedInterface.types │ ├── classImplementsMergedClassInterface.errors.txt │ ├── classImplementsMergedClassInterface.js │ ├── classImplementsMergedClassInterface.symbols │ ├── classImplementsMergedClassInterface.types │ ├── classImplementsMethodWIthTupleArgs.js │ ├── classImplementsMethodWIthTupleArgs.symbols │ ├── classImplementsMethodWIthTupleArgs.types │ ├── classImplementsPrimitive.errors.txt │ ├── classImplementsPrimitive.js │ ├── classImplementsPrimitive.symbols │ ├── classImplementsPrimitive.types │ ├── classInConvertedLoopES5(target=es2015).js │ ├── classInConvertedLoopES5(target=es2015).symbols │ ├── classInConvertedLoopES5(target=es2015).types │ ├── classInConvertedLoopES5(target=es5).errors.txt │ ├── classInConvertedLoopES5(target=es5).js │ ├── classInConvertedLoopES5(target=es5).symbols │ ├── classInConvertedLoopES5(target=es5).types │ ├── classIndexer.js │ ├── classIndexer.symbols │ ├── classIndexer.types │ ├── classIndexer2.errors.txt │ ├── classIndexer2.js │ ├── classIndexer2.symbols │ ├── classIndexer2.types │ ├── classIndexer3.errors.txt │ ├── classIndexer3.js │ ├── classIndexer3.symbols │ ├── classIndexer3.types │ ├── classIndexer4.errors.txt │ ├── classIndexer4.js │ ├── classIndexer4.symbols │ ├── classIndexer4.types │ ├── classIndexer5.errors.txt │ ├── classIndexer5.js │ ├── classIndexer5.symbols │ ├── classIndexer5.types │ ├── classInheritence.errors.txt │ ├── classInheritence.js │ ├── classInheritence.symbols │ ├── classInheritence.types │ ├── classInsideBlock.js │ ├── classInsideBlock.symbols │ ├── classInsideBlock.types │ ├── classIsSubtypeOfBaseType.errors.txt │ ├── classIsSubtypeOfBaseType.js │ ├── classIsSubtypeOfBaseType.symbols │ ├── classIsSubtypeOfBaseType.types │ ├── classMemberInitializerScoping.errors.txt │ ├── classMemberInitializerScoping.js │ ├── classMemberInitializerScoping.symbols │ ├── classMemberInitializerScoping.types │ ├── classMemberInitializerScoping2(target=es2017,usedefineforclassfields=false).errors.txt │ ├── classMemberInitializerScoping2(target=es2017,usedefineforclassfields=false).js │ ├── classMemberInitializerScoping2(target=es2017,usedefineforclassfields=false).symbols │ ├── classMemberInitializerScoping2(target=es2017,usedefineforclassfields=false).types │ ├── classMemberInitializerScoping2(target=es2017,usedefineforclassfields=true).errors.txt │ ├── classMemberInitializerScoping2(target=es2017,usedefineforclassfields=true).js │ ├── classMemberInitializerScoping2(target=es2017,usedefineforclassfields=true).symbols │ ├── classMemberInitializerScoping2(target=es2017,usedefineforclassfields=true).types │ ├── classMemberInitializerScoping2(target=esnext,usedefineforclassfields=false).errors.txt │ ├── classMemberInitializerScoping2(target=esnext,usedefineforclassfields=false).js │ ├── classMemberInitializerScoping2(target=esnext,usedefineforclassfields=false).symbols │ ├── classMemberInitializerScoping2(target=esnext,usedefineforclassfields=false).types │ ├── classMemberInitializerScoping2(target=esnext,usedefineforclassfields=true).js │ ├── classMemberInitializerScoping2(target=esnext,usedefineforclassfields=true).symbols │ ├── classMemberInitializerScoping2(target=esnext,usedefineforclassfields=true).types │ ├── classMemberInitializerWithLamdaScoping.errors.txt │ ├── classMemberInitializerWithLamdaScoping.js │ ├── classMemberInitializerWithLamdaScoping.symbols │ ├── classMemberInitializerWithLamdaScoping.types │ ├── classMemberInitializerWithLamdaScoping2.errors.txt │ ├── classMemberInitializerWithLamdaScoping2.js │ ├── classMemberInitializerWithLamdaScoping2.symbols │ ├── classMemberInitializerWithLamdaScoping2.types │ ├── classMemberInitializerWithLamdaScoping3.errors.txt │ ├── classMemberInitializerWithLamdaScoping3.js │ ├── classMemberInitializerWithLamdaScoping3.symbols │ ├── classMemberInitializerWithLamdaScoping3.types │ ├── classMemberInitializerWithLamdaScoping4.errors.txt │ ├── classMemberInitializerWithLamdaScoping4.js │ ├── classMemberInitializerWithLamdaScoping4.symbols │ ├── classMemberInitializerWithLamdaScoping4.types │ ├── classMemberInitializerWithLamdaScoping5.js │ ├── classMemberInitializerWithLamdaScoping5.symbols │ ├── classMemberInitializerWithLamdaScoping5.types │ ├── classMemberWithMissingIdentifier.errors.txt │ ├── classMemberWithMissingIdentifier.js │ ├── classMemberWithMissingIdentifier.symbols │ ├── classMemberWithMissingIdentifier.types │ ├── classMemberWithMissingIdentifier2.errors.txt │ ├── classMemberWithMissingIdentifier2.js │ ├── classMemberWithMissingIdentifier2.symbols │ ├── classMemberWithMissingIdentifier2.types │ ├── classMergedWithInterfaceMultipleBasesNoError.errors.txt │ ├── classMergedWithInterfaceMultipleBasesNoError.js │ ├── classMergedWithInterfaceMultipleBasesNoError.symbols │ ├── classMergedWithInterfaceMultipleBasesNoError.types │ ├── classMethodWithKeywordName1.js │ ├── classMethodWithKeywordName1.symbols │ ├── classMethodWithKeywordName1.types │ ├── classNameReferencesInStaticElements.js │ ├── classNonUniqueSymbolMethodHasSymbolIndexer.js │ ├── classNonUniqueSymbolMethodHasSymbolIndexer.symbols │ ├── classNonUniqueSymbolMethodHasSymbolIndexer.types │ ├── classOrder1.js │ ├── classOrder1.symbols │ ├── classOrder1.types │ ├── classOrder2.errors.txt │ ├── classOrder2.js │ ├── classOrder2.symbols │ ├── classOrder2.types │ ├── classOrderBug.js │ ├── classOrderBug.symbols │ ├── classOrderBug.types │ ├── classOverloadForFunction.errors.txt │ ├── classOverloadForFunction.js │ ├── classOverloadForFunction.symbols │ ├── classOverloadForFunction.types │ ├── classOverloadForFunction2.errors.txt │ ├── classOverloadForFunction2.js │ ├── classOverloadForFunction2.symbols │ ├── classOverloadForFunction2.types │ ├── classPropInitializationInferenceWithElementAccess.symbols │ ├── classPropInitializationInferenceWithElementAccess.types │ ├── classPropertyAsPrivate.errors.txt │ ├── classPropertyAsPrivate.js │ ├── classPropertyAsPrivate.symbols │ ├── classPropertyAsPrivate.types │ ├── classPropertyAsProtected.errors.txt │ ├── classPropertyAsProtected.js │ ├── classPropertyAsProtected.symbols │ ├── classPropertyAsProtected.types │ ├── classPropertyErrorOnNameOnly.errors.txt │ ├── classPropertyErrorOnNameOnly.js │ ├── classPropertyErrorOnNameOnly.symbols │ ├── classPropertyErrorOnNameOnly.types │ ├── classPropertyInferenceFromBroaderTypeConst.js │ ├── classPropertyInferenceFromBroaderTypeConst.symbols │ ├── classPropertyInferenceFromBroaderTypeConst.types │ ├── classPropertyIsPublicByDefault.js │ ├── classPropertyIsPublicByDefault.symbols │ ├── classPropertyIsPublicByDefault.types │ ├── classReferencedInContextualParameterWithinItsOwnBaseExpression.js │ ├── classReferencedInContextualParameterWithinItsOwnBaseExpression.symbols │ ├── classReferencedInContextualParameterWithinItsOwnBaseExpression.types │ ├── classSideInheritance1.errors.txt │ ├── classSideInheritance1.js │ ├── classSideInheritance1.symbols │ ├── classSideInheritance1.types │ ├── classSideInheritance2.errors.txt │ ├── classSideInheritance2.js │ ├── classSideInheritance2.symbols │ ├── classSideInheritance2.types │ ├── classSideInheritance3.errors.txt │ ├── classSideInheritance3.js │ ├── classSideInheritance3.symbols │ ├── classSideInheritance3.types │ ├── classStaticBlock1(target=es2015).js │ ├── classStaticBlock1(target=es2015).symbols │ ├── classStaticBlock1(target=es2015).types │ ├── classStaticBlock1(target=es2022).js │ ├── classStaticBlock1(target=es2022).symbols │ ├── classStaticBlock1(target=es2022).types │ ├── classStaticBlock1(target=es5).errors.txt │ ├── classStaticBlock1(target=es5).js │ ├── classStaticBlock1(target=es5).symbols │ ├── classStaticBlock1(target=es5).types │ ├── classStaticBlock1(target=esnext).js │ ├── classStaticBlock1(target=esnext).symbols │ ├── classStaticBlock1(target=esnext).types │ ├── classStaticBlock10(target=es2015).js │ ├── classStaticBlock10(target=es2015).symbols │ ├── classStaticBlock10(target=es2015).types │ ├── classStaticBlock10(target=es2022).js │ ├── classStaticBlock10(target=es2022).symbols │ ├── classStaticBlock10(target=es2022).types │ ├── classStaticBlock10(target=es5).errors.txt │ ├── classStaticBlock10(target=es5).js │ ├── classStaticBlock10(target=es5).symbols │ ├── classStaticBlock10(target=es5).types │ ├── classStaticBlock10(target=esnext).js │ ├── classStaticBlock10(target=esnext).symbols │ ├── classStaticBlock10(target=esnext).types │ ├── classStaticBlock11(target=es2015).js │ ├── classStaticBlock11(target=es2015).symbols │ ├── classStaticBlock11(target=es2015).types │ ├── classStaticBlock11(target=es2022).js │ ├── classStaticBlock11(target=es2022).symbols │ ├── classStaticBlock11(target=es2022).types │ ├── classStaticBlock11(target=esnext).js │ ├── classStaticBlock11(target=esnext).symbols │ ├── classStaticBlock11(target=esnext).types │ ├── classStaticBlock12.js │ ├── classStaticBlock12.symbols │ ├── classStaticBlock12.types │ ├── classStaticBlock13(target=es2015).js │ ├── classStaticBlock13(target=es2015).symbols │ ├── classStaticBlock13(target=es2015).types │ ├── classStaticBlock13(target=es2022).js │ ├── classStaticBlock13(target=es2022).symbols │ ├── classStaticBlock13(target=es2022).types │ ├── classStaticBlock13(target=esnext).js │ ├── classStaticBlock13(target=esnext).symbols │ ├── classStaticBlock13(target=esnext).types │ ├── classStaticBlock14.js │ ├── classStaticBlock14.symbols │ ├── classStaticBlock14.types │ ├── classStaticBlock15(target=es2015).js │ ├── classStaticBlock15(target=es2015).symbols │ ├── classStaticBlock15(target=es2015).types │ ├── classStaticBlock15(target=es2022).js │ ├── classStaticBlock15(target=es2022).symbols │ ├── classStaticBlock15(target=es2022).types │ ├── classStaticBlock15(target=esnext).js │ ├── classStaticBlock15(target=esnext).symbols │ ├── classStaticBlock15(target=esnext).types │ ├── classStaticBlock16.errors.txt │ ├── classStaticBlock16.js │ ├── classStaticBlock16.symbols │ ├── classStaticBlock16.types │ ├── classStaticBlock17.js │ ├── classStaticBlock17.symbols │ ├── classStaticBlock17.types │ ├── classStaticBlock18(target=es2015).js │ ├── classStaticBlock18(target=es2015).symbols │ ├── classStaticBlock18(target=es2015).types │ ├── classStaticBlock18(target=es2022).js │ ├── classStaticBlock18(target=es2022).symbols │ ├── classStaticBlock18(target=es2022).types │ ├── classStaticBlock18(target=es5).errors.txt │ ├── classStaticBlock18(target=es5).js │ ├── classStaticBlock18(target=es5).symbols │ ├── classStaticBlock18(target=es5).types │ ├── classStaticBlock18(target=esnext).js │ ├── classStaticBlock18(target=esnext).symbols │ ├── classStaticBlock18(target=esnext).types │ ├── classStaticBlock19.errors.txt │ ├── classStaticBlock19.js │ ├── classStaticBlock19.symbols │ ├── classStaticBlock19.types │ ├── classStaticBlock2(target=es2015).js │ ├── classStaticBlock2(target=es2015).symbols │ ├── classStaticBlock2(target=es2015).types │ ├── classStaticBlock2(target=es2022).js │ ├── classStaticBlock2(target=es2022).symbols │ ├── classStaticBlock2(target=es2022).types │ ├── classStaticBlock2(target=es5).errors.txt │ ├── classStaticBlock2(target=es5).js │ ├── classStaticBlock2(target=es5).symbols │ ├── classStaticBlock2(target=es5).types │ ├── classStaticBlock2(target=esnext).js │ ├── classStaticBlock2(target=esnext).symbols │ ├── classStaticBlock2(target=esnext).types │ ├── classStaticBlock20.errors.txt │ ├── classStaticBlock20.js │ ├── classStaticBlock20.symbols │ ├── classStaticBlock20.types │ ├── classStaticBlock21.js │ ├── classStaticBlock21.symbols │ ├── classStaticBlock21.types │ ├── classStaticBlock22(target=es2022).errors.txt │ ├── classStaticBlock22(target=es2022).js │ ├── classStaticBlock22(target=es2022).symbols │ ├── classStaticBlock22(target=es2022).types │ ├── classStaticBlock22(target=esnext).errors.txt │ ├── classStaticBlock22(target=esnext).js │ ├── classStaticBlock22(target=esnext).symbols │ ├── classStaticBlock22(target=esnext).types │ ├── classStaticBlock23(target=es2022).errors.txt │ ├── classStaticBlock23(target=es2022).js │ ├── classStaticBlock23(target=es2022).symbols │ ├── classStaticBlock23(target=es2022).types │ ├── classStaticBlock23(target=esnext).errors.txt │ ├── classStaticBlock23(target=esnext).js │ ├── classStaticBlock23(target=esnext).symbols │ ├── classStaticBlock23(target=esnext).types │ ├── classStaticBlock24(module=amd).errors.txt │ ├── classStaticBlock24(module=amd).js │ ├── classStaticBlock24(module=amd).symbols │ ├── classStaticBlock24(module=amd).types │ ├── classStaticBlock24(module=commonjs).js │ ├── classStaticBlock24(module=commonjs).symbols │ ├── classStaticBlock24(module=commonjs).types │ ├── classStaticBlock24(module=es2015).js │ ├── classStaticBlock24(module=es2015).symbols │ ├── classStaticBlock24(module=es2015).types │ ├── classStaticBlock24(module=es2020).js │ ├── classStaticBlock24(module=es2020).symbols │ ├── classStaticBlock24(module=es2020).types │ ├── classStaticBlock24(module=es2022).js │ ├── classStaticBlock24(module=es2022).symbols │ ├── classStaticBlock24(module=es2022).types │ ├── classStaticBlock24(module=esnext).js │ ├── classStaticBlock24(module=esnext).symbols │ ├── classStaticBlock24(module=esnext).types │ ├── classStaticBlock24(module=system).errors.txt │ ├── classStaticBlock24(module=system).js │ ├── classStaticBlock24(module=system).symbols │ ├── classStaticBlock24(module=system).types │ ├── classStaticBlock24(module=umd).errors.txt │ ├── classStaticBlock24(module=umd).js │ ├── classStaticBlock24(module=umd).symbols │ ├── classStaticBlock24(module=umd).types │ ├── classStaticBlock25(target=es2022).js │ ├── classStaticBlock25(target=es2022).sourcemap.txt │ ├── classStaticBlock25(target=es2022).symbols │ ├── classStaticBlock25(target=es2022).types │ ├── classStaticBlock25(target=esnext).js │ ├── classStaticBlock25(target=esnext).sourcemap.txt │ ├── classStaticBlock25(target=esnext).symbols │ ├── classStaticBlock25(target=esnext).types │ ├── classStaticBlock26(target=es2022).errors.txt │ ├── classStaticBlock26(target=es2022).js │ ├── classStaticBlock26(target=es2022).symbols │ ├── classStaticBlock26(target=es2022).types │ ├── classStaticBlock26(target=esnext).errors.txt │ ├── classStaticBlock26(target=esnext).js │ ├── classStaticBlock26(target=esnext).symbols │ ├── classStaticBlock26(target=esnext).types │ ├── classStaticBlock27.js │ ├── classStaticBlock27.symbols │ ├── classStaticBlock27.types │ ├── classStaticBlock28.js │ ├── classStaticBlock28.symbols │ ├── classStaticBlock28.types │ ├── classStaticBlock3(target=es2022).errors.txt │ ├── classStaticBlock3(target=es2022).js │ ├── classStaticBlock3(target=es2022).symbols │ ├── classStaticBlock3(target=es2022).types │ ├── classStaticBlock3(target=esnext).errors.txt │ ├── classStaticBlock3(target=esnext).js │ ├── classStaticBlock3(target=esnext).symbols │ ├── classStaticBlock3(target=esnext).types │ ├── classStaticBlock4(target=es2022).errors.txt │ ├── classStaticBlock4(target=es2022).js │ ├── classStaticBlock4(target=es2022).symbols │ ├── classStaticBlock4(target=es2022).types │ ├── classStaticBlock4(target=esnext).errors.txt │ ├── classStaticBlock4(target=esnext).js │ ├── classStaticBlock4(target=esnext).symbols │ ├── classStaticBlock4(target=esnext).types │ ├── classStaticBlock5(target=es2015).js │ ├── classStaticBlock5(target=es2015).symbols │ ├── classStaticBlock5(target=es2015).types │ ├── classStaticBlock5(target=es2022).js │ ├── classStaticBlock5(target=es2022).symbols │ ├── classStaticBlock5(target=es2022).types │ ├── classStaticBlock5(target=es5).errors.txt │ ├── classStaticBlock5(target=es5).js │ ├── classStaticBlock5(target=es5).symbols │ ├── classStaticBlock5(target=es5).types │ ├── classStaticBlock5(target=esnext).js │ ├── classStaticBlock5(target=esnext).symbols │ ├── classStaticBlock5(target=esnext).types │ ├── classStaticBlock6(target=es2015).errors.txt │ ├── classStaticBlock6(target=es2015).js │ ├── classStaticBlock6(target=es2015).symbols │ ├── classStaticBlock6(target=es2015).types │ ├── classStaticBlock6(target=es5).errors.txt │ ├── classStaticBlock6(target=es5).js │ ├── classStaticBlock6(target=es5).symbols │ ├── classStaticBlock6(target=es5).types │ ├── classStaticBlock7.errors.txt │ ├── classStaticBlock7.js │ ├── classStaticBlock7.symbols │ ├── classStaticBlock7.types │ ├── classStaticBlock8.errors.txt │ ├── classStaticBlock8.js │ ├── classStaticBlock8.symbols │ ├── classStaticBlock8.types │ ├── classStaticBlock9(target=es2015).errors.txt │ ├── classStaticBlock9(target=es2015).js │ ├── classStaticBlock9(target=es2015).symbols │ ├── classStaticBlock9(target=es2015).types │ ├── classStaticBlock9(target=es2022).errors.txt │ ├── classStaticBlock9(target=es2022).js │ ├── classStaticBlock9(target=es2022).symbols │ ├── classStaticBlock9(target=es2022).types │ ├── classStaticBlock9(target=es5).errors.txt │ ├── classStaticBlock9(target=es5).js │ ├── classStaticBlock9(target=es5).symbols │ ├── classStaticBlock9(target=es5).types │ ├── classStaticBlock9(target=esnext).errors.txt │ ├── classStaticBlock9(target=esnext).js │ ├── classStaticBlock9(target=esnext).symbols │ ├── classStaticBlock9(target=esnext).types │ ├── classStaticBlockUseBeforeDef1(target=es2022).symbols │ ├── classStaticBlockUseBeforeDef1(target=es2022).types │ ├── classStaticBlockUseBeforeDef1(target=esnext).symbols │ ├── classStaticBlockUseBeforeDef1(target=esnext).types │ ├── classStaticBlockUseBeforeDef2(target=es2022).errors.txt │ ├── classStaticBlockUseBeforeDef2(target=es2022).symbols │ ├── classStaticBlockUseBeforeDef2(target=es2022).types │ ├── classStaticBlockUseBeforeDef2(target=esnext).errors.txt │ ├── classStaticBlockUseBeforeDef2(target=esnext).symbols │ ├── classStaticBlockUseBeforeDef2(target=esnext).types │ ├── classStaticBlockUseBeforeDef3.errors.txt │ ├── classStaticBlockUseBeforeDef3.symbols │ ├── classStaticBlockUseBeforeDef3.types │ ├── classStaticBlockUseBeforeDef4.js │ ├── classStaticBlockUseBeforeDef4.symbols │ ├── classStaticBlockUseBeforeDef4.types │ ├── classStaticBlockUseBeforeDef5.errors.txt │ ├── classStaticBlockUseBeforeDef5.js │ ├── classStaticBlockUseBeforeDef5.symbols │ ├── classStaticBlockUseBeforeDef5.types │ ├── classStaticInitializersUsePropertiesBeforeDeclaration.errors.txt │ ├── classStaticInitializersUsePropertiesBeforeDeclaration.js │ ├── classStaticInitializersUsePropertiesBeforeDeclaration.symbols │ ├── classStaticInitializersUsePropertiesBeforeDeclaration.types │ ├── classStaticPropertyAccess(target=es2015).errors.txt │ ├── classStaticPropertyAccess(target=es2015).js │ ├── classStaticPropertyAccess(target=es2015).symbols │ ├── classStaticPropertyAccess(target=es2015).types │ ├── classStaticPropertyAccess(target=es5).errors.txt │ ├── classStaticPropertyAccess(target=es5).js │ ├── classStaticPropertyAccess(target=es5).symbols │ ├── classStaticPropertyAccess(target=es5).types │ ├── classStaticPropertyTypeGuard(target=es2015).js │ ├── classStaticPropertyTypeGuard(target=es2015).symbols │ ├── classStaticPropertyTypeGuard(target=es2015).types │ ├── classStaticPropertyTypeGuard(target=es5).errors.txt │ ├── classStaticPropertyTypeGuard(target=es5).js │ ├── classStaticPropertyTypeGuard(target=es5).symbols │ ├── classStaticPropertyTypeGuard(target=es5).types │ ├── classTypeParametersInStatics.errors.txt │ ├── classTypeParametersInStatics.js │ ├── classTypeParametersInStatics.symbols │ ├── classTypeParametersInStatics.types │ ├── classUpdateTests.errors.txt │ ├── classUpdateTests.js │ ├── classUpdateTests.symbols │ ├── classUpdateTests.types │ ├── classUsedBeforeInitializedVariables(target=es2015).errors.txt │ ├── classUsedBeforeInitializedVariables(target=es2015).js │ ├── classUsedBeforeInitializedVariables(target=es2015).symbols │ ├── classUsedBeforeInitializedVariables(target=es2015).types │ ├── classUsedBeforeInitializedVariables(target=es5).errors.txt │ ├── classUsedBeforeInitializedVariables(target=es5).js │ ├── classUsedBeforeInitializedVariables(target=es5).symbols │ ├── classUsedBeforeInitializedVariables(target=es5).types │ ├── classVarianceCircularity.js │ ├── classVarianceCircularity.symbols │ ├── classVarianceCircularity.types │ ├── classVarianceResolveCircularity1.js │ ├── classVarianceResolveCircularity1.symbols │ ├── classVarianceResolveCircularity1.types │ ├── classVarianceResolveCircularity2.js │ ├── classVarianceResolveCircularity2.symbols │ ├── classVarianceResolveCircularity2.types │ ├── classWithBaseClassButNoConstructor.errors.txt │ ├── classWithBaseClassButNoConstructor.js │ ├── classWithBaseClassButNoConstructor.symbols │ ├── classWithBaseClassButNoConstructor.types │ ├── classWithConstructors.errors.txt │ ├── classWithConstructors.js │ ├── classWithConstructors.symbols │ ├── classWithConstructors.types │ ├── classWithDuplicateIdentifier.errors.txt │ ├── classWithDuplicateIdentifier.js │ ├── classWithDuplicateIdentifier.symbols │ ├── classWithDuplicateIdentifier.types │ ├── classWithEmptyBody.errors.txt │ ├── classWithEmptyBody.js │ ├── classWithEmptyBody.symbols │ ├── classWithEmptyBody.types │ ├── classWithEmptyTypeParameter.errors.txt │ ├── classWithEmptyTypeParameter.js │ ├── classWithEmptyTypeParameter.symbols │ ├── classWithEmptyTypeParameter.types │ ├── classWithMultipleBaseClasses.errors.txt │ ├── classWithMultipleBaseClasses.js │ ├── classWithMultipleBaseClasses.symbols │ ├── classWithMultipleBaseClasses.types │ ├── classWithNoConstructorOrBaseClass.errors.txt │ ├── classWithNoConstructorOrBaseClass.js │ ├── classWithNoConstructorOrBaseClass.symbols │ ├── classWithNoConstructorOrBaseClass.types │ ├── classWithOnlyPublicMembersEquivalentToInterface(target=es2015).errors.txt │ ├── classWithOnlyPublicMembersEquivalentToInterface(target=es2015).js │ ├── classWithOnlyPublicMembersEquivalentToInterface(target=es2015).symbols │ ├── classWithOnlyPublicMembersEquivalentToInterface(target=es2015).types │ ├── classWithOnlyPublicMembersEquivalentToInterface(target=es5).errors.txt │ ├── classWithOnlyPublicMembersEquivalentToInterface(target=es5).js │ ├── classWithOnlyPublicMembersEquivalentToInterface(target=es5).symbols │ ├── classWithOnlyPublicMembersEquivalentToInterface(target=es5).types │ ├── classWithOnlyPublicMembersEquivalentToInterface2(target=es2015).errors.txt │ ├── classWithOnlyPublicMembersEquivalentToInterface2(target=es2015).js │ ├── classWithOnlyPublicMembersEquivalentToInterface2(target=es2015).symbols │ ├── classWithOnlyPublicMembersEquivalentToInterface2(target=es2015).types │ ├── classWithOnlyPublicMembersEquivalentToInterface2(target=es5).errors.txt │ ├── classWithOnlyPublicMembersEquivalentToInterface2(target=es5).js │ ├── classWithOnlyPublicMembersEquivalentToInterface2(target=es5).symbols │ ├── classWithOnlyPublicMembersEquivalentToInterface2(target=es5).types │ ├── classWithOptionalParameter.js │ ├── classWithOptionalParameter.symbols │ ├── classWithOptionalParameter.types │ ├── classWithOverloadImplementationOfWrongName.errors.txt │ ├── classWithOverloadImplementationOfWrongName.js │ ├── classWithOverloadImplementationOfWrongName.symbols │ ├── classWithOverloadImplementationOfWrongName.types │ ├── classWithOverloadImplementationOfWrongName2.errors.txt │ ├── classWithOverloadImplementationOfWrongName2.js │ ├── classWithOverloadImplementationOfWrongName2.symbols │ ├── classWithOverloadImplementationOfWrongName2.types │ ├── classWithPredefinedTypesAsNames.errors.txt │ ├── classWithPredefinedTypesAsNames.js │ ├── classWithPredefinedTypesAsNames.symbols │ ├── classWithPredefinedTypesAsNames.types │ ├── classWithPredefinedTypesAsNames2.errors.txt │ ├── classWithPredefinedTypesAsNames2.js │ ├── classWithPredefinedTypesAsNames2.symbols │ ├── classWithPredefinedTypesAsNames2.types │ ├── classWithPrivateProperty.errors.txt │ ├── classWithPrivateProperty.js │ ├── classWithPrivateProperty.symbols │ ├── classWithPrivateProperty.types │ ├── classWithProtectedProperty.js │ ├── classWithProtectedProperty.symbols │ ├── classWithProtectedProperty.types │ ├── classWithPublicProperty.js │ ├── classWithPublicProperty.symbols │ ├── classWithPublicProperty.types │ ├── classWithSemicolonClassElement1.js │ ├── classWithSemicolonClassElement1.symbols │ ├── classWithSemicolonClassElement1.types │ ├── classWithSemicolonClassElement2.js │ ├── classWithSemicolonClassElement2.symbols │ ├── classWithSemicolonClassElement2.types │ ├── classWithSemicolonClassElementES61.js │ ├── classWithSemicolonClassElementES61.symbols │ ├── classWithSemicolonClassElementES61.types │ ├── classWithSemicolonClassElementES62.js │ ├── classWithSemicolonClassElementES62.symbols │ ├── classWithSemicolonClassElementES62.types │ ├── classWithStaticFieldInParameterBindingPattern(target=es2015).js │ ├── classWithStaticFieldInParameterBindingPattern(target=es5).errors.txt │ ├── classWithStaticFieldInParameterBindingPattern(target=es5).js │ ├── classWithStaticFieldInParameterBindingPattern(target=esnext).js │ ├── classWithStaticFieldInParameterBindingPattern.2(target=es2015).errors.txt │ ├── classWithStaticFieldInParameterBindingPattern.2(target=es5).errors.txt │ ├── classWithStaticFieldInParameterBindingPattern.2(target=esnext).errors.txt │ ├── classWithStaticFieldInParameterInitializer(target=es2015).js │ ├── classWithStaticFieldInParameterInitializer(target=es5).errors.txt │ ├── classWithStaticFieldInParameterInitializer(target=es5).js │ ├── classWithStaticFieldInParameterInitializer(target=esnext).js │ ├── classWithStaticFieldInParameterInitializer.2(target=es2015).errors.txt │ ├── classWithStaticFieldInParameterInitializer.2(target=es5).errors.txt │ ├── classWithStaticFieldInParameterInitializer.2(target=esnext).errors.txt │ ├── classWithStaticMembers.errors.txt │ ├── classWithStaticMembers.js │ ├── classWithStaticMembers.symbols │ ├── classWithStaticMembers.types │ ├── classWithTwoConstructorDefinitions.errors.txt │ ├── classWithTwoConstructorDefinitions.js │ ├── classWithTwoConstructorDefinitions.symbols │ ├── classWithTwoConstructorDefinitions.types │ ├── classWithoutExplicitConstructor.errors.txt │ ├── classWithoutExplicitConstructor.js │ ├── classWithoutExplicitConstructor.symbols │ ├── classWithoutExplicitConstructor.types │ ├── classdecl(target=es2015).js │ ├── classdecl(target=es2015).symbols │ ├── classdecl(target=es2015).types │ ├── classdecl(target=es5).errors.txt │ ├── classdecl(target=es5).js │ ├── classdecl(target=es5).symbols │ ├── classdecl(target=es5).types │ ├── clinterfaces.errors.txt │ ├── clinterfaces.js │ ├── clinterfaces.symbols │ ├── clinterfaces.types │ ├── cloduleAcrossModuleDefinitions.js │ ├── cloduleAcrossModuleDefinitions.symbols │ ├── cloduleAcrossModuleDefinitions.types │ ├── cloduleAndTypeParameters.js │ ├── cloduleAndTypeParameters.symbols │ ├── cloduleAndTypeParameters.types │ ├── cloduleGenericOnSelfMember.errors.txt │ ├── cloduleGenericOnSelfMember.js │ ├── cloduleGenericOnSelfMember.symbols │ ├── cloduleGenericOnSelfMember.types │ ├── cloduleSplitAcrossFiles.errors.txt │ ├── cloduleSplitAcrossFiles.js │ ├── cloduleSplitAcrossFiles.symbols │ ├── cloduleSplitAcrossFiles.types │ ├── cloduleStaticMembers.errors.txt │ ├── cloduleStaticMembers.js │ ├── cloduleStaticMembers.symbols │ ├── cloduleStaticMembers.types │ ├── cloduleTest1.js │ ├── cloduleTest1.symbols │ ├── cloduleTest1.types │ ├── cloduleTest2.errors.txt │ ├── cloduleTest2.js │ ├── cloduleTest2.symbols │ ├── cloduleTest2.types │ ├── cloduleWithDuplicateMember1.errors.txt │ ├── cloduleWithDuplicateMember1.js │ ├── cloduleWithDuplicateMember1.symbols │ ├── cloduleWithDuplicateMember1.types │ ├── cloduleWithDuplicateMember2.errors.txt │ ├── cloduleWithDuplicateMember2.js │ ├── cloduleWithDuplicateMember2.symbols │ ├── cloduleWithDuplicateMember2.types │ ├── cloduleWithPriorInstantiatedModule.errors.txt │ ├── cloduleWithPriorInstantiatedModule.js │ ├── cloduleWithPriorInstantiatedModule.symbols │ ├── cloduleWithPriorInstantiatedModule.types │ ├── cloduleWithPriorUninstantiatedModule.js │ ├── cloduleWithPriorUninstantiatedModule.symbols │ ├── cloduleWithPriorUninstantiatedModule.types │ ├── cloduleWithRecursiveReference.js │ ├── cloduleWithRecursiveReference.symbols │ ├── cloduleWithRecursiveReference.types │ ├── clodulesDerivedClasses.errors.txt │ ├── clodulesDerivedClasses.js │ ├── clodulesDerivedClasses.symbols │ ├── clodulesDerivedClasses.types │ ├── coAndContraVariantInferences.js │ ├── coAndContraVariantInferences.symbols │ ├── coAndContraVariantInferences.types │ ├── coAndContraVariantInferences2.js │ ├── coAndContraVariantInferences2.symbols │ ├── coAndContraVariantInferences2.types │ ├── coAndContraVariantInferences3.js │ ├── coAndContraVariantInferences3.symbols │ ├── coAndContraVariantInferences3.types │ ├── coAndContraVariantInferences4.js │ ├── coAndContraVariantInferences4.symbols │ ├── coAndContraVariantInferences4.types │ ├── coAndContraVariantInferences5.symbols │ ├── coAndContraVariantInferences5.types │ ├── coAndContraVariantInferences6.errors.txt │ ├── coAndContraVariantInferences6.symbols │ ├── coAndContraVariantInferences6.types │ ├── coAndContraVariantInferences7.symbols │ ├── coAndContraVariantInferences7.types │ ├── coAndContraVariantInferences8.symbols │ ├── coAndContraVariantInferences8.types │ ├── collectionPatternNoError.js │ ├── collectionPatternNoError.symbols │ ├── collectionPatternNoError.types │ ├── collisionArgumentsArrowFunctions(alwaysstrict=false,target=es2015).js │ ├── collisionArgumentsArrowFunctions(alwaysstrict=false,target=es2015).symbols │ ├── collisionArgumentsArrowFunctions(alwaysstrict=false,target=es2015).types │ ├── collisionArgumentsArrowFunctions(alwaysstrict=false,target=es5).errors.txt │ ├── collisionArgumentsArrowFunctions(alwaysstrict=false,target=es5).js │ ├── collisionArgumentsArrowFunctions(alwaysstrict=false,target=es5).symbols │ ├── collisionArgumentsArrowFunctions(alwaysstrict=false,target=es5).types │ ├── collisionArgumentsArrowFunctions(alwaysstrict=true,target=es2015).errors.txt │ ├── collisionArgumentsArrowFunctions(alwaysstrict=true,target=es2015).js │ ├── collisionArgumentsArrowFunctions(alwaysstrict=true,target=es2015).symbols │ ├── collisionArgumentsArrowFunctions(alwaysstrict=true,target=es2015).types │ ├── collisionArgumentsArrowFunctions(alwaysstrict=true,target=es5).errors.txt │ ├── collisionArgumentsArrowFunctions(alwaysstrict=true,target=es5).js │ ├── collisionArgumentsArrowFunctions(alwaysstrict=true,target=es5).symbols │ ├── collisionArgumentsArrowFunctions(alwaysstrict=true,target=es5).types │ ├── collisionArgumentsClassConstructor(target=es2015).errors.txt │ ├── collisionArgumentsClassConstructor(target=es2015).js │ ├── collisionArgumentsClassConstructor(target=es2015).symbols │ ├── collisionArgumentsClassConstructor(target=es2015).types │ ├── collisionArgumentsClassConstructor(target=es5).errors.txt │ ├── collisionArgumentsClassConstructor(target=es5).js │ ├── collisionArgumentsClassConstructor(target=es5).symbols │ ├── collisionArgumentsClassConstructor(target=es5).types │ ├── collisionArgumentsClassMethod(target=es2015).errors.txt │ ├── collisionArgumentsClassMethod(target=es2015).js │ ├── collisionArgumentsClassMethod(target=es2015).symbols │ ├── collisionArgumentsClassMethod(target=es2015).types │ ├── collisionArgumentsClassMethod(target=es5).errors.txt │ ├── collisionArgumentsClassMethod(target=es5).js │ ├── collisionArgumentsClassMethod(target=es5).symbols │ ├── collisionArgumentsClassMethod(target=es5).types │ ├── collisionArgumentsFunction(alwaysstrict=false,target=es2015).js │ ├── collisionArgumentsFunction(alwaysstrict=false,target=es2015).symbols │ ├── collisionArgumentsFunction(alwaysstrict=false,target=es2015).types │ ├── collisionArgumentsFunction(alwaysstrict=false,target=es5).errors.txt │ ├── collisionArgumentsFunction(alwaysstrict=false,target=es5).js │ ├── collisionArgumentsFunction(alwaysstrict=false,target=es5).symbols │ ├── collisionArgumentsFunction(alwaysstrict=false,target=es5).types │ ├── collisionArgumentsFunction(alwaysstrict=true,target=es2015).errors.txt │ ├── collisionArgumentsFunction(alwaysstrict=true,target=es2015).js │ ├── collisionArgumentsFunction(alwaysstrict=true,target=es2015).symbols │ ├── collisionArgumentsFunction(alwaysstrict=true,target=es2015).types │ ├── collisionArgumentsFunction(alwaysstrict=true,target=es5).errors.txt │ ├── collisionArgumentsFunction(alwaysstrict=true,target=es5).js │ ├── collisionArgumentsFunction(alwaysstrict=true,target=es5).symbols │ ├── collisionArgumentsFunction(alwaysstrict=true,target=es5).types │ ├── collisionArgumentsFunctionExpressions(alwaysstrict=false,target=es2015).js │ ├── collisionArgumentsFunctionExpressions(alwaysstrict=false,target=es2015).symbols │ ├── collisionArgumentsFunctionExpressions(alwaysstrict=false,target=es2015).types │ ├── collisionArgumentsFunctionExpressions(alwaysstrict=false,target=es5).errors.txt │ ├── collisionArgumentsFunctionExpressions(alwaysstrict=false,target=es5).js │ ├── collisionArgumentsFunctionExpressions(alwaysstrict=false,target=es5).symbols │ ├── collisionArgumentsFunctionExpressions(alwaysstrict=false,target=es5).types │ ├── collisionArgumentsFunctionExpressions(alwaysstrict=true,target=es2015).errors.txt │ ├── collisionArgumentsFunctionExpressions(alwaysstrict=true,target=es2015).js │ ├── collisionArgumentsFunctionExpressions(alwaysstrict=true,target=es2015).symbols │ ├── collisionArgumentsFunctionExpressions(alwaysstrict=true,target=es2015).types │ ├── collisionArgumentsFunctionExpressions(alwaysstrict=true,target=es5).errors.txt │ ├── collisionArgumentsFunctionExpressions(alwaysstrict=true,target=es5).js │ ├── collisionArgumentsFunctionExpressions(alwaysstrict=true,target=es5).symbols │ ├── collisionArgumentsFunctionExpressions(alwaysstrict=true,target=es5).types │ ├── collisionArgumentsInType(alwaysstrict=false).js │ ├── collisionArgumentsInType(alwaysstrict=false).symbols │ ├── collisionArgumentsInType(alwaysstrict=false).types │ ├── collisionArgumentsInType(alwaysstrict=true).errors.txt │ ├── collisionArgumentsInType(alwaysstrict=true).js │ ├── collisionArgumentsInType(alwaysstrict=true).symbols │ ├── collisionArgumentsInType(alwaysstrict=true).types │ ├── collisionArgumentsInterfaceMembers(alwaysstrict=false).js │ ├── collisionArgumentsInterfaceMembers(alwaysstrict=false).symbols │ ├── collisionArgumentsInterfaceMembers(alwaysstrict=false).types │ ├── collisionArgumentsInterfaceMembers(alwaysstrict=true).errors.txt │ ├── collisionArgumentsInterfaceMembers(alwaysstrict=true).js │ ├── collisionArgumentsInterfaceMembers(alwaysstrict=true).symbols │ ├── collisionArgumentsInterfaceMembers(alwaysstrict=true).types │ ├── collisionCodeGenEnumWithEnumMemberConflict.js │ ├── collisionCodeGenEnumWithEnumMemberConflict.symbols │ ├── collisionCodeGenEnumWithEnumMemberConflict.types │ ├── collisionCodeGenModuleWithAccessorChildren.js │ ├── collisionCodeGenModuleWithAccessorChildren.symbols │ ├── collisionCodeGenModuleWithAccessorChildren.types │ ├── collisionCodeGenModuleWithConstructorChildren.js │ ├── collisionCodeGenModuleWithConstructorChildren.symbols │ ├── collisionCodeGenModuleWithConstructorChildren.types │ ├── collisionCodeGenModuleWithEnumMemberConflict.js │ ├── collisionCodeGenModuleWithEnumMemberConflict.symbols │ ├── collisionCodeGenModuleWithEnumMemberConflict.types │ ├── collisionCodeGenModuleWithFunctionChildren.js │ ├── collisionCodeGenModuleWithFunctionChildren.symbols │ ├── collisionCodeGenModuleWithFunctionChildren.types │ ├── collisionCodeGenModuleWithMemberClassConflict.js │ ├── collisionCodeGenModuleWithMemberClassConflict.symbols │ ├── collisionCodeGenModuleWithMemberClassConflict.types │ ├── collisionCodeGenModuleWithMemberInterfaceConflict.js │ ├── collisionCodeGenModuleWithMemberInterfaceConflict.symbols │ ├── collisionCodeGenModuleWithMemberInterfaceConflict.types │ ├── collisionCodeGenModuleWithMemberVariable.js │ ├── collisionCodeGenModuleWithMemberVariable.symbols │ ├── collisionCodeGenModuleWithMemberVariable.types │ ├── collisionCodeGenModuleWithMethodChildren.js │ ├── collisionCodeGenModuleWithMethodChildren.symbols │ ├── collisionCodeGenModuleWithMethodChildren.types │ ├── collisionCodeGenModuleWithModuleChildren.js │ ├── collisionCodeGenModuleWithModuleChildren.symbols │ ├── collisionCodeGenModuleWithModuleChildren.types │ ├── collisionCodeGenModuleWithModuleReopening.js │ ├── collisionCodeGenModuleWithModuleReopening.symbols │ ├── collisionCodeGenModuleWithModuleReopening.types │ ├── collisionCodeGenModuleWithPrivateMember.js │ ├── collisionCodeGenModuleWithPrivateMember.symbols │ ├── collisionCodeGenModuleWithPrivateMember.types │ ├── collisionCodeGenModuleWithUnicodeNames.js │ ├── collisionCodeGenModuleWithUnicodeNames.symbols │ ├── collisionCodeGenModuleWithUnicodeNames.types │ ├── collisionExportsRequireAndAlias.errors.txt │ ├── collisionExportsRequireAndAlias.js │ ├── collisionExportsRequireAndAlias.symbols │ ├── collisionExportsRequireAndAlias.types │ ├── collisionExportsRequireAndAmbientClass.js │ ├── collisionExportsRequireAndAmbientClass.symbols │ ├── collisionExportsRequireAndAmbientClass.types │ ├── collisionExportsRequireAndAmbientEnum.js │ ├── collisionExportsRequireAndAmbientEnum.symbols │ ├── collisionExportsRequireAndAmbientEnum.types │ ├── collisionExportsRequireAndAmbientFunction.js │ ├── collisionExportsRequireAndAmbientFunction.symbols │ ├── collisionExportsRequireAndAmbientFunction.types │ ├── collisionExportsRequireAndAmbientFunctionInGlobalFile.js │ ├── collisionExportsRequireAndAmbientFunctionInGlobalFile.symbols │ ├── collisionExportsRequireAndAmbientFunctionInGlobalFile.types │ ├── collisionExportsRequireAndAmbientModule.errors.txt │ ├── collisionExportsRequireAndAmbientModule.js │ ├── collisionExportsRequireAndAmbientModule.symbols │ ├── collisionExportsRequireAndAmbientModule.types │ ├── collisionExportsRequireAndAmbientVar.js │ ├── collisionExportsRequireAndAmbientVar.symbols │ ├── collisionExportsRequireAndAmbientVar.types │ ├── collisionExportsRequireAndClass.errors.txt │ ├── collisionExportsRequireAndClass.js │ ├── collisionExportsRequireAndClass.symbols │ ├── collisionExportsRequireAndClass.types │ ├── collisionExportsRequireAndEnum.errors.txt │ ├── collisionExportsRequireAndEnum.js │ ├── collisionExportsRequireAndEnum.symbols │ ├── collisionExportsRequireAndEnum.types │ ├── collisionExportsRequireAndFunction.errors.txt │ ├── collisionExportsRequireAndFunction.js │ ├── collisionExportsRequireAndFunction.symbols │ ├── collisionExportsRequireAndFunction.types │ ├── collisionExportsRequireAndFunctionInGlobalFile.js │ ├── collisionExportsRequireAndFunctionInGlobalFile.symbols │ ├── collisionExportsRequireAndFunctionInGlobalFile.types │ ├── collisionExportsRequireAndInternalModuleAlias.errors.txt │ ├── collisionExportsRequireAndInternalModuleAlias.js │ ├── collisionExportsRequireAndInternalModuleAlias.symbols │ ├── collisionExportsRequireAndInternalModuleAlias.types │ ├── collisionExportsRequireAndInternalModuleAliasInGlobalFile.js │ ├── collisionExportsRequireAndInternalModuleAliasInGlobalFile.symbols │ ├── collisionExportsRequireAndInternalModuleAliasInGlobalFile.types │ ├── collisionExportsRequireAndModule.errors.txt │ ├── collisionExportsRequireAndModule.js │ ├── collisionExportsRequireAndModule.symbols │ ├── collisionExportsRequireAndModule.types │ ├── collisionExportsRequireAndUninstantiatedModule.errors.txt │ ├── collisionExportsRequireAndUninstantiatedModule.js │ ├── collisionExportsRequireAndUninstantiatedModule.symbols │ ├── collisionExportsRequireAndUninstantiatedModule.types │ ├── collisionExportsRequireAndVar.errors.txt │ ├── collisionExportsRequireAndVar.js │ ├── collisionExportsRequireAndVar.symbols │ ├── collisionExportsRequireAndVar.types │ ├── collisionRestParameterArrowFunctions.js │ ├── collisionRestParameterArrowFunctions.symbols │ ├── collisionRestParameterArrowFunctions.types │ ├── collisionRestParameterClassConstructor.js │ ├── collisionRestParameterClassConstructor.symbols │ ├── collisionRestParameterClassConstructor.types │ ├── collisionRestParameterClassMethod.js │ ├── collisionRestParameterClassMethod.symbols │ ├── collisionRestParameterClassMethod.types │ ├── collisionRestParameterFunction.js │ ├── collisionRestParameterFunction.symbols │ ├── collisionRestParameterFunction.types │ ├── collisionRestParameterFunctionExpressions.js │ ├── collisionRestParameterFunctionExpressions.symbols │ ├── collisionRestParameterFunctionExpressions.types │ ├── collisionRestParameterInType.js │ ├── collisionRestParameterInType.symbols │ ├── collisionRestParameterInType.types │ ├── collisionRestParameterInterfaceMembers.js │ ├── collisionRestParameterInterfaceMembers.symbols │ ├── collisionRestParameterInterfaceMembers.types │ ├── collisionRestParameterUnderscoreIUsage.js │ ├── collisionRestParameterUnderscoreIUsage.symbols │ ├── collisionRestParameterUnderscoreIUsage.types │ ├── collisionSuperAndLocalFunctionInAccessors(target=es2015).js │ ├── collisionSuperAndLocalFunctionInAccessors(target=es2015).symbols │ ├── collisionSuperAndLocalFunctionInAccessors(target=es2015).types │ ├── collisionSuperAndLocalFunctionInAccessors(target=es5).errors.txt │ ├── collisionSuperAndLocalFunctionInAccessors(target=es5).js │ ├── collisionSuperAndLocalFunctionInAccessors(target=es5).symbols │ ├── collisionSuperAndLocalFunctionInAccessors(target=es5).types │ ├── collisionSuperAndLocalFunctionInConstructor.js │ ├── collisionSuperAndLocalFunctionInConstructor.symbols │ ├── collisionSuperAndLocalFunctionInConstructor.types │ ├── collisionSuperAndLocalFunctionInMethod.js │ ├── collisionSuperAndLocalFunctionInMethod.symbols │ ├── collisionSuperAndLocalFunctionInMethod.types │ ├── collisionSuperAndLocalFunctionInProperty.js │ ├── collisionSuperAndLocalFunctionInProperty.symbols │ ├── collisionSuperAndLocalFunctionInProperty.types │ ├── collisionSuperAndLocalVarInAccessors(target=es2015).js │ ├── collisionSuperAndLocalVarInAccessors(target=es2015).symbols │ ├── collisionSuperAndLocalVarInAccessors(target=es2015).types │ ├── collisionSuperAndLocalVarInAccessors(target=es5).errors.txt │ ├── collisionSuperAndLocalVarInAccessors(target=es5).js │ ├── collisionSuperAndLocalVarInAccessors(target=es5).symbols │ ├── collisionSuperAndLocalVarInAccessors(target=es5).types │ ├── collisionSuperAndLocalVarInConstructor.js │ ├── collisionSuperAndLocalVarInConstructor.symbols │ ├── collisionSuperAndLocalVarInConstructor.types │ ├── collisionSuperAndLocalVarInMethod.js │ ├── collisionSuperAndLocalVarInMethod.symbols │ ├── collisionSuperAndLocalVarInMethod.types │ ├── collisionSuperAndLocalVarInProperty.js │ ├── collisionSuperAndLocalVarInProperty.symbols │ ├── collisionSuperAndLocalVarInProperty.types │ ├── collisionSuperAndNameResolution.js │ ├── collisionSuperAndNameResolution.symbols │ ├── collisionSuperAndNameResolution.types │ ├── collisionSuperAndParameter(target=es2015).js │ ├── collisionSuperAndParameter(target=es2015).symbols │ ├── collisionSuperAndParameter(target=es2015).types │ ├── collisionSuperAndParameter(target=es5).errors.txt │ ├── collisionSuperAndParameter(target=es5).js │ ├── collisionSuperAndParameter(target=es5).symbols │ ├── collisionSuperAndParameter(target=es5).types │ ├── collisionSuperAndParameter1.js │ ├── collisionSuperAndParameter1.symbols │ ├── collisionSuperAndParameter1.types │ ├── collisionSuperAndPropertyNameAsConstuctorParameter.js │ ├── collisionSuperAndPropertyNameAsConstuctorParameter.symbols │ ├── collisionSuperAndPropertyNameAsConstuctorParameter.types │ ├── collisionThisExpressionAndAliasInGlobal.js │ ├── collisionThisExpressionAndAliasInGlobal.symbols │ ├── collisionThisExpressionAndAliasInGlobal.types │ ├── collisionThisExpressionAndAmbientClassInGlobal.js │ ├── collisionThisExpressionAndAmbientClassInGlobal.symbols │ ├── collisionThisExpressionAndAmbientClassInGlobal.types │ ├── collisionThisExpressionAndAmbientVarInGlobal.js │ ├── collisionThisExpressionAndAmbientVarInGlobal.symbols │ ├── collisionThisExpressionAndAmbientVarInGlobal.types │ ├── collisionThisExpressionAndClassInGlobal.js │ ├── collisionThisExpressionAndClassInGlobal.symbols │ ├── collisionThisExpressionAndClassInGlobal.types │ ├── collisionThisExpressionAndEnumInGlobal.js │ ├── collisionThisExpressionAndEnumInGlobal.symbols │ ├── collisionThisExpressionAndEnumInGlobal.types │ ├── collisionThisExpressionAndFunctionInGlobal.js │ ├── collisionThisExpressionAndFunctionInGlobal.symbols │ ├── collisionThisExpressionAndFunctionInGlobal.types │ ├── collisionThisExpressionAndLocalVarInAccessors(target=es2015).js │ ├── collisionThisExpressionAndLocalVarInAccessors(target=es2015).symbols │ ├── collisionThisExpressionAndLocalVarInAccessors(target=es2015).types │ ├── collisionThisExpressionAndLocalVarInAccessors(target=es5).errors.txt │ ├── collisionThisExpressionAndLocalVarInAccessors(target=es5).js │ ├── collisionThisExpressionAndLocalVarInAccessors(target=es5).symbols │ ├── collisionThisExpressionAndLocalVarInAccessors(target=es5).types │ ├── collisionThisExpressionAndLocalVarInConstructor.js │ ├── collisionThisExpressionAndLocalVarInConstructor.symbols │ ├── collisionThisExpressionAndLocalVarInConstructor.types │ ├── collisionThisExpressionAndLocalVarInFunction.js │ ├── collisionThisExpressionAndLocalVarInFunction.symbols │ ├── collisionThisExpressionAndLocalVarInFunction.types │ ├── collisionThisExpressionAndLocalVarInLambda.js │ ├── collisionThisExpressionAndLocalVarInLambda.symbols │ ├── collisionThisExpressionAndLocalVarInLambda.types │ ├── collisionThisExpressionAndLocalVarInMethod.js │ ├── collisionThisExpressionAndLocalVarInMethod.symbols │ ├── collisionThisExpressionAndLocalVarInMethod.types │ ├── collisionThisExpressionAndLocalVarInProperty.js │ ├── collisionThisExpressionAndLocalVarInProperty.symbols │ ├── collisionThisExpressionAndLocalVarInProperty.types │ ├── collisionThisExpressionAndLocalVarWithSuperExperssion.js │ ├── collisionThisExpressionAndLocalVarWithSuperExperssion.symbols │ ├── collisionThisExpressionAndLocalVarWithSuperExperssion.types │ ├── collisionThisExpressionAndModuleInGlobal.js │ ├── collisionThisExpressionAndModuleInGlobal.symbols │ ├── collisionThisExpressionAndModuleInGlobal.types │ ├── collisionThisExpressionAndNameResolution.js │ ├── collisionThisExpressionAndNameResolution.symbols │ ├── collisionThisExpressionAndNameResolution.types │ ├── collisionThisExpressionAndParameter.js │ ├── collisionThisExpressionAndParameter.symbols │ ├── collisionThisExpressionAndParameter.types │ ├── collisionThisExpressionAndPropertyNameAsConstuctorParameter.js │ ├── collisionThisExpressionAndPropertyNameAsConstuctorParameter.symbols │ ├── collisionThisExpressionAndPropertyNameAsConstuctorParameter.types │ ├── collisionThisExpressionAndVarInGlobal.js │ ├── collisionThisExpressionAndVarInGlobal.symbols │ ├── collisionThisExpressionAndVarInGlobal.types │ ├── commaOperator1.errors.txt │ ├── commaOperator1.js │ ├── commaOperator1.symbols │ ├── commaOperator1.types │ ├── commaOperatorInConditionalExpression.js │ ├── commaOperatorInConditionalExpression.symbols │ ├── commaOperatorInConditionalExpression.types │ ├── commaOperatorInvalidAssignmentType.errors.txt │ ├── commaOperatorInvalidAssignmentType.js │ ├── commaOperatorInvalidAssignmentType.symbols │ ├── commaOperatorInvalidAssignmentType.types │ ├── commaOperatorLeftSideUnused.errors.txt │ ├── commaOperatorLeftSideUnused.js │ ├── commaOperatorLeftSideUnused.symbols │ ├── commaOperatorLeftSideUnused.types │ ├── commaOperatorOtherInvalidOperation.errors.txt │ ├── commaOperatorOtherInvalidOperation.js │ ├── commaOperatorOtherInvalidOperation.symbols │ ├── commaOperatorOtherInvalidOperation.types │ ├── commaOperatorOtherValidOperation.errors.txt │ ├── commaOperatorOtherValidOperation.js │ ├── commaOperatorOtherValidOperation.symbols │ ├── commaOperatorOtherValidOperation.types │ ├── commaOperatorWithSecondOperandAnyType.js │ ├── commaOperatorWithSecondOperandAnyType.symbols │ ├── commaOperatorWithSecondOperandAnyType.types │ ├── commaOperatorWithSecondOperandBooleanType.errors.txt │ ├── commaOperatorWithSecondOperandBooleanType.js │ ├── commaOperatorWithSecondOperandBooleanType.symbols │ ├── commaOperatorWithSecondOperandBooleanType.types │ ├── commaOperatorWithSecondOperandNumberType.errors.txt │ ├── commaOperatorWithSecondOperandNumberType.js │ ├── commaOperatorWithSecondOperandNumberType.symbols │ ├── commaOperatorWithSecondOperandNumberType.types │ ├── commaOperatorWithSecondOperandObjectType.errors.txt │ ├── commaOperatorWithSecondOperandObjectType.js │ ├── commaOperatorWithSecondOperandObjectType.symbols │ ├── commaOperatorWithSecondOperandObjectType.types │ ├── commaOperatorWithSecondOperandStringType.errors.txt │ ├── commaOperatorWithSecondOperandStringType.js │ ├── commaOperatorWithSecondOperandStringType.symbols │ ├── commaOperatorWithSecondOperandStringType.types │ ├── commaOperatorWithoutOperand.errors.txt │ ├── commaOperatorWithoutOperand.js │ ├── commaOperatorWithoutOperand.symbols │ ├── commaOperatorWithoutOperand.types │ ├── commaOperatorsMultipleOperators.errors.txt │ ├── commaOperatorsMultipleOperators.js │ ├── commaOperatorsMultipleOperators.symbols │ ├── commaOperatorsMultipleOperators.types │ ├── commentBeforeStaticMethod1.js │ ├── commentBeforeStaticMethod1.symbols │ ├── commentBeforeStaticMethod1.types │ ├── commentEmitAtEndOfFile1.js │ ├── commentEmitAtEndOfFile1.symbols │ ├── commentEmitAtEndOfFile1.types │ ├── commentEmitOnParenthesizedAssertionInReturnStatement.js │ ├── commentEmitOnParenthesizedAssertionInReturnStatement.symbols │ ├── commentEmitOnParenthesizedAssertionInReturnStatement.types │ ├── commentEmitOnParenthesizedAssertionInReturnStatement2.js │ ├── commentEmitOnParenthesizedAssertionInReturnStatement2.symbols │ ├── commentEmitOnParenthesizedAssertionInReturnStatement2.types │ ├── commentEmitWithCommentOnLastLine.js │ ├── commentEmitWithCommentOnLastLine.symbols │ ├── commentEmitWithCommentOnLastLine.types │ ├── commentEmittingInPreserveJsx1.js │ ├── commentEmittingInPreserveJsx1.symbols │ ├── commentEmittingInPreserveJsx1.types │ ├── commentInEmptyParameterList1.js │ ├── commentInEmptyParameterList1.symbols │ ├── commentInEmptyParameterList1.types │ ├── commentInMethodCall.errors.txt │ ├── commentInMethodCall.js │ ├── commentInMethodCall.symbols │ ├── commentInMethodCall.types │ ├── commentInNamespaceDeclarationWithIdentifierPathName.js │ ├── commentInNamespaceDeclarationWithIdentifierPathName.symbols │ ├── commentInNamespaceDeclarationWithIdentifierPathName.types │ ├── commentLeadingCloseBrace.js │ ├── commentLeadingCloseBrace.symbols │ ├── commentLeadingCloseBrace.types │ ├── commentOnAmbientClass1.js │ ├── commentOnAmbientClass1.symbols │ ├── commentOnAmbientClass1.types │ ├── commentOnAmbientEnum.js │ ├── commentOnAmbientEnum.symbols │ ├── commentOnAmbientEnum.types │ ├── commentOnAmbientModule.js │ ├── commentOnAmbientModule.symbols │ ├── commentOnAmbientModule.types │ ├── commentOnAmbientVariable1.js │ ├── commentOnAmbientVariable1.symbols │ ├── commentOnAmbientVariable1.types │ ├── commentOnAmbientVariable2.js │ ├── commentOnAmbientVariable2.symbols │ ├── commentOnAmbientVariable2.types │ ├── commentOnAmbientfunction.js │ ├── commentOnAmbientfunction.symbols │ ├── commentOnAmbientfunction.types │ ├── commentOnArrayElement1.js │ ├── commentOnArrayElement1.symbols │ ├── commentOnArrayElement1.types │ ├── commentOnArrayElement10.js │ ├── commentOnArrayElement10.symbols │ ├── commentOnArrayElement10.types │ ├── commentOnArrayElement11.js │ ├── commentOnArrayElement11.symbols │ ├── commentOnArrayElement11.types │ ├── commentOnArrayElement12.js │ ├── commentOnArrayElement12.symbols │ ├── commentOnArrayElement12.types │ ├── commentOnArrayElement13.js │ ├── commentOnArrayElement13.symbols │ ├── commentOnArrayElement13.types │ ├── commentOnArrayElement14.js │ ├── commentOnArrayElement14.symbols │ ├── commentOnArrayElement14.types │ ├── commentOnArrayElement15.js │ ├── commentOnArrayElement15.symbols │ ├── commentOnArrayElement15.types │ ├── commentOnArrayElement16.js │ ├── commentOnArrayElement16.symbols │ ├── commentOnArrayElement16.types │ ├── commentOnArrayElement2.js │ ├── commentOnArrayElement2.symbols │ ├── commentOnArrayElement2.types │ ├── commentOnArrayElement3.js │ ├── commentOnArrayElement3.symbols │ ├── commentOnArrayElement3.types │ ├── commentOnArrayElement4.js │ ├── commentOnArrayElement4.symbols │ ├── commentOnArrayElement4.types │ ├── commentOnArrayElement5.js │ ├── commentOnArrayElement5.symbols │ ├── commentOnArrayElement5.types │ ├── commentOnArrayElement6.js │ ├── commentOnArrayElement6.symbols │ ├── commentOnArrayElement6.types │ ├── commentOnArrayElement7.js │ ├── commentOnArrayElement7.symbols │ ├── commentOnArrayElement7.types │ ├── commentOnArrayElement8.js │ ├── commentOnArrayElement8.symbols │ ├── commentOnArrayElement8.types │ ├── commentOnArrayElement9.js │ ├── commentOnArrayElement9.symbols │ ├── commentOnArrayElement9.types │ ├── commentOnBinaryOperator1.js │ ├── commentOnBinaryOperator1.symbols │ ├── commentOnBinaryOperator1.types │ ├── commentOnBinaryOperator2.js │ ├── commentOnBinaryOperator2.symbols │ ├── commentOnBinaryOperator2.types │ ├── commentOnBlock1.js │ ├── commentOnBlock1.symbols │ ├── commentOnBlock1.types │ ├── commentOnClassAccessor1.js │ ├── commentOnClassAccessor1.symbols │ ├── commentOnClassAccessor1.types │ ├── commentOnClassAccessor2.js │ ├── commentOnClassAccessor2.symbols │ ├── commentOnClassAccessor2.types │ ├── commentOnClassMethod1.js │ ├── commentOnClassMethod1.symbols │ ├── commentOnClassMethod1.types │ ├── commentOnDecoratedClassDeclaration.js │ ├── commentOnDecoratedClassDeclaration.symbols │ ├── commentOnDecoratedClassDeclaration.types │ ├── commentOnElidedModule1.js │ ├── commentOnElidedModule1.symbols │ ├── commentOnElidedModule1.types │ ├── commentOnExportEnumDeclaration.js │ ├── commentOnExportEnumDeclaration.symbols │ ├── commentOnExportEnumDeclaration.types │ ├── commentOnExpressionStatement1.js │ ├── commentOnExpressionStatement1.symbols │ ├── commentOnExpressionStatement1.types │ ├── commentOnIfStatement1.js │ ├── commentOnIfStatement1.symbols │ ├── commentOnIfStatement1.types │ ├── commentOnImportStatement1.errors.txt │ ├── commentOnImportStatement1.js │ ├── commentOnImportStatement1.symbols │ ├── commentOnImportStatement1.types │ ├── commentOnImportStatement2.errors.txt │ ├── commentOnImportStatement2.js │ ├── commentOnImportStatement2.symbols │ ├── commentOnImportStatement2.types │ ├── commentOnImportStatement3.errors.txt │ ├── commentOnImportStatement3.js │ ├── commentOnImportStatement3.symbols │ ├── commentOnImportStatement3.types │ ├── commentOnInterface1.js │ ├── commentOnInterface1.symbols │ ├── commentOnInterface1.types │ ├── commentOnParameter1.js │ ├── commentOnParameter1.symbols │ ├── commentOnParameter1.types │ ├── commentOnParameter2.js │ ├── commentOnParameter2.symbols │ ├── commentOnParameter2.types │ ├── commentOnParameter3.js │ ├── commentOnParameter3.symbols │ ├── commentOnParameter3.types │ ├── commentOnParenthesizedExpressionOpenParen1.errors.txt │ ├── commentOnParenthesizedExpressionOpenParen1.js │ ├── commentOnParenthesizedExpressionOpenParen1.symbols │ ├── commentOnParenthesizedExpressionOpenParen1.types │ ├── commentOnSignature1.js │ ├── commentOnSignature1.symbols │ ├── commentOnSignature1.types │ ├── commentOnSimpleArrowFunctionBody1.js │ ├── commentOnSimpleArrowFunctionBody1.symbols │ ├── commentOnSimpleArrowFunctionBody1.types │ ├── commentOnStaticMember1.js │ ├── commentOnStaticMember1.symbols │ ├── commentOnStaticMember1.types │ ├── commentWithUnreasonableIndentationLevel01.js │ ├── commentWithUnreasonableIndentationLevel01.symbols │ ├── commentWithUnreasonableIndentationLevel01.types │ ├── commentsAfterCaseClauses1.js │ ├── commentsAfterCaseClauses1.symbols │ ├── commentsAfterCaseClauses1.types │ ├── commentsAfterCaseClauses2.js │ ├── commentsAfterCaseClauses2.symbols │ ├── commentsAfterCaseClauses2.types │ ├── commentsAfterCaseClauses3.js │ ├── commentsAfterCaseClauses3.symbols │ ├── commentsAfterCaseClauses3.types │ ├── commentsAfterFunctionExpression1.js │ ├── commentsAfterFunctionExpression1.symbols │ ├── commentsAfterFunctionExpression1.types │ ├── commentsAfterSpread.js │ ├── commentsAfterSpread.symbols │ ├── commentsAfterSpread.types │ ├── commentsArgumentsOfCallExpression1.js │ ├── commentsArgumentsOfCallExpression1.symbols │ ├── commentsArgumentsOfCallExpression1.types │ ├── commentsArgumentsOfCallExpression2.js │ ├── commentsArgumentsOfCallExpression2.symbols │ ├── commentsArgumentsOfCallExpression2.types │ ├── commentsAtEndOfFile1.js │ ├── commentsAtEndOfFile1.symbols │ ├── commentsAtEndOfFile1.types │ ├── commentsBeforeFunctionExpression1.js │ ├── commentsBeforeFunctionExpression1.symbols │ ├── commentsBeforeFunctionExpression1.types │ ├── commentsBeforeVariableStatement1.errors.txt │ ├── commentsBeforeVariableStatement1.js │ ├── commentsBeforeVariableStatement1.symbols │ ├── commentsBeforeVariableStatement1.types │ ├── commentsClass(target=es2015).js │ ├── commentsClass(target=es2015).symbols │ ├── commentsClass(target=es2015).types │ ├── commentsClass(target=es5).errors.txt │ ├── commentsClass(target=es5).js │ ├── commentsClass(target=es5).symbols │ ├── commentsClass(target=es5).types │ ├── commentsClassMembers(target=es2015).errors.txt │ ├── commentsClassMembers(target=es2015).js │ ├── commentsClassMembers(target=es2015).symbols │ ├── commentsClassMembers(target=es2015).types │ ├── commentsClassMembers(target=es5).errors.txt │ ├── commentsClassMembers(target=es5).js │ ├── commentsClassMembers(target=es5).symbols │ ├── commentsClassMembers(target=es5).types │ ├── commentsCommentParsing(target=es2015).js │ ├── commentsCommentParsing(target=es2015).symbols │ ├── commentsCommentParsing(target=es2015).types │ ├── commentsCommentParsing(target=es5).errors.txt │ ├── commentsCommentParsing(target=es5).js │ ├── commentsCommentParsing(target=es5).symbols │ ├── commentsCommentParsing(target=es5).types │ ├── commentsDottedModuleName(target=es2015).errors.txt │ ├── commentsDottedModuleName(target=es2015).js │ ├── commentsDottedModuleName(target=es2015).symbols │ ├── commentsDottedModuleName(target=es2015).types │ ├── commentsDottedModuleName(target=es5).errors.txt │ ├── commentsDottedModuleName(target=es5).js │ ├── commentsDottedModuleName(target=es5).symbols │ ├── commentsDottedModuleName(target=es5).types │ ├── commentsEnums(target=es2015).js │ ├── commentsEnums(target=es2015).symbols │ ├── commentsEnums(target=es2015).types │ ├── commentsEnums(target=es5).errors.txt │ ├── commentsEnums(target=es5).js │ ├── commentsEnums(target=es5).symbols │ ├── commentsEnums(target=es5).types │ ├── commentsExternalModules(target=es2015).errors.txt │ ├── commentsExternalModules(target=es2015).js │ ├── commentsExternalModules(target=es2015).symbols │ ├── commentsExternalModules(target=es2015).types │ ├── commentsExternalModules(target=es5).errors.txt │ ├── commentsExternalModules(target=es5).js │ ├── commentsExternalModules(target=es5).symbols │ ├── commentsExternalModules(target=es5).types │ ├── commentsExternalModules2(target=es2015).errors.txt │ ├── commentsExternalModules2(target=es2015).js │ ├── commentsExternalModules2(target=es2015).symbols │ ├── commentsExternalModules2(target=es2015).types │ ├── commentsExternalModules2(target=es5).errors.txt │ ├── commentsExternalModules2(target=es5).js │ ├── commentsExternalModules2(target=es5).symbols │ ├── commentsExternalModules2(target=es5).types │ ├── commentsExternalModules3(target=es2015).js │ ├── commentsExternalModules3(target=es2015).symbols │ ├── commentsExternalModules3(target=es2015).types │ ├── commentsExternalModules3(target=es5).errors.txt │ ├── commentsExternalModules3(target=es5).js │ ├── commentsExternalModules3(target=es5).symbols │ ├── commentsExternalModules3(target=es5).types │ ├── commentsFormatting(target=es2015).js │ ├── commentsFormatting(target=es2015).symbols │ ├── commentsFormatting(target=es2015).types │ ├── commentsFormatting(target=es5).errors.txt │ ├── commentsFormatting(target=es5).js │ ├── commentsFormatting(target=es5).symbols │ ├── commentsFormatting(target=es5).types │ ├── commentsFunction(target=es2015).js │ ├── commentsFunction(target=es2015).symbols │ ├── commentsFunction(target=es2015).types │ ├── commentsFunction(target=es5).errors.txt │ ├── commentsFunction(target=es5).js │ ├── commentsFunction(target=es5).symbols │ ├── commentsFunction(target=es5).types │ ├── commentsInheritance(target=es2015).errors.txt │ ├── commentsInheritance(target=es2015).js │ ├── commentsInheritance(target=es2015).symbols │ ├── commentsInheritance(target=es2015).types │ ├── commentsInheritance(target=es5).errors.txt │ ├── commentsInheritance(target=es5).js │ ├── commentsInheritance(target=es5).symbols │ ├── commentsInheritance(target=es5).types │ ├── commentsInterface(target=es2015).js │ ├── commentsInterface(target=es2015).symbols │ ├── commentsInterface(target=es2015).types │ ├── commentsInterface(target=es5).errors.txt │ ├── commentsInterface(target=es5).js │ ├── commentsInterface(target=es5).symbols │ ├── commentsInterface(target=es5).types │ ├── commentsModules(target=es2015).js │ ├── commentsModules(target=es2015).symbols │ ├── commentsModules(target=es2015).types │ ├── commentsModules(target=es5).errors.txt │ ├── commentsModules(target=es5).js │ ├── commentsModules(target=es5).symbols │ ├── commentsModules(target=es5).types │ ├── commentsMultiModuleMultiFile(target=es2015).errors.txt │ ├── commentsMultiModuleMultiFile(target=es2015).js │ ├── commentsMultiModuleMultiFile(target=es2015).symbols │ ├── commentsMultiModuleMultiFile(target=es2015).types │ ├── commentsMultiModuleMultiFile(target=es5).errors.txt │ ├── commentsMultiModuleMultiFile(target=es5).js │ ├── commentsMultiModuleMultiFile(target=es5).symbols │ ├── commentsMultiModuleMultiFile(target=es5).types │ ├── commentsMultiModuleSingleFile(target=es2015).js │ ├── commentsMultiModuleSingleFile(target=es2015).symbols │ ├── commentsMultiModuleSingleFile(target=es2015).types │ ├── commentsMultiModuleSingleFile(target=es5).errors.txt │ ├── commentsMultiModuleSingleFile(target=es5).js │ ├── commentsMultiModuleSingleFile(target=es5).symbols │ ├── commentsMultiModuleSingleFile(target=es5).types │ ├── commentsOnJSXExpressionsArePreserved(jsx=preserve,module=commonjs,moduledetection=auto).errors.txt │ ├── commentsOnJSXExpressionsArePreserved(jsx=preserve,module=commonjs,moduledetection=auto).js │ ├── commentsOnJSXExpressionsArePreserved(jsx=preserve,module=commonjs,moduledetection=auto).symbols │ ├── commentsOnJSXExpressionsArePreserved(jsx=preserve,module=commonjs,moduledetection=auto).types │ ├── commentsOnJSXExpressionsArePreserved(jsx=preserve,module=commonjs,moduledetection=force).errors.txt │ ├── commentsOnJSXExpressionsArePreserved(jsx=preserve,module=commonjs,moduledetection=force).js │ ├── commentsOnJSXExpressionsArePreserved(jsx=preserve,module=commonjs,moduledetection=force).symbols │ ├── commentsOnJSXExpressionsArePreserved(jsx=preserve,module=commonjs,moduledetection=force).types │ ├── commentsOnJSXExpressionsArePreserved(jsx=preserve,module=commonjs,moduledetection=legacy).errors.txt │ ├── commentsOnJSXExpressionsArePreserved(jsx=preserve,module=commonjs,moduledetection=legacy).js │ ├── commentsOnJSXExpressionsArePreserved(jsx=preserve,module=commonjs,moduledetection=legacy).symbols │ ├── commentsOnJSXExpressionsArePreserved(jsx=preserve,module=commonjs,moduledetection=legacy).types │ ├── commentsOnJSXExpressionsArePreserved(jsx=preserve,module=system,moduledetection=auto).errors.txt │ ├── commentsOnJSXExpressionsArePreserved(jsx=preserve,module=system,moduledetection=auto).js │ ├── commentsOnJSXExpressionsArePreserved(jsx=preserve,module=system,moduledetection=auto).symbols │ ├── commentsOnJSXExpressionsArePreserved(jsx=preserve,module=system,moduledetection=auto).types │ ├── commentsOnJSXExpressionsArePreserved(jsx=preserve,module=system,moduledetection=force).errors.txt │ ├── commentsOnJSXExpressionsArePreserved(jsx=preserve,module=system,moduledetection=force).js │ ├── commentsOnJSXExpressionsArePreserved(jsx=preserve,module=system,moduledetection=force).symbols │ ├── commentsOnJSXExpressionsArePreserved(jsx=preserve,module=system,moduledetection=force).types │ ├── commentsOnJSXExpressionsArePreserved(jsx=preserve,module=system,moduledetection=legacy).errors.txt │ ├── commentsOnJSXExpressionsArePreserved(jsx=preserve,module=system,moduledetection=legacy).js │ ├── commentsOnJSXExpressionsArePreserved(jsx=preserve,module=system,moduledetection=legacy).symbols │ ├── commentsOnJSXExpressionsArePreserved(jsx=preserve,module=system,moduledetection=legacy).types │ ├── commentsOnJSXExpressionsArePreserved(jsx=react,module=commonjs,moduledetection=auto).errors.txt │ ├── commentsOnJSXExpressionsArePreserved(jsx=react,module=commonjs,moduledetection=auto).js │ ├── commentsOnJSXExpressionsArePreserved(jsx=react,module=commonjs,moduledetection=auto).symbols │ ├── commentsOnJSXExpressionsArePreserved(jsx=react,module=commonjs,moduledetection=auto).types │ ├── commentsOnJSXExpressionsArePreserved(jsx=react,module=commonjs,moduledetection=force).errors.txt │ ├── commentsOnJSXExpressionsArePreserved(jsx=react,module=commonjs,moduledetection=force).js │ ├── commentsOnJSXExpressionsArePreserved(jsx=react,module=commonjs,moduledetection=force).symbols │ ├── commentsOnJSXExpressionsArePreserved(jsx=react,module=commonjs,moduledetection=force).types │ ├── commentsOnJSXExpressionsArePreserved(jsx=react,module=commonjs,moduledetection=legacy).errors.txt │ ├── commentsOnJSXExpressionsArePreserved(jsx=react,module=commonjs,moduledetection=legacy).js │ ├── commentsOnJSXExpressionsArePreserved(jsx=react,module=commonjs,moduledetection=legacy).symbols │ ├── commentsOnJSXExpressionsArePreserved(jsx=react,module=commonjs,moduledetection=legacy).types │ ├── commentsOnJSXExpressionsArePreserved(jsx=react,module=system,moduledetection=auto).errors.txt │ ├── commentsOnJSXExpressionsArePreserved(jsx=react,module=system,moduledetection=auto).js │ ├── commentsOnJSXExpressionsArePreserved(jsx=react,module=system,moduledetection=auto).symbols │ ├── commentsOnJSXExpressionsArePreserved(jsx=react,module=system,moduledetection=auto).types │ ├── commentsOnJSXExpressionsArePreserved(jsx=react,module=system,moduledetection=force).errors.txt │ ├── commentsOnJSXExpressionsArePreserved(jsx=react,module=system,moduledetection=force).js │ ├── commentsOnJSXExpressionsArePreserved(jsx=react,module=system,moduledetection=force).symbols │ ├── commentsOnJSXExpressionsArePreserved(jsx=react,module=system,moduledetection=force).types │ ├── commentsOnJSXExpressionsArePreserved(jsx=react,module=system,moduledetection=legacy).errors.txt │ ├── commentsOnJSXExpressionsArePreserved(jsx=react,module=system,moduledetection=legacy).js │ ├── commentsOnJSXExpressionsArePreserved(jsx=react,module=system,moduledetection=legacy).symbols │ ├── commentsOnJSXExpressionsArePreserved(jsx=react,module=system,moduledetection=legacy).types │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=commonjs,moduledetection=auto).errors.txt │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=commonjs,moduledetection=auto).js │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=commonjs,moduledetection=auto).symbols │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=commonjs,moduledetection=auto).types │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=commonjs,moduledetection=force).errors.txt │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=commonjs,moduledetection=force).js │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=commonjs,moduledetection=force).symbols │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=commonjs,moduledetection=force).types │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=commonjs,moduledetection=legacy).errors.txt │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=commonjs,moduledetection=legacy).js │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=commonjs,moduledetection=legacy).symbols │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=commonjs,moduledetection=legacy).types │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=system,moduledetection=auto).errors.txt │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=system,moduledetection=auto).js │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=system,moduledetection=auto).symbols │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=system,moduledetection=auto).types │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=system,moduledetection=force).errors.txt │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=system,moduledetection=force).js │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=system,moduledetection=force).symbols │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=system,moduledetection=force).types │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=system,moduledetection=legacy).errors.txt │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=system,moduledetection=legacy).js │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=system,moduledetection=legacy).symbols │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=system,moduledetection=legacy).types │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=commonjs,moduledetection=auto).errors.txt │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=commonjs,moduledetection=auto).js │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=commonjs,moduledetection=auto).symbols │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=commonjs,moduledetection=auto).types │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=commonjs,moduledetection=force).errors.txt │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=commonjs,moduledetection=force).js │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=commonjs,moduledetection=force).symbols │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=commonjs,moduledetection=force).types │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=commonjs,moduledetection=legacy).errors.txt │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=commonjs,moduledetection=legacy).js │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=commonjs,moduledetection=legacy).symbols │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=commonjs,moduledetection=legacy).types │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=system,moduledetection=auto).errors.txt │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=system,moduledetection=auto).js │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=system,moduledetection=auto).symbols │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=system,moduledetection=auto).types │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=system,moduledetection=force).errors.txt │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=system,moduledetection=force).js │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=system,moduledetection=force).symbols │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=system,moduledetection=force).types │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=system,moduledetection=legacy).errors.txt │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=system,moduledetection=legacy).js │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=system,moduledetection=legacy).symbols │ ├── commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=system,moduledetection=legacy).types │ ├── commentsOnObjectLiteral1.errors.txt │ ├── commentsOnObjectLiteral1.js │ ├── commentsOnObjectLiteral1.symbols │ ├── commentsOnObjectLiteral1.types │ ├── commentsOnObjectLiteral2.errors.txt │ ├── commentsOnObjectLiteral2.js │ ├── commentsOnObjectLiteral2.symbols │ ├── commentsOnObjectLiteral2.types │ ├── commentsOnObjectLiteral3(target=es2015).js │ ├── commentsOnObjectLiteral3(target=es2015).symbols │ ├── commentsOnObjectLiteral3(target=es2015).types │ ├── commentsOnObjectLiteral3(target=es5).errors.txt │ ├── commentsOnObjectLiteral3(target=es5).js │ ├── commentsOnObjectLiteral3(target=es5).symbols │ ├── commentsOnObjectLiteral3(target=es5).types │ ├── commentsOnObjectLiteral4(target=es2015).js │ ├── commentsOnObjectLiteral4(target=es2015).symbols │ ├── commentsOnObjectLiteral4(target=es2015).types │ ├── commentsOnObjectLiteral4(target=es5).errors.txt │ ├── commentsOnObjectLiteral4(target=es5).js │ ├── commentsOnObjectLiteral4(target=es5).symbols │ ├── commentsOnObjectLiteral4(target=es5).types │ ├── commentsOnObjectLiteral5(target=es2015).js │ ├── commentsOnObjectLiteral5(target=es2015).symbols │ ├── commentsOnObjectLiteral5(target=es2015).types │ ├── commentsOnObjectLiteral5(target=es5).errors.txt │ ├── commentsOnObjectLiteral5(target=es5).js │ ├── commentsOnObjectLiteral5(target=es5).symbols │ ├── commentsOnObjectLiteral5(target=es5).types │ ├── commentsOnPropertyOfObjectLiteral1.js │ ├── commentsOnPropertyOfObjectLiteral1.symbols │ ├── commentsOnPropertyOfObjectLiteral1.types │ ├── commentsOnRequireStatement(target=es2015).js │ ├── commentsOnRequireStatement(target=es2015).symbols │ ├── commentsOnRequireStatement(target=es2015).types │ ├── commentsOnRequireStatement(target=es5).errors.txt │ ├── commentsOnRequireStatement(target=es5).js │ ├── commentsOnRequireStatement(target=es5).symbols │ ├── commentsOnRequireStatement(target=es5).types │ ├── commentsOnReturnStatement1.js │ ├── commentsOnReturnStatement1.symbols │ ├── commentsOnReturnStatement1.types │ ├── commentsOnStaticMembers.js │ ├── commentsOnStaticMembers.symbols │ ├── commentsOnStaticMembers.types │ ├── commentsOverloads(target=es2015).js │ ├── commentsOverloads(target=es2015).symbols │ ├── commentsOverloads(target=es2015).types │ ├── commentsOverloads(target=es5).errors.txt │ ├── commentsOverloads(target=es5).js │ ├── commentsOverloads(target=es5).symbols │ ├── commentsOverloads(target=es5).types │ ├── commentsPropertySignature1.js │ ├── commentsPropertySignature1.symbols │ ├── commentsPropertySignature1.types │ ├── commentsTypeParameters.js │ ├── commentsTypeParameters.symbols │ ├── commentsTypeParameters.types │ ├── commentsVarDecl(target=es2015).errors.txt │ ├── commentsVarDecl(target=es2015).js │ ├── commentsVarDecl(target=es2015).symbols │ ├── commentsVarDecl(target=es2015).types │ ├── commentsVarDecl(target=es5).errors.txt │ ├── commentsVarDecl(target=es5).js │ ├── commentsVarDecl(target=es5).symbols │ ├── commentsVarDecl(target=es5).types │ ├── commentsVariableStatement1.js │ ├── commentsVariableStatement1.symbols │ ├── commentsVariableStatement1.types │ ├── commentsdoNotEmitComments(target=es2015).js │ ├── commentsdoNotEmitComments(target=es2015).symbols │ ├── commentsdoNotEmitComments(target=es2015).types │ ├── commentsdoNotEmitComments(target=es5).errors.txt │ ├── commentsdoNotEmitComments(target=es5).js │ ├── commentsdoNotEmitComments(target=es5).symbols │ ├── commentsdoNotEmitComments(target=es5).types │ ├── commentsemitComments(target=es2015).js │ ├── commentsemitComments(target=es2015).symbols │ ├── commentsemitComments(target=es2015).types │ ├── commentsemitComments(target=es5).errors.txt │ ├── commentsemitComments(target=es5).js │ ├── commentsemitComments(target=es5).symbols │ ├── commentsemitComments(target=es5).types │ ├── commonJSAliasedExport.js │ ├── commonJSAliasedExport.symbols │ ├── commonJSAliasedExport.types │ ├── commonJSImportAsPrimaryExpression.js │ ├── commonJSImportAsPrimaryExpression.symbols │ ├── commonJSImportAsPrimaryExpression.types │ ├── commonJSImportClassTypeReference.js │ ├── commonJSImportClassTypeReference.symbols │ ├── commonJSImportClassTypeReference.types │ ├── commonJSImportExportedClassExpression.js │ ├── commonJSImportExportedClassExpression.symbols │ ├── commonJSImportExportedClassExpression.types │ ├── commonJSImportNestedClassTypeReference.js │ ├── commonJSImportNestedClassTypeReference.symbols │ ├── commonJSImportNestedClassTypeReference.types │ ├── commonJSImportNotAsPrimaryExpression.js │ ├── commonJSImportNotAsPrimaryExpression.symbols │ ├── commonJSImportNotAsPrimaryExpression.types │ ├── commonJSReexport.symbols │ ├── commonJSReexport.types │ ├── commonJsExportTypeDeclarationError(target=es2015).errors.txt │ ├── commonJsExportTypeDeclarationError(target=es2015).js │ ├── commonJsExportTypeDeclarationError(target=es2015).symbols │ ├── commonJsExportTypeDeclarationError(target=es2015).types │ ├── commonJsExportTypeDeclarationError(target=es5).errors.txt │ ├── commonJsExportTypeDeclarationError(target=es5).js │ ├── commonJsExportTypeDeclarationError(target=es5).symbols │ ├── commonJsExportTypeDeclarationError(target=es5).types │ ├── commonJsImportBindingElementNarrowType.symbols │ ├── commonJsImportBindingElementNarrowType.types │ ├── commonJsImportClassExpression.js │ ├── commonJsImportClassExpression.symbols │ ├── commonJsImportClassExpression.types │ ├── commonJsIsolatedModules.js │ ├── commonJsIsolatedModules.symbols │ ├── commonJsIsolatedModules.types │ ├── commonJsUnusedLocals.errors.txt │ ├── commonJsUnusedLocals.symbols │ ├── commonJsUnusedLocals.types │ ├── commonMissingSemicolons.errors.txt │ ├── commonSourceDir1.js │ ├── commonSourceDir1.symbols │ ├── commonSourceDir1.types │ ├── commonSourceDir2.errors.txt │ ├── commonSourceDir2.js │ ├── commonSourceDir2.symbols │ ├── commonSourceDir2.types │ ├── commonSourceDir3.js │ ├── commonSourceDir3.symbols │ ├── commonSourceDir3.types │ ├── commonSourceDir4.errors.txt │ ├── commonSourceDir4.js │ ├── commonSourceDir4.symbols │ ├── commonSourceDir4.types │ ├── commonSourceDir5.errors.txt │ ├── commonSourceDir5.symbols │ ├── commonSourceDir5.types │ ├── commonSourceDir6.errors.txt │ ├── commonSourceDir6.js │ ├── commonSourceDir6.symbols │ ├── commonSourceDir6.types │ ├── commonSourceDirectory.js │ ├── commonSourceDirectory.sourcemap.txt │ ├── commonSourceDirectory.symbols │ ├── commonSourceDirectory.types │ ├── commonSourceDirectory_dts.errors.txt │ ├── commonSourceDirectory_dts.js │ ├── commonSourceDirectory_dts.sourcemap.txt │ ├── commonSourceDirectory_dts.symbols │ ├── commonSourceDirectory_dts.types │ ├── commonTypeIntersection.errors.txt │ ├── commonTypeIntersection.js │ ├── commonTypeIntersection.symbols │ ├── commonTypeIntersection.types │ ├── commonjsAccessExports.symbols │ ├── commonjsAccessExports.types │ ├── commonjsSafeImport(target=es2015).js │ ├── commonjsSafeImport(target=es2015).symbols │ ├── commonjsSafeImport(target=es2015).types │ ├── commonjsSafeImport(target=es5).errors.txt │ ├── commonjsSafeImport(target=es5).js │ ├── commonjsSafeImport(target=es5).symbols │ ├── commonjsSafeImport(target=es5).types │ ├── comparabilityTypeParametersRelatedByUnion.js │ ├── comparabilityTypeParametersRelatedByUnion.symbols │ ├── comparabilityTypeParametersRelatedByUnion.types │ ├── comparableRelationBidirectional.symbols │ ├── comparableRelationBidirectional.types │ ├── compareTypeParameterConstrainedByLiteralToLiteral.errors.txt │ ├── compareTypeParameterConstrainedByLiteralToLiteral.js │ ├── compareTypeParameterConstrainedByLiteralToLiteral.symbols │ ├── compareTypeParameterConstrainedByLiteralToLiteral.types │ ├── comparisonOfPartialDeepAndIndexedAccessTerminatesWithoutError.js │ ├── comparisonOfPartialDeepAndIndexedAccessTerminatesWithoutError.symbols │ ├── comparisonOfPartialDeepAndIndexedAccessTerminatesWithoutError.types │ ├── comparisonOperatorWithIdenticalObjects.errors.txt │ ├── comparisonOperatorWithIdenticalObjects.js │ ├── comparisonOperatorWithIdenticalObjects.symbols │ ├── comparisonOperatorWithIdenticalObjects.types │ ├── comparisonOperatorWithIdenticalPrimitiveType.errors.txt │ ├── comparisonOperatorWithIdenticalPrimitiveType.js │ ├── comparisonOperatorWithIdenticalPrimitiveType.symbols │ ├── comparisonOperatorWithIdenticalPrimitiveType.types │ ├── comparisonOperatorWithIdenticalTypeParameter.js │ ├── comparisonOperatorWithIdenticalTypeParameter.symbols │ ├── comparisonOperatorWithIdenticalTypeParameter.types │ ├── comparisonOperatorWithIntersectionType.errors.txt │ ├── comparisonOperatorWithIntersectionType.js │ ├── comparisonOperatorWithIntersectionType.symbols │ ├── comparisonOperatorWithIntersectionType.types │ ├── comparisonOperatorWithNoRelationshipObjectsOnCallSignature.errors.txt │ ├── comparisonOperatorWithNoRelationshipObjectsOnCallSignature.js │ ├── comparisonOperatorWithNoRelationshipObjectsOnCallSignature.symbols │ ├── comparisonOperatorWithNoRelationshipObjectsOnCallSignature.types │ ├── comparisonOperatorWithNoRelationshipObjectsOnConstructorSignature.errors.txt │ ├── comparisonOperatorWithNoRelationshipObjectsOnConstructorSignature.js │ ├── comparisonOperatorWithNoRelationshipObjectsOnConstructorSignature.symbols │ ├── comparisonOperatorWithNoRelationshipObjectsOnConstructorSignature.types │ ├── comparisonOperatorWithNoRelationshipObjectsOnIndexSignature.errors.txt │ ├── comparisonOperatorWithNoRelationshipObjectsOnIndexSignature.js │ ├── comparisonOperatorWithNoRelationshipObjectsOnIndexSignature.symbols │ ├── comparisonOperatorWithNoRelationshipObjectsOnIndexSignature.types │ ├── comparisonOperatorWithNoRelationshipObjectsOnInstantiatedCallSignature.errors.txt │ ├── comparisonOperatorWithNoRelationshipObjectsOnInstantiatedCallSignature.js │ ├── comparisonOperatorWithNoRelationshipObjectsOnInstantiatedCallSignature.symbols │ ├── comparisonOperatorWithNoRelationshipObjectsOnInstantiatedCallSignature.types │ ├── comparisonOperatorWithNoRelationshipObjectsOnInstantiatedConstructorSignature.errors.txt │ ├── comparisonOperatorWithNoRelationshipObjectsOnInstantiatedConstructorSignature.js │ ├── comparisonOperatorWithNoRelationshipObjectsOnInstantiatedConstructorSignature.symbols │ ├── comparisonOperatorWithNoRelationshipObjectsOnInstantiatedConstructorSignature.types │ ├── comparisonOperatorWithNoRelationshipObjectsOnOptionalProperty.js │ ├── comparisonOperatorWithNoRelationshipObjectsOnOptionalProperty.symbols │ ├── comparisonOperatorWithNoRelationshipObjectsOnOptionalProperty.types │ ├── comparisonOperatorWithNoRelationshipObjectsOnProperty.errors.txt │ ├── comparisonOperatorWithNoRelationshipObjectsOnProperty.js │ ├── comparisonOperatorWithNoRelationshipObjectsOnProperty.symbols │ ├── comparisonOperatorWithNoRelationshipObjectsOnProperty.types │ ├── comparisonOperatorWithNoRelationshipPrimitiveType.errors.txt │ ├── comparisonOperatorWithNoRelationshipPrimitiveType.js │ ├── comparisonOperatorWithNoRelationshipPrimitiveType.symbols │ ├── comparisonOperatorWithNoRelationshipPrimitiveType.types │ ├── comparisonOperatorWithNoRelationshipTypeParameter.errors.txt │ ├── comparisonOperatorWithNoRelationshipTypeParameter.js │ ├── comparisonOperatorWithNoRelationshipTypeParameter.symbols │ ├── comparisonOperatorWithNoRelationshipTypeParameter.types │ ├── comparisonOperatorWithNumberOperand.errors.txt │ ├── comparisonOperatorWithNumberOperand.symbols │ ├── comparisonOperatorWithNumberOperand.types │ ├── comparisonOperatorWithNumericLiteral.errors.txt │ ├── comparisonOperatorWithNumericLiteral.js │ ├── comparisonOperatorWithNumericLiteral.symbols │ ├── comparisonOperatorWithNumericLiteral.types │ ├── comparisonOperatorWithOneOperandIsAny.errors.txt │ ├── comparisonOperatorWithOneOperandIsAny.js │ ├── comparisonOperatorWithOneOperandIsAny.symbols │ ├── comparisonOperatorWithOneOperandIsAny.types │ ├── comparisonOperatorWithOneOperandIsNull.errors.txt │ ├── comparisonOperatorWithOneOperandIsNull.js │ ├── comparisonOperatorWithOneOperandIsNull.symbols │ ├── comparisonOperatorWithOneOperandIsNull.types │ ├── comparisonOperatorWithOneOperandIsUndefined.errors.txt │ ├── comparisonOperatorWithOneOperandIsUndefined.js │ ├── comparisonOperatorWithOneOperandIsUndefined.symbols │ ├── comparisonOperatorWithOneOperandIsUndefined.types │ ├── comparisonOperatorWithSubtypeEnumAndNumber.errors.txt │ ├── comparisonOperatorWithSubtypeEnumAndNumber.js │ ├── comparisonOperatorWithSubtypeEnumAndNumber.symbols │ ├── comparisonOperatorWithSubtypeEnumAndNumber.types │ ├── comparisonOperatorWithSubtypeObjectOnCallSignature.errors.txt │ ├── comparisonOperatorWithSubtypeObjectOnCallSignature.js │ ├── comparisonOperatorWithSubtypeObjectOnCallSignature.symbols │ ├── comparisonOperatorWithSubtypeObjectOnCallSignature.types │ ├── comparisonOperatorWithSubtypeObjectOnConstructorSignature.errors.txt │ ├── comparisonOperatorWithSubtypeObjectOnConstructorSignature.js │ ├── comparisonOperatorWithSubtypeObjectOnConstructorSignature.symbols │ ├── comparisonOperatorWithSubtypeObjectOnConstructorSignature.types │ ├── comparisonOperatorWithSubtypeObjectOnIndexSignature.errors.txt │ ├── comparisonOperatorWithSubtypeObjectOnIndexSignature.js │ ├── comparisonOperatorWithSubtypeObjectOnIndexSignature.symbols │ ├── comparisonOperatorWithSubtypeObjectOnIndexSignature.types │ ├── comparisonOperatorWithSubtypeObjectOnInstantiatedCallSignature.errors.txt │ ├── comparisonOperatorWithSubtypeObjectOnInstantiatedCallSignature.js │ ├── comparisonOperatorWithSubtypeObjectOnInstantiatedCallSignature.symbols │ ├── comparisonOperatorWithSubtypeObjectOnInstantiatedCallSignature.types │ ├── comparisonOperatorWithSubtypeObjectOnInstantiatedConstructorSignature.errors.txt │ ├── comparisonOperatorWithSubtypeObjectOnInstantiatedConstructorSignature.js │ ├── comparisonOperatorWithSubtypeObjectOnInstantiatedConstructorSignature.symbols │ ├── comparisonOperatorWithSubtypeObjectOnInstantiatedConstructorSignature.types │ ├── comparisonOperatorWithSubtypeObjectOnOptionalProperty.errors.txt │ ├── comparisonOperatorWithSubtypeObjectOnOptionalProperty.js │ ├── comparisonOperatorWithSubtypeObjectOnOptionalProperty.symbols │ ├── comparisonOperatorWithSubtypeObjectOnOptionalProperty.types │ ├── comparisonOperatorWithSubtypeObjectOnProperty.js │ ├── comparisonOperatorWithSubtypeObjectOnProperty.symbols │ ├── comparisonOperatorWithSubtypeObjectOnProperty.types │ ├── comparisonOperatorWithTwoOperandsAreAny.js │ ├── comparisonOperatorWithTwoOperandsAreAny.symbols │ ├── comparisonOperatorWithTwoOperandsAreAny.types │ ├── comparisonOperatorWithTypeParameter.errors.txt │ ├── comparisonOperatorWithTypeParameter.js │ ├── comparisonOperatorWithTypeParameter.symbols │ ├── comparisonOperatorWithTypeParameter.types │ ├── compileOnSaveWorksWhenEmitBlockingErrorOnOtherFile.baseline │ ├── compilerOptionsDeclarationAndNoEmit.symbols │ ├── compilerOptionsDeclarationAndNoEmit.types │ ├── compilerOptionsOutAndNoEmit.errors.txt │ ├── compilerOptionsOutAndNoEmit.symbols │ ├── compilerOptionsOutAndNoEmit.types │ ├── compilerOptionsOutDirAndNoEmit.symbols │ ├── compilerOptionsOutDirAndNoEmit.types │ ├── compilerOptionsOutFileAndNoEmit.errors.txt │ ├── compilerOptionsOutFileAndNoEmit.symbols │ ├── compilerOptionsOutFileAndNoEmit.types │ ├── completionDetailsOfContextSensitiveParameterNoCrash.baseline │ ├── completionEntryForUnionMethod.baseline │ ├── completionForStringLiteralImport3.baseline │ ├── completionImportAttributes.baseline │ ├── completionImportCallAssertion.baseline │ ├── completionListForImportAttributes.baseline │ ├── completionNoParentLocation.baseline │ ├── completionPropertyFromConstraint.baseline │ ├── completionsAfterPropertyNameInClass.baseline │ ├── completionsClassMembers1.baseline │ ├── completionsClassMembers2.baseline │ ├── completionsClassMembers3.baseline │ ├── completionsClassMembers4.baseline │ ├── completionsClassMembers5.baseline │ ├── completionsCommentsClass.baseline │ ├── completionsCommentsClassMembers.baseline │ ├── completionsCommentsCommentParsing.baseline │ ├── completionsCommentsFunctionDeclaration.baseline │ ├── completionsCommentsFunctionExpression.baseline │ ├── completionsCommitCharactersAfterDot.baseline │ ├── completionsCommitCharactersExportImportClause.baseline │ ├── completionsCommitCharactersGlobal.baseline │ ├── completionsImportWithKeyword.baseline │ ├── completionsImport_asKeyword.baseline │ ├── completionsImport_satisfiesKeyword.baseline │ ├── completionsInitializerCommitCharacter.baseline │ ├── completionsJSDocTags.baseline │ ├── completionsOverridingMethod15.baseline │ ├── completionsOverridingMethod16.baseline │ ├── completionsSalsaMethodsOnAssignedFunctionExpressions.baseline │ ├── completionsServerCommitCharacters.baseline │ ├── completionsStringCommitCharacter.baseline │ ├── completionsStringMethods.baseline │ ├── completionsUniqueSymbol2.baseline │ ├── complexClassRelationships(target=es2015).errors.txt │ ├── complexClassRelationships(target=es2015).js │ ├── complexClassRelationships(target=es2015).symbols │ ├── complexClassRelationships(target=es2015).types │ ├── complexClassRelationships(target=es5).errors.txt │ ├── complexClassRelationships(target=es5).js │ ├── complexClassRelationships(target=es5).symbols │ ├── complexClassRelationships(target=es5).types │ ├── complexNarrowingWithAny.js │ ├── complexNarrowingWithAny.symbols │ ├── complexNarrowingWithAny.types │ ├── complexRecursiveCollections.errors.txt │ ├── complexRecursiveCollections.js │ ├── complexRecursiveCollections.symbols │ ├── complexRecursiveCollections.types │ ├── complicatedGenericRecursiveBaseClassReference.errors.txt │ ├── complicatedGenericRecursiveBaseClassReference.js │ ├── complicatedGenericRecursiveBaseClassReference.symbols │ ├── complicatedGenericRecursiveBaseClassReference.types │ ├── complicatedIndexedAccessKeyofReliesOnKeyofNeverUpperBound.errors.txt │ ├── complicatedIndexedAccessKeyofReliesOnKeyofNeverUpperBound.js │ ├── complicatedIndexedAccessKeyofReliesOnKeyofNeverUpperBound.symbols │ ├── complicatedIndexedAccessKeyofReliesOnKeyofNeverUpperBound.types │ ├── complicatedIndexesOfIntersectionsAreInferencable.js │ ├── complicatedIndexesOfIntersectionsAreInferencable.symbols │ ├── complicatedIndexesOfIntersectionsAreInferencable.types │ ├── complicatedPrivacy(target=es2015).errors.txt │ ├── complicatedPrivacy(target=es2015).js │ ├── complicatedPrivacy(target=es2015).symbols │ ├── complicatedPrivacy(target=es2015).types │ ├── complicatedPrivacy(target=es5).errors.txt │ ├── complicatedPrivacy(target=es5).js │ ├── complicatedPrivacy(target=es5).symbols │ ├── complicatedPrivacy(target=es5).types │ ├── compositeContextualSignature.symbols │ ├── compositeContextualSignature.types │ ├── compositeGenericFunction.errors.txt │ ├── compositeGenericFunction.js │ ├── compositeGenericFunction.symbols │ ├── compositeGenericFunction.types │ ├── compositeWithNodeModulesSourceFile.js │ ├── compositeWithNodeModulesSourceFile.symbols │ ├── compositeWithNodeModulesSourceFile.types │ ├── compoundAdditionAssignmentLHSCanBeAssigned.errors.txt │ ├── compoundAdditionAssignmentLHSCanBeAssigned.js │ ├── compoundAdditionAssignmentLHSCanBeAssigned.symbols │ ├── compoundAdditionAssignmentLHSCanBeAssigned.types │ ├── compoundAdditionAssignmentLHSCannotBeAssigned.errors.txt │ ├── compoundAdditionAssignmentLHSCannotBeAssigned.js │ ├── compoundAdditionAssignmentLHSCannotBeAssigned.symbols │ ├── compoundAdditionAssignmentLHSCannotBeAssigned.types │ ├── compoundAdditionAssignmentWithInvalidOperands.errors.txt │ ├── compoundAdditionAssignmentWithInvalidOperands.js │ ├── compoundAdditionAssignmentWithInvalidOperands.symbols │ ├── compoundAdditionAssignmentWithInvalidOperands.types │ ├── compoundArithmeticAssignmentLHSCanBeAssigned.errors.txt │ ├── compoundArithmeticAssignmentLHSCanBeAssigned.js │ ├── compoundArithmeticAssignmentLHSCanBeAssigned.symbols │ ├── compoundArithmeticAssignmentLHSCanBeAssigned.types │ ├── compoundArithmeticAssignmentWithInvalidOperands.errors.txt │ ├── compoundArithmeticAssignmentWithInvalidOperands.js │ ├── compoundArithmeticAssignmentWithInvalidOperands.symbols │ ├── compoundArithmeticAssignmentWithInvalidOperands.types │ ├── compoundAssignmentLHSIsReference.js │ ├── compoundAssignmentLHSIsReference.symbols │ ├── compoundAssignmentLHSIsReference.types │ ├── compoundAssignmentLHSIsValue.errors.txt │ ├── compoundAssignmentLHSIsValue.js │ ├── compoundAssignmentLHSIsValue.symbols │ ├── compoundAssignmentLHSIsValue.types │ ├── compoundExponentiationAssignmentLHSCanBeAssigned1.errors.txt │ ├── compoundExponentiationAssignmentLHSCanBeAssigned1.js │ ├── compoundExponentiationAssignmentLHSCanBeAssigned1.symbols │ ├── compoundExponentiationAssignmentLHSCanBeAssigned1.types │ ├── compoundExponentiationAssignmentLHSCannotBeAssigned.errors.txt │ ├── compoundExponentiationAssignmentLHSCannotBeAssigned.js │ ├── compoundExponentiationAssignmentLHSCannotBeAssigned.symbols │ ├── compoundExponentiationAssignmentLHSCannotBeAssigned.types │ ├── compoundExponentiationAssignmentLHSIsReference.errors.txt │ ├── compoundExponentiationAssignmentLHSIsReference.js │ ├── compoundExponentiationAssignmentLHSIsReference.symbols │ ├── compoundExponentiationAssignmentLHSIsReference.types │ ├── compoundExponentiationAssignmentLHSIsValue.errors.txt │ ├── compoundExponentiationAssignmentLHSIsValue.js │ ├── compoundExponentiationAssignmentLHSIsValue.symbols │ ├── compoundExponentiationAssignmentLHSIsValue.types │ ├── compoundVarDecl1.js │ ├── compoundVarDecl1.symbols │ ├── compoundVarDecl1.types │ ├── computedEnumMemberSyntacticallyString(isolatedmodules=false).errors.txt │ ├── computedEnumMemberSyntacticallyString(isolatedmodules=false).js │ ├── computedEnumMemberSyntacticallyString(isolatedmodules=true).errors.txt │ ├── computedEnumMemberSyntacticallyString(isolatedmodules=true).js │ ├── computedEnumMemberSyntacticallyString2(isolatedmodules=false).errors.txt │ ├── computedEnumMemberSyntacticallyString2(isolatedmodules=false).js │ ├── computedEnumMemberSyntacticallyString2(isolatedmodules=true).errors.txt │ ├── computedEnumMemberSyntacticallyString2(isolatedmodules=true).js │ ├── computedEnumTypeWidening.js │ ├── computedEnumTypeWidening.symbols │ ├── computedEnumTypeWidening.types │ ├── computedPropertiesInDestructuring1.errors.txt │ ├── computedPropertiesInDestructuring1.js │ ├── computedPropertiesInDestructuring1.symbols │ ├── computedPropertiesInDestructuring1.types │ ├── computedPropertiesInDestructuring1_ES6.errors.txt │ ├── computedPropertiesInDestructuring1_ES6.js │ ├── computedPropertiesInDestructuring1_ES6.symbols │ ├── computedPropertiesInDestructuring1_ES6.types │ ├── computedPropertiesInDestructuring2.errors.txt │ ├── computedPropertiesInDestructuring2.js │ ├── computedPropertiesInDestructuring2.symbols │ ├── computedPropertiesInDestructuring2.types │ ├── computedPropertiesInDestructuring2_ES6.errors.txt │ ├── computedPropertiesInDestructuring2_ES6.js │ ├── computedPropertiesInDestructuring2_ES6.symbols │ ├── computedPropertiesInDestructuring2_ES6.types │ ├── computedPropertiesNarrowed.errors.txt │ ├── computedPropertiesNarrowed.js │ ├── computedPropertiesNarrowed.symbols │ ├── computedPropertiesNarrowed.types │ ├── computedPropertiesTransformedInOtherwiseNonTSClasses.errors.txt │ ├── computedPropertiesTransformedInOtherwiseNonTSClasses.js │ ├── computedPropertiesTransformedInOtherwiseNonTSClasses.symbols │ ├── computedPropertiesTransformedInOtherwiseNonTSClasses.types │ ├── computedPropertiesWithSetterAssignment.js │ ├── computedPropertiesWithSetterAssignment.symbols │ ├── computedPropertiesWithSetterAssignment.types │ ├── computedPropertyBindingElementDeclarationNoCrash1.errors.txt │ ├── computedPropertyBindingElementDeclarationNoCrash1.symbols │ ├── computedPropertyBindingElementDeclarationNoCrash1.types │ ├── computedPropertyName.errors.txt │ ├── computedPropertyName.js │ ├── computedPropertyName.symbols │ ├── computedPropertyName.types │ ├── computedPropertyNameAndTypeParameterConflict.js │ ├── computedPropertyNameAndTypeParameterConflict.symbols │ ├── computedPropertyNameAndTypeParameterConflict.types │ ├── computedPropertyNameWithImportedKey.js │ ├── computedPropertyNameWithImportedKey.symbols │ ├── computedPropertyNameWithImportedKey.types │ ├── computedPropertyNames10_ES5(target=es2015).js │ ├── computedPropertyNames10_ES5(target=es2015).symbols │ ├── computedPropertyNames10_ES5(target=es2015).types │ ├── computedPropertyNames10_ES5(target=es5).errors.txt │ ├── computedPropertyNames10_ES5(target=es5).js │ ├── computedPropertyNames10_ES5(target=es5).symbols │ ├── computedPropertyNames10_ES5(target=es5).types │ ├── computedPropertyNames10_ES6.js │ ├── computedPropertyNames10_ES6.symbols │ ├── computedPropertyNames10_ES6.types │ ├── computedPropertyNames11_ES5(target=es2015).js │ ├── computedPropertyNames11_ES5(target=es2015).symbols │ ├── computedPropertyNames11_ES5(target=es2015).types │ ├── computedPropertyNames11_ES5(target=es5).errors.txt │ ├── computedPropertyNames11_ES5(target=es5).js │ ├── computedPropertyNames11_ES5(target=es5).symbols │ ├── computedPropertyNames11_ES5(target=es5).types │ ├── computedPropertyNames11_ES6.js │ ├── computedPropertyNames11_ES6.symbols │ ├── computedPropertyNames11_ES6.types │ ├── computedPropertyNames12_ES5(target=es2015).errors.txt │ ├── computedPropertyNames12_ES5(target=es2015).js │ ├── computedPropertyNames12_ES5(target=es2015).symbols │ ├── computedPropertyNames12_ES5(target=es2015).types │ ├── computedPropertyNames12_ES5(target=es5).errors.txt │ ├── computedPropertyNames12_ES5(target=es5).js │ ├── computedPropertyNames12_ES5(target=es5).symbols │ ├── computedPropertyNames12_ES5(target=es5).types │ ├── computedPropertyNames12_ES6.errors.txt │ ├── computedPropertyNames12_ES6.js │ ├── computedPropertyNames12_ES6.symbols │ ├── computedPropertyNames12_ES6.types │ ├── computedPropertyNames13_ES5(target=es2015).js │ ├── computedPropertyNames13_ES5(target=es2015).symbols │ ├── computedPropertyNames13_ES5(target=es2015).types │ ├── computedPropertyNames13_ES5(target=es5).errors.txt │ ├── computedPropertyNames13_ES5(target=es5).js │ ├── computedPropertyNames13_ES5(target=es5).symbols │ ├── computedPropertyNames13_ES5(target=es5).types │ ├── computedPropertyNames13_ES6.js │ ├── computedPropertyNames13_ES6.symbols │ ├── computedPropertyNames13_ES6.types │ ├── computedPropertyNames14_ES5(target=es2015).errors.txt │ ├── computedPropertyNames14_ES5(target=es2015).js │ ├── computedPropertyNames14_ES5(target=es2015).symbols │ ├── computedPropertyNames14_ES5(target=es2015).types │ ├── computedPropertyNames14_ES5(target=es5).errors.txt │ ├── computedPropertyNames14_ES5(target=es5).js │ ├── computedPropertyNames14_ES5(target=es5).symbols │ ├── computedPropertyNames14_ES5(target=es5).types │ ├── computedPropertyNames14_ES6.errors.txt │ ├── computedPropertyNames14_ES6.js │ ├── computedPropertyNames14_ES6.symbols │ ├── computedPropertyNames14_ES6.types │ ├── computedPropertyNames15_ES5(target=es2015).errors.txt │ ├── computedPropertyNames15_ES5(target=es2015).js │ ├── computedPropertyNames15_ES5(target=es2015).symbols │ ├── computedPropertyNames15_ES5(target=es2015).types │ ├── computedPropertyNames15_ES5(target=es5).errors.txt │ ├── computedPropertyNames15_ES5(target=es5).js │ ├── computedPropertyNames15_ES5(target=es5).symbols │ ├── computedPropertyNames15_ES5(target=es5).types │ ├── computedPropertyNames15_ES6.errors.txt │ ├── computedPropertyNames15_ES6.js │ ├── computedPropertyNames15_ES6.symbols │ ├── computedPropertyNames15_ES6.types │ ├── computedPropertyNames16_ES5(target=es2015).js │ ├── computedPropertyNames16_ES5(target=es2015).symbols │ ├── computedPropertyNames16_ES5(target=es2015).types │ ├── computedPropertyNames16_ES5(target=es5).errors.txt │ ├── computedPropertyNames16_ES5(target=es5).js │ ├── computedPropertyNames16_ES5(target=es5).symbols │ ├── computedPropertyNames16_ES5(target=es5).types │ ├── computedPropertyNames16_ES6.js │ ├── computedPropertyNames16_ES6.symbols │ ├── computedPropertyNames16_ES6.types │ ├── computedPropertyNames17_ES5(target=es2015).errors.txt │ ├── computedPropertyNames17_ES5(target=es2015).js │ ├── computedPropertyNames17_ES5(target=es2015).symbols │ ├── computedPropertyNames17_ES5(target=es2015).types │ ├── computedPropertyNames17_ES5(target=es5).errors.txt │ ├── computedPropertyNames17_ES5(target=es5).js │ ├── computedPropertyNames17_ES5(target=es5).symbols │ ├── computedPropertyNames17_ES5(target=es5).types │ ├── computedPropertyNames17_ES6.errors.txt │ ├── computedPropertyNames17_ES6.js │ ├── computedPropertyNames17_ES6.symbols │ ├── computedPropertyNames17_ES6.types │ ├── computedPropertyNames18_ES5(target=es2015).errors.txt │ ├── computedPropertyNames18_ES5(target=es2015).js │ ├── computedPropertyNames18_ES5(target=es2015).symbols │ ├── computedPropertyNames18_ES5(target=es2015).types │ ├── computedPropertyNames18_ES5(target=es5).errors.txt │ ├── computedPropertyNames18_ES5(target=es5).js │ ├── computedPropertyNames18_ES5(target=es5).symbols │ ├── computedPropertyNames18_ES5(target=es5).types │ ├── computedPropertyNames18_ES6.errors.txt │ ├── computedPropertyNames18_ES6.js │ ├── computedPropertyNames18_ES6.symbols │ ├── computedPropertyNames18_ES6.types │ ├── computedPropertyNames19_ES5(target=es2015).errors.txt │ ├── computedPropertyNames19_ES5(target=es2015).js │ ├── computedPropertyNames19_ES5(target=es2015).symbols │ ├── computedPropertyNames19_ES5(target=es2015).types │ ├── computedPropertyNames19_ES5(target=es5).errors.txt │ ├── computedPropertyNames19_ES5(target=es5).js │ ├── computedPropertyNames19_ES5(target=es5).symbols │ ├── computedPropertyNames19_ES5(target=es5).types │ ├── computedPropertyNames19_ES6.errors.txt │ ├── computedPropertyNames19_ES6.js │ ├── computedPropertyNames19_ES6.symbols │ ├── computedPropertyNames19_ES6.types │ ├── computedPropertyNames1_ES5(target=es2015).js │ ├── computedPropertyNames1_ES5(target=es2015).symbols │ ├── computedPropertyNames1_ES5(target=es2015).types │ ├── computedPropertyNames1_ES5(target=es5).errors.txt │ ├── computedPropertyNames1_ES5(target=es5).js │ ├── computedPropertyNames1_ES5(target=es5).symbols │ ├── computedPropertyNames1_ES5(target=es5).types │ ├── computedPropertyNames1_ES6.js │ ├── computedPropertyNames1_ES6.symbols │ ├── computedPropertyNames1_ES6.types │ ├── computedPropertyNames20_ES5(target=es2015).js │ ├── computedPropertyNames20_ES5(target=es2015).symbols │ ├── computedPropertyNames20_ES5(target=es2015).types │ ├── computedPropertyNames20_ES5(target=es5).errors.txt │ ├── computedPropertyNames20_ES5(target=es5).js │ ├── computedPropertyNames20_ES5(target=es5).symbols │ ├── computedPropertyNames20_ES5(target=es5).types │ ├── computedPropertyNames20_ES6.js │ ├── computedPropertyNames20_ES6.symbols │ ├── computedPropertyNames20_ES6.types │ ├── computedPropertyNames21_ES5(target=es2015).errors.txt │ ├── computedPropertyNames21_ES5(target=es2015).js │ ├── computedPropertyNames21_ES5(target=es2015).symbols │ ├── computedPropertyNames21_ES5(target=es2015).types │ ├── computedPropertyNames21_ES5(target=es5).errors.txt │ ├── computedPropertyNames21_ES5(target=es5).js │ ├── computedPropertyNames21_ES5(target=es5).symbols │ ├── computedPropertyNames21_ES5(target=es5).types │ ├── computedPropertyNames21_ES6.errors.txt │ ├── computedPropertyNames21_ES6.js │ ├── computedPropertyNames21_ES6.symbols │ ├── computedPropertyNames21_ES6.types │ ├── computedPropertyNames22_ES5(target=es2015).js │ ├── computedPropertyNames22_ES5(target=es2015).symbols │ ├── computedPropertyNames22_ES5(target=es2015).types │ ├── computedPropertyNames22_ES5(target=es5).errors.txt │ ├── computedPropertyNames22_ES5(target=es5).js │ ├── computedPropertyNames22_ES5(target=es5).symbols │ ├── computedPropertyNames22_ES5(target=es5).types │ ├── computedPropertyNames22_ES6.js │ ├── computedPropertyNames22_ES6.symbols │ ├── computedPropertyNames22_ES6.types │ ├── computedPropertyNames23_ES5(target=es2015).errors.txt │ ├── computedPropertyNames23_ES5(target=es2015).js │ ├── computedPropertyNames23_ES5(target=es2015).symbols │ ├── computedPropertyNames23_ES5(target=es2015).types │ ├── computedPropertyNames23_ES5(target=es5).errors.txt │ ├── computedPropertyNames23_ES5(target=es5).js │ ├── computedPropertyNames23_ES5(target=es5).symbols │ ├── computedPropertyNames23_ES5(target=es5).types │ ├── computedPropertyNames23_ES6.errors.txt │ ├── computedPropertyNames23_ES6.js │ ├── computedPropertyNames23_ES6.symbols │ ├── computedPropertyNames23_ES6.types │ ├── computedPropertyNames24_ES5(target=es2015).errors.txt │ ├── computedPropertyNames24_ES5(target=es2015).js │ ├── computedPropertyNames24_ES5(target=es2015).symbols │ ├── computedPropertyNames24_ES5(target=es2015).types │ ├── computedPropertyNames24_ES5(target=es5).errors.txt │ ├── computedPropertyNames24_ES5(target=es5).js │ ├── computedPropertyNames24_ES5(target=es5).symbols │ ├── computedPropertyNames24_ES5(target=es5).types │ ├── computedPropertyNames24_ES6.errors.txt │ ├── computedPropertyNames24_ES6.js │ ├── computedPropertyNames24_ES6.symbols │ ├── computedPropertyNames24_ES6.types │ ├── computedPropertyNames25_ES5(target=es2015).js │ ├── computedPropertyNames25_ES5(target=es2015).symbols │ ├── computedPropertyNames25_ES5(target=es2015).types │ ├── computedPropertyNames25_ES5(target=es5).errors.txt │ ├── computedPropertyNames25_ES5(target=es5).js │ ├── computedPropertyNames25_ES5(target=es5).symbols │ ├── computedPropertyNames25_ES5(target=es5).types │ ├── computedPropertyNames25_ES6.js │ ├── computedPropertyNames25_ES6.symbols │ ├── computedPropertyNames25_ES6.types │ ├── computedPropertyNames26_ES5(target=es2015).errors.txt │ ├── computedPropertyNames26_ES5(target=es2015).js │ ├── computedPropertyNames26_ES5(target=es2015).symbols │ ├── computedPropertyNames26_ES5(target=es2015).types │ ├── computedPropertyNames26_ES5(target=es5).errors.txt │ ├── computedPropertyNames26_ES5(target=es5).js │ ├── computedPropertyNames26_ES5(target=es5).symbols │ ├── computedPropertyNames26_ES5(target=es5).types │ ├── computedPropertyNames26_ES6.errors.txt │ ├── computedPropertyNames26_ES6.js │ ├── computedPropertyNames26_ES6.symbols │ ├── computedPropertyNames26_ES6.types │ ├── computedPropertyNames27_ES5(target=es2015).errors.txt │ ├── computedPropertyNames27_ES5(target=es2015).js │ ├── computedPropertyNames27_ES5(target=es2015).symbols │ ├── computedPropertyNames27_ES5(target=es2015).types │ ├── computedPropertyNames27_ES5(target=es5).errors.txt │ ├── computedPropertyNames27_ES5(target=es5).js │ ├── computedPropertyNames27_ES5(target=es5).symbols │ ├── computedPropertyNames27_ES5(target=es5).types │ ├── computedPropertyNames27_ES6.errors.txt │ ├── computedPropertyNames27_ES6.js │ ├── computedPropertyNames27_ES6.symbols │ ├── computedPropertyNames27_ES6.types │ ├── computedPropertyNames28_ES5(target=es2015).js │ ├── computedPropertyNames28_ES5(target=es2015).symbols │ ├── computedPropertyNames28_ES5(target=es2015).types │ ├── computedPropertyNames28_ES5(target=es5).errors.txt │ ├── computedPropertyNames28_ES5(target=es5).js │ ├── computedPropertyNames28_ES5(target=es5).symbols │ ├── computedPropertyNames28_ES5(target=es5).types │ ├── computedPropertyNames28_ES6.js │ ├── computedPropertyNames28_ES6.symbols │ ├── computedPropertyNames28_ES6.types │ ├── computedPropertyNames29_ES5(target=es2015).js │ ├── computedPropertyNames29_ES5(target=es2015).symbols │ ├── computedPropertyNames29_ES5(target=es2015).types │ ├── computedPropertyNames29_ES5(target=es5).errors.txt │ ├── computedPropertyNames29_ES5(target=es5).js │ ├── computedPropertyNames29_ES5(target=es5).symbols │ ├── computedPropertyNames29_ES5(target=es5).types │ ├── computedPropertyNames29_ES6.js │ ├── computedPropertyNames29_ES6.symbols │ ├── computedPropertyNames29_ES6.types │ ├── computedPropertyNames2_ES5(target=es2015).errors.txt │ ├── computedPropertyNames2_ES5(target=es2015).js │ ├── computedPropertyNames2_ES5(target=es2015).symbols │ ├── computedPropertyNames2_ES5(target=es2015).types │ ├── computedPropertyNames2_ES5(target=es5).errors.txt │ ├── computedPropertyNames2_ES5(target=es5).js │ ├── computedPropertyNames2_ES5(target=es5).symbols │ ├── computedPropertyNames2_ES5(target=es5).types │ ├── computedPropertyNames2_ES6.errors.txt │ ├── computedPropertyNames2_ES6.js │ ├── computedPropertyNames2_ES6.symbols │ ├── computedPropertyNames2_ES6.types │ ├── computedPropertyNames30_ES5(target=es2015).errors.txt │ ├── computedPropertyNames30_ES5(target=es2015).js │ ├── computedPropertyNames30_ES5(target=es2015).symbols │ ├── computedPropertyNames30_ES5(target=es2015).types │ ├── computedPropertyNames30_ES5(target=es5).errors.txt │ ├── computedPropertyNames30_ES5(target=es5).js │ ├── computedPropertyNames30_ES5(target=es5).symbols │ ├── computedPropertyNames30_ES5(target=es5).types │ ├── computedPropertyNames30_ES6.errors.txt │ ├── computedPropertyNames30_ES6.js │ ├── computedPropertyNames30_ES6.symbols │ ├── computedPropertyNames30_ES6.types │ ├── computedPropertyNames31_ES5(target=es2015).js │ ├── computedPropertyNames31_ES5(target=es2015).symbols │ ├── computedPropertyNames31_ES5(target=es2015).types │ ├── computedPropertyNames31_ES5(target=es5).errors.txt │ ├── computedPropertyNames31_ES5(target=es5).js │ ├── computedPropertyNames31_ES5(target=es5).symbols │ ├── computedPropertyNames31_ES5(target=es5).types │ ├── computedPropertyNames31_ES6.js │ ├── computedPropertyNames31_ES6.symbols │ ├── computedPropertyNames31_ES6.types │ ├── computedPropertyNames32_ES5(target=es2015).errors.txt │ ├── computedPropertyNames32_ES5(target=es2015).js │ ├── computedPropertyNames32_ES5(target=es2015).symbols │ ├── computedPropertyNames32_ES5(target=es2015).types │ ├── computedPropertyNames32_ES5(target=es5).errors.txt │ ├── computedPropertyNames32_ES5(target=es5).js │ ├── computedPropertyNames32_ES5(target=es5).symbols │ ├── computedPropertyNames32_ES5(target=es5).types │ ├── computedPropertyNames32_ES6.errors.txt │ ├── computedPropertyNames32_ES6.js │ ├── computedPropertyNames32_ES6.symbols │ ├── computedPropertyNames32_ES6.types │ ├── computedPropertyNames33_ES5(target=es2015).js │ ├── computedPropertyNames33_ES5(target=es2015).symbols │ ├── computedPropertyNames33_ES5(target=es2015).types │ ├── computedPropertyNames33_ES5(target=es5).errors.txt │ ├── computedPropertyNames33_ES5(target=es5).js │ ├── computedPropertyNames33_ES5(target=es5).symbols │ ├── computedPropertyNames33_ES5(target=es5).types │ ├── computedPropertyNames33_ES6.js │ ├── computedPropertyNames33_ES6.symbols │ ├── computedPropertyNames33_ES6.types │ ├── computedPropertyNames34_ES5(target=es2015).errors.txt │ ├── computedPropertyNames34_ES5(target=es2015).js │ ├── computedPropertyNames34_ES5(target=es2015).symbols │ ├── computedPropertyNames34_ES5(target=es2015).types │ ├── computedPropertyNames34_ES5(target=es5).errors.txt │ ├── computedPropertyNames34_ES5(target=es5).js │ ├── computedPropertyNames34_ES5(target=es5).symbols │ ├── computedPropertyNames34_ES5(target=es5).types │ ├── computedPropertyNames34_ES6.errors.txt │ ├── computedPropertyNames34_ES6.js │ ├── computedPropertyNames34_ES6.symbols │ ├── computedPropertyNames34_ES6.types │ ├── computedPropertyNames35_ES5(target=es2015).errors.txt │ ├── computedPropertyNames35_ES5(target=es2015).js │ ├── computedPropertyNames35_ES5(target=es2015).symbols │ ├── computedPropertyNames35_ES5(target=es2015).types │ ├── computedPropertyNames35_ES5(target=es5).errors.txt │ ├── computedPropertyNames35_ES5(target=es5).js │ ├── computedPropertyNames35_ES5(target=es5).symbols │ ├── computedPropertyNames35_ES5(target=es5).types │ ├── computedPropertyNames35_ES6.errors.txt │ ├── computedPropertyNames35_ES6.js │ ├── computedPropertyNames35_ES6.symbols │ ├── computedPropertyNames35_ES6.types │ ├── computedPropertyNames36_ES5(target=es2015).errors.txt │ ├── computedPropertyNames36_ES5(target=es2015).js │ ├── computedPropertyNames36_ES5(target=es2015).symbols │ ├── computedPropertyNames36_ES5(target=es2015).types │ ├── computedPropertyNames36_ES5(target=es5).errors.txt │ ├── computedPropertyNames36_ES5(target=es5).js │ ├── computedPropertyNames36_ES5(target=es5).symbols │ ├── computedPropertyNames36_ES5(target=es5).types │ ├── computedPropertyNames36_ES6.errors.txt │ ├── computedPropertyNames36_ES6.js │ ├── computedPropertyNames36_ES6.symbols │ ├── computedPropertyNames36_ES6.types │ ├── computedPropertyNames37_ES5(target=es2015).js │ ├── computedPropertyNames37_ES5(target=es2015).symbols │ ├── computedPropertyNames37_ES5(target=es2015).types │ ├── computedPropertyNames37_ES5(target=es5).errors.txt │ ├── computedPropertyNames37_ES5(target=es5).js │ ├── computedPropertyNames37_ES5(target=es5).symbols │ ├── computedPropertyNames37_ES5(target=es5).types │ ├── computedPropertyNames37_ES6.js │ ├── computedPropertyNames37_ES6.symbols │ ├── computedPropertyNames37_ES6.types │ ├── computedPropertyNames38_ES5(target=es2015).errors.txt │ ├── computedPropertyNames38_ES5(target=es2015).js │ ├── computedPropertyNames38_ES5(target=es2015).symbols │ ├── computedPropertyNames38_ES5(target=es2015).types │ ├── computedPropertyNames38_ES5(target=es5).errors.txt │ ├── computedPropertyNames38_ES5(target=es5).js │ ├── computedPropertyNames38_ES5(target=es5).symbols │ ├── computedPropertyNames38_ES5(target=es5).types │ ├── computedPropertyNames38_ES6.errors.txt │ ├── computedPropertyNames38_ES6.js │ ├── computedPropertyNames38_ES6.symbols │ ├── computedPropertyNames38_ES6.types │ ├── computedPropertyNames39_ES5(target=es2015).errors.txt │ ├── computedPropertyNames39_ES5(target=es2015).js │ ├── computedPropertyNames39_ES5(target=es2015).symbols │ ├── computedPropertyNames39_ES5(target=es2015).types │ ├── computedPropertyNames39_ES5(target=es5).errors.txt │ ├── computedPropertyNames39_ES5(target=es5).js │ ├── computedPropertyNames39_ES5(target=es5).symbols │ ├── computedPropertyNames39_ES5(target=es5).types │ ├── computedPropertyNames39_ES6.errors.txt │ ├── computedPropertyNames39_ES6.js │ ├── computedPropertyNames39_ES6.symbols │ ├── computedPropertyNames39_ES6.types │ ├── computedPropertyNames3_ES5(target=es2015).errors.txt │ ├── computedPropertyNames3_ES5(target=es2015).js │ ├── computedPropertyNames3_ES5(target=es2015).symbols │ ├── computedPropertyNames3_ES5(target=es2015).types │ ├── computedPropertyNames3_ES5(target=es5).errors.txt │ ├── computedPropertyNames3_ES5(target=es5).js │ ├── computedPropertyNames3_ES5(target=es5).symbols │ ├── computedPropertyNames3_ES5(target=es5).types │ ├── computedPropertyNames3_ES6.errors.txt │ ├── computedPropertyNames3_ES6.js │ ├── computedPropertyNames3_ES6.symbols │ ├── computedPropertyNames3_ES6.types │ ├── computedPropertyNames40_ES5(target=es2015).errors.txt │ ├── computedPropertyNames40_ES5(target=es2015).js │ ├── computedPropertyNames40_ES5(target=es2015).symbols │ ├── computedPropertyNames40_ES5(target=es2015).types │ ├── computedPropertyNames40_ES5(target=es5).errors.txt │ ├── computedPropertyNames40_ES5(target=es5).js │ ├── computedPropertyNames40_ES5(target=es5).symbols │ ├── computedPropertyNames40_ES5(target=es5).types │ ├── computedPropertyNames40_ES6.errors.txt │ ├── computedPropertyNames40_ES6.js │ ├── computedPropertyNames40_ES6.symbols │ ├── computedPropertyNames40_ES6.types │ ├── computedPropertyNames41_ES5(target=es2015).js │ ├── computedPropertyNames41_ES5(target=es2015).symbols │ ├── computedPropertyNames41_ES5(target=es2015).types │ ├── computedPropertyNames41_ES5(target=es5).errors.txt │ ├── computedPropertyNames41_ES5(target=es5).js │ ├── computedPropertyNames41_ES5(target=es5).symbols │ ├── computedPropertyNames41_ES5(target=es5).types │ ├── computedPropertyNames41_ES6.js │ ├── computedPropertyNames41_ES6.symbols │ ├── computedPropertyNames41_ES6.types │ ├── computedPropertyNames42_ES5(target=es2015).errors.txt │ ├── computedPropertyNames42_ES5(target=es2015).js │ ├── computedPropertyNames42_ES5(target=es2015).symbols │ ├── computedPropertyNames42_ES5(target=es2015).types │ ├── computedPropertyNames42_ES5(target=es5).errors.txt │ ├── computedPropertyNames42_ES5(target=es5).js │ ├── computedPropertyNames42_ES5(target=es5).symbols │ ├── computedPropertyNames42_ES5(target=es5).types │ ├── computedPropertyNames42_ES6.errors.txt │ ├── computedPropertyNames42_ES6.js │ ├── computedPropertyNames42_ES6.symbols │ ├── computedPropertyNames42_ES6.types │ ├── computedPropertyNames43_ES5(target=es2015).errors.txt │ ├── computedPropertyNames43_ES5(target=es2015).js │ ├── computedPropertyNames43_ES5(target=es2015).symbols │ ├── computedPropertyNames43_ES5(target=es2015).types │ ├── computedPropertyNames43_ES5(target=es5).errors.txt │ ├── computedPropertyNames43_ES5(target=es5).js │ ├── computedPropertyNames43_ES5(target=es5).symbols │ ├── computedPropertyNames43_ES5(target=es5).types │ ├── computedPropertyNames43_ES6.errors.txt │ ├── computedPropertyNames43_ES6.js │ ├── computedPropertyNames43_ES6.symbols │ ├── computedPropertyNames43_ES6.types │ ├── computedPropertyNames44_ES5(target=es2015).errors.txt │ ├── computedPropertyNames44_ES5(target=es2015).js │ ├── computedPropertyNames44_ES5(target=es2015).symbols │ ├── computedPropertyNames44_ES5(target=es2015).types │ ├── computedPropertyNames44_ES5(target=es5).errors.txt │ ├── computedPropertyNames44_ES5(target=es5).js │ ├── computedPropertyNames44_ES5(target=es5).symbols │ ├── computedPropertyNames44_ES5(target=es5).types │ ├── computedPropertyNames44_ES6.errors.txt │ ├── computedPropertyNames44_ES6.js │ ├── computedPropertyNames44_ES6.symbols │ ├── computedPropertyNames44_ES6.types │ ├── computedPropertyNames45_ES5(target=es2015).errors.txt │ ├── computedPropertyNames45_ES5(target=es2015).js │ ├── computedPropertyNames45_ES5(target=es2015).symbols │ ├── computedPropertyNames45_ES5(target=es2015).types │ ├── computedPropertyNames45_ES5(target=es5).errors.txt │ ├── computedPropertyNames45_ES5(target=es5).js │ ├── computedPropertyNames45_ES5(target=es5).symbols │ ├── computedPropertyNames45_ES5(target=es5).types │ ├── computedPropertyNames45_ES6.errors.txt │ ├── computedPropertyNames45_ES6.js │ ├── computedPropertyNames45_ES6.symbols │ ├── computedPropertyNames45_ES6.types │ ├── computedPropertyNames46_ES5(target=es2015).errors.txt │ ├── computedPropertyNames46_ES5(target=es2015).js │ ├── computedPropertyNames46_ES5(target=es2015).symbols │ ├── computedPropertyNames46_ES5(target=es2015).types │ ├── computedPropertyNames46_ES5(target=es5).errors.txt │ ├── computedPropertyNames46_ES5(target=es5).js │ ├── computedPropertyNames46_ES5(target=es5).symbols │ ├── computedPropertyNames46_ES5(target=es5).types │ ├── computedPropertyNames46_ES6.errors.txt │ ├── computedPropertyNames46_ES6.js │ ├── computedPropertyNames46_ES6.symbols │ ├── computedPropertyNames46_ES6.types │ ├── computedPropertyNames47_ES5(target=es2015).js │ ├── computedPropertyNames47_ES5(target=es2015).symbols │ ├── computedPropertyNames47_ES5(target=es2015).types │ ├── computedPropertyNames47_ES5(target=es5).errors.txt │ ├── computedPropertyNames47_ES5(target=es5).js │ ├── computedPropertyNames47_ES5(target=es5).symbols │ ├── computedPropertyNames47_ES5(target=es5).types │ ├── computedPropertyNames47_ES6.js │ ├── computedPropertyNames47_ES6.symbols │ ├── computedPropertyNames47_ES6.types │ ├── computedPropertyNames48_ES5(target=es2015).errors.txt │ ├── computedPropertyNames48_ES5(target=es2015).js │ ├── computedPropertyNames48_ES5(target=es2015).symbols │ ├── computedPropertyNames48_ES5(target=es2015).types │ ├── computedPropertyNames48_ES5(target=es5).errors.txt │ ├── computedPropertyNames48_ES5(target=es5).js │ ├── computedPropertyNames48_ES5(target=es5).symbols │ ├── computedPropertyNames48_ES5(target=es5).types │ ├── computedPropertyNames48_ES6.errors.txt │ ├── computedPropertyNames48_ES6.js │ ├── computedPropertyNames48_ES6.symbols │ ├── computedPropertyNames48_ES6.types │ ├── computedPropertyNames49_ES5.errors.txt │ ├── computedPropertyNames49_ES5.js │ ├── computedPropertyNames49_ES5.symbols │ ├── computedPropertyNames49_ES5.types │ ├── computedPropertyNames49_ES6.errors.txt │ ├── computedPropertyNames49_ES6.js │ ├── computedPropertyNames49_ES6.symbols │ ├── computedPropertyNames49_ES6.types │ ├── computedPropertyNames4_ES5(target=es2015).errors.txt │ ├── computedPropertyNames4_ES5(target=es2015).js │ ├── computedPropertyNames4_ES5(target=es2015).symbols │ ├── computedPropertyNames4_ES5(target=es2015).types │ ├── computedPropertyNames4_ES5(target=es5).errors.txt │ ├── computedPropertyNames4_ES5(target=es5).js │ ├── computedPropertyNames4_ES5(target=es5).symbols │ ├── computedPropertyNames4_ES5(target=es5).types │ ├── computedPropertyNames4_ES6.errors.txt │ ├── computedPropertyNames4_ES6.js │ ├── computedPropertyNames4_ES6.symbols │ ├── computedPropertyNames4_ES6.types │ ├── computedPropertyNames50_ES5.errors.txt │ ├── computedPropertyNames50_ES5.js │ ├── computedPropertyNames50_ES5.symbols │ ├── computedPropertyNames50_ES5.types │ ├── computedPropertyNames50_ES6.errors.txt │ ├── computedPropertyNames50_ES6.js │ ├── computedPropertyNames50_ES6.symbols │ ├── computedPropertyNames50_ES6.types │ ├── computedPropertyNames51_ES5.errors.txt │ ├── computedPropertyNames51_ES5.js │ ├── computedPropertyNames51_ES5.symbols │ ├── computedPropertyNames51_ES5.types │ ├── computedPropertyNames51_ES6.errors.txt │ ├── computedPropertyNames51_ES6.js │ ├── computedPropertyNames51_ES6.symbols │ ├── computedPropertyNames51_ES6.types │ ├── computedPropertyNames52(target=es2015).errors.txt │ ├── computedPropertyNames52(target=es2015).js │ ├── computedPropertyNames52(target=es2015).symbols │ ├── computedPropertyNames52(target=es2015).types │ ├── computedPropertyNames52(target=es5).errors.txt │ ├── computedPropertyNames52(target=es5).js │ ├── computedPropertyNames52(target=es5).symbols │ ├── computedPropertyNames52(target=es5).types │ ├── computedPropertyNames5_ES5(target=es2015).errors.txt │ ├── computedPropertyNames5_ES5(target=es2015).js │ ├── computedPropertyNames5_ES5(target=es2015).symbols │ ├── computedPropertyNames5_ES5(target=es2015).types │ ├── computedPropertyNames5_ES5(target=es5).errors.txt │ ├── computedPropertyNames5_ES5(target=es5).js │ ├── computedPropertyNames5_ES5(target=es5).symbols │ ├── computedPropertyNames5_ES5(target=es5).types │ ├── computedPropertyNames5_ES6.errors.txt │ ├── computedPropertyNames5_ES6.js │ ├── computedPropertyNames5_ES6.symbols │ ├── computedPropertyNames5_ES6.types │ ├── computedPropertyNames6_ES5(target=es2015).errors.txt │ ├── computedPropertyNames6_ES5(target=es2015).js │ ├── computedPropertyNames6_ES5(target=es2015).symbols │ ├── computedPropertyNames6_ES5(target=es2015).types │ ├── computedPropertyNames6_ES5(target=es5).errors.txt │ ├── computedPropertyNames6_ES5(target=es5).js │ ├── computedPropertyNames6_ES5(target=es5).symbols │ ├── computedPropertyNames6_ES5(target=es5).types │ ├── computedPropertyNames6_ES6.errors.txt │ ├── computedPropertyNames6_ES6.js │ ├── computedPropertyNames6_ES6.symbols │ ├── computedPropertyNames6_ES6.types │ ├── computedPropertyNames7_ES5(target=es2015).js │ ├── computedPropertyNames7_ES5(target=es2015).symbols │ ├── computedPropertyNames7_ES5(target=es2015).types │ ├── computedPropertyNames7_ES5(target=es5).errors.txt │ ├── computedPropertyNames7_ES5(target=es5).js │ ├── computedPropertyNames7_ES5(target=es5).symbols │ ├── computedPropertyNames7_ES5(target=es5).types │ ├── computedPropertyNames7_ES6.js │ ├── computedPropertyNames7_ES6.symbols │ ├── computedPropertyNames7_ES6.types │ ├── computedPropertyNames8_ES5(target=es2015).errors.txt │ ├── computedPropertyNames8_ES5(target=es2015).js │ ├── computedPropertyNames8_ES5(target=es2015).symbols │ ├── computedPropertyNames8_ES5(target=es2015).types │ ├── computedPropertyNames8_ES5(target=es5).errors.txt │ ├── computedPropertyNames8_ES5(target=es5).js │ ├── computedPropertyNames8_ES5(target=es5).symbols │ ├── computedPropertyNames8_ES5(target=es5).types │ ├── computedPropertyNames8_ES6.errors.txt │ ├── computedPropertyNames8_ES6.js │ ├── computedPropertyNames8_ES6.symbols │ ├── computedPropertyNames8_ES6.types │ ├── computedPropertyNames9_ES5(target=es2015).errors.txt │ ├── computedPropertyNames9_ES5(target=es2015).js │ ├── computedPropertyNames9_ES5(target=es2015).symbols │ ├── computedPropertyNames9_ES5(target=es2015).types │ ├── computedPropertyNames9_ES5(target=es5).errors.txt │ ├── computedPropertyNames9_ES5(target=es5).js │ ├── computedPropertyNames9_ES5(target=es5).symbols │ ├── computedPropertyNames9_ES5(target=es5).types │ ├── computedPropertyNames9_ES6.errors.txt │ ├── computedPropertyNames9_ES6.js │ ├── computedPropertyNames9_ES6.symbols │ ├── computedPropertyNames9_ES6.types │ ├── computedPropertyNamesContextualType10_ES5(target=es2015).errors.txt │ ├── computedPropertyNamesContextualType10_ES5(target=es2015).js │ ├── computedPropertyNamesContextualType10_ES5(target=es2015).symbols │ ├── computedPropertyNamesContextualType10_ES5(target=es2015).types │ ├── computedPropertyNamesContextualType10_ES5(target=es5).errors.txt │ ├── computedPropertyNamesContextualType10_ES5(target=es5).js │ ├── computedPropertyNamesContextualType10_ES5(target=es5).symbols │ ├── computedPropertyNamesContextualType10_ES5(target=es5).types │ ├── computedPropertyNamesContextualType10_ES6.errors.txt │ ├── computedPropertyNamesContextualType10_ES6.js │ ├── computedPropertyNamesContextualType10_ES6.symbols │ ├── computedPropertyNamesContextualType10_ES6.types │ ├── computedPropertyNamesContextualType1_ES5(target=es2015).js │ ├── computedPropertyNamesContextualType1_ES5(target=es2015).symbols │ ├── computedPropertyNamesContextualType1_ES5(target=es2015).types │ ├── computedPropertyNamesContextualType1_ES5(target=es5).errors.txt │ ├── computedPropertyNamesContextualType1_ES5(target=es5).js │ ├── computedPropertyNamesContextualType1_ES5(target=es5).symbols │ ├── computedPropertyNamesContextualType1_ES5(target=es5).types │ ├── computedPropertyNamesContextualType1_ES6.js │ ├── computedPropertyNamesContextualType1_ES6.symbols │ ├── computedPropertyNamesContextualType1_ES6.types │ ├── computedPropertyNamesContextualType2_ES5(target=es2015).js │ ├── computedPropertyNamesContextualType2_ES5(target=es2015).symbols │ ├── computedPropertyNamesContextualType2_ES5(target=es2015).types │ ├── computedPropertyNamesContextualType2_ES5(target=es5).errors.txt │ ├── computedPropertyNamesContextualType2_ES5(target=es5).js │ ├── computedPropertyNamesContextualType2_ES5(target=es5).symbols │ ├── computedPropertyNamesContextualType2_ES5(target=es5).types │ ├── computedPropertyNamesContextualType2_ES6.js │ ├── computedPropertyNamesContextualType2_ES6.symbols │ ├── computedPropertyNamesContextualType2_ES6.types │ ├── computedPropertyNamesContextualType3_ES5(target=es2015).js │ ├── computedPropertyNamesContextualType3_ES5(target=es2015).symbols │ ├── computedPropertyNamesContextualType3_ES5(target=es2015).types │ ├── computedPropertyNamesContextualType3_ES5(target=es5).errors.txt │ ├── computedPropertyNamesContextualType3_ES5(target=es5).js │ ├── computedPropertyNamesContextualType3_ES5(target=es5).symbols │ ├── computedPropertyNamesContextualType3_ES5(target=es5).types │ ├── computedPropertyNamesContextualType3_ES6.js │ ├── computedPropertyNamesContextualType3_ES6.symbols │ ├── computedPropertyNamesContextualType3_ES6.types │ ├── computedPropertyNamesContextualType4_ES5(target=es2015).js │ ├── computedPropertyNamesContextualType4_ES5(target=es2015).symbols │ ├── computedPropertyNamesContextualType4_ES5(target=es2015).types │ ├── computedPropertyNamesContextualType4_ES5(target=es5).errors.txt │ ├── computedPropertyNamesContextualType4_ES5(target=es5).js │ ├── computedPropertyNamesContextualType4_ES5(target=es5).symbols │ ├── computedPropertyNamesContextualType4_ES5(target=es5).types │ ├── computedPropertyNamesContextualType4_ES6.js │ ├── computedPropertyNamesContextualType4_ES6.symbols │ ├── computedPropertyNamesContextualType4_ES6.types │ ├── computedPropertyNamesContextualType5_ES5(target=es2015).js │ ├── computedPropertyNamesContextualType5_ES5(target=es2015).symbols │ ├── computedPropertyNamesContextualType5_ES5(target=es2015).types │ ├── computedPropertyNamesContextualType5_ES5(target=es5).errors.txt │ ├── computedPropertyNamesContextualType5_ES5(target=es5).js │ ├── computedPropertyNamesContextualType5_ES5(target=es5).symbols │ ├── computedPropertyNamesContextualType5_ES5(target=es5).types │ ├── computedPropertyNamesContextualType5_ES6.js │ ├── computedPropertyNamesContextualType5_ES6.symbols │ ├── computedPropertyNamesContextualType5_ES6.types │ ├── computedPropertyNamesContextualType6_ES5(target=es2015).js │ ├── computedPropertyNamesContextualType6_ES5(target=es2015).symbols │ ├── computedPropertyNamesContextualType6_ES5(target=es2015).types │ ├── computedPropertyNamesContextualType6_ES5(target=es5).errors.txt │ ├── computedPropertyNamesContextualType6_ES5(target=es5).js │ ├── computedPropertyNamesContextualType6_ES5(target=es5).symbols │ ├── computedPropertyNamesContextualType6_ES5(target=es5).types │ ├── computedPropertyNamesContextualType6_ES6.js │ ├── computedPropertyNamesContextualType6_ES6.symbols │ ├── computedPropertyNamesContextualType6_ES6.types │ ├── computedPropertyNamesContextualType7_ES5(target=es2015).js │ ├── computedPropertyNamesContextualType7_ES5(target=es2015).symbols │ ├── computedPropertyNamesContextualType7_ES5(target=es2015).types │ ├── computedPropertyNamesContextualType7_ES5(target=es5).errors.txt │ ├── computedPropertyNamesContextualType7_ES5(target=es5).js │ ├── computedPropertyNamesContextualType7_ES5(target=es5).symbols │ ├── computedPropertyNamesContextualType7_ES5(target=es5).types │ ├── computedPropertyNamesContextualType7_ES6.js │ ├── computedPropertyNamesContextualType7_ES6.symbols │ ├── computedPropertyNamesContextualType7_ES6.types │ ├── computedPropertyNamesContextualType8_ES5(target=es2015).errors.txt │ ├── computedPropertyNamesContextualType8_ES5(target=es2015).js │ ├── computedPropertyNamesContextualType8_ES5(target=es2015).symbols │ ├── computedPropertyNamesContextualType8_ES5(target=es2015).types │ ├── computedPropertyNamesContextualType8_ES5(target=es5).errors.txt │ ├── computedPropertyNamesContextualType8_ES5(target=es5).js │ ├── computedPropertyNamesContextualType8_ES5(target=es5).symbols │ ├── computedPropertyNamesContextualType8_ES5(target=es5).types │ ├── computedPropertyNamesContextualType8_ES6.errors.txt │ ├── computedPropertyNamesContextualType8_ES6.js │ ├── computedPropertyNamesContextualType8_ES6.symbols │ ├── computedPropertyNamesContextualType8_ES6.types │ ├── computedPropertyNamesContextualType9_ES5(target=es2015).errors.txt │ ├── computedPropertyNamesContextualType9_ES5(target=es2015).js │ ├── computedPropertyNamesContextualType9_ES5(target=es2015).symbols │ ├── computedPropertyNamesContextualType9_ES5(target=es2015).types │ ├── computedPropertyNamesContextualType9_ES5(target=es5).errors.txt │ ├── computedPropertyNamesContextualType9_ES5(target=es5).js │ ├── computedPropertyNamesContextualType9_ES5(target=es5).symbols │ ├── computedPropertyNamesContextualType9_ES5(target=es5).types │ ├── computedPropertyNamesContextualType9_ES6.errors.txt │ ├── computedPropertyNamesContextualType9_ES6.js │ ├── computedPropertyNamesContextualType9_ES6.symbols │ ├── computedPropertyNamesContextualType9_ES6.types │ ├── computedPropertyNamesDeclarationEmit1_ES5(target=es2015).js │ ├── computedPropertyNamesDeclarationEmit1_ES5(target=es2015).symbols │ ├── computedPropertyNamesDeclarationEmit1_ES5(target=es2015).types │ ├── computedPropertyNamesDeclarationEmit1_ES5(target=es5).errors.txt │ ├── computedPropertyNamesDeclarationEmit1_ES5(target=es5).js │ ├── computedPropertyNamesDeclarationEmit1_ES5(target=es5).symbols │ ├── computedPropertyNamesDeclarationEmit1_ES5(target=es5).types │ ├── computedPropertyNamesDeclarationEmit1_ES6.js │ ├── computedPropertyNamesDeclarationEmit1_ES6.symbols │ ├── computedPropertyNamesDeclarationEmit1_ES6.types │ ├── computedPropertyNamesDeclarationEmit2_ES5(target=es2015).js │ ├── computedPropertyNamesDeclarationEmit2_ES5(target=es2015).symbols │ ├── computedPropertyNamesDeclarationEmit2_ES5(target=es2015).types │ ├── computedPropertyNamesDeclarationEmit2_ES5(target=es5).errors.txt │ ├── computedPropertyNamesDeclarationEmit2_ES5(target=es5).js │ ├── computedPropertyNamesDeclarationEmit2_ES5(target=es5).symbols │ ├── computedPropertyNamesDeclarationEmit2_ES5(target=es5).types │ ├── computedPropertyNamesDeclarationEmit2_ES6.js │ ├── computedPropertyNamesDeclarationEmit2_ES6.symbols │ ├── computedPropertyNamesDeclarationEmit2_ES6.types │ ├── computedPropertyNamesDeclarationEmit3_ES5(target=es2015).errors.txt │ ├── computedPropertyNamesDeclarationEmit3_ES5(target=es2015).js │ ├── computedPropertyNamesDeclarationEmit3_ES5(target=es2015).symbols │ ├── computedPropertyNamesDeclarationEmit3_ES5(target=es2015).types │ ├── computedPropertyNamesDeclarationEmit3_ES5(target=es5).errors.txt │ ├── computedPropertyNamesDeclarationEmit3_ES5(target=es5).js │ ├── computedPropertyNamesDeclarationEmit3_ES5(target=es5).symbols │ ├── computedPropertyNamesDeclarationEmit3_ES5(target=es5).types │ ├── computedPropertyNamesDeclarationEmit3_ES6.errors.txt │ ├── computedPropertyNamesDeclarationEmit3_ES6.js │ ├── computedPropertyNamesDeclarationEmit3_ES6.symbols │ ├── computedPropertyNamesDeclarationEmit3_ES6.types │ ├── computedPropertyNamesDeclarationEmit4_ES5(target=es2015).errors.txt │ ├── computedPropertyNamesDeclarationEmit4_ES5(target=es2015).js │ ├── computedPropertyNamesDeclarationEmit4_ES5(target=es2015).symbols │ ├── computedPropertyNamesDeclarationEmit4_ES5(target=es2015).types │ ├── computedPropertyNamesDeclarationEmit4_ES5(target=es5).errors.txt │ ├── computedPropertyNamesDeclarationEmit4_ES5(target=es5).js │ ├── computedPropertyNamesDeclarationEmit4_ES5(target=es5).symbols │ ├── computedPropertyNamesDeclarationEmit4_ES5(target=es5).types │ ├── computedPropertyNamesDeclarationEmit4_ES6.errors.txt │ ├── computedPropertyNamesDeclarationEmit4_ES6.js │ ├── computedPropertyNamesDeclarationEmit4_ES6.symbols │ ├── computedPropertyNamesDeclarationEmit4_ES6.types │ ├── computedPropertyNamesDeclarationEmit5_ES5(target=es2015).js │ ├── computedPropertyNamesDeclarationEmit5_ES5(target=es2015).symbols │ ├── computedPropertyNamesDeclarationEmit5_ES5(target=es2015).types │ ├── computedPropertyNamesDeclarationEmit5_ES5(target=es5).errors.txt │ ├── computedPropertyNamesDeclarationEmit5_ES5(target=es5).js │ ├── computedPropertyNamesDeclarationEmit5_ES5(target=es5).symbols │ ├── computedPropertyNamesDeclarationEmit5_ES5(target=es5).types │ ├── computedPropertyNamesDeclarationEmit5_ES6.js │ ├── computedPropertyNamesDeclarationEmit5_ES6.symbols │ ├── computedPropertyNamesDeclarationEmit5_ES6.types │ ├── computedPropertyNamesDeclarationEmit6_ES5(target=es2015).errors.txt │ ├── computedPropertyNamesDeclarationEmit6_ES5(target=es2015).js │ ├── computedPropertyNamesDeclarationEmit6_ES5(target=es2015).symbols │ ├── computedPropertyNamesDeclarationEmit6_ES5(target=es2015).types │ ├── computedPropertyNamesDeclarationEmit6_ES5(target=es5).errors.txt │ ├── computedPropertyNamesDeclarationEmit6_ES5(target=es5).js │ ├── computedPropertyNamesDeclarationEmit6_ES5(target=es5).symbols │ ├── computedPropertyNamesDeclarationEmit6_ES5(target=es5).types │ ├── computedPropertyNamesDeclarationEmit6_ES6.errors.txt │ ├── computedPropertyNamesDeclarationEmit6_ES6.js │ ├── computedPropertyNamesDeclarationEmit6_ES6.symbols │ ├── computedPropertyNamesDeclarationEmit6_ES6.types │ ├── computedPropertyNamesOnOverloads_ES5(target=es2015).js │ ├── computedPropertyNamesOnOverloads_ES5(target=es2015).symbols │ ├── computedPropertyNamesOnOverloads_ES5(target=es2015).types │ ├── computedPropertyNamesOnOverloads_ES5(target=es5).errors.txt │ ├── computedPropertyNamesOnOverloads_ES5(target=es5).js │ ├── computedPropertyNamesOnOverloads_ES5(target=es5).symbols │ ├── computedPropertyNamesOnOverloads_ES5(target=es5).types │ ├── computedPropertyNamesOnOverloads_ES6.js │ ├── computedPropertyNamesOnOverloads_ES6.symbols │ ├── computedPropertyNamesOnOverloads_ES6.types │ ├── computedPropertyNamesSourceMap1_ES5(target=es2015).js │ ├── computedPropertyNamesSourceMap1_ES5(target=es2015).sourcemap.txt │ ├── computedPropertyNamesSourceMap1_ES5(target=es2015).symbols │ ├── computedPropertyNamesSourceMap1_ES5(target=es2015).types │ ├── computedPropertyNamesSourceMap1_ES5(target=es5).errors.txt │ ├── computedPropertyNamesSourceMap1_ES5(target=es5).js │ ├── computedPropertyNamesSourceMap1_ES5(target=es5).sourcemap.txt │ ├── computedPropertyNamesSourceMap1_ES5(target=es5).symbols │ ├── computedPropertyNamesSourceMap1_ES5(target=es5).types │ ├── computedPropertyNamesSourceMap1_ES6.js │ ├── computedPropertyNamesSourceMap1_ES6.sourcemap.txt │ ├── computedPropertyNamesSourceMap1_ES6.symbols │ ├── computedPropertyNamesSourceMap1_ES6.types │ ├── computedPropertyNamesSourceMap2_ES5(target=es2015).js │ ├── computedPropertyNamesSourceMap2_ES5(target=es2015).sourcemap.txt │ ├── computedPropertyNamesSourceMap2_ES5(target=es2015).symbols │ ├── computedPropertyNamesSourceMap2_ES5(target=es2015).types │ ├── computedPropertyNamesSourceMap2_ES5(target=es5).errors.txt │ ├── computedPropertyNamesSourceMap2_ES5(target=es5).js │ ├── computedPropertyNamesSourceMap2_ES5(target=es5).sourcemap.txt │ ├── computedPropertyNamesSourceMap2_ES5(target=es5).symbols │ ├── computedPropertyNamesSourceMap2_ES5(target=es5).types │ ├── computedPropertyNamesSourceMap2_ES6.js │ ├── computedPropertyNamesSourceMap2_ES6.sourcemap.txt │ ├── computedPropertyNamesSourceMap2_ES6.symbols │ ├── computedPropertyNamesSourceMap2_ES6.types │ ├── computedPropertyNamesWithStaticProperty.errors.txt │ ├── computedPropertyNamesWithStaticProperty.js │ ├── computedPropertyNamesWithStaticProperty.symbols │ ├── computedPropertyNamesWithStaticProperty.types │ ├── computedTypesKeyofNoIndexSignatureType.js │ ├── computedTypesKeyofNoIndexSignatureType.symbols │ ├── computedTypesKeyofNoIndexSignatureType.types │ ├── computerPropertiesInES5ShouldBeTransformed(target=es2015).js │ ├── computerPropertiesInES5ShouldBeTransformed(target=es2015).symbols │ ├── computerPropertiesInES5ShouldBeTransformed(target=es2015).types │ ├── computerPropertiesInES5ShouldBeTransformed(target=es5).errors.txt │ ├── computerPropertiesInES5ShouldBeTransformed(target=es5).js │ ├── computerPropertiesInES5ShouldBeTransformed(target=es5).symbols │ ├── computerPropertiesInES5ShouldBeTransformed(target=es5).types │ ├── concatClassAndString.errors.txt │ ├── concatClassAndString.js │ ├── concatClassAndString.symbols │ ├── concatClassAndString.types │ ├── concatError.errors.txt │ ├── concatError.js │ ├── concatError.symbols │ ├── concatError.types │ ├── concatTuples.js │ ├── concatTuples.symbols │ ├── concatTuples.types │ ├── conditionalAnyCheckTypePicksBothBranches.errors.txt │ ├── conditionalAnyCheckTypePicksBothBranches.js │ ├── conditionalAnyCheckTypePicksBothBranches.symbols │ ├── conditionalAnyCheckTypePicksBothBranches.types │ ├── conditionalDoesntLeakUninstantiatedTypeParameter.errors.txt │ ├── conditionalDoesntLeakUninstantiatedTypeParameter.js │ ├── conditionalDoesntLeakUninstantiatedTypeParameter.symbols │ ├── conditionalDoesntLeakUninstantiatedTypeParameter.types │ ├── conditionalEqualityOnLiteralObjects.errors.txt │ ├── conditionalEqualityOnLiteralObjects.js │ ├── conditionalEqualityOnLiteralObjects.symbols │ ├── conditionalEqualityOnLiteralObjects.types │ ├── conditionalEqualityTestingNullability.js │ ├── conditionalEqualityTestingNullability.symbols │ ├── conditionalEqualityTestingNullability.types │ ├── conditionalExportsResolutionFallback(moduleresolution=bundler).trace.json │ ├── conditionalExportsResolutionFallback(moduleresolution=node16).errors.txt │ ├── conditionalExportsResolutionFallback(moduleresolution=node16).trace.json │ ├── conditionalExportsResolutionFallback(moduleresolution=nodenext).errors.txt │ ├── conditionalExportsResolutionFallback(moduleresolution=nodenext).trace.json │ ├── conditionalExportsResolutionFallbackNull(moduleresolution=bundler).errors.txt │ ├── conditionalExportsResolutionFallbackNull(moduleresolution=bundler).trace.json │ ├── conditionalExportsResolutionFallbackNull(moduleresolution=node16).errors.txt │ ├── conditionalExportsResolutionFallbackNull(moduleresolution=node16).trace.json │ ├── conditionalExportsResolutionFallbackNull(moduleresolution=nodenext).errors.txt │ ├── conditionalExportsResolutionFallbackNull(moduleresolution=nodenext).trace.json │ ├── conditionalExpression1.errors.txt │ ├── conditionalExpression1.js │ ├── conditionalExpression1.symbols │ ├── conditionalExpression1.types │ ├── conditionalExpressionNewLine1.errors.txt │ ├── conditionalExpressionNewLine1.js │ ├── conditionalExpressionNewLine1.symbols │ ├── conditionalExpressionNewLine1.types │ ├── conditionalExpressionNewLine10.errors.txt │ ├── conditionalExpressionNewLine10.js │ ├── conditionalExpressionNewLine10.symbols │ ├── conditionalExpressionNewLine10.types │ ├── conditionalExpressionNewLine2.errors.txt │ ├── conditionalExpressionNewLine2.js │ ├── conditionalExpressionNewLine2.symbols │ ├── conditionalExpressionNewLine2.types │ ├── conditionalExpressionNewLine3.errors.txt │ ├── conditionalExpressionNewLine3.js │ ├── conditionalExpressionNewLine3.symbols │ ├── conditionalExpressionNewLine3.types │ ├── conditionalExpressionNewLine4.errors.txt │ ├── conditionalExpressionNewLine4.js │ ├── conditionalExpressionNewLine4.symbols │ ├── conditionalExpressionNewLine4.types │ ├── conditionalExpressionNewLine5.errors.txt │ ├── conditionalExpressionNewLine5.js │ ├── conditionalExpressionNewLine5.symbols │ ├── conditionalExpressionNewLine5.types │ ├── conditionalExpressionNewLine6.errors.txt │ ├── conditionalExpressionNewLine6.js │ ├── conditionalExpressionNewLine6.symbols │ ├── conditionalExpressionNewLine6.types │ ├── conditionalExpressionNewLine7.errors.txt │ ├── conditionalExpressionNewLine7.js │ ├── conditionalExpressionNewLine7.symbols │ ├── conditionalExpressionNewLine7.types │ ├── conditionalExpressionNewLine8.errors.txt │ ├── conditionalExpressionNewLine8.js │ ├── conditionalExpressionNewLine8.symbols │ ├── conditionalExpressionNewLine8.types │ ├── conditionalExpressionNewLine9.errors.txt │ ├── conditionalExpressionNewLine9.js │ ├── conditionalExpressionNewLine9.symbols │ ├── conditionalExpressionNewLine9.types │ ├── conditionalExpressions2.js │ ├── conditionalExpressions2.symbols │ ├── conditionalExpressions2.types │ ├── conditionalOperatorConditionIsBooleanType.errors.txt │ ├── conditionalOperatorConditionIsBooleanType.js │ ├── conditionalOperatorConditionIsBooleanType.symbols │ ├── conditionalOperatorConditionIsBooleanType.types │ ├── conditionalOperatorConditionIsNumberType.errors.txt │ ├── conditionalOperatorConditionIsNumberType.js │ ├── conditionalOperatorConditionIsNumberType.symbols │ ├── conditionalOperatorConditionIsNumberType.types │ ├── conditionalOperatorConditionIsObjectType.errors.txt │ ├── conditionalOperatorConditionIsObjectType.js │ ├── conditionalOperatorConditionIsObjectType.symbols │ ├── conditionalOperatorConditionIsObjectType.types │ ├── conditionalOperatorConditoinIsAnyType.errors.txt │ ├── conditionalOperatorConditoinIsAnyType.js │ ├── conditionalOperatorConditoinIsAnyType.symbols │ ├── conditionalOperatorConditoinIsAnyType.types │ ├── conditionalOperatorConditoinIsStringType.errors.txt │ ├── conditionalOperatorConditoinIsStringType.js │ ├── conditionalOperatorConditoinIsStringType.symbols │ ├── conditionalOperatorConditoinIsStringType.types │ ├── conditionalOperatorWithIdenticalBCT.errors.txt │ ├── conditionalOperatorWithIdenticalBCT.js │ ├── conditionalOperatorWithIdenticalBCT.symbols │ ├── conditionalOperatorWithIdenticalBCT.types │ ├── conditionalOperatorWithoutIdenticalBCT.errors.txt │ ├── conditionalOperatorWithoutIdenticalBCT.js │ ├── conditionalOperatorWithoutIdenticalBCT.symbols │ ├── conditionalOperatorWithoutIdenticalBCT.types │ ├── conditionalReturnExpression.errors.txt │ ├── conditionalReturnExpression.symbols │ ├── conditionalReturnExpression.types │ ├── conditionalTypeAnyUnion.js │ ├── conditionalTypeAnyUnion.symbols │ ├── conditionalTypeAnyUnion.types │ ├── conditionalTypeAssignabilityWhenDeferred.errors.txt │ ├── conditionalTypeAssignabilityWhenDeferred.js │ ├── conditionalTypeAssignabilityWhenDeferred.symbols │ ├── conditionalTypeAssignabilityWhenDeferred.types │ ├── conditionalTypeBasedContextualTypeReturnTypeWidening.js │ ├── conditionalTypeBasedContextualTypeReturnTypeWidening.symbols │ ├── conditionalTypeBasedContextualTypeReturnTypeWidening.types │ ├── conditionalTypeClassMembers.js │ ├── conditionalTypeClassMembers.symbols │ ├── conditionalTypeClassMembers.types │ ├── conditionalTypeContextualTypeSimplificationsSuceeds.js │ ├── conditionalTypeContextualTypeSimplificationsSuceeds.symbols │ ├── conditionalTypeContextualTypeSimplificationsSuceeds.types │ ├── conditionalTypeDiscriminatingLargeUnionRegularTypeFetchingSpeedReasonable.js │ ├── conditionalTypeDiscriminatingLargeUnionRegularTypeFetchingSpeedReasonable.symbols │ ├── conditionalTypeDiscriminatingLargeUnionRegularTypeFetchingSpeedReasonable.types │ ├── conditionalTypeDoesntSpinForever.errors.txt │ ├── conditionalTypeDoesntSpinForever.js │ ├── conditionalTypeDoesntSpinForever.symbols │ ├── conditionalTypeDoesntSpinForever.types │ ├── conditionalTypeGenericInSignatureTypeParameterConstraint.js │ ├── conditionalTypeGenericInSignatureTypeParameterConstraint.symbols │ ├── conditionalTypeGenericInSignatureTypeParameterConstraint.types │ ├── conditionalTypeRelaxingConstraintAssignability.js │ ├── conditionalTypeRelaxingConstraintAssignability.symbols │ ├── conditionalTypeRelaxingConstraintAssignability.types │ ├── conditionalTypeSimplification.js │ ├── conditionalTypeSimplification.symbols │ ├── conditionalTypeSimplification.types │ ├── conditionalTypeSubclassExtendsTypeParam.js │ ├── conditionalTypeSubclassExtendsTypeParam.symbols │ ├── conditionalTypeSubclassExtendsTypeParam.types │ ├── conditionalTypeVarianceBigArrayConstraintsPerformance.errors.txt │ ├── conditionalTypeVarianceBigArrayConstraintsPerformance.js │ ├── conditionalTypeVarianceBigArrayConstraintsPerformance.symbols │ ├── conditionalTypeVarianceBigArrayConstraintsPerformance.types │ ├── conditionalTypes1.errors.txt │ ├── conditionalTypes1.js │ ├── conditionalTypes1.symbols │ ├── conditionalTypes1.types │ ├── conditionalTypes2.errors.txt │ ├── conditionalTypes2.js │ ├── conditionalTypes2.symbols │ ├── conditionalTypes2.types │ ├── conditionalTypesASI.js │ ├── conditionalTypesASI.symbols │ ├── conditionalTypesASI.types │ ├── conditionalTypesExcessProperties.errors.txt │ ├── conditionalTypesExcessProperties.js │ ├── conditionalTypesExcessProperties.symbols │ ├── conditionalTypesExcessProperties.types │ ├── conditionalTypesSimplifyWhenTrivial.js │ ├── conditionalTypesSimplifyWhenTrivial.symbols │ ├── conditionalTypesSimplifyWhenTrivial.types │ ├── conditionallyDuplicateOverloadsCausedByOverloadResolution.errors.txt │ ├── conditionallyDuplicateOverloadsCausedByOverloadResolution.js │ ├── conditionallyDuplicateOverloadsCausedByOverloadResolution.symbols │ ├── conditionallyDuplicateOverloadsCausedByOverloadResolution.types │ ├── config/ │ │ ├── commandLineParsing/ │ │ │ ├── parseBuildOptions/ │ │ │ │ ├── --clean and --force together is invalid.js │ │ │ │ ├── --clean and --verbose together is invalid.js │ │ │ │ ├── --clean and --watch together is invalid.js │ │ │ │ ├── --watch and --dry together is invalid.js │ │ │ │ ├── Parse multiple flags with input projects at the end.js │ │ │ │ ├── Parse multiple flags with input projects in the beginning.js │ │ │ │ ├── Parse multiple flags with input projects in the middle.js │ │ │ │ ├── Parse multiple options.js │ │ │ │ ├── Parse option with invalid option.js │ │ │ │ ├── errors on invalid excludeDirectories.js │ │ │ │ ├── errors on invalid excludeFiles.js │ │ │ │ ├── errors on missing argument.js │ │ │ │ ├── parse --excludeFiles.js │ │ │ │ ├── parse --fallbackPolling.js │ │ │ │ ├── parse --synchronousWatchDirectory.js │ │ │ │ ├── parse --watchDirectory.js │ │ │ │ ├── parse --watchFile.js │ │ │ │ ├── parse build with --incremental.js │ │ │ │ ├── parse build with --locale en-us.js │ │ │ │ ├── parse build with --tsBuildInfoFile.js │ │ │ │ ├── parse build without any options .js │ │ │ │ └── reports other common may not be used with --build flags.js │ │ │ └── parseCommandLine/ │ │ │ ├── Handles did you mean for misspelt flags.js │ │ │ ├── Handles may only be used with --build flags.js │ │ │ ├── Parse --lib option with extra comma.js │ │ │ ├── Parse --lib option with trailing white-space.js │ │ │ ├── Parse empty options of --jsx.js │ │ │ ├── Parse empty options of --lib.js │ │ │ ├── Parse empty options of --module.js │ │ │ ├── Parse empty options of --moduleResolution.js │ │ │ ├── Parse empty options of --newLine.js │ │ │ ├── Parse empty options of --target.js │ │ │ ├── Parse empty string of --lib.js │ │ │ ├── Parse explicit boolean flag value.js │ │ │ ├── Parse immediately following command line argument of --lib.js │ │ │ ├── Parse implicit boolean flag value.js │ │ │ ├── Parse invalid option of library flags.js │ │ │ ├── Parse multiple compiler flags with input files at the end.js │ │ │ ├── Parse multiple compiler flags with input files in the middle.js │ │ │ ├── Parse multiple library compiler flags .js │ │ │ ├── Parse multiple options of library flags.js │ │ │ ├── Parse non boolean argument after boolean flag.js │ │ │ ├── Parse single option of library flag.js │ │ │ ├── allows setting option type boolean to false.js │ │ │ ├── allows tsconfig only option to be set to null.js │ │ │ ├── errors on invalid excludeDirectories.js │ │ │ ├── errors on invalid excludeFiles.js │ │ │ ├── errors on missing argument to --fallbackPolling.js │ │ │ ├── option of type boolean allows setting it to null.js │ │ │ ├── option of type boolean errors if its followed by another option.js │ │ │ ├── option of type boolean errors if its last option.js │ │ │ ├── option of type boolean errors if non null value is passed.js │ │ │ ├── option of type custom map allows setting it to null.js │ │ │ ├── option of type custom map errors if its followed by another option.js │ │ │ ├── option of type custom map errors if its last option.js │ │ │ ├── option of type custom map errors if non null value is passed.js │ │ │ ├── option of type list allows setting it to null.js │ │ │ ├── option of type list errors if its followed by another option.js │ │ │ ├── option of type list errors if its last option.js │ │ │ ├── option of type list errors if non null value is passed.js │ │ │ ├── option of type number allows setting it to null.js │ │ │ ├── option of type number errors if its followed by another option.js │ │ │ ├── option of type number errors if its last option.js │ │ │ ├── option of type number errors if non null value is passed.js │ │ │ ├── option of type object allows setting it to null.js │ │ │ ├── option of type object errors if its followed by another option.js │ │ │ ├── option of type object errors if its last option.js │ │ │ ├── option of type string allows setting it to null.js │ │ │ ├── option of type string errors if its followed by another option.js │ │ │ ├── option of type string errors if its last option.js │ │ │ ├── option of type string errors if non null value is passed.js │ │ │ ├── parse --excludeDirectories.js │ │ │ ├── parse --excludeFiles.js │ │ │ ├── parse --fallbackPolling.js │ │ │ ├── parse --incremental.js │ │ │ ├── parse --synchronousWatchDirectory.js │ │ │ ├── parse --tsBuildInfoFile.js │ │ │ ├── parse --watchDirectory.js │ │ │ └── parse --watchFile.js │ │ ├── configurationExtension/ │ │ │ ├── adds extendedSourceFiles from an array only once under a case insensitive host.js │ │ │ ├── adds extendedSourceFiles from an array only once under a case sensitive host.js │ │ │ ├── adds extendedSourceFiles only once under a case insensitive host.js │ │ │ ├── adds extendedSourceFiles only once under a case sensitive host.js │ │ │ ├── under a case insensitive host with json api.js │ │ │ ├── under a case insensitive host with jsonSourceFile api.js │ │ │ ├── under a case sensitive host with json api.js │ │ │ └── under a case sensitive host with jsonSourceFile api.js │ │ ├── convertCompilerOptionsFromJson/ │ │ │ ├── Allow trailing comments with jsonSourceFile api.js │ │ │ ├── Convert a tsconfig file as an array with jsonSourceFile api.js │ │ │ ├── Convert a tsconfig file with stray leading characters with jsonSourceFile api.js │ │ │ ├── Convert a tsconfig file with stray trailing characters with jsonSourceFile api.js │ │ │ ├── Convert correctly format jsconfig.json to compiler-options with json api.js │ │ │ ├── Convert correctly format jsconfig.json to compiler-options with jsonSourceFile api.js │ │ │ ├── Convert correctly format jsconfig.json with allowJs is false to compiler-options with json api.js │ │ │ ├── Convert correctly format jsconfig.json with allowJs is false to compiler-options with jsonSourceFile api.js │ │ │ ├── Convert correctly format tsconfig.json to compiler-options with json api.js │ │ │ ├── Convert correctly format tsconfig.json to compiler-options with jsonSourceFile api.js │ │ │ ├── Convert correctly format tsconfig.json with allowJs is false to compiler-options with json api.js │ │ │ ├── Convert correctly format tsconfig.json with allowJs is false to compiler-options with jsonSourceFile api.js │ │ │ ├── Convert default jsconfig.json to compiler-options with json api.js │ │ │ ├── Convert default jsconfig.json to compiler-options with jsonSourceFile api.js │ │ │ ├── Convert default tsconfig.json to compiler-options with json api.js │ │ │ ├── Convert default tsconfig.json to compiler-options with jsonSourceFile api.js │ │ │ ├── Convert empty option of libs to compiler-options with json api.js │ │ │ ├── Convert empty option of libs to compiler-options with jsonSourceFile api.js │ │ │ ├── Convert empty option of moduleSuffixes to compiler-options with json api.js │ │ │ ├── Convert empty option of moduleSuffixes to compiler-options with jsonSourceFile api.js │ │ │ ├── Convert empty string option of libs array to compiler-options with json api.js │ │ │ ├── Convert empty string option of libs array to compiler-options with jsonSourceFile api.js │ │ │ ├── Convert empty string option of libs to compiler-options with json api.js │ │ │ ├── Convert empty string option of libs to compiler-options with jsonSourceFile api.js │ │ │ ├── Convert empty string option of moduleSuffixes single to compiler-options with json api.js │ │ │ ├── Convert empty string option of moduleSuffixes single to compiler-options with jsonSourceFile api.js │ │ │ ├── Convert empty string option of moduleSuffixes to compiler-options with json api.js │ │ │ ├── Convert empty string option of moduleSuffixes to compiler-options with jsonSourceFile api.js │ │ │ ├── Convert incorrect option of jsx to compiler-options with json api.js │ │ │ ├── Convert incorrect option of jsx to compiler-options with jsonSourceFile api.js │ │ │ ├── Convert incorrect option of libs to compiler-options with json api.js │ │ │ ├── Convert incorrect option of libs to compiler-options with jsonSourceFile api.js │ │ │ ├── Convert incorrect option of module to compiler-options with json api.js │ │ │ ├── Convert incorrect option of module to compiler-options with jsonSourceFile api.js │ │ │ ├── Convert incorrect option of module-resolution to compiler-options with json api.js │ │ │ ├── Convert incorrect option of module-resolution to compiler-options with jsonSourceFile api.js │ │ │ ├── Convert incorrect option of newLine to compiler-options with json api.js │ │ │ ├── Convert incorrect option of newLine to compiler-options with jsonSourceFile api.js │ │ │ ├── Convert incorrect option of target to compiler-options with json api.js │ │ │ ├── Convert incorrect option of target to compiler-options with jsonSourceFile api.js │ │ │ ├── Convert incorrectly format jsconfig.json to compiler-options with json api.js │ │ │ ├── Convert incorrectly format jsconfig.json to compiler-options with jsonSourceFile api.js │ │ │ ├── Convert incorrectly format tsconfig.json to compiler-options with json api.js │ │ │ ├── Convert incorrectly format tsconfig.json to compiler-options with jsonSourceFile api.js │ │ │ ├── Convert negative numbers in tsconfig.json with json api.js │ │ │ ├── Convert negative numbers in tsconfig.json with jsonSourceFile api.js │ │ │ ├── Convert trailing-whitespace string option of libs to compiler-options with json api.js │ │ │ ├── Convert trailing-whitespace string option of libs to compiler-options with jsonSourceFile api.js │ │ │ ├── Convert trailing-whitespace string option of moduleSuffixes to compiler-options with json api.js │ │ │ ├── Convert trailing-whitespace string option of moduleSuffixes to compiler-options with jsonSourceFile api.js │ │ │ ├── Convert tsconfig options when there are multiple invalid strings with jsonSourceFile api.js │ │ │ ├── Don't crash when root expression is not object at all with jsonSourceFile api.js │ │ │ ├── does not raise an error if you've set a compiler flag in the root when you have included 'compilerOptions' with jsonSourceFile api.js │ │ │ └── raises an error if you've set a compiler flag in the root without including compilerOptions with jsonSourceFile api.js │ │ ├── convertTypeAcquisitionFromJson/ │ │ │ ├── Convert correctly format tsconfig.json to typeAcquisition with json api.js │ │ │ ├── Convert correctly format tsconfig.json to typeAcquisition with jsonSourceFile api.js │ │ │ ├── Convert default jsconfig.json to typeAcquisition with json api.js │ │ │ ├── Convert default jsconfig.json to typeAcquisition with jsonSourceFile api.js │ │ │ ├── Convert default tsconfig.json to typeAcquisition with json api.js │ │ │ ├── Convert default tsconfig.json to typeAcquisition with jsonSourceFile api.js │ │ │ ├── Convert incorrect format jsconfig.json to typeAcquisition with json api.js │ │ │ ├── Convert incorrect format jsconfig.json to typeAcquisition with jsonSourceFile api.js │ │ │ ├── Convert incorrect format tsconfig.json to typeAcquisition with json api.js │ │ │ ├── Convert incorrect format tsconfig.json to typeAcquisition with jsonSourceFile api.js │ │ │ ├── Convert jsconfig.json to typeAcquisition with json api.js │ │ │ ├── Convert jsconfig.json to typeAcquisition with jsonSourceFile api.js │ │ │ ├── Convert jsconfig.json with only enable property to typeAcquisition with json api.js │ │ │ ├── Convert jsconfig.json with only enable property to typeAcquisition with jsonSourceFile api.js │ │ │ ├── Convert tsconfig.json with only enable property to typeAcquisition with json api.js │ │ │ └── Convert tsconfig.json with only enable property to typeAcquisition with jsonSourceFile api.js │ │ ├── initTSConfig/ │ │ │ ├── Default initialized TSConfig/ │ │ │ │ └── tsconfig.json │ │ │ ├── Initialized TSConfig with --help/ │ │ │ │ └── tsconfig.json │ │ │ ├── Initialized TSConfig with --watch/ │ │ │ │ └── tsconfig.json │ │ │ ├── Initialized TSConfig with advanced options/ │ │ │ │ └── tsconfig.json │ │ │ ├── Initialized TSConfig with boolean value compiler options/ │ │ │ │ └── tsconfig.json │ │ │ ├── Initialized TSConfig with enum value compiler options/ │ │ │ │ └── tsconfig.json │ │ │ ├── Initialized TSConfig with files options/ │ │ │ │ └── tsconfig.json │ │ │ ├── Initialized TSConfig with incorrect compiler option/ │ │ │ │ └── tsconfig.json │ │ │ ├── Initialized TSConfig with incorrect compiler option value/ │ │ │ │ └── tsconfig.json │ │ │ ├── Initialized TSConfig with list compiler options/ │ │ │ │ └── tsconfig.json │ │ │ └── Initialized TSConfig with list compiler options with enum value/ │ │ │ └── tsconfig.json │ │ ├── matchFiles/ │ │ │ ├── Expands z to z/ │ │ │ │ └── starstart/ │ │ │ │ ├── star with json api.js │ │ │ │ └── star with jsonSourceFile api.js │ │ │ ├── always include literal files with json api.js │ │ │ ├── always include literal files with jsonSourceFile api.js │ │ │ ├── and empty exclude with json api.js │ │ │ ├── and empty exclude with jsonSourceFile api.js │ │ │ ├── and exclusions with json api.js │ │ │ ├── and exclusions with jsonSourceFile api.js │ │ │ ├── and explicit recursive include with json api.js │ │ │ ├── and explicit recursive include with jsonSourceFile api.js │ │ │ ├── and explicit wildcard include with json api.js │ │ │ ├── and explicit wildcard include with jsonSourceFile api.js │ │ │ ├── and no exclusions with json api.js │ │ │ ├── and no exclusions with jsonSourceFile api.js │ │ │ ├── and wildcard include with json api.js │ │ │ ├── and wildcard include with jsonSourceFile api.js │ │ │ ├── are not removed due to excludes with json api.js │ │ │ ├── are not removed due to excludes with jsonSourceFile api.js │ │ │ ├── can exclude dirs whose pattern starts with starstar with json api.js │ │ │ ├── can exclude dirs whose pattern starts with starstar with jsonSourceFile api.js │ │ │ ├── can include dirs whose pattern starts with starstart with json api.js │ │ │ ├── can include dirs whose pattern starts with starstart with jsonSourceFile api.js │ │ │ ├── can include files in the same order on multiple platforms case insensitive with json api.js │ │ │ ├── can include files in the same order on multiple platforms case insensitive with jsonSourceFile api.js │ │ │ ├── can include files in the same order on multiple platforms case sensitive with json api.js │ │ │ ├── can include files in the same order on multiple platforms case sensitive with jsonSourceFile api.js │ │ │ ├── case sensitive with json api.js │ │ │ ├── case sensitive with jsonSourceFile api.js │ │ │ ├── exclude .js files when allowJs=false with json api.js │ │ │ ├── exclude .js files when allowJs=false with jsonSourceFile api.js │ │ │ ├── exclude .min.js files using wildcards with json api.js │ │ │ ├── exclude .min.js files using wildcards with jsonSourceFile api.js │ │ │ ├── exclude files with .. in their name with json api.js │ │ │ ├── exclude files with .. in their name with jsonSourceFile api.js │ │ │ ├── exclude folders with json api.js │ │ │ ├── exclude folders with jsonSourceFile api.js │ │ │ ├── exclude paths outside of the project using relative paths with json api.js │ │ │ ├── exclude paths outside of the project using relative paths with jsonSourceFile api.js │ │ │ ├── in excludes after a subdirectory with json api.js │ │ │ ├── in excludes after a subdirectory with jsonSourceFile api.js │ │ │ ├── in excludes immediately after with json api.js │ │ │ ├── in excludes immediately after with jsonSourceFile api.js │ │ │ ├── in excludes with json api.js │ │ │ ├── in excludes with jsonSourceFile api.js │ │ │ ├── in excludes with trailing recursive directory with json api.js │ │ │ ├── in excludes with trailing recursive directory with jsonSourceFile api.js │ │ │ ├── in includes after a subdirectory with json api.js │ │ │ ├── in includes after a subdirectory with jsonSourceFile api.js │ │ │ ├── in includes immediately after with json api.js │ │ │ ├── in includes immediately after with jsonSourceFile api.js │ │ │ ├── in includes with multiple recursive directory patterns with json api.js │ │ │ ├── in includes with multiple recursive directory patterns with jsonSourceFile api.js │ │ │ ├── in includes with trailing recursive directory with json api.js │ │ │ ├── in includes with trailing recursive directory with jsonSourceFile api.js │ │ │ ├── include .js files when allowJs=true with json api.js │ │ │ ├── include .js files when allowJs=true with jsonSourceFile api.js │ │ │ ├── include explicitly listed .min.js files when allowJs=true with json api.js │ │ │ ├── include explicitly listed .min.js files when allowJs=true with jsonSourceFile api.js │ │ │ ├── include files with .. in their name with json api.js │ │ │ ├── include files with .. in their name with jsonSourceFile api.js │ │ │ ├── include paths outside of the project using relative paths with json api.js │ │ │ ├── include paths outside of the project using relative paths with jsonSourceFile api.js │ │ │ ├── include paths outside of the project with json api.js │ │ │ ├── include paths outside of the project with jsonSourceFile api.js │ │ │ ├── is sorted in include order, then in alphabetical order with json api.js │ │ │ ├── is sorted in include order, then in alphabetical order with jsonSourceFile api.js │ │ │ ├── missing files are still present with json api.js │ │ │ ├── missing files are still present with jsonSourceFile api.js │ │ │ ├── question matches only a single character with json api.js │ │ │ ├── question matches only a single character with jsonSourceFile api.js │ │ │ ├── same named declarations are excluded with json api.js │ │ │ ├── same named declarations are excluded with jsonSourceFile api.js │ │ │ ├── same named declarations with include dts tsx with json api.js │ │ │ ├── same named declarations with include dts tsx with jsonSourceFile api.js │ │ │ ├── same named declarations with include ts dts with json api.js │ │ │ ├── same named declarations with include ts dts with jsonSourceFile api.js │ │ │ ├── same named declarations with include ts tsx with json api.js │ │ │ ├── same named declarations with include ts tsx with jsonSourceFile api.js │ │ │ ├── same named declarations with include ts with json api.js │ │ │ ├── same named declarations with include ts with jsonSourceFile api.js │ │ │ ├── same named declarations with include tsx dts with json api.js │ │ │ ├── same named declarations with include tsx dts with jsonSourceFile api.js │ │ │ ├── same named declarations with include tsx ts with json api.js │ │ │ ├── same named declarations with include tsx ts with jsonSourceFile api.js │ │ │ ├── same named declarations with include tsx with json api.js │ │ │ ├── same named declarations with include tsx with jsonSourceFile api.js │ │ │ ├── star matches only ts files with json api.js │ │ │ ├── star matches only ts files with jsonSourceFile api.js │ │ │ ├── that are not explicitly included with json api.js │ │ │ ├── that are not explicitly included with jsonSourceFile api.js │ │ │ ├── when recursive symlinked directories are present with json api.js │ │ │ ├── when recursive symlinked directories are present with jsonSourceFile api.js │ │ │ ├── with case sensitive exclude with json api.js │ │ │ ├── with case sensitive exclude with jsonSourceFile api.js │ │ │ ├── with common package folders and empty exclude with json api.js │ │ │ ├── with common package folders and empty exclude with jsonSourceFile api.js │ │ │ ├── with common package folders and exclusions with json api.js │ │ │ ├── with common package folders and exclusions with jsonSourceFile api.js │ │ │ ├── with common package folders and no exclusions with json api.js │ │ │ ├── with common package folders and no exclusions with jsonSourceFile api.js │ │ │ ├── with defaults with json api.js │ │ │ ├── with defaults with jsonSourceFile api.js │ │ │ ├── with jsx=none, allowJs=false with json api.js │ │ │ ├── with jsx=none, allowJs=false with jsonSourceFile api.js │ │ │ ├── with jsx=none, allowJs=true with json api.js │ │ │ ├── with jsx=none, allowJs=true with jsonSourceFile api.js │ │ │ ├── with jsx=preserve, allowJs=false with json api.js │ │ │ ├── with jsx=preserve, allowJs=false with jsonSourceFile api.js │ │ │ ├── with jsx=preserve, allowJs=true with json api.js │ │ │ ├── with jsx=preserve, allowJs=true with jsonSourceFile api.js │ │ │ ├── with jsx=react-native, allowJs=false with json api.js │ │ │ ├── with jsx=react-native, allowJs=false with jsonSourceFile api.js │ │ │ ├── with jsx=react-native, allowJs=true with json api.js │ │ │ ├── with jsx=react-native, allowJs=true with jsonSourceFile api.js │ │ │ ├── with literal excludes with json api.js │ │ │ ├── with literal excludes with jsonSourceFile api.js │ │ │ ├── with missing files are excluded with literal include list with json api.js │ │ │ ├── with missing files are excluded with literal include list with jsonSourceFile api.js │ │ │ ├── with missing files are excluded with wildcard include list with json api.js │ │ │ ├── with missing files are excluded with wildcard include list with jsonSourceFile api.js │ │ │ ├── with multiple recursive directories with json api.js │ │ │ ├── with multiple recursive directories with jsonSourceFile api.js │ │ │ ├── with non .ts file extensions are excluded with json api.js │ │ │ ├── with non .ts file extensions are excluded with jsonSourceFile api.js │ │ │ ├── with recursive directory with json api.js │ │ │ ├── with recursive directory with jsonSourceFile api.js │ │ │ ├── with recursive excludes with json api.js │ │ │ ├── with recursive excludes with jsonSourceFile api.js │ │ │ ├── with recursive wildcards that match directories with json api.js │ │ │ ├── with recursive wildcards that match directories with jsonSourceFile api.js │ │ │ ├── with recursive wildcards that match nothing with json api.js │ │ │ ├── with recursive wildcards that match nothing with jsonSourceFile api.js │ │ │ ├── with wildcard excludes that implicitly exclude dotted files with json api.js │ │ │ ├── with wildcard excludes that implicitly exclude dotted files with jsonSourceFile api.js │ │ │ ├── with wildcard excludes with json api.js │ │ │ ├── with wildcard excludes with jsonSourceFile api.js │ │ │ ├── without exclusions with literal file list with json api.js │ │ │ ├── without exclusions with literal file list with jsonSourceFile api.js │ │ │ ├── without exclusions with literal include list with json api.js │ │ │ ├── without exclusions with literal include list with jsonSourceFile api.js │ │ │ ├── without wildcards with json api.js │ │ │ └── without wildcards with jsonSourceFile api.js │ │ ├── showConfig/ │ │ │ ├── Default initialized TSConfig/ │ │ │ │ └── tsconfig.json │ │ │ ├── Show TSConfig with advanced options/ │ │ │ │ └── tsconfig.json │ │ │ ├── Show TSConfig with boolean value compiler options/ │ │ │ │ └── tsconfig.json │ │ │ ├── Show TSConfig with compileOnSave and more/ │ │ │ │ └── tsconfig.json │ │ │ ├── Show TSConfig with configDir template template/ │ │ │ │ └── tsconfig.json │ │ │ ├── Show TSConfig with enum value compiler options/ │ │ │ │ └── tsconfig.json │ │ │ ├── Show TSConfig with files options/ │ │ │ │ └── tsconfig.json │ │ │ ├── Show TSConfig with incorrect compiler option/ │ │ │ │ └── tsconfig.json │ │ │ ├── Show TSConfig with incorrect compiler option value/ │ │ │ │ └── tsconfig.json │ │ │ ├── Show TSConfig with list compiler options/ │ │ │ │ └── tsconfig.json │ │ │ ├── Show TSConfig with list compiler options with enum value/ │ │ │ │ └── tsconfig.json │ │ │ ├── Show TSConfig with paths and more/ │ │ │ │ └── tsconfig.json │ │ │ ├── Show TSConfig with transitively implied options/ │ │ │ │ └── tsconfig.json │ │ │ ├── Show TSConfig with watch options/ │ │ │ │ └── tsconfig.json │ │ │ └── Shows tsconfig for single option/ │ │ │ ├── all/ │ │ │ │ └── tsconfig.json │ │ │ ├── allowArbitraryExtensions/ │ │ │ │ └── tsconfig.json │ │ │ ├── allowImportingTsExtensions/ │ │ │ │ └── tsconfig.json │ │ │ ├── allowJs/ │ │ │ │ └── tsconfig.json │ │ │ ├── allowSyntheticDefaultImports/ │ │ │ │ └── tsconfig.json │ │ │ ├── allowUmdGlobalAccess/ │ │ │ │ └── tsconfig.json │ │ │ ├── allowUnreachableCode/ │ │ │ │ └── tsconfig.json │ │ │ ├── allowUnusedLabels/ │ │ │ │ └── tsconfig.json │ │ │ ├── alwaysStrict/ │ │ │ │ └── tsconfig.json │ │ │ ├── assumeChangesOnlyAffectDirectDependencies/ │ │ │ │ └── tsconfig.json │ │ │ ├── baseUrl/ │ │ │ │ └── tsconfig.json │ │ │ ├── charset/ │ │ │ │ └── tsconfig.json │ │ │ ├── checkJs/ │ │ │ │ └── tsconfig.json │ │ │ ├── composite/ │ │ │ │ └── tsconfig.json │ │ │ ├── customConditions/ │ │ │ │ └── tsconfig.json │ │ │ ├── declaration/ │ │ │ │ └── tsconfig.json │ │ │ ├── declarationDir/ │ │ │ │ └── tsconfig.json │ │ │ ├── declarationMap/ │ │ │ │ └── tsconfig.json │ │ │ ├── diagnostics/ │ │ │ │ └── tsconfig.json │ │ │ ├── disableReferencedProjectLoad/ │ │ │ │ └── tsconfig.json │ │ │ ├── disableSizeLimit/ │ │ │ │ └── tsconfig.json │ │ │ ├── disableSolutionSearching/ │ │ │ │ └── tsconfig.json │ │ │ ├── disableSourceOfProjectReferenceRedirect/ │ │ │ │ └── tsconfig.json │ │ │ ├── downlevelIteration/ │ │ │ │ └── tsconfig.json │ │ │ ├── emitBOM/ │ │ │ │ └── tsconfig.json │ │ │ ├── emitDeclarationOnly/ │ │ │ │ └── tsconfig.json │ │ │ ├── emitDecoratorMetadata/ │ │ │ │ └── tsconfig.json │ │ │ ├── erasableSyntaxOnly/ │ │ │ │ └── tsconfig.json │ │ │ ├── esModuleInterop/ │ │ │ │ └── tsconfig.json │ │ │ ├── exactOptionalPropertyTypes/ │ │ │ │ └── tsconfig.json │ │ │ ├── excludeDirectories/ │ │ │ │ └── tsconfig.json │ │ │ ├── excludeFiles/ │ │ │ │ └── tsconfig.json │ │ │ ├── experimentalDecorators/ │ │ │ │ └── tsconfig.json │ │ │ ├── explainFiles/ │ │ │ │ └── tsconfig.json │ │ │ ├── extendedDiagnostics/ │ │ │ │ └── tsconfig.json │ │ │ ├── fallbackPolling/ │ │ │ │ └── tsconfig.json │ │ │ ├── forceConsistentCasingInFileNames/ │ │ │ │ └── tsconfig.json │ │ │ ├── generateCpuProfile/ │ │ │ │ └── tsconfig.json │ │ │ ├── generateTrace/ │ │ │ │ └── tsconfig.json │ │ │ ├── help/ │ │ │ │ └── tsconfig.json │ │ │ ├── ignoreConfig/ │ │ │ │ └── tsconfig.json │ │ │ ├── ignoreDeprecations/ │ │ │ │ └── tsconfig.json │ │ │ ├── importHelpers/ │ │ │ │ └── tsconfig.json │ │ │ ├── importsNotUsedAsValues/ │ │ │ │ └── tsconfig.json │ │ │ ├── incremental/ │ │ │ │ └── tsconfig.json │ │ │ ├── init/ │ │ │ │ └── tsconfig.json │ │ │ ├── inlineSourceMap/ │ │ │ │ └── tsconfig.json │ │ │ ├── inlineSources/ │ │ │ │ └── tsconfig.json │ │ │ ├── isolatedDeclarations/ │ │ │ │ └── tsconfig.json │ │ │ ├── isolatedModules/ │ │ │ │ └── tsconfig.json │ │ │ ├── jsx/ │ │ │ │ └── tsconfig.json │ │ │ ├── jsxFactory/ │ │ │ │ └── tsconfig.json │ │ │ ├── jsxFragmentFactory/ │ │ │ │ └── tsconfig.json │ │ │ ├── jsxImportSource/ │ │ │ │ └── tsconfig.json │ │ │ ├── keyofStringsOnly/ │ │ │ │ └── tsconfig.json │ │ │ ├── lib/ │ │ │ │ └── tsconfig.json │ │ │ ├── libReplacement/ │ │ │ │ └── tsconfig.json │ │ │ ├── listEmittedFiles/ │ │ │ │ └── tsconfig.json │ │ │ ├── listFiles/ │ │ │ │ └── tsconfig.json │ │ │ ├── listFilesOnly/ │ │ │ │ └── tsconfig.json │ │ │ ├── locale/ │ │ │ │ └── tsconfig.json │ │ │ ├── mapRoot/ │ │ │ │ └── tsconfig.json │ │ │ ├── maxNodeModuleJsDepth/ │ │ │ │ └── tsconfig.json │ │ │ ├── module/ │ │ │ │ └── tsconfig.json │ │ │ ├── moduleDetection/ │ │ │ │ └── tsconfig.json │ │ │ ├── moduleResolution/ │ │ │ │ └── tsconfig.json │ │ │ ├── moduleSuffixes/ │ │ │ │ └── tsconfig.json │ │ │ ├── newLine/ │ │ │ │ └── tsconfig.json │ │ │ ├── noCheck/ │ │ │ │ └── tsconfig.json │ │ │ ├── noEmit/ │ │ │ │ └── tsconfig.json │ │ │ ├── noEmitHelpers/ │ │ │ │ └── tsconfig.json │ │ │ ├── noEmitOnError/ │ │ │ │ └── tsconfig.json │ │ │ ├── noErrorTruncation/ │ │ │ │ └── tsconfig.json │ │ │ ├── noFallthroughCasesInSwitch/ │ │ │ │ └── tsconfig.json │ │ │ ├── noImplicitAny/ │ │ │ │ └── tsconfig.json │ │ │ ├── noImplicitOverride/ │ │ │ │ └── tsconfig.json │ │ │ ├── noImplicitReturns/ │ │ │ │ └── tsconfig.json │ │ │ ├── noImplicitThis/ │ │ │ │ └── tsconfig.json │ │ │ ├── noImplicitUseStrict/ │ │ │ │ └── tsconfig.json │ │ │ ├── noLib/ │ │ │ │ └── tsconfig.json │ │ │ ├── noPropertyAccessFromIndexSignature/ │ │ │ │ └── tsconfig.json │ │ │ ├── noResolve/ │ │ │ │ └── tsconfig.json │ │ │ ├── noStrictGenericChecks/ │ │ │ │ └── tsconfig.json │ │ │ ├── noUncheckedIndexedAccess/ │ │ │ │ └── tsconfig.json │ │ │ ├── noUncheckedSideEffectImports/ │ │ │ │ └── tsconfig.json │ │ │ ├── noUnusedLocals/ │ │ │ │ └── tsconfig.json │ │ │ ├── noUnusedParameters/ │ │ │ │ └── tsconfig.json │ │ │ ├── out/ │ │ │ │ └── tsconfig.json │ │ │ ├── outDir/ │ │ │ │ └── tsconfig.json │ │ │ ├── outFile/ │ │ │ │ └── tsconfig.json │ │ │ ├── paths/ │ │ │ │ └── tsconfig.json │ │ │ ├── plugins/ │ │ │ │ └── tsconfig.json │ │ │ ├── preserveConstEnums/ │ │ │ │ └── tsconfig.json │ │ │ ├── preserveSymlinks/ │ │ │ │ └── tsconfig.json │ │ │ ├── preserveValueImports/ │ │ │ │ └── tsconfig.json │ │ │ ├── preserveWatchOutput/ │ │ │ │ └── tsconfig.json │ │ │ ├── pretty/ │ │ │ │ └── tsconfig.json │ │ │ ├── reactNamespace/ │ │ │ │ └── tsconfig.json │ │ │ ├── removeComments/ │ │ │ │ └── tsconfig.json │ │ │ ├── resolveJsonModule/ │ │ │ │ └── tsconfig.json │ │ │ ├── resolvePackageJsonExports/ │ │ │ │ └── tsconfig.json │ │ │ ├── resolvePackageJsonImports/ │ │ │ │ └── tsconfig.json │ │ │ ├── rewriteRelativeImportExtensions/ │ │ │ │ └── tsconfig.json │ │ │ ├── rootDir/ │ │ │ │ └── tsconfig.json │ │ │ ├── rootDirs/ │ │ │ │ └── tsconfig.json │ │ │ ├── showConfig/ │ │ │ │ └── tsconfig.json │ │ │ ├── skipDefaultLibCheck/ │ │ │ │ └── tsconfig.json │ │ │ ├── skipLibCheck/ │ │ │ │ └── tsconfig.json │ │ │ ├── sourceMap/ │ │ │ │ └── tsconfig.json │ │ │ ├── sourceRoot/ │ │ │ │ └── tsconfig.json │ │ │ ├── stableTypeOrdering/ │ │ │ │ └── tsconfig.json │ │ │ ├── strict/ │ │ │ │ └── tsconfig.json │ │ │ ├── strictBindCallApply/ │ │ │ │ └── tsconfig.json │ │ │ ├── strictBuiltinIteratorReturn/ │ │ │ │ └── tsconfig.json │ │ │ ├── strictFunctionTypes/ │ │ │ │ └── tsconfig.json │ │ │ ├── strictNullChecks/ │ │ │ │ └── tsconfig.json │ │ │ ├── strictPropertyInitialization/ │ │ │ │ └── tsconfig.json │ │ │ ├── stripInternal/ │ │ │ │ └── tsconfig.json │ │ │ ├── suppressExcessPropertyErrors/ │ │ │ │ └── tsconfig.json │ │ │ ├── suppressImplicitAnyIndexErrors/ │ │ │ │ └── tsconfig.json │ │ │ ├── synchronousWatchDirectory/ │ │ │ │ └── tsconfig.json │ │ │ ├── target/ │ │ │ │ └── tsconfig.json │ │ │ ├── traceResolution/ │ │ │ │ └── tsconfig.json │ │ │ ├── tsBuildInfoFile/ │ │ │ │ └── tsconfig.json │ │ │ ├── typeRoots/ │ │ │ │ └── tsconfig.json │ │ │ ├── types/ │ │ │ │ └── tsconfig.json │ │ │ ├── useDefineForClassFields/ │ │ │ │ └── tsconfig.json │ │ │ ├── useUnknownInCatchVariables/ │ │ │ │ └── tsconfig.json │ │ │ ├── verbatimModuleSyntax/ │ │ │ │ └── tsconfig.json │ │ │ ├── version/ │ │ │ │ └── tsconfig.json │ │ │ ├── watch/ │ │ │ │ └── tsconfig.json │ │ │ ├── watchDirectory/ │ │ │ │ └── tsconfig.json │ │ │ └── watchFile/ │ │ │ └── tsconfig.json │ │ ├── tsconfigParsing/ │ │ │ ├── allow dotted files and folders when explicitly requested with json api.js │ │ │ ├── allow dotted files and folders when explicitly requested with jsonSourceFile api.js │ │ │ ├── correctly parses wild card directories from implicit glob when two keys differ only in directory seperator with json api.js │ │ │ ├── correctly parses wild card directories from implicit glob when two keys differ only in directory seperator with jsonSourceFile api.js │ │ │ ├── does not generate errors for empty files list when one or more references are provided with json api.js │ │ │ ├── does not generate errors for empty files list when one or more references are provided with jsonSourceFile api.js │ │ │ ├── exclude declarationDir unless overridden with json api.js │ │ │ ├── exclude declarationDir unless overridden with jsonSourceFile api.js │ │ │ ├── exclude outDir unless overridden with json api.js │ │ │ ├── exclude outDir unless overridden with jsonSourceFile api.js │ │ │ ├── generates errors for directory with no .ts files with json api.js │ │ │ ├── generates errors for directory with no .ts files with jsonSourceFile api.js │ │ │ ├── generates errors for empty directory with json api.js │ │ │ ├── generates errors for empty directory with jsonSourceFile api.js │ │ │ ├── generates errors for empty files list when no references are provided with json api.js │ │ │ ├── generates errors for empty files list when no references are provided with jsonSourceFile api.js │ │ │ ├── generates errors for empty files list with json api.js │ │ │ ├── generates errors for empty files list with jsonSourceFile api.js │ │ │ ├── generates errors for empty include with json api.js │ │ │ ├── generates errors for empty include with jsonSourceFile api.js │ │ │ ├── generates errors for includes with outDir with json api.js │ │ │ ├── generates errors for includes with outDir with jsonSourceFile api.js │ │ │ ├── generates errors for when invalid comment type present in tsconfig with jsonSourceFile api.js │ │ │ ├── generates errors when commandline option is in tsconfig with json api.js │ │ │ ├── generates errors when commandline option is in tsconfig with jsonSourceFile api.js │ │ │ ├── generates errors when files is not string with json api.js │ │ │ ├── generates errors when files is not string with jsonSourceFile api.js │ │ │ ├── generates errors when include is not string with json api.js │ │ │ ├── generates errors when include is not string with jsonSourceFile api.js │ │ │ ├── handles escaped characters in strings correctly jsonParse.js │ │ │ ├── ignore dotted files and folders with json api.js │ │ │ ├── ignore dotted files and folders with jsonSourceFile api.js │ │ │ ├── implicitly exclude common package folders with json api.js │ │ │ ├── implicitly exclude common package folders with jsonSourceFile api.js │ │ │ ├── keeps string content untouched jsonParse.js │ │ │ ├── parse and re-emit tsconfig.json file with diagnostics.js │ │ │ ├── parses wildcard directories even when parent directories have dots with json api.js │ │ │ ├── parses wildcard directories even when parent directories have dots with jsonSourceFile api.js │ │ │ ├── returns config object without comments jsonParse.js │ │ │ ├── returns empty config for file with comments only jsonParse.js │ │ │ ├── returns empty config for file with only whitespaces jsonParse.js │ │ │ ├── returns empty config when config is empty object jsonParse.js │ │ │ ├── returns error when tsconfig have excludes with json api.js │ │ │ ├── returns error when tsconfig have excludes with jsonSourceFile api.js │ │ │ ├── returns object when users correctly specify library jsonParse.js │ │ │ ├── returns object with error when json is invalid jsonParse.js │ │ │ ├── with outDir from base tsconfig with json api.js │ │ │ └── with outDir from base tsconfig with jsonSourceFile api.js │ │ └── tsconfigParsingWatchOptions/ │ │ ├── different options with json api.js │ │ ├── different options with jsonSourceFile api.js │ │ ├── empty watchOptions specified option with json api.js │ │ ├── empty watchOptions specified option with jsonSourceFile api.js │ │ ├── no watchOptions specified option with json api.js │ │ ├── no watchOptions specified option with jsonSourceFile api.js │ │ ├── watch options extending passed in watch options with json api.js │ │ ├── watch options extending passed in watch options with jsonSourceFile api.js │ │ ├── when extending config file with watchOptions with json api.js │ │ ├── when extending config file with watchOptions with jsonSourceFile api.js │ │ ├── when extending config file without watchOptions with json api.js │ │ └── when extending config file without watchOptions with jsonSourceFile api.js │ ├── configFileExtendsAsList.errors.txt │ ├── configFileExtendsAsList.js │ ├── configFileExtendsAsList.symbols │ ├── configFileExtendsAsList.types │ ├── conflictMarkerDiff3Trivia1.errors.txt │ ├── conflictMarkerDiff3Trivia1.js │ ├── conflictMarkerDiff3Trivia1.symbols │ ├── conflictMarkerDiff3Trivia1.types │ ├── conflictMarkerDiff3Trivia2.errors.txt │ ├── conflictMarkerDiff3Trivia2.js │ ├── conflictMarkerDiff3Trivia2.symbols │ ├── conflictMarkerDiff3Trivia2.types │ ├── conflictMarkerTrivia1.errors.txt │ ├── conflictMarkerTrivia1.js │ ├── conflictMarkerTrivia1.symbols │ ├── conflictMarkerTrivia1.types │ ├── conflictMarkerTrivia2.errors.txt │ ├── conflictMarkerTrivia2.js │ ├── conflictMarkerTrivia2.symbols │ ├── conflictMarkerTrivia2.types │ ├── conflictMarkerTrivia3.errors.txt │ ├── conflictMarkerTrivia3.js │ ├── conflictMarkerTrivia3.symbols │ ├── conflictMarkerTrivia3.types │ ├── conflictMarkerTrivia4.errors.txt │ ├── conflictMarkerTrivia4.js │ ├── conflictMarkerTrivia4.symbols │ ├── conflictMarkerTrivia4.types │ ├── conflictingCommonJSES2015Exports.errors.txt │ ├── conflictingCommonJSES2015Exports.symbols │ ├── conflictingCommonJSES2015Exports.types │ ├── conflictingDeclarationsImportFromNamespace1.errors.txt │ ├── conflictingDeclarationsImportFromNamespace1.js │ ├── conflictingDeclarationsImportFromNamespace1.symbols │ ├── conflictingDeclarationsImportFromNamespace1.types │ ├── conflictingDeclarationsImportFromNamespace2.errors.txt │ ├── conflictingDeclarationsImportFromNamespace2.js │ ├── conflictingDeclarationsImportFromNamespace2.symbols │ ├── conflictingDeclarationsImportFromNamespace2.types │ ├── conflictingMemberTypesInBases.errors.txt │ ├── conflictingMemberTypesInBases.js │ ├── conflictingMemberTypesInBases.symbols │ ├── conflictingMemberTypesInBases.types │ ├── conflictingTypeAnnotatedVar.errors.txt │ ├── conflictingTypeAnnotatedVar.js │ ├── conflictingTypeAnnotatedVar.symbols │ ├── conflictingTypeAnnotatedVar.types │ ├── conflictingTypeParameterSymbolTransfer.errors.txt │ ├── conflictingTypeParameterSymbolTransfer.js │ ├── conflictingTypeParameterSymbolTransfer.symbols │ ├── conflictingTypeParameterSymbolTransfer.types │ ├── consistentAliasVsNonAliasRecordBehavior.errors.txt │ ├── consistentAliasVsNonAliasRecordBehavior.js │ ├── consistentAliasVsNonAliasRecordBehavior.symbols │ ├── consistentAliasVsNonAliasRecordBehavior.types │ ├── constAssertionOnEnum.js │ ├── constAssertionOnEnum.symbols │ ├── constAssertionOnEnum.types │ ├── constAssertions.errors.txt │ ├── constAssertions.js │ ├── constAssertions.symbols │ ├── constAssertions.types │ ├── constDeclarationShadowedByVarDeclaration.errors.txt │ ├── constDeclarationShadowedByVarDeclaration.js │ ├── constDeclarationShadowedByVarDeclaration.symbols │ ├── constDeclarationShadowedByVarDeclaration.types │ ├── constDeclarationShadowedByVarDeclaration2.js │ ├── constDeclarationShadowedByVarDeclaration2.symbols │ ├── constDeclarationShadowedByVarDeclaration2.types │ ├── constDeclarationShadowedByVarDeclaration3.js │ ├── constDeclarationShadowedByVarDeclaration3.symbols │ ├── constDeclarationShadowedByVarDeclaration3.types │ ├── constDeclarations-access.errors.txt │ ├── constDeclarations-access.js │ ├── constDeclarations-access.symbols │ ├── constDeclarations-access.types │ ├── constDeclarations-access2.errors.txt │ ├── constDeclarations-access2.js │ ├── constDeclarations-access2.symbols │ ├── constDeclarations-access2.types │ ├── constDeclarations-access3.errors.txt │ ├── constDeclarations-access3.js │ ├── constDeclarations-access3.symbols │ ├── constDeclarations-access3.types │ ├── constDeclarations-access4.errors.txt │ ├── constDeclarations-access4.js │ ├── constDeclarations-access4.symbols │ ├── constDeclarations-access4.types │ ├── constDeclarations-access5.errors.txt │ ├── constDeclarations-access5.js │ ├── constDeclarations-access5.symbols │ ├── constDeclarations-access5.types │ ├── constDeclarations-ambient-errors.errors.txt │ ├── constDeclarations-ambient-errors.js │ ├── constDeclarations-ambient-errors.symbols │ ├── constDeclarations-ambient-errors.types │ ├── constDeclarations-ambient.js │ ├── constDeclarations-ambient.symbols │ ├── constDeclarations-ambient.types │ ├── constDeclarations-errors.errors.txt │ ├── constDeclarations-errors.js │ ├── constDeclarations-errors.symbols │ ├── constDeclarations-errors.types │ ├── constDeclarations-es5(target=es2015).js │ ├── constDeclarations-es5(target=es2015).symbols │ ├── constDeclarations-es5(target=es2015).types │ ├── constDeclarations-es5(target=es5).errors.txt │ ├── constDeclarations-es5(target=es5).js │ ├── constDeclarations-es5(target=es5).symbols │ ├── constDeclarations-es5(target=es5).types │ ├── constDeclarations-invalidContexts(alwaysstrict=false).errors.txt │ ├── constDeclarations-invalidContexts(alwaysstrict=false).js │ ├── constDeclarations-invalidContexts(alwaysstrict=false).symbols │ ├── constDeclarations-invalidContexts(alwaysstrict=false).types │ ├── constDeclarations-invalidContexts(alwaysstrict=true).errors.txt │ ├── constDeclarations-invalidContexts(alwaysstrict=true).js │ ├── constDeclarations-invalidContexts(alwaysstrict=true).symbols │ ├── constDeclarations-invalidContexts(alwaysstrict=true).types │ ├── constDeclarations-scopes(alwaysstrict=false).errors.txt │ ├── constDeclarations-scopes(alwaysstrict=false).js │ ├── constDeclarations-scopes(alwaysstrict=false).symbols │ ├── constDeclarations-scopes(alwaysstrict=false).types │ ├── constDeclarations-scopes(alwaysstrict=true).errors.txt │ ├── constDeclarations-scopes(alwaysstrict=true).js │ ├── constDeclarations-scopes(alwaysstrict=true).symbols │ ├── constDeclarations-scopes(alwaysstrict=true).types │ ├── constDeclarations-scopes2.js │ ├── constDeclarations-scopes2.symbols │ ├── constDeclarations-scopes2.types │ ├── constDeclarations-useBeforeDefinition.errors.txt │ ├── constDeclarations-useBeforeDefinition.js │ ├── constDeclarations-useBeforeDefinition.symbols │ ├── constDeclarations-useBeforeDefinition.types │ ├── constDeclarations-useBeforeDefinition2.errors.txt │ ├── constDeclarations-useBeforeDefinition2.js │ ├── constDeclarations-useBeforeDefinition2.symbols │ ├── constDeclarations-useBeforeDefinition2.types │ ├── constDeclarations-validContexts(alwaysstrict=false).errors.txt │ ├── constDeclarations-validContexts(alwaysstrict=false).js │ ├── constDeclarations-validContexts(alwaysstrict=false).symbols │ ├── constDeclarations-validContexts(alwaysstrict=false).types │ ├── constDeclarations-validContexts(alwaysstrict=true).errors.txt │ ├── constDeclarations-validContexts(alwaysstrict=true).js │ ├── constDeclarations-validContexts(alwaysstrict=true).symbols │ ├── constDeclarations-validContexts(alwaysstrict=true).types │ ├── constDeclarations.js │ ├── constDeclarations.symbols │ ├── constDeclarations.types │ ├── constDeclarations2.js │ ├── constDeclarations2.symbols │ ├── constDeclarations2.types │ ├── constEnum1.js │ ├── constEnum1.symbols │ ├── constEnum1.types │ ├── constEnum2.errors.txt │ ├── constEnum2.js │ ├── constEnum2.symbols │ ├── constEnum2.types │ ├── constEnum3.js │ ├── constEnum3.symbols │ ├── constEnum3.types │ ├── constEnum4.errors.txt │ ├── constEnum4.js │ ├── constEnum4.symbols │ ├── constEnum4.types │ ├── constEnumBadPropertyNames.errors.txt │ ├── constEnumBadPropertyNames.js │ ├── constEnumBadPropertyNames.symbols │ ├── constEnumBadPropertyNames.types │ ├── constEnumDeclarations.js │ ├── constEnumDeclarations.symbols │ ├── constEnumDeclarations.types │ ├── constEnumErrors.errors.txt │ ├── constEnumErrors.js │ ├── constEnumErrors.symbols │ ├── constEnumErrors.types │ ├── constEnumExternalModule.errors.txt │ ├── constEnumExternalModule.js │ ├── constEnumExternalModule.symbols │ ├── constEnumExternalModule.types │ ├── constEnumMergingWithValues1.errors.txt │ ├── constEnumMergingWithValues1.js │ ├── constEnumMergingWithValues1.symbols │ ├── constEnumMergingWithValues1.types │ ├── constEnumMergingWithValues2.errors.txt │ ├── constEnumMergingWithValues2.js │ ├── constEnumMergingWithValues2.symbols │ ├── constEnumMergingWithValues2.types │ ├── constEnumMergingWithValues3.errors.txt │ ├── constEnumMergingWithValues3.js │ ├── constEnumMergingWithValues3.symbols │ ├── constEnumMergingWithValues3.types │ ├── constEnumMergingWithValues4.errors.txt │ ├── constEnumMergingWithValues4.js │ ├── constEnumMergingWithValues4.symbols │ ├── constEnumMergingWithValues4.types │ ├── constEnumMergingWithValues5.errors.txt │ ├── constEnumMergingWithValues5.js │ ├── constEnumMergingWithValues5.symbols │ ├── constEnumMergingWithValues5.types │ ├── constEnumNamespaceReferenceCausesNoImport(isolatedmodules=false).js │ ├── constEnumNamespaceReferenceCausesNoImport(isolatedmodules=false).symbols │ ├── constEnumNamespaceReferenceCausesNoImport(isolatedmodules=false).types │ ├── constEnumNamespaceReferenceCausesNoImport(isolatedmodules=true).js │ ├── constEnumNamespaceReferenceCausesNoImport(isolatedmodules=true).symbols │ ├── constEnumNamespaceReferenceCausesNoImport(isolatedmodules=true).types │ ├── constEnumNamespaceReferenceCausesNoImport2.js │ ├── constEnumNoEmitReexport.js │ ├── constEnumNoEmitReexport.symbols │ ├── constEnumNoEmitReexport.types │ ├── constEnumNoObjectPrototypePropertyAccess.errors.txt │ ├── constEnumNoObjectPrototypePropertyAccess.symbols │ ├── constEnumNoObjectPrototypePropertyAccess.types │ ├── constEnumNoPreserveDeclarationReexport.js │ ├── constEnumNoPreserveDeclarationReexport.symbols │ ├── constEnumNoPreserveDeclarationReexport.types │ ├── constEnumOnlyModuleMerging.js │ ├── constEnumOnlyModuleMerging.symbols │ ├── constEnumOnlyModuleMerging.types │ ├── constEnumPreserveEmitNamedExport1.js │ ├── constEnumPreserveEmitNamedExport1.symbols │ ├── constEnumPreserveEmitNamedExport1.types │ ├── constEnumPreserveEmitNamedExport2.js │ ├── constEnumPreserveEmitNamedExport2.symbols │ ├── constEnumPreserveEmitNamedExport2.types │ ├── constEnumPreserveEmitReexport.js │ ├── constEnumPreserveEmitReexport.symbols │ ├── constEnumPreserveEmitReexport.types │ ├── constEnumPropertyAccess1.errors.txt │ ├── constEnumPropertyAccess1.js │ ├── constEnumPropertyAccess1.symbols │ ├── constEnumPropertyAccess1.types │ ├── constEnumPropertyAccess2.errors.txt │ ├── constEnumPropertyAccess2.js │ ├── constEnumPropertyAccess2.symbols │ ├── constEnumPropertyAccess2.types │ ├── constEnumPropertyAccess3.js │ ├── constEnumPropertyAccess3.symbols │ ├── constEnumPropertyAccess3.types │ ├── constEnumSyntheticNodesComments.js │ ├── constEnumSyntheticNodesComments.symbols │ ├── constEnumSyntheticNodesComments.types │ ├── constEnumToStringNoComments.js │ ├── constEnumToStringNoComments.symbols │ ├── constEnumToStringNoComments.types │ ├── constEnumToStringWithComments.js │ ├── constEnumToStringWithComments.symbols │ ├── constEnumToStringWithComments.types │ ├── constEnums.errors.txt │ ├── constEnums.js │ ├── constEnums.symbols │ ├── constEnums.types │ ├── constInClassExpression.errors.txt │ ├── constInClassExpression.js │ ├── constInClassExpression.symbols │ ├── constInClassExpression.types │ ├── constIndexedAccess.errors.txt │ ├── constIndexedAccess.js │ ├── constIndexedAccess.symbols │ ├── constIndexedAccess.types │ ├── constLocalsInFunctionExpressions.js │ ├── constLocalsInFunctionExpressions.symbols │ ├── constLocalsInFunctionExpressions.types │ ├── constWithNonNull.errors.txt │ ├── constWithNonNull.js │ ├── constWithNonNull.symbols │ ├── constWithNonNull.types │ ├── constantEnumAssert.errors.txt │ ├── constantEnumAssert.js │ ├── constantEnumAssert.symbols │ ├── constantEnumAssert.types │ ├── constantOverloadFunction.errors.txt │ ├── constantOverloadFunction.js │ ├── constantOverloadFunction.symbols │ ├── constantOverloadFunction.types │ ├── constantOverloadFunctionNoSubtypeError.errors.txt │ ├── constantOverloadFunctionNoSubtypeError.js │ ├── constantOverloadFunctionNoSubtypeError.symbols │ ├── constantOverloadFunctionNoSubtypeError.types │ ├── constraintCheckInGenericBaseTypeReference.js │ ├── constraintCheckInGenericBaseTypeReference.symbols │ ├── constraintCheckInGenericBaseTypeReference.types │ ├── constraintErrors1.errors.txt │ ├── constraintErrors1.js │ ├── constraintErrors1.symbols │ ├── constraintErrors1.types │ ├── constraintOfRecursivelyMappedTypeWithConditionalIsResolvable.js │ ├── constraintOfRecursivelyMappedTypeWithConditionalIsResolvable.symbols │ ├── constraintOfRecursivelyMappedTypeWithConditionalIsResolvable.types │ ├── constraintPropagationThroughReturnTypes.js │ ├── constraintPropagationThroughReturnTypes.symbols │ ├── constraintPropagationThroughReturnTypes.types │ ├── constraintReferencingTypeParameterFromSameTypeParameterList.js │ ├── constraintReferencingTypeParameterFromSameTypeParameterList.symbols │ ├── constraintReferencingTypeParameterFromSameTypeParameterList.types │ ├── constraintSatisfactionWithAny.errors.txt │ ├── constraintSatisfactionWithAny.js │ ├── constraintSatisfactionWithAny.symbols │ ├── constraintSatisfactionWithAny.types │ ├── constraintSatisfactionWithAny2.js │ ├── constraintSatisfactionWithAny2.symbols │ ├── constraintSatisfactionWithAny2.types │ ├── constraintSatisfactionWithEmptyObject.js │ ├── constraintSatisfactionWithEmptyObject.symbols │ ├── constraintSatisfactionWithEmptyObject.types │ ├── constraintWithIndexedAccess.errors.txt │ ├── constraintWithIndexedAccess.js │ ├── constraintWithIndexedAccess.symbols │ ├── constraintWithIndexedAccess.types │ ├── constraints0.errors.txt │ ├── constraints0.js │ ├── constraints0.symbols │ ├── constraints0.types │ ├── constraintsThatReferenceOtherContstraints1.errors.txt │ ├── constraintsThatReferenceOtherContstraints1.js │ ├── constraintsThatReferenceOtherContstraints1.symbols │ ├── constraintsThatReferenceOtherContstraints1.types │ ├── constraintsUsedInPrototypeProperty.js │ ├── constraintsUsedInPrototypeProperty.symbols │ ├── constraintsUsedInPrototypeProperty.types │ ├── constructBigint.errors.txt │ ├── constructBigint.js │ ├── constructBigint.symbols │ ├── constructBigint.types │ ├── constructSignatureAssignabilityInInheritance.errors.txt │ ├── constructSignatureAssignabilityInInheritance.js │ ├── constructSignatureAssignabilityInInheritance.symbols │ ├── constructSignatureAssignabilityInInheritance.types │ ├── constructSignatureAssignabilityInInheritance2.errors.txt │ ├── constructSignatureAssignabilityInInheritance2.js │ ├── constructSignatureAssignabilityInInheritance2.symbols │ ├── constructSignatureAssignabilityInInheritance2.types │ ├── constructSignatureAssignabilityInInheritance3.errors.txt │ ├── constructSignatureAssignabilityInInheritance3.js │ ├── constructSignatureAssignabilityInInheritance3.symbols │ ├── constructSignatureAssignabilityInInheritance3.types │ ├── constructSignatureAssignabilityInInheritance4.errors.txt │ ├── constructSignatureAssignabilityInInheritance4.js │ ├── constructSignatureAssignabilityInInheritance4.symbols │ ├── constructSignatureAssignabilityInInheritance4.types │ ├── constructSignatureAssignabilityInInheritance5.errors.txt │ ├── constructSignatureAssignabilityInInheritance5.js │ ├── constructSignatureAssignabilityInInheritance5.symbols │ ├── constructSignatureAssignabilityInInheritance5.types │ ├── constructSignatureAssignabilityInInheritance6.errors.txt │ ├── constructSignatureAssignabilityInInheritance6.js │ ├── constructSignatureAssignabilityInInheritance6.symbols │ ├── constructSignatureAssignabilityInInheritance6.types │ ├── constructSignatureWithAccessibilityModifiersOnParameters.errors.txt │ ├── constructSignatureWithAccessibilityModifiersOnParameters.js │ ├── constructSignatureWithAccessibilityModifiersOnParameters.symbols │ ├── constructSignatureWithAccessibilityModifiersOnParameters.types │ ├── constructSignatureWithAccessibilityModifiersOnParameters2.errors.txt │ ├── constructSignatureWithAccessibilityModifiersOnParameters2.js │ ├── constructSignatureWithAccessibilityModifiersOnParameters2.symbols │ ├── constructSignatureWithAccessibilityModifiersOnParameters2.types │ ├── constructSignaturesWithIdenticalOverloads.errors.txt │ ├── constructSignaturesWithIdenticalOverloads.js │ ├── constructSignaturesWithIdenticalOverloads.symbols │ ├── constructSignaturesWithIdenticalOverloads.types │ ├── constructSignaturesWithOverloads.errors.txt │ ├── constructSignaturesWithOverloads.js │ ├── constructSignaturesWithOverloads.symbols │ ├── constructSignaturesWithOverloads.types │ ├── constructSignaturesWithOverloads2.errors.txt │ ├── constructSignaturesWithOverloads2.js │ ├── constructSignaturesWithOverloads2.symbols │ ├── constructSignaturesWithOverloads2.types │ ├── constructSignaturesWithOverloadsThatDifferOnlyByReturnType.js │ ├── constructSignaturesWithOverloadsThatDifferOnlyByReturnType.symbols │ ├── constructSignaturesWithOverloadsThatDifferOnlyByReturnType.types │ ├── constructableDecoratorOnClass01.errors.txt │ ├── constructableDecoratorOnClass01.js │ ├── constructableDecoratorOnClass01.symbols │ ├── constructableDecoratorOnClass01.types │ ├── constructorArgWithGenericCallSignature.errors.txt │ ├── constructorArgWithGenericCallSignature.js │ ├── constructorArgWithGenericCallSignature.symbols │ ├── constructorArgWithGenericCallSignature.types │ ├── constructorArgs.js │ ├── constructorArgs.symbols │ ├── constructorArgs.types │ ├── constructorArgsErrors1.errors.txt │ ├── constructorArgsErrors1.js │ ├── constructorArgsErrors1.symbols │ ├── constructorArgsErrors1.types │ ├── constructorArgsErrors2.errors.txt │ ├── constructorArgsErrors2.js │ ├── constructorArgsErrors2.symbols │ ├── constructorArgsErrors2.types │ ├── constructorArgsErrors3.errors.txt │ ├── constructorArgsErrors3.js │ ├── constructorArgsErrors3.symbols │ ├── constructorArgsErrors3.types │ ├── constructorArgsErrors4.errors.txt │ ├── constructorArgsErrors4.js │ ├── constructorArgsErrors4.symbols │ ├── constructorArgsErrors4.types │ ├── constructorArgsErrors5.errors.txt │ ├── constructorArgsErrors5.js │ ├── constructorArgsErrors5.symbols │ ├── constructorArgsErrors5.types │ ├── constructorAsType.errors.txt │ ├── constructorAsType.js │ ├── constructorAsType.symbols │ ├── constructorAsType.types │ ├── constructorDefaultValuesReferencingThis.errors.txt │ ├── constructorDefaultValuesReferencingThis.js │ ├── constructorDefaultValuesReferencingThis.symbols │ ├── constructorDefaultValuesReferencingThis.types │ ├── constructorFindAllReferences1.baseline.jsonc │ ├── constructorFindAllReferences2.baseline.jsonc │ ├── constructorFindAllReferences3.baseline.jsonc │ ├── constructorFindAllReferences4.baseline.jsonc │ ├── constructorFunctionMergeWithClass.symbols │ ├── constructorFunctionMergeWithClass.types │ ├── constructorFunctionMethodTypeParameters.symbols │ ├── constructorFunctionMethodTypeParameters.types │ ├── constructorFunctionTypeIsAssignableToBaseType.js │ ├── constructorFunctionTypeIsAssignableToBaseType.symbols │ ├── constructorFunctionTypeIsAssignableToBaseType.types │ ├── constructorFunctionTypeIsAssignableToBaseType2.js │ ├── constructorFunctionTypeIsAssignableToBaseType2.symbols │ ├── constructorFunctionTypeIsAssignableToBaseType2.types │ ├── constructorFunctions.errors.txt │ ├── constructorFunctions.symbols │ ├── constructorFunctions.types │ ├── constructorFunctions2.symbols │ ├── constructorFunctions2.types │ ├── constructorFunctions3.symbols │ ├── constructorFunctions3.types │ ├── constructorFunctionsStrict.errors.txt │ ├── constructorFunctionsStrict.symbols │ ├── constructorFunctionsStrict.types │ ├── constructorHasPrototypeProperty.errors.txt │ ├── constructorHasPrototypeProperty.js │ ├── constructorHasPrototypeProperty.symbols │ ├── constructorHasPrototypeProperty.types │ ├── constructorImplementationWithDefaultValues.js │ ├── constructorImplementationWithDefaultValues.symbols │ ├── constructorImplementationWithDefaultValues.types │ ├── constructorImplementationWithDefaultValues2.errors.txt │ ├── constructorImplementationWithDefaultValues2.js │ ├── constructorImplementationWithDefaultValues2.symbols │ ├── constructorImplementationWithDefaultValues2.types │ ├── constructorInvocationWithTooFewTypeArgs.errors.txt │ ├── constructorInvocationWithTooFewTypeArgs.js │ ├── constructorInvocationWithTooFewTypeArgs.symbols │ ├── constructorInvocationWithTooFewTypeArgs.types │ ├── constructorNameInAccessor.errors.txt │ ├── constructorNameInAccessor.js │ ├── constructorNameInAccessor.symbols │ ├── constructorNameInAccessor.types │ ├── constructorNameInGenerator.errors.txt │ ├── constructorNameInGenerator.js │ ├── constructorNameInGenerator.symbols │ ├── constructorNameInGenerator.types │ ├── constructorNameInObjectLiteralAccessor.js │ ├── constructorNameInObjectLiteralAccessor.symbols │ ├── constructorNameInObjectLiteralAccessor.types │ ├── constructorOverloads1.errors.txt │ ├── constructorOverloads1.js │ ├── constructorOverloads1.symbols │ ├── constructorOverloads1.types │ ├── constructorOverloads2.js │ ├── constructorOverloads2.symbols │ ├── constructorOverloads2.types │ ├── constructorOverloads3.errors.txt │ ├── constructorOverloads3.js │ ├── constructorOverloads3.symbols │ ├── constructorOverloads3.types │ ├── constructorOverloads4.errors.txt │ ├── constructorOverloads4.js │ ├── constructorOverloads4.symbols │ ├── constructorOverloads4.types │ ├── constructorOverloads5.js │ ├── constructorOverloads5.symbols │ ├── constructorOverloads5.types │ ├── constructorOverloads6.errors.txt │ ├── constructorOverloads6.js │ ├── constructorOverloads6.symbols │ ├── constructorOverloads6.types │ ├── constructorOverloads7.errors.txt │ ├── constructorOverloads7.js │ ├── constructorOverloads7.symbols │ ├── constructorOverloads7.types │ ├── constructorOverloads8.errors.txt │ ├── constructorOverloads8.js │ ├── constructorOverloads8.symbols │ ├── constructorOverloads8.types │ ├── constructorOverloads9.js │ ├── constructorOverloads9.symbols │ ├── constructorOverloads9.types │ ├── constructorOverloadsWithDefaultValues.errors.txt │ ├── constructorOverloadsWithDefaultValues.js │ ├── constructorOverloadsWithDefaultValues.symbols │ ├── constructorOverloadsWithDefaultValues.types │ ├── constructorOverloadsWithOptionalParameters.js │ ├── constructorOverloadsWithOptionalParameters.symbols │ ├── constructorOverloadsWithOptionalParameters.types │ ├── constructorParameterProperties.errors.txt │ ├── constructorParameterProperties.js │ ├── constructorParameterProperties.symbols │ ├── constructorParameterProperties.types │ ├── constructorParameterProperties2.errors.txt │ ├── constructorParameterProperties2.js │ ├── constructorParameterProperties2.symbols │ ├── constructorParameterProperties2.types │ ├── constructorParameterShadowsOuterScopes.errors.txt │ ├── constructorParameterShadowsOuterScopes.js │ ├── constructorParameterShadowsOuterScopes.symbols │ ├── constructorParameterShadowsOuterScopes.types │ ├── constructorParameterShadowsOuterScopes2.errors.txt │ ├── constructorParameterShadowsOuterScopes2.js │ ├── constructorParameterShadowsOuterScopes2.symbols │ ├── constructorParameterShadowsOuterScopes2.types │ ├── constructorParametersInVariableDeclarations.errors.txt │ ├── constructorParametersInVariableDeclarations.js │ ├── constructorParametersInVariableDeclarations.symbols │ ├── constructorParametersInVariableDeclarations.types │ ├── constructorParametersThatShadowExternalNamesInVariableDeclarations.errors.txt │ ├── constructorParametersThatShadowExternalNamesInVariableDeclarations.js │ ├── constructorParametersThatShadowExternalNamesInVariableDeclarations.symbols │ ├── constructorParametersThatShadowExternalNamesInVariableDeclarations.types │ ├── constructorPropertyJs.js │ ├── constructorPropertyJs.symbols │ ├── constructorPropertyJs.types │ ├── constructorReturningAPrimitive.errors.txt │ ├── constructorReturningAPrimitive.js │ ├── constructorReturningAPrimitive.symbols │ ├── constructorReturningAPrimitive.types │ ├── constructorReturnsInvalidType.errors.txt │ ├── constructorReturnsInvalidType.js │ ├── constructorReturnsInvalidType.symbols │ ├── constructorReturnsInvalidType.types │ ├── constructorStaticParamName.errors.txt │ ├── constructorStaticParamName.js │ ├── constructorStaticParamName.symbols │ ├── constructorStaticParamName.types │ ├── constructorStaticParamNameErrors.errors.txt │ ├── constructorStaticParamNameErrors.js │ ├── constructorStaticParamNameErrors.symbols │ ├── constructorStaticParamNameErrors.types │ ├── constructorTagOnClassConstructor.symbols │ ├── constructorTagOnClassConstructor.types │ ├── constructorTagOnNestedBinaryExpression.symbols │ ├── constructorTagOnNestedBinaryExpression.types │ ├── constructorTagOnObjectLiteralMethod.errors.txt │ ├── constructorTagOnObjectLiteralMethod.symbols │ ├── constructorTagOnObjectLiteralMethod.types │ ├── constructorTagWithThisTag.symbols │ ├── constructorTagWithThisTag.types │ ├── constructorTypeWithTypeParameters.js │ ├── constructorTypeWithTypeParameters.symbols │ ├── constructorTypeWithTypeParameters.types │ ├── constructorWithAssignableReturnExpression.errors.txt │ ├── constructorWithAssignableReturnExpression.js │ ├── constructorWithAssignableReturnExpression.symbols │ ├── constructorWithAssignableReturnExpression.types │ ├── constructorWithCapturedSuper.js │ ├── constructorWithCapturedSuper.symbols │ ├── constructorWithCapturedSuper.types │ ├── constructorWithExpressionLessReturn.errors.txt │ ├── constructorWithExpressionLessReturn.js │ ├── constructorWithExpressionLessReturn.symbols │ ├── constructorWithExpressionLessReturn.types │ ├── constructorWithIncompleteTypeAnnotation.errors.txt │ ├── constructorWithIncompleteTypeAnnotation.js │ ├── constructorWithIncompleteTypeAnnotation.symbols │ ├── constructorWithIncompleteTypeAnnotation.types │ ├── constructorWithParameterPropertiesAndPrivateFields.es2015.js │ ├── constructorWithParameterPropertiesAndPrivateFields.es2015.symbols │ ├── constructorWithParameterPropertiesAndPrivateFields.es2015.types │ ├── constructorWithSuperAndPrologue.es5(target=es2015).js │ ├── constructorWithSuperAndPrologue.es5(target=es2015).symbols │ ├── constructorWithSuperAndPrologue.es5(target=es2015).types │ ├── constructorWithSuperAndPrologue.es5(target=es5).errors.txt │ ├── constructorWithSuperAndPrologue.es5(target=es5).js │ ├── constructorWithSuperAndPrologue.es5(target=es5).symbols │ ├── constructorWithSuperAndPrologue.es5(target=es5).types │ ├── constructorsWithSpecializedSignatures.errors.txt │ ├── constructorsWithSpecializedSignatures.js │ ├── constructorsWithSpecializedSignatures.symbols │ ├── constructorsWithSpecializedSignatures.types │ ├── contextSensitiveReturnTypeInference.js │ ├── contextSensitiveReturnTypeInference.symbols │ ├── contextSensitiveReturnTypeInference.types │ ├── contextualComputedNonBindablePropertyType.symbols │ ├── contextualComputedNonBindablePropertyType.types │ ├── contextualExpressionTypecheckingDoesntBlowStack(target=es2015).js │ ├── contextualExpressionTypecheckingDoesntBlowStack(target=es2015).symbols │ ├── contextualExpressionTypecheckingDoesntBlowStack(target=es2015).types │ ├── contextualExpressionTypecheckingDoesntBlowStack(target=es5).errors.txt │ ├── contextualExpressionTypecheckingDoesntBlowStack(target=es5).js │ ├── contextualExpressionTypecheckingDoesntBlowStack(target=es5).symbols │ ├── contextualExpressionTypecheckingDoesntBlowStack(target=es5).types │ ├── contextualIntersectionType.js │ ├── contextualIntersectionType.symbols │ ├── contextualIntersectionType.types │ ├── contextualOuterTypeParameters.symbols │ ├── contextualOuterTypeParameters.types │ ├── contextualOverloadListFromArrayUnion.js │ ├── contextualOverloadListFromArrayUnion.symbols │ ├── contextualOverloadListFromArrayUnion.types │ ├── contextualOverloadListFromUnionWithPrimitiveNoImplicitAny.errors.txt │ ├── contextualOverloadListFromUnionWithPrimitiveNoImplicitAny.js │ ├── contextualOverloadListFromUnionWithPrimitiveNoImplicitAny.symbols │ ├── contextualOverloadListFromUnionWithPrimitiveNoImplicitAny.types │ ├── contextualParamTypeVsNestedReturnTypeInference1.symbols │ ├── contextualParamTypeVsNestedReturnTypeInference1.types │ ├── contextualParamTypeVsNestedReturnTypeInference2.symbols │ ├── contextualParamTypeVsNestedReturnTypeInference2.types │ ├── contextualParamTypeVsNestedReturnTypeInference3.symbols │ ├── contextualParamTypeVsNestedReturnTypeInference3.types │ ├── contextualParamTypeVsNestedReturnTypeInference4.symbols │ ├── contextualParamTypeVsNestedReturnTypeInference4.types │ ├── contextualParameterAndSelfReferentialConstraint1.symbols │ ├── contextualParameterAndSelfReferentialConstraint1.types │ ├── contextualPropertyOfGenericFilteringMappedType.errors.txt │ ├── contextualPropertyOfGenericFilteringMappedType.symbols │ ├── contextualPropertyOfGenericFilteringMappedType.types │ ├── contextualPropertyOfGenericMappedType.js │ ├── contextualPropertyOfGenericMappedType.symbols │ ├── contextualPropertyOfGenericMappedType.types │ ├── contextualReturnTypeOfIIFE.js │ ├── contextualReturnTypeOfIIFE.symbols │ ├── contextualReturnTypeOfIIFE.types │ ├── contextualReturnTypeOfIIFE2.js │ ├── contextualReturnTypeOfIIFE2.symbols │ ├── contextualReturnTypeOfIIFE2.types │ ├── contextualReturnTypeOfIIFE3.js │ ├── contextualReturnTypeOfIIFE3.symbols │ ├── contextualReturnTypeOfIIFE3.types │ ├── contextualSigInstantiationRestParams.js │ ├── contextualSigInstantiationRestParams.symbols │ ├── contextualSigInstantiationRestParams.types │ ├── contextualSignatureConditionalTypeInstantiationUsingDefault.symbols │ ├── contextualSignatureConditionalTypeInstantiationUsingDefault.types │ ├── contextualSignatureInArrayElementLibEs2015.errors.txt │ ├── contextualSignatureInArrayElementLibEs2015.symbols │ ├── contextualSignatureInArrayElementLibEs2015.types │ ├── contextualSignatureInArrayElementLibEs5.errors.txt │ ├── contextualSignatureInArrayElementLibEs5.symbols │ ├── contextualSignatureInArrayElementLibEs5.types │ ├── contextualSignatureInObjectFreeze.js │ ├── contextualSignatureInObjectFreeze.symbols │ ├── contextualSignatureInObjectFreeze.types │ ├── contextualSignatureInstantiation.errors.txt │ ├── contextualSignatureInstantiation.js │ ├── contextualSignatureInstantiation.symbols │ ├── contextualSignatureInstantiation.types │ ├── contextualSignatureInstantiation1.js │ ├── contextualSignatureInstantiation1.symbols │ ├── contextualSignatureInstantiation1.types │ ├── contextualSignatureInstantiation2.errors.txt │ ├── contextualSignatureInstantiation2.js │ ├── contextualSignatureInstantiation2.symbols │ ├── contextualSignatureInstantiation2.types │ ├── contextualSignatureInstantiation3.js │ ├── contextualSignatureInstantiation3.symbols │ ├── contextualSignatureInstantiation3.types │ ├── contextualSignatureInstantiation4.js │ ├── contextualSignatureInstantiation4.symbols │ ├── contextualSignatureInstantiation4.types │ ├── contextualSignatureInstantiationWithTypeParameterConstrainedToOuterTypeParameter.errors.txt │ ├── contextualSignatureInstantiationWithTypeParameterConstrainedToOuterTypeParameter.js │ ├── contextualSignatureInstantiationWithTypeParameterConstrainedToOuterTypeParameter.symbols │ ├── contextualSignatureInstantiationWithTypeParameterConstrainedToOuterTypeParameter.types │ ├── contextualSignatureInstatiationContravariance.errors.txt │ ├── contextualSignatureInstatiationContravariance.js │ ├── contextualSignatureInstatiationContravariance.symbols │ ├── contextualSignatureInstatiationContravariance.types │ ├── contextualSignatureInstatiationCovariance.js │ ├── contextualSignatureInstatiationCovariance.symbols │ ├── contextualSignatureInstatiationCovariance.types │ ├── contextualSignature_objectLiteralMethodMayReturnNever.js │ ├── contextualSignature_objectLiteralMethodMayReturnNever.symbols │ ├── contextualSignature_objectLiteralMethodMayReturnNever.types │ ├── contextualThisType.js │ ├── contextualThisType.symbols │ ├── contextualThisType.types │ ├── contextualThisTypeInJavascript.symbols │ ├── contextualThisTypeInJavascript.types │ ├── contextualTupleTypeParameterReadonly.errors.txt │ ├── contextualTupleTypeParameterReadonly.js │ ├── contextualTupleTypeParameterReadonly.symbols │ ├── contextualTupleTypeParameterReadonly.types │ ├── contextualTypeAny.errors.txt │ ├── contextualTypeAny.js │ ├── contextualTypeAny.symbols │ ├── contextualTypeAny.types │ ├── contextualTypeAppliedToVarArgs.js │ ├── contextualTypeAppliedToVarArgs.symbols │ ├── contextualTypeAppliedToVarArgs.types │ ├── contextualTypeArrayReturnType.errors.txt │ ├── contextualTypeArrayReturnType.js │ ├── contextualTypeArrayReturnType.symbols │ ├── contextualTypeArrayReturnType.types │ ├── contextualTypeBasedOnIntersectionWithAnyInTheMix1.symbols │ ├── contextualTypeBasedOnIntersectionWithAnyInTheMix1.types │ ├── contextualTypeBasedOnIntersectionWithAnyInTheMix2.symbols │ ├── contextualTypeBasedOnIntersectionWithAnyInTheMix2.types │ ├── contextualTypeBasedOnIntersectionWithAnyInTheMix3.symbols │ ├── contextualTypeBasedOnIntersectionWithAnyInTheMix3.types │ ├── contextualTypeBasedOnIntersectionWithAnyInTheMix4.errors.txt │ ├── contextualTypeBasedOnIntersectionWithAnyInTheMix4.symbols │ ├── contextualTypeBasedOnIntersectionWithAnyInTheMix4.types │ ├── contextualTypeBasedOnIntersectionWithAnyInTheMix5.symbols │ ├── contextualTypeBasedOnIntersectionWithAnyInTheMix5.types │ ├── contextualTypeCaching.symbols │ ├── contextualTypeCaching.types │ ├── contextualTypeForInitalizedVariablesFiltersUndefined.errors.txt │ ├── contextualTypeForInitalizedVariablesFiltersUndefined.js │ ├── contextualTypeForInitalizedVariablesFiltersUndefined.symbols │ ├── contextualTypeForInitalizedVariablesFiltersUndefined.types │ ├── contextualTypeFromJSDoc.symbols │ ├── contextualTypeFromJSDoc.types │ ├── contextualTypeFunctionObjectPropertyIntersection.errors.txt │ ├── contextualTypeFunctionObjectPropertyIntersection.symbols │ ├── contextualTypeFunctionObjectPropertyIntersection.types │ ├── contextualTypeIterableUnions.js │ ├── contextualTypeIterableUnions.symbols │ ├── contextualTypeIterableUnions.types │ ├── contextualTypeLogicalOr.js │ ├── contextualTypeLogicalOr.symbols │ ├── contextualTypeLogicalOr.types │ ├── contextualTypeObjectSpreadExpression.js │ ├── contextualTypeObjectSpreadExpression.symbols │ ├── contextualTypeObjectSpreadExpression.types │ ├── contextualTypeOfIndexedAccessParameter.js │ ├── contextualTypeOfIndexedAccessParameter.symbols │ ├── contextualTypeOfIndexedAccessParameter.types │ ├── contextualTypeOnYield1.js │ ├── contextualTypeOnYield1.symbols │ ├── contextualTypeOnYield1.types │ ├── contextualTypeOnYield2.js │ ├── contextualTypeOnYield2.symbols │ ├── contextualTypeOnYield2.types │ ├── contextualTypeSelfReferencing.symbols │ ├── contextualTypeSelfReferencing.types │ ├── contextualTypeShouldBeLiteral.js │ ├── contextualTypeShouldBeLiteral.symbols │ ├── contextualTypeShouldBeLiteral.types │ ├── contextualTypeTupleEnd.errors.txt │ ├── contextualTypeTupleEnd.symbols │ ├── contextualTypeTupleEnd.types │ ├── contextualTypeWithTuple.errors.txt │ ├── contextualTypeWithTuple.js │ ├── contextualTypeWithTuple.symbols │ ├── contextualTypeWithTuple.types │ ├── contextualTypeWithUnionTypeCallSignatures.errors.txt │ ├── contextualTypeWithUnionTypeCallSignatures.js │ ├── contextualTypeWithUnionTypeCallSignatures.symbols │ ├── contextualTypeWithUnionTypeCallSignatures.types │ ├── contextualTypeWithUnionTypeIndexSignatures.js │ ├── contextualTypeWithUnionTypeIndexSignatures.symbols │ ├── contextualTypeWithUnionTypeIndexSignatures.types │ ├── contextualTypeWithUnionTypeMembers.errors.txt │ ├── contextualTypeWithUnionTypeMembers.js │ ├── contextualTypeWithUnionTypeMembers.symbols │ ├── contextualTypeWithUnionTypeMembers.types │ ├── contextualTypeWithUnionTypeObjectLiteral.errors.txt │ ├── contextualTypeWithUnionTypeObjectLiteral.js │ ├── contextualTypeWithUnionTypeObjectLiteral.symbols │ ├── contextualTypeWithUnionTypeObjectLiteral.types │ ├── contextualTypedSpecialAssignment.symbols │ ├── contextualTypedSpecialAssignment.types │ ├── contextualTypesNegatedTypeLikeConstraintInGenericMappedType1.symbols │ ├── contextualTypesNegatedTypeLikeConstraintInGenericMappedType1.types │ ├── contextualTypesNegatedTypeLikeConstraintInGenericMappedType2.errors.txt │ ├── contextualTypesNegatedTypeLikeConstraintInGenericMappedType2.symbols │ ├── contextualTypesNegatedTypeLikeConstraintInGenericMappedType2.types │ ├── contextualTypesNegatedTypeLikeConstraintInGenericMappedType3.symbols │ ├── contextualTypesNegatedTypeLikeConstraintInGenericMappedType3.types │ ├── contextualTyping.errors.txt │ ├── contextualTyping.js │ ├── contextualTyping.sourcemap.txt │ ├── contextualTyping.symbols │ ├── contextualTyping.types │ ├── contextualTyping1.js │ ├── contextualTyping1.symbols │ ├── contextualTyping1.types │ ├── contextualTyping10.js │ ├── contextualTyping10.symbols │ ├── contextualTyping10.types │ ├── contextualTyping11.errors.txt │ ├── contextualTyping11.js │ ├── contextualTyping11.symbols │ ├── contextualTyping11.types │ ├── contextualTyping12.errors.txt │ ├── contextualTyping12.js │ ├── contextualTyping12.symbols │ ├── contextualTyping12.types │ ├── contextualTyping13.js │ ├── contextualTyping13.symbols │ ├── contextualTyping13.types │ ├── contextualTyping14.js │ ├── contextualTyping14.symbols │ ├── contextualTyping14.types │ ├── contextualTyping15.js │ ├── contextualTyping15.symbols │ ├── contextualTyping15.types │ ├── contextualTyping16.js │ ├── contextualTyping16.symbols │ ├── contextualTyping16.types │ ├── contextualTyping17.errors.txt │ ├── contextualTyping17.js │ ├── contextualTyping17.symbols │ ├── contextualTyping17.types │ ├── contextualTyping18.js │ ├── contextualTyping18.symbols │ ├── contextualTyping18.types │ ├── contextualTyping19.js │ ├── contextualTyping19.symbols │ ├── contextualTyping19.types │ ├── contextualTyping2.errors.txt │ ├── contextualTyping2.js │ ├── contextualTyping2.symbols │ ├── contextualTyping2.types │ ├── contextualTyping20.errors.txt │ ├── contextualTyping20.js │ ├── contextualTyping20.symbols │ ├── contextualTyping20.types │ ├── contextualTyping21.errors.txt │ ├── contextualTyping21.js │ ├── contextualTyping21.symbols │ ├── contextualTyping21.types │ ├── contextualTyping22.js │ ├── contextualTyping22.symbols │ ├── contextualTyping22.types │ ├── contextualTyping23.js │ ├── contextualTyping23.symbols │ ├── contextualTyping23.types │ ├── contextualTyping24.errors.txt │ ├── contextualTyping24.js │ ├── contextualTyping24.symbols │ ├── contextualTyping24.types │ ├── contextualTyping25.js │ ├── contextualTyping25.symbols │ ├── contextualTyping25.types │ ├── contextualTyping26.js │ ├── contextualTyping26.symbols │ ├── contextualTyping26.types │ ├── contextualTyping27.js │ ├── contextualTyping27.symbols │ ├── contextualTyping27.types │ ├── contextualTyping28.js │ ├── contextualTyping28.symbols │ ├── contextualTyping28.types │ ├── contextualTyping29.js │ ├── contextualTyping29.symbols │ ├── contextualTyping29.types │ ├── contextualTyping3.js │ ├── contextualTyping3.symbols │ ├── contextualTyping3.types │ ├── contextualTyping30.errors.txt │ ├── contextualTyping30.js │ ├── contextualTyping30.symbols │ ├── contextualTyping30.types │ ├── contextualTyping31.js │ ├── contextualTyping31.symbols │ ├── contextualTyping31.types │ ├── contextualTyping32.js │ ├── contextualTyping32.symbols │ ├── contextualTyping32.types │ ├── contextualTyping33.errors.txt │ ├── contextualTyping33.js │ ├── contextualTyping33.symbols │ ├── contextualTyping33.types │ ├── contextualTyping34.js │ ├── contextualTyping34.symbols │ ├── contextualTyping34.types │ ├── contextualTyping35.js │ ├── contextualTyping35.symbols │ ├── contextualTyping35.types │ ├── contextualTyping36.js │ ├── contextualTyping36.symbols │ ├── contextualTyping36.types │ ├── contextualTyping37.js │ ├── contextualTyping37.symbols │ ├── contextualTyping37.types │ ├── contextualTyping38.errors.txt │ ├── contextualTyping38.js │ ├── contextualTyping38.symbols │ ├── contextualTyping38.types │ ├── contextualTyping39.errors.txt │ ├── contextualTyping39.js │ ├── contextualTyping39.symbols │ ├── contextualTyping39.types │ ├── contextualTyping4.errors.txt │ ├── contextualTyping4.js │ ├── contextualTyping4.symbols │ ├── contextualTyping4.types │ ├── contextualTyping40.js │ ├── contextualTyping40.symbols │ ├── contextualTyping40.types │ ├── contextualTyping41.errors.txt │ ├── contextualTyping41.js │ ├── contextualTyping41.symbols │ ├── contextualTyping41.types │ ├── contextualTyping5.errors.txt │ ├── contextualTyping5.js │ ├── contextualTyping5.symbols │ ├── contextualTyping5.types │ ├── contextualTyping6.js │ ├── contextualTyping6.symbols │ ├── contextualTyping6.types │ ├── contextualTyping7.js │ ├── contextualTyping7.symbols │ ├── contextualTyping7.types │ ├── contextualTyping8.js │ ├── contextualTyping8.symbols │ ├── contextualTyping8.types │ ├── contextualTyping9.errors.txt │ ├── contextualTyping9.js │ ├── contextualTyping9.symbols │ ├── contextualTyping9.types │ ├── contextualTypingArrayDestructuringWithDefaults.errors.txt │ ├── contextualTypingArrayDestructuringWithDefaults.js │ ├── contextualTypingArrayDestructuringWithDefaults.symbols │ ├── contextualTypingArrayDestructuringWithDefaults.types │ ├── contextualTypingArrayOfLambdas.js │ ├── contextualTypingArrayOfLambdas.symbols │ ├── contextualTypingArrayOfLambdas.types │ ├── contextualTypingFunctionReturningFunction.js │ ├── contextualTypingFunctionReturningFunction.symbols │ ├── contextualTypingFunctionReturningFunction.types │ ├── contextualTypingFunctionReturningFunction2.js │ ├── contextualTypingFunctionReturningFunction2.symbols │ ├── contextualTypingFunctionReturningFunction2.types │ ├── contextualTypingOfAccessors.js │ ├── contextualTypingOfAccessors.symbols │ ├── contextualTypingOfAccessors.types │ ├── contextualTypingOfArrayLiterals1.errors.txt │ ├── contextualTypingOfArrayLiterals1.js │ ├── contextualTypingOfArrayLiterals1.symbols │ ├── contextualTypingOfArrayLiterals1.types │ ├── contextualTypingOfConditionalExpression.js │ ├── contextualTypingOfConditionalExpression.symbols │ ├── contextualTypingOfConditionalExpression.types │ ├── contextualTypingOfConditionalExpression2.errors.txt │ ├── contextualTypingOfConditionalExpression2.js │ ├── contextualTypingOfConditionalExpression2.symbols │ ├── contextualTypingOfConditionalExpression2.types │ ├── contextualTypingOfGenericFunctionTypedArguments1.errors.txt │ ├── contextualTypingOfGenericFunctionTypedArguments1.js │ ├── contextualTypingOfGenericFunctionTypedArguments1.symbols │ ├── contextualTypingOfGenericFunctionTypedArguments1.types │ ├── contextualTypingOfLambdaReturnExpression.errors.txt │ ├── contextualTypingOfLambdaReturnExpression.js │ ├── contextualTypingOfLambdaReturnExpression.symbols │ ├── contextualTypingOfLambdaReturnExpression.types │ ├── contextualTypingOfLambdaWithMultipleSignatures.js │ ├── contextualTypingOfLambdaWithMultipleSignatures.symbols │ ├── contextualTypingOfLambdaWithMultipleSignatures.types │ ├── contextualTypingOfLambdaWithMultipleSignatures2.js │ ├── contextualTypingOfLambdaWithMultipleSignatures2.symbols │ ├── contextualTypingOfLambdaWithMultipleSignatures2.types │ ├── contextualTypingOfObjectLiterals.js │ ├── contextualTypingOfObjectLiterals.symbols │ ├── contextualTypingOfObjectLiterals.types │ ├── contextualTypingOfObjectLiterals2.errors.txt │ ├── contextualTypingOfObjectLiterals2.js │ ├── contextualTypingOfObjectLiterals2.symbols │ ├── contextualTypingOfObjectLiterals2.types │ ├── contextualTypingOfOptionalMembers.js │ ├── contextualTypingOfOptionalMembers.symbols │ ├── contextualTypingOfOptionalMembers.types │ ├── contextualTypingOfTooShortOverloads.js │ ├── contextualTypingOfTooShortOverloads.symbols │ ├── contextualTypingOfTooShortOverloads.types │ ├── contextualTypingReturnStatementWithReturnTypeAnnotation.symbols │ ├── contextualTypingReturnStatementWithReturnTypeAnnotation.types │ ├── contextualTypingTwoInstancesOfSameTypeParameter.js │ ├── contextualTypingTwoInstancesOfSameTypeParameter.symbols │ ├── contextualTypingTwoInstancesOfSameTypeParameter.types │ ├── contextualTypingWithFixedTypeParameters1.errors.txt │ ├── contextualTypingWithFixedTypeParameters1.js │ ├── contextualTypingWithFixedTypeParameters1.symbols │ ├── contextualTypingWithFixedTypeParameters1.types │ ├── contextualTypingWithGenericAndNonGenericSignature.errors.txt │ ├── contextualTypingWithGenericAndNonGenericSignature.js │ ├── contextualTypingWithGenericAndNonGenericSignature.symbols │ ├── contextualTypingWithGenericAndNonGenericSignature.types │ ├── contextualTypingWithGenericSignature.js │ ├── contextualTypingWithGenericSignature.symbols │ ├── contextualTypingWithGenericSignature.types │ ├── contextuallyTypeArgumentsKeyword.symbols │ ├── contextuallyTypeArgumentsKeyword.types │ ├── contextuallyTypeAsyncFunctionAwaitOperand.symbols │ ├── contextuallyTypeAsyncFunctionAwaitOperand.types │ ├── contextuallyTypeAsyncFunctionReturnType.symbols │ ├── contextuallyTypeAsyncFunctionReturnType.types │ ├── contextuallyTypeAsyncFunctionReturnTypeFromUnion.symbols │ ├── contextuallyTypeAsyncFunctionReturnTypeFromUnion.types │ ├── contextuallyTypeCommaOperator01.js │ ├── contextuallyTypeCommaOperator01.symbols │ ├── contextuallyTypeCommaOperator01.types │ ├── contextuallyTypeCommaOperator02.errors.txt │ ├── contextuallyTypeCommaOperator02.js │ ├── contextuallyTypeCommaOperator02.symbols │ ├── contextuallyTypeCommaOperator02.types │ ├── contextuallyTypeCommaOperator03.errors.txt │ ├── contextuallyTypeCommaOperator03.js │ ├── contextuallyTypeCommaOperator03.symbols │ ├── contextuallyTypeCommaOperator03.types │ ├── contextuallyTypeGeneratorReturnTypeFromUnion.symbols │ ├── contextuallyTypeGeneratorReturnTypeFromUnion.types │ ├── contextuallyTypeLogicalAnd01.js │ ├── contextuallyTypeLogicalAnd01.symbols │ ├── contextuallyTypeLogicalAnd01.types │ ├── contextuallyTypeLogicalAnd02.errors.txt │ ├── contextuallyTypeLogicalAnd02.js │ ├── contextuallyTypeLogicalAnd02.symbols │ ├── contextuallyTypeLogicalAnd02.types │ ├── contextuallyTypeLogicalAnd03.errors.txt │ ├── contextuallyTypeLogicalAnd03.js │ ├── contextuallyTypeLogicalAnd03.symbols │ ├── contextuallyTypeLogicalAnd03.types │ ├── contextuallyTypedBindingInitializer.js │ ├── contextuallyTypedBindingInitializer.symbols │ ├── contextuallyTypedBindingInitializer.types │ ├── contextuallyTypedBindingInitializerNegative.errors.txt │ ├── contextuallyTypedBindingInitializerNegative.js │ ├── contextuallyTypedBindingInitializerNegative.symbols │ ├── contextuallyTypedBindingInitializerNegative.types │ ├── contextuallyTypedBooleanLiterals.js │ ├── contextuallyTypedBooleanLiterals.symbols │ ├── contextuallyTypedBooleanLiterals.types │ ├── contextuallyTypedByDiscriminableUnion.js │ ├── contextuallyTypedByDiscriminableUnion.symbols │ ├── contextuallyTypedByDiscriminableUnion.types │ ├── contextuallyTypedByDiscriminableUnion2.symbols │ ├── contextuallyTypedByDiscriminableUnion2.types │ ├── contextuallyTypedClassExpressionMethodDeclaration01.errors.txt │ ├── contextuallyTypedClassExpressionMethodDeclaration01.js │ ├── contextuallyTypedClassExpressionMethodDeclaration01.symbols │ ├── contextuallyTypedClassExpressionMethodDeclaration01.types │ ├── contextuallyTypedClassExpressionMethodDeclaration02.errors.txt │ ├── contextuallyTypedClassExpressionMethodDeclaration02.js │ ├── contextuallyTypedClassExpressionMethodDeclaration02.symbols │ ├── contextuallyTypedClassExpressionMethodDeclaration02.types │ ├── contextuallyTypedFunctionExpressionsAndReturnAnnotations.js │ ├── contextuallyTypedFunctionExpressionsAndReturnAnnotations.symbols │ ├── contextuallyTypedFunctionExpressionsAndReturnAnnotations.types │ ├── contextuallyTypedGenericAssignment.js │ ├── contextuallyTypedGenericAssignment.symbols │ ├── contextuallyTypedGenericAssignment.types │ ├── contextuallyTypedIife.js │ ├── contextuallyTypedIife.symbols │ ├── contextuallyTypedIife.types │ ├── contextuallyTypedIifeStrict.errors.txt │ ├── contextuallyTypedIifeStrict.js │ ├── contextuallyTypedIifeStrict.symbols │ ├── contextuallyTypedIifeStrict.types │ ├── contextuallyTypedJsxAttribute.js │ ├── contextuallyTypedJsxAttribute.symbols │ ├── contextuallyTypedJsxAttribute.types │ ├── contextuallyTypedJsxAttribute2.symbols │ ├── contextuallyTypedJsxAttribute2.types │ ├── contextuallyTypedJsxChildren.symbols │ ├── contextuallyTypedJsxChildren.types │ ├── contextuallyTypedJsxChildren2.symbols │ ├── contextuallyTypedJsxChildren2.types │ ├── contextuallyTypedObjectLiteralMethodDeclaration01.js │ ├── contextuallyTypedObjectLiteralMethodDeclaration01.symbols │ ├── contextuallyTypedObjectLiteralMethodDeclaration01.types │ ├── contextuallyTypedOptionalProperty(exactoptionalpropertytypes=false).errors.txt │ ├── contextuallyTypedOptionalProperty(exactoptionalpropertytypes=false).symbols │ ├── contextuallyTypedOptionalProperty(exactoptionalpropertytypes=false).types │ ├── contextuallyTypedOptionalProperty(exactoptionalpropertytypes=true).symbols │ ├── contextuallyTypedOptionalProperty(exactoptionalpropertytypes=true).types │ ├── contextuallyTypedParametersOptionalInJSDoc.errors.txt │ ├── contextuallyTypedParametersOptionalInJSDoc.symbols │ ├── contextuallyTypedParametersOptionalInJSDoc.types │ ├── contextuallyTypedParametersWithInitializers1.errors.txt │ ├── contextuallyTypedParametersWithInitializers1.js │ ├── contextuallyTypedParametersWithInitializers1.symbols │ ├── contextuallyTypedParametersWithInitializers1.types │ ├── contextuallyTypedParametersWithInitializers2.symbols │ ├── contextuallyTypedParametersWithInitializers2.types │ ├── contextuallyTypedParametersWithInitializers3.symbols │ ├── contextuallyTypedParametersWithInitializers3.types │ ├── contextuallyTypedParametersWithInitializers4.symbols │ ├── contextuallyTypedParametersWithInitializers4.types │ ├── contextuallyTypedParametersWithQuestionToken.errors.txt │ ├── contextuallyTypedParametersWithQuestionToken.symbols │ ├── contextuallyTypedParametersWithQuestionToken.types │ ├── contextuallyTypedStringLiteralsInJsxAttributes01.errors.txt │ ├── contextuallyTypedStringLiteralsInJsxAttributes01.js │ ├── contextuallyTypedStringLiteralsInJsxAttributes01.symbols │ ├── contextuallyTypedStringLiteralsInJsxAttributes01.types │ ├── contextuallyTypedStringLiteralsInJsxAttributes02.errors.txt │ ├── contextuallyTypedStringLiteralsInJsxAttributes02.js │ ├── contextuallyTypedStringLiteralsInJsxAttributes02.symbols │ ├── contextuallyTypedStringLiteralsInJsxAttributes02.types │ ├── contextuallyTypedSymbolNamedProperties.js │ ├── contextuallyTypedSymbolNamedProperties.symbols │ ├── contextuallyTypedSymbolNamedProperties.types │ ├── contextuallyTypingOrOperator.errors.txt │ ├── contextuallyTypingOrOperator.js │ ├── contextuallyTypingOrOperator.symbols │ ├── contextuallyTypingOrOperator.types │ ├── contextuallyTypingOrOperator2.errors.txt │ ├── contextuallyTypingOrOperator2.js │ ├── contextuallyTypingOrOperator2.symbols │ ├── contextuallyTypingOrOperator2.types │ ├── contextuallyTypingOrOperator3.js │ ├── contextuallyTypingOrOperator3.symbols │ ├── contextuallyTypingOrOperator3.types │ ├── contextuallyTypingRestParameters.errors.txt │ ├── contextuallyTypingRestParameters.js │ ├── contextuallyTypingRestParameters.symbols │ ├── contextuallyTypingRestParameters.types │ ├── continueInIterationStatement1.js │ ├── continueInIterationStatement1.symbols │ ├── continueInIterationStatement1.types │ ├── continueInIterationStatement2.js │ ├── continueInIterationStatement2.symbols │ ├── continueInIterationStatement2.types │ ├── continueInIterationStatement3.js │ ├── continueInIterationStatement3.symbols │ ├── continueInIterationStatement3.types │ ├── continueInIterationStatement4.errors.txt │ ├── continueInIterationStatement4.js │ ├── continueInIterationStatement4.symbols │ ├── continueInIterationStatement4.types │ ├── continueInLoopsWithCapturedBlockScopedBindings1(target=es2015).js │ ├── continueInLoopsWithCapturedBlockScopedBindings1(target=es2015).symbols │ ├── continueInLoopsWithCapturedBlockScopedBindings1(target=es2015).types │ ├── continueInLoopsWithCapturedBlockScopedBindings1(target=es5).errors.txt │ ├── continueInLoopsWithCapturedBlockScopedBindings1(target=es5).js │ ├── continueInLoopsWithCapturedBlockScopedBindings1(target=es5).symbols │ ├── continueInLoopsWithCapturedBlockScopedBindings1(target=es5).types │ ├── continueLabel.js │ ├── continueLabel.symbols │ ├── continueLabel.types │ ├── continueNotInIterationStatement1.errors.txt │ ├── continueNotInIterationStatement1.js │ ├── continueNotInIterationStatement1.symbols │ ├── continueNotInIterationStatement1.types │ ├── continueNotInIterationStatement2.errors.txt │ ├── continueNotInIterationStatement2.js │ ├── continueNotInIterationStatement2.symbols │ ├── continueNotInIterationStatement2.types │ ├── continueNotInIterationStatement3.errors.txt │ ├── continueNotInIterationStatement3.js │ ├── continueNotInIterationStatement3.symbols │ ├── continueNotInIterationStatement3.types │ ├── continueNotInIterationStatement4.errors.txt │ ├── continueNotInIterationStatement4.js │ ├── continueNotInIterationStatement4.symbols │ ├── continueNotInIterationStatement4.types │ ├── continueStatementInternalComments.js │ ├── continueStatementInternalComments.symbols │ ├── continueStatementInternalComments.types │ ├── continueTarget1.errors.txt │ ├── continueTarget1.js │ ├── continueTarget1.symbols │ ├── continueTarget1.types │ ├── continueTarget2.js │ ├── continueTarget2.symbols │ ├── continueTarget2.types │ ├── continueTarget3.js │ ├── continueTarget3.symbols │ ├── continueTarget3.types │ ├── continueTarget4.js │ ├── continueTarget4.symbols │ ├── continueTarget4.types │ ├── continueTarget5.errors.txt │ ├── continueTarget5.js │ ├── continueTarget5.symbols │ ├── continueTarget5.types │ ├── continueTarget6.errors.txt │ ├── continueTarget6.js │ ├── continueTarget6.symbols │ ├── continueTarget6.types │ ├── contravariantInferenceAndTypeGuard.js │ ├── contravariantInferenceAndTypeGuard.symbols │ ├── contravariantInferenceAndTypeGuard.types │ ├── contravariantOnlyInferenceFromAnnotatedFunction.symbols │ ├── contravariantOnlyInferenceFromAnnotatedFunction.types │ ├── contravariantOnlyInferenceFromAnnotatedFunctionJs.symbols │ ├── contravariantOnlyInferenceFromAnnotatedFunctionJs.types │ ├── contravariantOnlyInferenceWithAnnotatedOptionalParameter.symbols │ ├── contravariantOnlyInferenceWithAnnotatedOptionalParameter.types │ ├── contravariantOnlyInferenceWithAnnotatedOptionalParameterJs.symbols │ ├── contravariantOnlyInferenceWithAnnotatedOptionalParameterJs.types │ ├── contravariantTypeAliasInference.js │ ├── contravariantTypeAliasInference.symbols │ ├── contravariantTypeAliasInference.types │ ├── controlFlowAliasedDiscriminants.errors.txt │ ├── controlFlowAliasedDiscriminants.js │ ├── controlFlowAliasedDiscriminants.symbols │ ├── controlFlowAliasedDiscriminants.types │ ├── controlFlowAliasing.errors.txt │ ├── controlFlowAliasing.js │ ├── controlFlowAliasing.symbols │ ├── controlFlowAliasing.types │ ├── controlFlowAliasing2.symbols │ ├── controlFlowAliasing2.types │ ├── controlFlowAliasingCatchVariables(useunknownincatchvariables=false).js │ ├── controlFlowAliasingCatchVariables(useunknownincatchvariables=false).symbols │ ├── controlFlowAliasingCatchVariables(useunknownincatchvariables=false).types │ ├── controlFlowAliasingCatchVariables(useunknownincatchvariables=true).errors.txt │ ├── controlFlowAliasingCatchVariables(useunknownincatchvariables=true).js │ ├── controlFlowAliasingCatchVariables(useunknownincatchvariables=true).symbols │ ├── controlFlowAliasingCatchVariables(useunknownincatchvariables=true).types │ ├── controlFlowAnalysisOnBareThisKeyword.js │ ├── controlFlowAnalysisOnBareThisKeyword.symbols │ ├── controlFlowAnalysisOnBareThisKeyword.types │ ├── controlFlowArrayErrors.errors.txt │ ├── controlFlowArrayErrors.js │ ├── controlFlowArrayErrors.symbols │ ├── controlFlowArrayErrors.types │ ├── controlFlowArrays.js │ ├── controlFlowArrays.symbols │ ├── controlFlowArrays.types │ ├── controlFlowAssignmentExpression.js │ ├── controlFlowAssignmentExpression.symbols │ ├── controlFlowAssignmentExpression.types │ ├── controlFlowAssignmentPatternOrder.symbols │ ├── controlFlowAssignmentPatternOrder.types │ ├── controlFlowAutoAccessor1.errors.txt │ ├── controlFlowAutoAccessor1.js │ ├── controlFlowAutoAccessor1.symbols │ ├── controlFlowAutoAccessor1.types │ ├── controlFlowBinaryAndExpression.errors.txt │ ├── controlFlowBinaryAndExpression.js │ ├── controlFlowBinaryAndExpression.symbols │ ├── controlFlowBinaryAndExpression.types │ ├── controlFlowBinaryOrExpression.errors.txt │ ├── controlFlowBinaryOrExpression.js │ ├── controlFlowBinaryOrExpression.symbols │ ├── controlFlowBinaryOrExpression.types │ ├── controlFlowBindingElement.js │ ├── controlFlowBindingElement.symbols │ ├── controlFlowBindingElement.types │ ├── controlFlowBindingPatternOrder.errors.txt │ ├── controlFlowBindingPatternOrder.symbols │ ├── controlFlowBindingPatternOrder.types │ ├── controlFlowBreakContinueWithLabel.js │ ├── controlFlowBreakContinueWithLabel.symbols │ ├── controlFlowBreakContinueWithLabel.types │ ├── controlFlowCaching.js │ ├── controlFlowCaching.symbols │ ├── controlFlowCaching.types │ ├── controlFlowCommaExpressionAssertionMultiple.js │ ├── controlFlowCommaExpressionAssertionMultiple.symbols │ ├── controlFlowCommaExpressionAssertionMultiple.types │ ├── controlFlowCommaExpressionAssertionWithinTernary.js │ ├── controlFlowCommaExpressionAssertionWithinTernary.symbols │ ├── controlFlowCommaExpressionAssertionWithinTernary.types │ ├── controlFlowCommaExpressionFunctionCall.js │ ├── controlFlowCommaExpressionFunctionCall.symbols │ ├── controlFlowCommaExpressionFunctionCall.types │ ├── controlFlowCommaOperator.js │ ├── controlFlowCommaOperator.symbols │ ├── controlFlowCommaOperator.types │ ├── controlFlowComputedPropertyNames.symbols │ ├── controlFlowComputedPropertyNames.types │ ├── controlFlowConditionalExpression.errors.txt │ ├── controlFlowConditionalExpression.js │ ├── controlFlowConditionalExpression.symbols │ ├── controlFlowConditionalExpression.types │ ├── controlFlowDeleteOperator.errors.txt │ ├── controlFlowDeleteOperator.js │ ├── controlFlowDeleteOperator.symbols │ ├── controlFlowDeleteOperator.types │ ├── controlFlowDestructuringDeclaration.js │ ├── controlFlowDestructuringDeclaration.symbols │ ├── controlFlowDestructuringDeclaration.types │ ├── controlFlowDestructuringLoop.js │ ├── controlFlowDestructuringLoop.symbols │ ├── controlFlowDestructuringLoop.types │ ├── controlFlowDestructuringParameters.js │ ├── controlFlowDestructuringParameters.symbols │ ├── controlFlowDestructuringParameters.types │ ├── controlFlowDestructuringVariablesInTryCatch.errors.txt │ ├── controlFlowDestructuringVariablesInTryCatch.js │ ├── controlFlowDestructuringVariablesInTryCatch.symbols │ ├── controlFlowDestructuringVariablesInTryCatch.types │ ├── controlFlowDoWhileStatement.errors.txt │ ├── controlFlowDoWhileStatement.js │ ├── controlFlowDoWhileStatement.symbols │ ├── controlFlowDoWhileStatement.types │ ├── controlFlowElementAccess.js │ ├── controlFlowElementAccess.symbols │ ├── controlFlowElementAccess.types │ ├── controlFlowElementAccess2.js │ ├── controlFlowElementAccess2.symbols │ ├── controlFlowElementAccess2.types │ ├── controlFlowElementAccessNoCrash1.symbols │ ├── controlFlowElementAccessNoCrash1.types │ ├── controlFlowFavorAssertedTypeThroughTypePredicate.symbols │ ├── controlFlowFavorAssertedTypeThroughTypePredicate.types │ ├── controlFlowFinallyNoCatchAssignments.js │ ├── controlFlowFinallyNoCatchAssignments.symbols │ ├── controlFlowFinallyNoCatchAssignments.types │ ├── controlFlowForCatchAndFinally.js │ ├── controlFlowForCatchAndFinally.symbols │ ├── controlFlowForCatchAndFinally.types │ ├── controlFlowForCompoundAssignmentToThisMember.js │ ├── controlFlowForCompoundAssignmentToThisMember.symbols │ ├── controlFlowForCompoundAssignmentToThisMember.types │ ├── controlFlowForFunctionLike1.errors.txt │ ├── controlFlowForFunctionLike1.symbols │ ├── controlFlowForFunctionLike1.types │ ├── controlFlowForInStatement.errors.txt │ ├── controlFlowForInStatement.js │ ├── controlFlowForInStatement.symbols │ ├── controlFlowForInStatement.types │ ├── controlFlowForInStatement2.js │ ├── controlFlowForInStatement2.symbols │ ├── controlFlowForInStatement2.types │ ├── controlFlowForIndexSignatures.errors.txt │ ├── controlFlowForIndexSignatures.js │ ├── controlFlowForIndexSignatures.symbols │ ├── controlFlowForIndexSignatures.types │ ├── controlFlowForOfStatement.js │ ├── controlFlowForOfStatement.symbols │ ├── controlFlowForOfStatement.types │ ├── controlFlowForStatement.errors.txt │ ├── controlFlowForStatement.js │ ├── controlFlowForStatement.symbols │ ├── controlFlowForStatement.types │ ├── controlFlowForStatementContinueIntoIncrementor1.errors.txt │ ├── controlFlowForStatementContinueIntoIncrementor1.symbols │ ├── controlFlowForStatementContinueIntoIncrementor1.types │ ├── controlFlowFunctionLikeCircular1.errors.txt │ ├── controlFlowFunctionLikeCircular1.symbols │ ├── controlFlowFunctionLikeCircular1.types │ ├── controlFlowGenericTypes.errors.txt │ ├── controlFlowGenericTypes.js │ ├── controlFlowGenericTypes.symbols │ ├── controlFlowGenericTypes.types │ ├── controlFlowIIFE.errors.txt │ ├── controlFlowIIFE.js │ ├── controlFlowIIFE.symbols │ ├── controlFlowIIFE.types │ ├── controlFlowIfStatement.js │ ├── controlFlowIfStatement.symbols │ ├── controlFlowIfStatement.types │ ├── controlFlowInOperator.js │ ├── controlFlowInOperator.symbols │ ├── controlFlowInOperator.types │ ├── controlFlowInitializedDestructuringVariables.js │ ├── controlFlowInitializedDestructuringVariables.symbols │ ├── controlFlowInitializedDestructuringVariables.types │ ├── controlFlowInstanceOfGuardPrimitives.js │ ├── controlFlowInstanceOfGuardPrimitives.symbols │ ├── controlFlowInstanceOfGuardPrimitives.types │ ├── controlFlowInstanceof.symbols │ ├── controlFlowInstanceof.types │ ├── controlFlowInstanceofExtendsFunction.js │ ├── controlFlowInstanceofExtendsFunction.symbols │ ├── controlFlowInstanceofExtendsFunction.types │ ├── controlFlowInstanceofWithSymbolHasInstance.symbols │ ├── controlFlowInstanceofWithSymbolHasInstance.types │ ├── controlFlowIteration.js │ ├── controlFlowIteration.symbols │ ├── controlFlowIteration.types │ ├── controlFlowIterationErrors.errors.txt │ ├── controlFlowIterationErrors.js │ ├── controlFlowIterationErrors.symbols │ ├── controlFlowIterationErrors.types │ ├── controlFlowIterationErrorsAsync.errors.txt │ ├── controlFlowIterationErrorsAsync.symbols │ ├── controlFlowIterationErrorsAsync.types │ ├── controlFlowJavascript.errors.txt │ ├── controlFlowJavascript.js │ ├── controlFlowJavascript.symbols │ ├── controlFlowJavascript.types │ ├── controlFlowLoopAnalysis.errors.txt │ ├── controlFlowLoopAnalysis.js │ ├── controlFlowLoopAnalysis.symbols │ ├── controlFlowLoopAnalysis.types │ ├── controlFlowManyCallExpressionStatementsPerf.js │ ├── controlFlowManyCallExpressionStatementsPerf.symbols │ ├── controlFlowManyCallExpressionStatementsPerf.types │ ├── controlFlowManyConsecutiveConditionsNoTimeout.js │ ├── controlFlowManyConsecutiveConditionsNoTimeout.symbols │ ├── controlFlowManyConsecutiveConditionsNoTimeout.types │ ├── controlFlowNoImplicitAny.errors.txt │ ├── controlFlowNoImplicitAny.js │ ├── controlFlowNoImplicitAny.symbols │ ├── controlFlowNoImplicitAny.types │ ├── controlFlowNoIntermediateErrors.symbols │ ├── controlFlowNoIntermediateErrors.types │ ├── controlFlowNullTypeAndLiteral.errors.txt │ ├── controlFlowNullTypeAndLiteral.js │ ├── controlFlowNullTypeAndLiteral.symbols │ ├── controlFlowNullTypeAndLiteral.types │ ├── controlFlowNullishCoalesce.errors.txt │ ├── controlFlowNullishCoalesce.js │ ├── controlFlowNullishCoalesce.symbols │ ├── controlFlowNullishCoalesce.types │ ├── controlFlowOptionalChain.errors.txt │ ├── controlFlowOptionalChain.js │ ├── controlFlowOptionalChain.symbols │ ├── controlFlowOptionalChain.types │ ├── controlFlowOptionalChain2.js │ ├── controlFlowOptionalChain2.symbols │ ├── controlFlowOptionalChain2.types │ ├── controlFlowOptionalChain3.errors.txt │ ├── controlFlowOptionalChain3.symbols │ ├── controlFlowOptionalChain3.types │ ├── controlFlowOuterVariable.js │ ├── controlFlowOuterVariable.symbols │ ├── controlFlowOuterVariable.types │ ├── controlFlowParameter.js │ ├── controlFlowParameter.symbols │ ├── controlFlowParameter.types │ ├── controlFlowPrivateClassField.js │ ├── controlFlowPrivateClassField.symbols │ ├── controlFlowPrivateClassField.types │ ├── controlFlowPropertyDeclarations.js │ ├── controlFlowPropertyDeclarations.symbols │ ├── controlFlowPropertyDeclarations.types │ ├── controlFlowPropertyInitializer.js │ ├── controlFlowPropertyInitializer.symbols │ ├── controlFlowPropertyInitializer.types │ ├── controlFlowSelfReferentialLoop.errors.txt │ ├── controlFlowSelfReferentialLoop.js │ ├── controlFlowSelfReferentialLoop.symbols │ ├── controlFlowSelfReferentialLoop.types │ ├── controlFlowStringIndex.js │ ├── controlFlowStringIndex.symbols │ ├── controlFlowStringIndex.types │ ├── controlFlowSuperPropertyAccess.js │ ├── controlFlowSuperPropertyAccess.symbols │ ├── controlFlowSuperPropertyAccess.types │ ├── controlFlowTruthiness.js │ ├── controlFlowTruthiness.symbols │ ├── controlFlowTruthiness.types │ ├── controlFlowTypeofObject.errors.txt │ ├── controlFlowTypeofObject.js │ ├── controlFlowTypeofObject.symbols │ ├── controlFlowTypeofObject.types │ ├── controlFlowUnionContainingTypeParameter1.symbols │ ├── controlFlowUnionContainingTypeParameter1.types │ ├── controlFlowWhileStatement.errors.txt │ ├── controlFlowWhileStatement.js │ ├── controlFlowWhileStatement.symbols │ ├── controlFlowWhileStatement.types │ ├── controlFlowWithIncompleteTypes.js │ ├── controlFlowWithIncompleteTypes.symbols │ ├── controlFlowWithIncompleteTypes.types │ ├── controlFlowWithTemplateLiterals.js │ ├── controlFlowWithTemplateLiterals.symbols │ ├── controlFlowWithTemplateLiterals.types │ ├── convertClassExpressionToFunctionFromObjectProperty1(target=es2015).js │ ├── convertClassExpressionToFunctionFromObjectProperty1(target=es2015).symbols │ ├── convertClassExpressionToFunctionFromObjectProperty1(target=es2015).types │ ├── convertClassExpressionToFunctionFromObjectProperty1(target=es5).errors.txt │ ├── convertClassExpressionToFunctionFromObjectProperty1(target=es5).js │ ├── convertClassExpressionToFunctionFromObjectProperty1(target=es5).symbols │ ├── convertClassExpressionToFunctionFromObjectProperty1(target=es5).types │ ├── convertClassExpressionToFunctionFromObjectProperty2(target=es2015).js │ ├── convertClassExpressionToFunctionFromObjectProperty2(target=es2015).symbols │ ├── convertClassExpressionToFunctionFromObjectProperty2(target=es2015).types │ ├── convertClassExpressionToFunctionFromObjectProperty2(target=es5).errors.txt │ ├── convertClassExpressionToFunctionFromObjectProperty2(target=es5).js │ ├── convertClassExpressionToFunctionFromObjectProperty2(target=es5).symbols │ ├── convertClassExpressionToFunctionFromObjectProperty2(target=es5).types │ ├── convertKeywords.js │ ├── convertKeywords.symbols │ ├── convertKeywords.types │ ├── convertKeywordsYes(alwaysstrict=false).errors.txt │ ├── convertKeywordsYes(alwaysstrict=false).js │ ├── convertKeywordsYes(alwaysstrict=false).symbols │ ├── convertKeywordsYes(alwaysstrict=false).types │ ├── convertKeywordsYes(alwaysstrict=true).errors.txt │ ├── convertKeywordsYes(alwaysstrict=true).js │ ├── convertKeywordsYes(alwaysstrict=true).symbols │ ├── convertKeywordsYes(alwaysstrict=true).types │ ├── convertToAsyncFunction/ │ │ ├── convertToAsyncFunction_ArrowFunction.ts │ │ ├── convertToAsyncFunction_ArrowFunctionNoAnnotation.js │ │ ├── convertToAsyncFunction_ArrowFunctionNoAnnotation.ts │ │ ├── convertToAsyncFunction_Catch.ts │ │ ├── convertToAsyncFunction_CatchFollowedByThen.js │ │ ├── convertToAsyncFunction_CatchFollowedByThen.ts │ │ ├── convertToAsyncFunction_CatchFollowedByThenMatchingTypes01.ts │ │ ├── convertToAsyncFunction_CatchFollowedByThenMatchingTypes01NoAnnotations.js │ │ ├── convertToAsyncFunction_CatchFollowedByThenMatchingTypes01NoAnnotations.ts │ │ ├── convertToAsyncFunction_CatchFollowedByThenMatchingTypes02.ts │ │ ├── convertToAsyncFunction_CatchFollowedByThenMatchingTypes02NoAnnotations.js │ │ ├── convertToAsyncFunction_CatchFollowedByThenMatchingTypes02NoAnnotations.ts │ │ ├── convertToAsyncFunction_CatchFollowedByThenMismatchTypes01.js │ │ ├── convertToAsyncFunction_CatchFollowedByThenMismatchTypes01.ts │ │ ├── convertToAsyncFunction_CatchFollowedByThenMismatchTypes02.ts │ │ ├── convertToAsyncFunction_CatchFollowedByThenMismatchTypes02NoAnnotations.js │ │ ├── convertToAsyncFunction_CatchFollowedByThenMismatchTypes02NoAnnotations.ts │ │ ├── convertToAsyncFunction_CatchFollowedByThenMismatchTypes03.js │ │ ├── convertToAsyncFunction_CatchFollowedByThenMismatchTypes03.ts │ │ ├── convertToAsyncFunction_CatchFollowedByThenMismatchTypes04.ts │ │ ├── convertToAsyncFunction_CatchNoBrackets.ts │ │ ├── convertToAsyncFunction_CatchRef.ts │ │ ├── convertToAsyncFunction_Conditional2.js │ │ ├── convertToAsyncFunction_Conditional2.ts │ │ ├── convertToAsyncFunction_Conditionals.js │ │ ├── convertToAsyncFunction_Conditionals.ts │ │ ├── convertToAsyncFunction_IgnoreArgs1.ts │ │ ├── convertToAsyncFunction_IgnoreArgs2.ts │ │ ├── convertToAsyncFunction_IgnoreArgs3.ts │ │ ├── convertToAsyncFunction_IgnoreArgs4.js │ │ ├── convertToAsyncFunction_IgnoreArgs4.ts │ │ ├── convertToAsyncFunction_InnerPromise.ts │ │ ├── convertToAsyncFunction_InnerPromiseRet.ts │ │ ├── convertToAsyncFunction_InnerPromiseRetBinding1.ts │ │ ├── convertToAsyncFunction_InnerPromiseRetBinding2.ts │ │ ├── convertToAsyncFunction_InnerPromiseRetBinding3.ts │ │ ├── convertToAsyncFunction_InnerPromiseRetBinding4.ts │ │ ├── convertToAsyncFunction_InnerPromiseSimple.ts │ │ ├── convertToAsyncFunction_InnerVarNameConflict.ts │ │ ├── convertToAsyncFunction_LocalReturn.js │ │ ├── convertToAsyncFunction_LocalReturn.ts │ │ ├── convertToAsyncFunction_Loop.js │ │ ├── convertToAsyncFunction_Loop.ts │ │ ├── convertToAsyncFunction_Method.ts │ │ ├── convertToAsyncFunction_MultipleCatches.ts │ │ ├── convertToAsyncFunction_MultipleReturns1.ts │ │ ├── convertToAsyncFunction_MultipleReturns2.ts │ │ ├── convertToAsyncFunction_MultipleThens.ts │ │ ├── convertToAsyncFunction_MultipleThensSameVarName.ts │ │ ├── convertToAsyncFunction_NestedFunctionRightLocation.js │ │ ├── convertToAsyncFunction_NestedFunctionRightLocation.ts │ │ ├── convertToAsyncFunction_NoBrackets.ts │ │ ├── convertToAsyncFunction_NoCatchHandler.js │ │ ├── convertToAsyncFunction_NoCatchHandler.ts │ │ ├── convertToAsyncFunction_NoRes.ts │ │ ├── convertToAsyncFunction_NoRes2.ts │ │ ├── convertToAsyncFunction_NoRes3.ts │ │ ├── convertToAsyncFunction_NoRes4.js │ │ ├── convertToAsyncFunction_NoRes4.ts │ │ ├── convertToAsyncFunction_OutermostOnlyFailure.ts │ │ ├── convertToAsyncFunction_OutermostOnlySuccess.js │ │ ├── convertToAsyncFunction_OutermostOnlySuccess.ts │ │ ├── convertToAsyncFunction_Param2.ts │ │ ├── convertToAsyncFunction_ParameterNameCollision.ts │ │ ├── convertToAsyncFunction_PromiseAllAndThen1.js │ │ ├── convertToAsyncFunction_PromiseAllAndThen1.ts │ │ ├── convertToAsyncFunction_PromiseAllAndThen2.js │ │ ├── convertToAsyncFunction_PromiseAllAndThen2.ts │ │ ├── convertToAsyncFunction_PromiseAllAndThen3.js │ │ ├── convertToAsyncFunction_PromiseAllAndThen3.ts │ │ ├── convertToAsyncFunction_PromiseAllAndThen4.js │ │ ├── convertToAsyncFunction_PromiseAllAndThen4.ts │ │ ├── convertToAsyncFunction_PromiseCallInner.js │ │ ├── convertToAsyncFunction_PromiseCallInner.ts │ │ ├── convertToAsyncFunction_PromiseDotAll.ts │ │ ├── convertToAsyncFunction_ResRef.ts │ │ ├── convertToAsyncFunction_ResRef1.ts │ │ ├── convertToAsyncFunction_ResRef2.ts │ │ ├── convertToAsyncFunction_ResRef3.ts │ │ ├── convertToAsyncFunction_ResRefNoReturnVal.ts │ │ ├── convertToAsyncFunction_ResRefNoReturnVal1.ts │ │ ├── convertToAsyncFunction_Return1.ts │ │ ├── convertToAsyncFunction_Return2.ts │ │ ├── convertToAsyncFunction_Return3.ts │ │ ├── convertToAsyncFunction_Scope1.ts │ │ ├── convertToAsyncFunction_Scope2.ts │ │ ├── convertToAsyncFunction_Scope3.js │ │ ├── convertToAsyncFunction_Scope3.ts │ │ ├── convertToAsyncFunction_TernaryConditional.js │ │ ├── convertToAsyncFunction_TernaryConditional.ts │ │ ├── convertToAsyncFunction_UntypedFunction.js │ │ ├── convertToAsyncFunction_UntypedFunction.ts │ │ ├── convertToAsyncFunction_arrayBindingPattern.ts │ │ ├── convertToAsyncFunction_arrayBindingPatternRename.ts │ │ ├── convertToAsyncFunction_basic.ts │ │ ├── convertToAsyncFunction_basicNoReturnTypeAnnotation.js │ │ ├── convertToAsyncFunction_basicNoReturnTypeAnnotation.ts │ │ ├── convertToAsyncFunction_basicWithComments.ts │ │ ├── convertToAsyncFunction_bindingPattern.js │ │ ├── convertToAsyncFunction_bindingPattern.ts │ │ ├── convertToAsyncFunction_bindingPatternNameCollision.js │ │ ├── convertToAsyncFunction_bindingPatternNameCollision.ts │ │ ├── convertToAsyncFunction_callbackArgument.ts │ │ ├── convertToAsyncFunction_callbackReturnsFixablePromise.js │ │ ├── convertToAsyncFunction_callbackReturnsFixablePromise.ts │ │ ├── convertToAsyncFunction_callbackReturnsPromise.js │ │ ├── convertToAsyncFunction_callbackReturnsPromise.ts │ │ ├── convertToAsyncFunction_callbackReturnsPromiseInBlock.js │ │ ├── convertToAsyncFunction_callbackReturnsPromiseInBlock.ts │ │ ├── convertToAsyncFunction_callbackReturnsPromiseLastInChain.js │ │ ├── convertToAsyncFunction_callbackReturnsPromiseLastInChain.ts │ │ ├── convertToAsyncFunction_callbackReturnsRejectedPromiseInTryBlock.js │ │ ├── convertToAsyncFunction_callbackReturnsRejectedPromiseInTryBlock.ts │ │ ├── convertToAsyncFunction_catchBlockUniqueParams.js │ │ ├── convertToAsyncFunction_catchBlockUniqueParams.ts │ │ ├── convertToAsyncFunction_catchBlockUniqueParamsBindingPattern.js │ │ ├── convertToAsyncFunction_catchBlockUniqueParamsBindingPattern.ts │ │ ├── convertToAsyncFunction_catchNoArguments.ts │ │ ├── convertToAsyncFunction_catchTypeArgument1.ts │ │ ├── convertToAsyncFunction_chainedThenCatchThen.ts │ │ ├── convertToAsyncFunction_decoratedMethod.ts │ │ ├── convertToAsyncFunction_decoratedMethodWithModifier.ts │ │ ├── convertToAsyncFunction_decoratedMethodWithMultipleLineComment.ts │ │ ├── convertToAsyncFunction_decoratedMethodWithSingleLineComment.ts │ │ ├── convertToAsyncFunction_emptyCatch1.js │ │ ├── convertToAsyncFunction_emptyCatch1.ts │ │ ├── convertToAsyncFunction_emptyCatch2.js │ │ ├── convertToAsyncFunction_emptyCatch2.ts │ │ ├── convertToAsyncFunction_exportModifier.js │ │ ├── convertToAsyncFunction_exportModifier.ts │ │ ├── convertToAsyncFunction_finally.ts │ │ ├── convertToAsyncFunction_finallyNoArguments.ts │ │ ├── convertToAsyncFunction_finallyNull.ts │ │ ├── convertToAsyncFunction_finallyUndefined.ts │ │ ├── convertToAsyncFunction_importedFunction.js │ │ ├── convertToAsyncFunction_importedFunction.ts │ │ ├── convertToAsyncFunction_nestedPromises.js │ │ ├── convertToAsyncFunction_nestedPromises.ts │ │ ├── convertToAsyncFunction_noArgs1.ts │ │ ├── convertToAsyncFunction_noArgs2.ts │ │ ├── convertToAsyncFunction_objectBindingPattern.ts │ │ ├── convertToAsyncFunction_objectBindingPatternRename.ts │ │ ├── convertToAsyncFunction_runEffectfulContinuation.js │ │ ├── convertToAsyncFunction_runEffectfulContinuation.ts │ │ ├── convertToAsyncFunction_simpleFunctionExpression.js │ │ ├── convertToAsyncFunction_simpleFunctionExpression.ts │ │ ├── convertToAsyncFunction_simpleFunctionExpressionAssignedToBindingPattern.js │ │ ├── convertToAsyncFunction_simpleFunctionExpressionAssignedToBindingPattern.ts │ │ ├── convertToAsyncFunction_simpleFunctionExpressionWithName.js │ │ ├── convertToAsyncFunction_simpleFunctionExpressionWithName.ts │ │ ├── convertToAsyncFunction_thenFinally.ts │ │ ├── convertToAsyncFunction_thenFinallyThen.ts │ │ ├── convertToAsyncFunction_thenNoArguments.ts │ │ ├── convertToAsyncFunction_thenTypeArgument1.ts │ │ ├── convertToAsyncFunction_thenTypeArgument2.ts │ │ └── convertToAsyncFunction_thenTypeArgument3.ts │ ├── copyrightWithNewLine1.errors.txt │ ├── copyrightWithNewLine1.js │ ├── copyrightWithNewLine1.symbols │ ├── copyrightWithNewLine1.types │ ├── copyrightWithoutNewLine1.errors.txt │ ├── copyrightWithoutNewLine1.js │ ├── copyrightWithoutNewLine1.symbols │ ├── copyrightWithoutNewLine1.types │ ├── correctOrderOfPromiseMethod.errors.txt │ ├── correctOrderOfPromiseMethod.js │ ├── correctOrderOfPromiseMethod.symbols │ ├── correctOrderOfPromiseMethod.types │ ├── correctlyMarkAliasAsReferences1.errors.txt │ ├── correctlyMarkAliasAsReferences1.js │ ├── correctlyMarkAliasAsReferences1.symbols │ ├── correctlyMarkAliasAsReferences1.types │ ├── correctlyMarkAliasAsReferences2.errors.txt │ ├── correctlyMarkAliasAsReferences2.js │ ├── correctlyMarkAliasAsReferences2.symbols │ ├── correctlyMarkAliasAsReferences2.types │ ├── correctlyMarkAliasAsReferences3.errors.txt │ ├── correctlyMarkAliasAsReferences3.js │ ├── correctlyMarkAliasAsReferences3.symbols │ ├── correctlyMarkAliasAsReferences3.types │ ├── correctlyMarkAliasAsReferences4.errors.txt │ ├── correctlyMarkAliasAsReferences4.js │ ├── correctlyMarkAliasAsReferences4.symbols │ ├── correctlyMarkAliasAsReferences4.types │ ├── correlatedUnions.js │ ├── correlatedUnions.symbols │ ├── correlatedUnions.types │ ├── corrupted.errors.txt │ ├── corrupted.js │ ├── corrupted.symbols │ ├── corrupted.types │ ├── couldNotSelectGenericOverload.errors.txt │ ├── couldNotSelectGenericOverload.js │ ├── couldNotSelectGenericOverload.symbols │ ├── couldNotSelectGenericOverload.types │ ├── covariance1.errors.txt │ ├── covariance1.js │ ├── covariance1.symbols │ ├── covariance1.types │ ├── covariantCallbacks.errors.txt │ ├── covariantCallbacks.js │ ├── covariantCallbacks.symbols │ ├── covariantCallbacks.types │ ├── crashDeclareGlobalTypeofExport.errors.txt │ ├── crashDeclareGlobalTypeofExport.symbols │ ├── crashDeclareGlobalTypeofExport.types │ ├── crashInEmitTokenWithComment.errors.txt │ ├── crashInEmitTokenWithComment.js │ ├── crashInGetTextOfComputedPropertyName.js │ ├── crashInGetTextOfComputedPropertyName.symbols │ ├── crashInGetTextOfComputedPropertyName.types │ ├── crashInResolveInterface.errors.txt │ ├── crashInResolveInterface.js │ ├── crashInResolveInterface.symbols │ ├── crashInResolveInterface.types │ ├── crashInYieldStarInAsyncFunction.errors.txt │ ├── crashInYieldStarInAsyncFunction.js │ ├── crashInYieldStarInAsyncFunction.symbols │ ├── crashInYieldStarInAsyncFunction.types │ ├── crashInresolveReturnStatement.js │ ├── crashInresolveReturnStatement.symbols │ ├── crashInresolveReturnStatement.types │ ├── crashInsourcePropertyIsRelatableToTargetProperty.errors.txt │ ├── crashInsourcePropertyIsRelatableToTargetProperty.js │ ├── crashInsourcePropertyIsRelatableToTargetProperty.symbols │ ├── crashInsourcePropertyIsRelatableToTargetProperty.types │ ├── crashIntypeCheckInvocationExpression.errors.txt │ ├── crashIntypeCheckInvocationExpression.js │ ├── crashIntypeCheckInvocationExpression.symbols │ ├── crashIntypeCheckInvocationExpression.types │ ├── crashIntypeCheckObjectCreationExpression.errors.txt │ ├── crashIntypeCheckObjectCreationExpression.js │ ├── crashIntypeCheckObjectCreationExpression.symbols │ ├── crashIntypeCheckObjectCreationExpression.types │ ├── crashOnMethodSignatures.errors.txt │ ├── crashOnMethodSignatures.js │ ├── crashOnMethodSignatures.symbols │ ├── crashOnMethodSignatures.types │ ├── crashRegressionTest.errors.txt │ ├── crashRegressionTest.js │ ├── crashRegressionTest.symbols │ ├── crashRegressionTest.types │ ├── createArray.errors.txt │ ├── createArray.js │ ├── createArray.symbols │ ├── createArray.types │ ├── ctsFileInEsnextHelpers.errors.txt │ ├── ctsFileInEsnextHelpers.js │ ├── curiousNestedConditionalEvaluationResult.js │ ├── curiousNestedConditionalEvaluationResult.symbols │ ├── curiousNestedConditionalEvaluationResult.types │ ├── customAsyncIterator.js │ ├── customAsyncIterator.symbols │ ├── customAsyncIterator.types │ ├── customConditions(resolvepackagejsonexports=false).js │ ├── customConditions(resolvepackagejsonexports=false).symbols │ ├── customConditions(resolvepackagejsonexports=false).trace.json │ ├── customConditions(resolvepackagejsonexports=false).types │ ├── customConditions(resolvepackagejsonexports=true).js │ ├── customConditions(resolvepackagejsonexports=true).symbols │ ├── customConditions(resolvepackagejsonexports=true).trace.json │ ├── customConditions(resolvepackagejsonexports=true).types │ ├── customEventDetail.errors.txt │ ├── customEventDetail.js │ ├── customEventDetail.symbols │ ├── customEventDetail.types │ ├── customTransforms/ │ │ ├── after.js │ │ ├── before+decorators.js │ │ ├── before.js │ │ ├── both.js │ │ ├── importDeclarationBeforeTransformElision.js │ │ ├── skipTriviaExternalSourceFiles.js │ │ └── sourceMapExternalSourceFiles.js │ ├── cyclicGenericTypeInstantiation.errors.txt │ ├── cyclicGenericTypeInstantiation.js │ ├── cyclicGenericTypeInstantiation.symbols │ ├── cyclicGenericTypeInstantiation.types │ ├── cyclicGenericTypeInstantiationInference.errors.txt │ ├── cyclicGenericTypeInstantiationInference.js │ ├── cyclicGenericTypeInstantiationInference.symbols │ ├── cyclicGenericTypeInstantiationInference.types │ ├── cyclicModuleImport.js │ ├── cyclicModuleImport.symbols │ ├── cyclicModuleImport.types │ ├── cyclicTypeInstantiation.errors.txt │ ├── cyclicTypeInstantiation.js │ ├── cyclicTypeInstantiation.symbols │ ├── cyclicTypeInstantiation.types │ ├── dataViewConstructor.errors.txt │ ├── dataViewConstructor.js │ ├── dataViewConstructor.symbols │ ├── dataViewConstructor.types │ ├── debugger.js │ ├── debugger.symbols │ ├── debugger.types │ ├── debuggerEmit.js │ ├── debuggerEmit.symbols │ ├── debuggerEmit.types │ ├── declFileAccessors(target=es2015).js │ ├── declFileAccessors(target=es2015).symbols │ ├── declFileAccessors(target=es2015).types │ ├── declFileAccessors(target=es5).errors.txt │ ├── declFileAccessors(target=es5).js │ ├── declFileAccessors(target=es5).symbols │ ├── declFileAccessors(target=es5).types │ ├── declFileAliasUseBeforeDeclaration.js │ ├── declFileAliasUseBeforeDeclaration.symbols │ ├── declFileAliasUseBeforeDeclaration.types │ ├── declFileAliasUseBeforeDeclaration2.js │ ├── declFileAliasUseBeforeDeclaration2.symbols │ ├── declFileAliasUseBeforeDeclaration2.types │ ├── declFileAmbientExternalModuleWithSingleExportedModule.js │ ├── declFileAmbientExternalModuleWithSingleExportedModule.symbols │ ├── declFileAmbientExternalModuleWithSingleExportedModule.types │ ├── declFileCallSignatures(target=es2015).js │ ├── declFileCallSignatures(target=es2015).symbols │ ├── declFileCallSignatures(target=es2015).types │ ├── declFileCallSignatures(target=es5).errors.txt │ ├── declFileCallSignatures(target=es5).js │ ├── declFileCallSignatures(target=es5).symbols │ ├── declFileCallSignatures(target=es5).types │ ├── declFileClassExtendsNull(target=es2015).js │ ├── declFileClassExtendsNull(target=es2015).symbols │ ├── declFileClassExtendsNull(target=es2015).types │ ├── declFileClassExtendsNull(target=es5).errors.txt │ ├── declFileClassExtendsNull(target=es5).js │ ├── declFileClassExtendsNull(target=es5).symbols │ ├── declFileClassExtendsNull(target=es5).types │ ├── declFileClassWithIndexSignature.js │ ├── declFileClassWithIndexSignature.symbols │ ├── declFileClassWithIndexSignature.types │ ├── declFileClassWithStaticMethodReturningConstructor.js │ ├── declFileClassWithStaticMethodReturningConstructor.symbols │ ├── declFileClassWithStaticMethodReturningConstructor.types │ ├── declFileConstructSignatures(target=es2015).js │ ├── declFileConstructSignatures(target=es2015).symbols │ ├── declFileConstructSignatures(target=es2015).types │ ├── declFileConstructSignatures(target=es5).errors.txt │ ├── declFileConstructSignatures(target=es5).js │ ├── declFileConstructSignatures(target=es5).symbols │ ├── declFileConstructSignatures(target=es5).types │ ├── declFileConstructors(target=es2015).js │ ├── declFileConstructors(target=es2015).symbols │ ├── declFileConstructors(target=es2015).types │ ├── declFileConstructors(target=es5).errors.txt │ ├── declFileConstructors(target=es5).js │ ├── declFileConstructors(target=es5).symbols │ ├── declFileConstructors(target=es5).types │ ├── declFileEmitDeclarationOnly.js │ ├── declFileEmitDeclarationOnly.symbols │ ├── declFileEmitDeclarationOnly.types │ ├── declFileEmitDeclarationOnlyError1.errors.txt │ ├── declFileEmitDeclarationOnlyError1.symbols │ ├── declFileEmitDeclarationOnlyError1.types │ ├── declFileEmitDeclarationOnlyError2.errors.txt │ ├── declFileEmitDeclarationOnlyError2.symbols │ ├── declFileEmitDeclarationOnlyError2.types │ ├── declFileEnumUsedAsValue.js │ ├── declFileEnumUsedAsValue.symbols │ ├── declFileEnumUsedAsValue.types │ ├── declFileEnums.js │ ├── declFileEnums.symbols │ ├── declFileEnums.types │ ├── declFileExportAssignmentImportInternalModule.js │ ├── declFileExportAssignmentImportInternalModule.symbols │ ├── declFileExportAssignmentImportInternalModule.types │ ├── declFileExportAssignmentOfGenericInterface.errors.txt │ ├── declFileExportAssignmentOfGenericInterface.js │ ├── declFileExportAssignmentOfGenericInterface.symbols │ ├── declFileExportAssignmentOfGenericInterface.types │ ├── declFileExportImportChain.errors.txt │ ├── declFileExportImportChain.js │ ├── declFileExportImportChain.symbols │ ├── declFileExportImportChain.types │ ├── declFileExportImportChain2.errors.txt │ ├── declFileExportImportChain2.js │ ├── declFileExportImportChain2.symbols │ ├── declFileExportImportChain2.types │ ├── declFileForClassWithMultipleBaseClasses.js │ ├── declFileForClassWithMultipleBaseClasses.symbols │ ├── declFileForClassWithMultipleBaseClasses.types │ ├── declFileForClassWithPrivateOverloadedFunction.js │ ├── declFileForClassWithPrivateOverloadedFunction.symbols │ ├── declFileForClassWithPrivateOverloadedFunction.types │ ├── declFileForExportedImport.js │ ├── declFileForExportedImport.symbols │ ├── declFileForExportedImport.types │ ├── declFileForFunctionTypeAsTypeParameter.js │ ├── declFileForFunctionTypeAsTypeParameter.symbols │ ├── declFileForFunctionTypeAsTypeParameter.types │ ├── declFileForInterfaceWithOptionalFunction.js │ ├── declFileForInterfaceWithOptionalFunction.symbols │ ├── declFileForInterfaceWithOptionalFunction.types │ ├── declFileForInterfaceWithRestParams.js │ ├── declFileForInterfaceWithRestParams.symbols │ ├── declFileForInterfaceWithRestParams.types │ ├── declFileForTypeParameters.errors.txt │ ├── declFileForTypeParameters.js │ ├── declFileForTypeParameters.symbols │ ├── declFileForTypeParameters.types │ ├── declFileForVarList.js │ ├── declFileForVarList.symbols │ ├── declFileForVarList.types │ ├── declFileFunctions(target=es2015).js │ ├── declFileFunctions(target=es2015).symbols │ ├── declFileFunctions(target=es2015).types │ ├── declFileFunctions(target=es5).errors.txt │ ├── declFileFunctions(target=es5).js │ ├── declFileFunctions(target=es5).symbols │ ├── declFileFunctions(target=es5).types │ ├── declFileGenericClassWithGenericExtendedClass.errors.txt │ ├── declFileGenericClassWithGenericExtendedClass.js │ ├── declFileGenericClassWithGenericExtendedClass.symbols │ ├── declFileGenericClassWithGenericExtendedClass.types │ ├── declFileGenericType.errors.txt │ ├── declFileGenericType.js │ ├── declFileGenericType.symbols │ ├── declFileGenericType.types │ ├── declFileGenericType2.js │ ├── declFileGenericType2.symbols │ ├── declFileGenericType2.types │ ├── declFileImportChainInExportAssignment.js │ ├── declFileImportChainInExportAssignment.symbols │ ├── declFileImportChainInExportAssignment.types │ ├── declFileImportModuleWithExportAssignment.js │ ├── declFileImportModuleWithExportAssignment.symbols │ ├── declFileImportModuleWithExportAssignment.types │ ├── declFileImportedTypeUseInTypeArgPosition.js │ ├── declFileImportedTypeUseInTypeArgPosition.symbols │ ├── declFileImportedTypeUseInTypeArgPosition.types │ ├── declFileIndexSignatures(target=es2015).js │ ├── declFileIndexSignatures(target=es2015).symbols │ ├── declFileIndexSignatures(target=es2015).types │ ├── declFileIndexSignatures(target=es5).errors.txt │ ├── declFileIndexSignatures(target=es5).js │ ├── declFileIndexSignatures(target=es5).symbols │ ├── declFileIndexSignatures(target=es5).types │ ├── declFileInternalAliases.js │ ├── declFileInternalAliases.symbols │ ├── declFileInternalAliases.types │ ├── declFileMethods(target=es2015).js │ ├── declFileMethods(target=es2015).symbols │ ├── declFileMethods(target=es2015).types │ ├── declFileMethods(target=es5).errors.txt │ ├── declFileMethods(target=es5).js │ ├── declFileMethods(target=es5).symbols │ ├── declFileMethods(target=es5).types │ ├── declFileModuleAssignmentInObjectLiteralProperty.js │ ├── declFileModuleAssignmentInObjectLiteralProperty.symbols │ ├── declFileModuleAssignmentInObjectLiteralProperty.types │ ├── declFileModuleContinuation.js │ ├── declFileModuleContinuation.symbols │ ├── declFileModuleContinuation.types │ ├── declFileModuleWithPropertyOfTypeModule.js │ ├── declFileModuleWithPropertyOfTypeModule.symbols │ ├── declFileModuleWithPropertyOfTypeModule.types │ ├── declFileObjectLiteralWithAccessors(target=es2015).js │ ├── declFileObjectLiteralWithAccessors(target=es2015).symbols │ ├── declFileObjectLiteralWithAccessors(target=es2015).types │ ├── declFileObjectLiteralWithAccessors(target=es5).errors.txt │ ├── declFileObjectLiteralWithAccessors(target=es5).js │ ├── declFileObjectLiteralWithAccessors(target=es5).symbols │ ├── declFileObjectLiteralWithAccessors(target=es5).types │ ├── declFileObjectLiteralWithOnlyGetter(target=es2015).js │ ├── declFileObjectLiteralWithOnlyGetter(target=es2015).symbols │ ├── declFileObjectLiteralWithOnlyGetter(target=es2015).types │ ├── declFileObjectLiteralWithOnlyGetter(target=es5).errors.txt │ ├── declFileObjectLiteralWithOnlyGetter(target=es5).js │ ├── declFileObjectLiteralWithOnlyGetter(target=es5).symbols │ ├── declFileObjectLiteralWithOnlyGetter(target=es5).types │ ├── declFileObjectLiteralWithOnlySetter(target=es2015).js │ ├── declFileObjectLiteralWithOnlySetter(target=es2015).symbols │ ├── declFileObjectLiteralWithOnlySetter(target=es2015).types │ ├── declFileObjectLiteralWithOnlySetter(target=es5).errors.txt │ ├── declFileObjectLiteralWithOnlySetter(target=es5).js │ ├── declFileObjectLiteralWithOnlySetter(target=es5).symbols │ ├── declFileObjectLiteralWithOnlySetter(target=es5).types │ ├── declFileOptionalInterfaceMethod.js │ ├── declFileOptionalInterfaceMethod.symbols │ ├── declFileOptionalInterfaceMethod.types │ ├── declFilePrivateMethodOverloads.js │ ├── declFilePrivateMethodOverloads.symbols │ ├── declFilePrivateMethodOverloads.types │ ├── declFilePrivateStatic(target=es2015).js │ ├── declFilePrivateStatic(target=es2015).symbols │ ├── declFilePrivateStatic(target=es2015).types │ ├── declFilePrivateStatic(target=es5).errors.txt │ ├── declFilePrivateStatic(target=es5).js │ ├── declFilePrivateStatic(target=es5).symbols │ ├── declFilePrivateStatic(target=es5).types │ ├── declFileRegressionTests.js │ ├── declFileRegressionTests.symbols │ ├── declFileRegressionTests.types │ ├── declFileRestParametersOfFunctionAndFunctionType.js │ ├── declFileRestParametersOfFunctionAndFunctionType.symbols │ ├── declFileRestParametersOfFunctionAndFunctionType.types │ ├── declFileTypeAnnotationArrayType(target=es2015).js │ ├── declFileTypeAnnotationArrayType(target=es2015).symbols │ ├── declFileTypeAnnotationArrayType(target=es2015).types │ ├── declFileTypeAnnotationArrayType(target=es5).errors.txt │ ├── declFileTypeAnnotationArrayType(target=es5).js │ ├── declFileTypeAnnotationArrayType(target=es5).symbols │ ├── declFileTypeAnnotationArrayType(target=es5).types │ ├── declFileTypeAnnotationBuiltInType(target=es2015).js │ ├── declFileTypeAnnotationBuiltInType(target=es2015).symbols │ ├── declFileTypeAnnotationBuiltInType(target=es2015).types │ ├── declFileTypeAnnotationBuiltInType(target=es5).errors.txt │ ├── declFileTypeAnnotationBuiltInType(target=es5).js │ ├── declFileTypeAnnotationBuiltInType(target=es5).symbols │ ├── declFileTypeAnnotationBuiltInType(target=es5).types │ ├── declFileTypeAnnotationParenType(target=es2015).errors.txt │ ├── declFileTypeAnnotationParenType(target=es2015).js │ ├── declFileTypeAnnotationParenType(target=es2015).symbols │ ├── declFileTypeAnnotationParenType(target=es2015).types │ ├── declFileTypeAnnotationParenType(target=es5).errors.txt │ ├── declFileTypeAnnotationParenType(target=es5).js │ ├── declFileTypeAnnotationParenType(target=es5).symbols │ ├── declFileTypeAnnotationParenType(target=es5).types │ ├── declFileTypeAnnotationStringLiteral(target=es2015).js │ ├── declFileTypeAnnotationStringLiteral(target=es2015).symbols │ ├── declFileTypeAnnotationStringLiteral(target=es2015).types │ ├── declFileTypeAnnotationStringLiteral(target=es5).errors.txt │ ├── declFileTypeAnnotationStringLiteral(target=es5).js │ ├── declFileTypeAnnotationStringLiteral(target=es5).symbols │ ├── declFileTypeAnnotationStringLiteral(target=es5).types │ ├── declFileTypeAnnotationTupleType(target=es2015).js │ ├── declFileTypeAnnotationTupleType(target=es2015).symbols │ ├── declFileTypeAnnotationTupleType(target=es2015).types │ ├── declFileTypeAnnotationTupleType(target=es5).errors.txt │ ├── declFileTypeAnnotationTupleType(target=es5).js │ ├── declFileTypeAnnotationTupleType(target=es5).symbols │ ├── declFileTypeAnnotationTupleType(target=es5).types │ ├── declFileTypeAnnotationTypeAlias(target=es2015).js │ ├── declFileTypeAnnotationTypeAlias(target=es2015).symbols │ ├── declFileTypeAnnotationTypeAlias(target=es2015).types │ ├── declFileTypeAnnotationTypeAlias(target=es5).errors.txt │ ├── declFileTypeAnnotationTypeAlias(target=es5).js │ ├── declFileTypeAnnotationTypeAlias(target=es5).symbols │ ├── declFileTypeAnnotationTypeAlias(target=es5).types │ ├── declFileTypeAnnotationTypeLiteral(target=es2015).js │ ├── declFileTypeAnnotationTypeLiteral(target=es2015).symbols │ ├── declFileTypeAnnotationTypeLiteral(target=es2015).types │ ├── declFileTypeAnnotationTypeLiteral(target=es5).errors.txt │ ├── declFileTypeAnnotationTypeLiteral(target=es5).js │ ├── declFileTypeAnnotationTypeLiteral(target=es5).symbols │ ├── declFileTypeAnnotationTypeLiteral(target=es5).types │ ├── declFileTypeAnnotationTypeQuery(target=es2015).js │ ├── declFileTypeAnnotationTypeQuery(target=es2015).symbols │ ├── declFileTypeAnnotationTypeQuery(target=es2015).types │ ├── declFileTypeAnnotationTypeQuery(target=es5).errors.txt │ ├── declFileTypeAnnotationTypeQuery(target=es5).js │ ├── declFileTypeAnnotationTypeQuery(target=es5).symbols │ ├── declFileTypeAnnotationTypeQuery(target=es5).types │ ├── declFileTypeAnnotationTypeReference(target=es2015).js │ ├── declFileTypeAnnotationTypeReference(target=es2015).symbols │ ├── declFileTypeAnnotationTypeReference(target=es2015).types │ ├── declFileTypeAnnotationTypeReference(target=es5).errors.txt │ ├── declFileTypeAnnotationTypeReference(target=es5).js │ ├── declFileTypeAnnotationTypeReference(target=es5).symbols │ ├── declFileTypeAnnotationTypeReference(target=es5).types │ ├── declFileTypeAnnotationUnionType(target=es2015).errors.txt │ ├── declFileTypeAnnotationUnionType(target=es2015).js │ ├── declFileTypeAnnotationUnionType(target=es2015).symbols │ ├── declFileTypeAnnotationUnionType(target=es2015).types │ ├── declFileTypeAnnotationUnionType(target=es5).errors.txt │ ├── declFileTypeAnnotationUnionType(target=es5).js │ ├── declFileTypeAnnotationUnionType(target=es5).symbols │ ├── declFileTypeAnnotationUnionType(target=es5).types │ ├── declFileTypeAnnotationVisibilityErrorAccessors(target=es2015).errors.txt │ ├── declFileTypeAnnotationVisibilityErrorAccessors(target=es2015).js │ ├── declFileTypeAnnotationVisibilityErrorAccessors(target=es2015).symbols │ ├── declFileTypeAnnotationVisibilityErrorAccessors(target=es2015).types │ ├── declFileTypeAnnotationVisibilityErrorAccessors(target=es5).errors.txt │ ├── declFileTypeAnnotationVisibilityErrorAccessors(target=es5).js │ ├── declFileTypeAnnotationVisibilityErrorAccessors(target=es5).symbols │ ├── declFileTypeAnnotationVisibilityErrorAccessors(target=es5).types │ ├── declFileTypeAnnotationVisibilityErrorParameterOfFunction(target=es2015).js │ ├── declFileTypeAnnotationVisibilityErrorParameterOfFunction(target=es2015).symbols │ ├── declFileTypeAnnotationVisibilityErrorParameterOfFunction(target=es2015).types │ ├── declFileTypeAnnotationVisibilityErrorParameterOfFunction(target=es5).errors.txt │ ├── declFileTypeAnnotationVisibilityErrorParameterOfFunction(target=es5).js │ ├── declFileTypeAnnotationVisibilityErrorParameterOfFunction(target=es5).symbols │ ├── declFileTypeAnnotationVisibilityErrorParameterOfFunction(target=es5).types │ ├── declFileTypeAnnotationVisibilityErrorReturnTypeOfFunction(target=es2015).errors.txt │ ├── declFileTypeAnnotationVisibilityErrorReturnTypeOfFunction(target=es2015).js │ ├── declFileTypeAnnotationVisibilityErrorReturnTypeOfFunction(target=es2015).symbols │ ├── declFileTypeAnnotationVisibilityErrorReturnTypeOfFunction(target=es2015).types │ ├── declFileTypeAnnotationVisibilityErrorReturnTypeOfFunction(target=es5).errors.txt │ ├── declFileTypeAnnotationVisibilityErrorReturnTypeOfFunction(target=es5).js │ ├── declFileTypeAnnotationVisibilityErrorReturnTypeOfFunction(target=es5).symbols │ ├── declFileTypeAnnotationVisibilityErrorReturnTypeOfFunction(target=es5).types │ ├── declFileTypeAnnotationVisibilityErrorTypeAlias(target=es2015).js │ ├── declFileTypeAnnotationVisibilityErrorTypeAlias(target=es2015).symbols │ ├── declFileTypeAnnotationVisibilityErrorTypeAlias(target=es2015).types │ ├── declFileTypeAnnotationVisibilityErrorTypeAlias(target=es5).errors.txt │ ├── declFileTypeAnnotationVisibilityErrorTypeAlias(target=es5).js │ ├── declFileTypeAnnotationVisibilityErrorTypeAlias(target=es5).symbols │ ├── declFileTypeAnnotationVisibilityErrorTypeAlias(target=es5).types │ ├── declFileTypeAnnotationVisibilityErrorTypeLiteral(target=es2015).errors.txt │ ├── declFileTypeAnnotationVisibilityErrorTypeLiteral(target=es2015).js │ ├── declFileTypeAnnotationVisibilityErrorTypeLiteral(target=es2015).symbols │ ├── declFileTypeAnnotationVisibilityErrorTypeLiteral(target=es2015).types │ ├── declFileTypeAnnotationVisibilityErrorTypeLiteral(target=es5).errors.txt │ ├── declFileTypeAnnotationVisibilityErrorTypeLiteral(target=es5).js │ ├── declFileTypeAnnotationVisibilityErrorTypeLiteral(target=es5).symbols │ ├── declFileTypeAnnotationVisibilityErrorTypeLiteral(target=es5).types │ ├── declFileTypeAnnotationVisibilityErrorVariableDeclaration(target=es2015).js │ ├── declFileTypeAnnotationVisibilityErrorVariableDeclaration(target=es2015).symbols │ ├── declFileTypeAnnotationVisibilityErrorVariableDeclaration(target=es2015).types │ ├── declFileTypeAnnotationVisibilityErrorVariableDeclaration(target=es5).errors.txt │ ├── declFileTypeAnnotationVisibilityErrorVariableDeclaration(target=es5).js │ ├── declFileTypeAnnotationVisibilityErrorVariableDeclaration(target=es5).symbols │ ├── declFileTypeAnnotationVisibilityErrorVariableDeclaration(target=es5).types │ ├── declFileTypeofClass.errors.txt │ ├── declFileTypeofClass.js │ ├── declFileTypeofClass.symbols │ ├── declFileTypeofClass.types │ ├── declFileTypeofEnum.js │ ├── declFileTypeofEnum.symbols │ ├── declFileTypeofEnum.types │ ├── declFileTypeofFunction.js │ ├── declFileTypeofFunction.symbols │ ├── declFileTypeofFunction.types │ ├── declFileTypeofInAnonymousType.js │ ├── declFileTypeofInAnonymousType.symbols │ ├── declFileTypeofInAnonymousType.types │ ├── declFileTypeofModule.js │ ├── declFileTypeofModule.symbols │ ├── declFileTypeofModule.types │ ├── declFileWithClassNameConflictingWithClassReferredByExtendsClause.errors.txt │ ├── declFileWithClassNameConflictingWithClassReferredByExtendsClause.js │ ├── declFileWithClassNameConflictingWithClassReferredByExtendsClause.symbols │ ├── declFileWithClassNameConflictingWithClassReferredByExtendsClause.types │ ├── declFileWithErrorsInInputDeclarationFile.errors.txt │ ├── declFileWithErrorsInInputDeclarationFile.js │ ├── declFileWithErrorsInInputDeclarationFile.symbols │ ├── declFileWithErrorsInInputDeclarationFile.types │ ├── declFileWithErrorsInInputDeclarationFileWithOut.errors.txt │ ├── declFileWithErrorsInInputDeclarationFileWithOut.js │ ├── declFileWithErrorsInInputDeclarationFileWithOut.symbols │ ├── declFileWithErrorsInInputDeclarationFileWithOut.types │ ├── declFileWithExtendsClauseThatHasItsContainerNameConflict.errors.txt │ ├── declFileWithExtendsClauseThatHasItsContainerNameConflict.js │ ├── declFileWithExtendsClauseThatHasItsContainerNameConflict.symbols │ ├── declFileWithExtendsClauseThatHasItsContainerNameConflict.types │ ├── declFileWithInternalModuleNameConflictsInExtendsClause1.js │ ├── declFileWithInternalModuleNameConflictsInExtendsClause1.symbols │ ├── declFileWithInternalModuleNameConflictsInExtendsClause1.types │ ├── declFileWithInternalModuleNameConflictsInExtendsClause2.js │ ├── declFileWithInternalModuleNameConflictsInExtendsClause2.symbols │ ├── declFileWithInternalModuleNameConflictsInExtendsClause2.types │ ├── declFileWithInternalModuleNameConflictsInExtendsClause3.js │ ├── declFileWithInternalModuleNameConflictsInExtendsClause3.symbols │ ├── declFileWithInternalModuleNameConflictsInExtendsClause3.types │ ├── declInput-2.js │ ├── declInput-2.symbols │ ├── declInput-2.types │ ├── declInput.js │ ├── declInput.symbols │ ├── declInput.types │ ├── declInput3.js │ ├── declInput3.symbols │ ├── declInput3.types │ ├── declInput4.js │ ├── declInput4.symbols │ ├── declInput4.types │ ├── declarationAssertionNodeNotReusedWhenTypeNotEquivalent1.js │ ├── declarationAssertionNodeNotReusedWhenTypeNotEquivalent1.symbols │ ├── declarationAssertionNodeNotReusedWhenTypeNotEquivalent1.types │ ├── declarationEmitAliasExportStar.js │ ├── declarationEmitAliasExportStar.symbols │ ├── declarationEmitAliasExportStar.types │ ├── declarationEmitAliasFromIndirectFile.js │ ├── declarationEmitAliasFromIndirectFile.symbols │ ├── declarationEmitAliasFromIndirectFile.types │ ├── declarationEmitAliasInlineing.js │ ├── declarationEmitAliasInlineing.symbols │ ├── declarationEmitAliasInlineing.types │ ├── declarationEmitAmdModuleDefault.errors.txt │ ├── declarationEmitAmdModuleDefault.js │ ├── declarationEmitAmdModuleDefault.symbols │ ├── declarationEmitAmdModuleDefault.types │ ├── declarationEmitAmdModuleNameDirective.errors.txt │ ├── declarationEmitAmdModuleNameDirective.js │ ├── declarationEmitAmdModuleNameDirective.symbols │ ├── declarationEmitAmdModuleNameDirective.types │ ├── declarationEmitAnyComputedPropertyInClass.js │ ├── declarationEmitAnyComputedPropertyInClass.symbols │ ├── declarationEmitAnyComputedPropertyInClass.types │ ├── declarationEmitArrayTypesFromGenericArrayUsage.js │ ├── declarationEmitArrayTypesFromGenericArrayUsage.symbols │ ├── declarationEmitArrayTypesFromGenericArrayUsage.types │ ├── declarationEmitArrowFunctionNoRenaming.js │ ├── declarationEmitArrowFunctionNoRenaming.symbols │ ├── declarationEmitArrowFunctionNoRenaming.types │ ├── declarationEmitBindingPatternWithReservedWord.js │ ├── declarationEmitBindingPatternWithReservedWord.symbols │ ├── declarationEmitBindingPatternWithReservedWord.types │ ├── declarationEmitBindingPatterns.js │ ├── declarationEmitBindingPatterns.symbols │ ├── declarationEmitBindingPatterns.types │ ├── declarationEmitBindingPatternsFunctionExpr.js │ ├── declarationEmitBindingPatternsFunctionExpr.symbols │ ├── declarationEmitBindingPatternsFunctionExpr.types │ ├── declarationEmitBindingPatternsUnused.errors.txt │ ├── declarationEmitBindingPatternsUnused.js │ ├── declarationEmitBindingPatternsUnused.symbols │ ├── declarationEmitBindingPatternsUnused.types │ ├── declarationEmitBundleWithAmbientReferences.errors.txt │ ├── declarationEmitBundleWithAmbientReferences.js │ ├── declarationEmitBundleWithAmbientReferences.symbols │ ├── declarationEmitBundleWithAmbientReferences.types │ ├── declarationEmitBundlerConditions.js │ ├── declarationEmitCastReusesTypeNode1(strictnullchecks=false).js │ ├── declarationEmitCastReusesTypeNode1(strictnullchecks=true).js │ ├── declarationEmitCastReusesTypeNode2(strictnullchecks=false).js │ ├── declarationEmitCastReusesTypeNode2(strictnullchecks=true).js │ ├── declarationEmitCastReusesTypeNode3(strictnullchecks=false).js │ ├── declarationEmitCastReusesTypeNode3(strictnullchecks=true).js │ ├── declarationEmitCastReusesTypeNode4(strictnullchecks=false).js │ ├── declarationEmitCastReusesTypeNode4(strictnullchecks=true).js │ ├── declarationEmitCastReusesTypeNode5(strictnullchecks=false).js │ ├── declarationEmitCastReusesTypeNode5(strictnullchecks=true).js │ ├── declarationEmitClassAccessorsJs1.js │ ├── declarationEmitClassAccessorsJs1.symbols │ ├── declarationEmitClassAccessorsJs1.types │ ├── declarationEmitClassInherritsAny.js │ ├── declarationEmitClassInherritsAny.symbols │ ├── declarationEmitClassInherritsAny.types │ ├── declarationEmitClassMemberNameConflict(target=es2015).js │ ├── declarationEmitClassMemberNameConflict(target=es2015).symbols │ ├── declarationEmitClassMemberNameConflict(target=es2015).types │ ├── declarationEmitClassMemberNameConflict(target=es5).errors.txt │ ├── declarationEmitClassMemberNameConflict(target=es5).js │ ├── declarationEmitClassMemberNameConflict(target=es5).symbols │ ├── declarationEmitClassMemberNameConflict(target=es5).types │ ├── declarationEmitClassMemberNameConflict2(target=es2015).js │ ├── declarationEmitClassMemberNameConflict2(target=es2015).symbols │ ├── declarationEmitClassMemberNameConflict2(target=es2015).types │ ├── declarationEmitClassMemberNameConflict2(target=es5).errors.txt │ ├── declarationEmitClassMemberNameConflict2(target=es5).js │ ├── declarationEmitClassMemberNameConflict2(target=es5).symbols │ ├── declarationEmitClassMemberNameConflict2(target=es5).types │ ├── declarationEmitClassMemberWithComputedPropertyName.js │ ├── declarationEmitClassMemberWithComputedPropertyName.symbols │ ├── declarationEmitClassMemberWithComputedPropertyName.types │ ├── declarationEmitClassMixinLocalClassDeclaration.js │ ├── declarationEmitClassMixinLocalClassDeclaration.symbols │ ├── declarationEmitClassMixinLocalClassDeclaration.types │ ├── declarationEmitClassPrivateConstructor(target=es2015).js │ ├── declarationEmitClassPrivateConstructor(target=es2015).symbols │ ├── declarationEmitClassPrivateConstructor(target=es2015).types │ ├── declarationEmitClassPrivateConstructor(target=es5).errors.txt │ ├── declarationEmitClassPrivateConstructor(target=es5).js │ ├── declarationEmitClassPrivateConstructor(target=es5).symbols │ ├── declarationEmitClassPrivateConstructor(target=es5).types │ ├── declarationEmitClassPrivateConstructor2(target=es2015).js │ ├── declarationEmitClassPrivateConstructor2(target=es2015).symbols │ ├── declarationEmitClassPrivateConstructor2(target=es2015).types │ ├── declarationEmitClassPrivateConstructor2(target=es5).errors.txt │ ├── declarationEmitClassPrivateConstructor2(target=es5).js │ ├── declarationEmitClassPrivateConstructor2(target=es5).symbols │ ├── declarationEmitClassPrivateConstructor2(target=es5).types │ ├── declarationEmitClassSetAccessorParamNameInJs.js │ ├── declarationEmitClassSetAccessorParamNameInJs.symbols │ ├── declarationEmitClassSetAccessorParamNameInJs.types │ ├── declarationEmitClassSetAccessorParamNameInJs2.js │ ├── declarationEmitClassSetAccessorParamNameInJs2.symbols │ ├── declarationEmitClassSetAccessorParamNameInJs2.types │ ├── declarationEmitClassSetAccessorParamNameInJs3.js │ ├── declarationEmitClassSetAccessorParamNameInJs3.symbols │ ├── declarationEmitClassSetAccessorParamNameInJs3.types │ ├── declarationEmitCommonJsModuleReferencedType.errors.txt │ ├── declarationEmitCommonJsModuleReferencedType.js │ ├── declarationEmitCommonJsModuleReferencedType.symbols │ ├── declarationEmitCommonJsModuleReferencedType.types │ ├── declarationEmitCommonSourceDirectoryDoesNotContainAllFiles.errors.txt │ ├── declarationEmitCommonSourceDirectoryDoesNotContainAllFiles.js │ ├── declarationEmitCommonSourceDirectoryDoesNotContainAllFiles.symbols │ ├── declarationEmitCommonSourceDirectoryDoesNotContainAllFiles.types │ ├── declarationEmitComputedNameCausesImportToBePainted.js │ ├── declarationEmitComputedNameCausesImportToBePainted.symbols │ ├── declarationEmitComputedNameCausesImportToBePainted.types │ ├── declarationEmitComputedNameConstEnumAlias.js │ ├── declarationEmitComputedNameConstEnumAlias.symbols │ ├── declarationEmitComputedNameConstEnumAlias.types │ ├── declarationEmitComputedNameWithQuestionToken.js │ ├── declarationEmitComputedNameWithQuestionToken.symbols │ ├── declarationEmitComputedNameWithQuestionToken.types │ ├── declarationEmitComputedNamesInaccessible.js │ ├── declarationEmitComputedNamesInaccessible.symbols │ ├── declarationEmitComputedNamesInaccessible.types │ ├── declarationEmitComputedPropertyName1.js │ ├── declarationEmitComputedPropertyName1.symbols │ ├── declarationEmitComputedPropertyName1.types │ ├── declarationEmitComputedPropertyNameEnum1.js │ ├── declarationEmitComputedPropertyNameEnum1.symbols │ ├── declarationEmitComputedPropertyNameEnum1.types │ ├── declarationEmitComputedPropertyNameEnum2.errors.txt │ ├── declarationEmitComputedPropertyNameEnum2.js │ ├── declarationEmitComputedPropertyNameEnum2.symbols │ ├── declarationEmitComputedPropertyNameEnum2.types │ ├── declarationEmitComputedPropertyNameEnum3.errors.txt │ ├── declarationEmitComputedPropertyNameEnum3.js │ ├── declarationEmitComputedPropertyNameEnum3.symbols │ ├── declarationEmitComputedPropertyNameEnum3.types │ ├── declarationEmitComputedPropertyNameSymbol1.errors.txt │ ├── declarationEmitComputedPropertyNameSymbol1.js │ ├── declarationEmitComputedPropertyNameSymbol1.symbols │ ├── declarationEmitComputedPropertyNameSymbol1.types │ ├── declarationEmitComputedPropertyNameSymbol2.errors.txt │ ├── declarationEmitComputedPropertyNameSymbol2.js │ ├── declarationEmitComputedPropertyNameSymbol2.symbols │ ├── declarationEmitComputedPropertyNameSymbol2.types │ ├── declarationEmitConstantNoWidening.js │ ├── declarationEmitConstantNoWidening.symbols │ ├── declarationEmitConstantNoWidening.types │ ├── declarationEmitCrossFileCopiedGeneratedImportType.js │ ├── declarationEmitCrossFileCopiedGeneratedImportType.symbols │ ├── declarationEmitCrossFileCopiedGeneratedImportType.types │ ├── declarationEmitCrossFileImportTypeOfAmbientModule.js │ ├── declarationEmitCrossFileImportTypeOfAmbientModule.symbols │ ├── declarationEmitCrossFileImportTypeOfAmbientModule.types │ ├── declarationEmitDefaultExport1.js │ ├── declarationEmitDefaultExport1.symbols │ ├── declarationEmitDefaultExport1.types │ ├── declarationEmitDefaultExport2.js │ ├── declarationEmitDefaultExport2.symbols │ ├── declarationEmitDefaultExport2.types │ ├── declarationEmitDefaultExport3.js │ ├── declarationEmitDefaultExport3.symbols │ ├── declarationEmitDefaultExport3.types │ ├── declarationEmitDefaultExport4.js │ ├── declarationEmitDefaultExport4.symbols │ ├── declarationEmitDefaultExport4.types │ ├── declarationEmitDefaultExport5.js │ ├── declarationEmitDefaultExport5.symbols │ ├── declarationEmitDefaultExport5.types │ ├── declarationEmitDefaultExport6.js │ ├── declarationEmitDefaultExport6.symbols │ ├── declarationEmitDefaultExport6.types │ ├── declarationEmitDefaultExport7.js │ ├── declarationEmitDefaultExport7.symbols │ ├── declarationEmitDefaultExport7.types │ ├── declarationEmitDefaultExport8.js │ ├── declarationEmitDefaultExport8.symbols │ ├── declarationEmitDefaultExport8.types │ ├── declarationEmitDefaultExportWithStaticAssignment.js │ ├── declarationEmitDefaultExportWithStaticAssignment.symbols │ ├── declarationEmitDefaultExportWithStaticAssignment.types │ ├── declarationEmitDefaultExportWithTempVarName.errors.txt │ ├── declarationEmitDefaultExportWithTempVarName.js │ ├── declarationEmitDefaultExportWithTempVarName.symbols │ ├── declarationEmitDefaultExportWithTempVarName.types │ ├── declarationEmitDefaultExportWithTempVarNameWithBundling.errors.txt │ ├── declarationEmitDefaultExportWithTempVarNameWithBundling.js │ ├── declarationEmitDefaultExportWithTempVarNameWithBundling.symbols │ ├── declarationEmitDefaultExportWithTempVarNameWithBundling.types │ ├── declarationEmitDestructuring1.js │ ├── declarationEmitDestructuring1.symbols │ ├── declarationEmitDestructuring1.types │ ├── declarationEmitDestructuring2.errors.txt │ ├── declarationEmitDestructuring2.js │ ├── declarationEmitDestructuring2.symbols │ ├── declarationEmitDestructuring2.types │ ├── declarationEmitDestructuring3.js │ ├── declarationEmitDestructuring3.symbols │ ├── declarationEmitDestructuring3.types │ ├── declarationEmitDestructuring4.js │ ├── declarationEmitDestructuring4.symbols │ ├── declarationEmitDestructuring4.types │ ├── declarationEmitDestructuring5.js │ ├── declarationEmitDestructuring5.symbols │ ├── declarationEmitDestructuring5.types │ ├── declarationEmitDestructuringArrayPattern1.js │ ├── declarationEmitDestructuringArrayPattern1.symbols │ ├── declarationEmitDestructuringArrayPattern1.types │ ├── declarationEmitDestructuringArrayPattern2.errors.txt │ ├── declarationEmitDestructuringArrayPattern2.js │ ├── declarationEmitDestructuringArrayPattern2.symbols │ ├── declarationEmitDestructuringArrayPattern2.types │ ├── declarationEmitDestructuringArrayPattern3.js │ ├── declarationEmitDestructuringArrayPattern3.symbols │ ├── declarationEmitDestructuringArrayPattern3.types │ ├── declarationEmitDestructuringArrayPattern4.js │ ├── declarationEmitDestructuringArrayPattern4.symbols │ ├── declarationEmitDestructuringArrayPattern4.types │ ├── declarationEmitDestructuringArrayPattern5.js │ ├── declarationEmitDestructuringArrayPattern5.symbols │ ├── declarationEmitDestructuringArrayPattern5.types │ ├── declarationEmitDestructuringObjectLiteralPattern.errors.txt │ ├── declarationEmitDestructuringObjectLiteralPattern.js │ ├── declarationEmitDestructuringObjectLiteralPattern.symbols │ ├── declarationEmitDestructuringObjectLiteralPattern.types │ ├── declarationEmitDestructuringObjectLiteralPattern1.errors.txt │ ├── declarationEmitDestructuringObjectLiteralPattern1.js │ ├── declarationEmitDestructuringObjectLiteralPattern1.symbols │ ├── declarationEmitDestructuringObjectLiteralPattern1.types │ ├── declarationEmitDestructuringObjectLiteralPattern2.js │ ├── declarationEmitDestructuringObjectLiteralPattern2.symbols │ ├── declarationEmitDestructuringObjectLiteralPattern2.types │ ├── declarationEmitDestructuringOptionalBindingParametersInOverloads.js │ ├── declarationEmitDestructuringOptionalBindingParametersInOverloads.symbols │ ├── declarationEmitDestructuringOptionalBindingParametersInOverloads.types │ ├── declarationEmitDestructuringParameterProperties.errors.txt │ ├── declarationEmitDestructuringParameterProperties.js │ ├── declarationEmitDestructuringParameterProperties.symbols │ ├── declarationEmitDestructuringParameterProperties.types │ ├── declarationEmitDestructuringParameterProperties2.errors.txt │ ├── declarationEmitDestructuringParameterProperties2.js │ ├── declarationEmitDestructuringParameterProperties2.symbols │ ├── declarationEmitDestructuringParameterProperties2.types │ ├── declarationEmitDestructuringPrivacyError.js │ ├── declarationEmitDestructuringPrivacyError.symbols │ ├── declarationEmitDestructuringPrivacyError.types │ ├── declarationEmitDestructuringWithOptionalBindingParameters.errors.txt │ ├── declarationEmitDestructuringWithOptionalBindingParameters.js │ ├── declarationEmitDestructuringWithOptionalBindingParameters.symbols │ ├── declarationEmitDestructuringWithOptionalBindingParameters.types │ ├── declarationEmitDetachedComment1(target=es2015).js │ ├── declarationEmitDetachedComment1(target=es2015).symbols │ ├── declarationEmitDetachedComment1(target=es2015).types │ ├── declarationEmitDetachedComment1(target=es5).errors.txt │ ├── declarationEmitDetachedComment1(target=es5).js │ ├── declarationEmitDetachedComment1(target=es5).symbols │ ├── declarationEmitDetachedComment1(target=es5).types │ ├── declarationEmitDetachedComment2(target=es2015).js │ ├── declarationEmitDetachedComment2(target=es2015).symbols │ ├── declarationEmitDetachedComment2(target=es2015).types │ ├── declarationEmitDetachedComment2(target=es5).errors.txt │ ├── declarationEmitDetachedComment2(target=es5).js │ ├── declarationEmitDetachedComment2(target=es5).symbols │ ├── declarationEmitDetachedComment2(target=es5).types │ ├── declarationEmitDistributiveConditionalWithInfer.js │ ├── declarationEmitDistributiveConditionalWithInfer.symbols │ ├── declarationEmitDistributiveConditionalWithInfer.types │ ├── declarationEmitDoesNotUseReexportedNamespaceAsLocal.js │ ├── declarationEmitDoesNotUseReexportedNamespaceAsLocal.symbols │ ├── declarationEmitDoesNotUseReexportedNamespaceAsLocal.types │ ├── declarationEmitDuplicateParameterDestructuring.js │ ├── declarationEmitDuplicateParameterDestructuring.symbols │ ├── declarationEmitDuplicateParameterDestructuring.types │ ├── declarationEmitEnumReadonlyProperty.js │ ├── declarationEmitEnumReadonlyProperty.symbols │ ├── declarationEmitEnumReadonlyProperty.types │ ├── declarationEmitEnumReferenceViaImportEquals.js │ ├── declarationEmitEnumReferenceViaImportEquals.symbols │ ├── declarationEmitEnumReferenceViaImportEquals.types │ ├── declarationEmitExactOptionalPropertyTypesNodeNotReused(exactoptionalpropertytypes=false).js │ ├── declarationEmitExactOptionalPropertyTypesNodeNotReused(exactoptionalpropertytypes=false).symbols │ ├── declarationEmitExactOptionalPropertyTypesNodeNotReused(exactoptionalpropertytypes=false).types │ ├── declarationEmitExactOptionalPropertyTypesNodeNotReused(exactoptionalpropertytypes=true).js │ ├── declarationEmitExactOptionalPropertyTypesNodeNotReused(exactoptionalpropertytypes=true).symbols │ ├── declarationEmitExactOptionalPropertyTypesNodeNotReused(exactoptionalpropertytypes=true).types │ ├── declarationEmitExpandoPropertyPrivateName.errors.txt │ ├── declarationEmitExpandoPropertyPrivateName.js │ ├── declarationEmitExpandoPropertyPrivateName.symbols │ ├── declarationEmitExpandoPropertyPrivateName.types │ ├── declarationEmitExpandoWithGenericConstraint.js │ ├── declarationEmitExpandoWithGenericConstraint.symbols │ ├── declarationEmitExpandoWithGenericConstraint.types │ ├── declarationEmitExportAliasVisibiilityMarking.js │ ├── declarationEmitExportAliasVisibiilityMarking.symbols │ ├── declarationEmitExportAliasVisibiilityMarking.types │ ├── declarationEmitExportAssignedNamespaceNoTripleSlashTypesReference.js │ ├── declarationEmitExportAssignedNamespaceNoTripleSlashTypesReference.symbols │ ├── declarationEmitExportAssignedNamespaceNoTripleSlashTypesReference.types │ ├── declarationEmitExportAssignment(target=es2015).js │ ├── declarationEmitExportAssignment(target=es2015).symbols │ ├── declarationEmitExportAssignment(target=es2015).types │ ├── declarationEmitExportAssignment(target=es5).errors.txt │ ├── declarationEmitExportAssignment(target=es5).js │ ├── declarationEmitExportAssignment(target=es5).symbols │ ├── declarationEmitExportAssignment(target=es5).types │ ├── declarationEmitExportDeclaration(target=es2015).js │ ├── declarationEmitExportDeclaration(target=es2015).symbols │ ├── declarationEmitExportDeclaration(target=es2015).types │ ├── declarationEmitExportDeclaration(target=es5).errors.txt │ ├── declarationEmitExportDeclaration(target=es5).js │ ├── declarationEmitExportDeclaration(target=es5).symbols │ ├── declarationEmitExportDeclaration(target=es5).types │ ├── declarationEmitExpressionInExtends.errors.txt │ ├── declarationEmitExpressionInExtends.js │ ├── declarationEmitExpressionInExtends.symbols │ ├── declarationEmitExpressionInExtends.types │ ├── declarationEmitExpressionInExtends2.errors.txt │ ├── declarationEmitExpressionInExtends2.js │ ├── declarationEmitExpressionInExtends2.symbols │ ├── declarationEmitExpressionInExtends2.types │ ├── declarationEmitExpressionInExtends3.errors.txt │ ├── declarationEmitExpressionInExtends3.js │ ├── declarationEmitExpressionInExtends3.symbols │ ├── declarationEmitExpressionInExtends3.types │ ├── declarationEmitExpressionInExtends4.errors.txt │ ├── declarationEmitExpressionInExtends4.js │ ├── declarationEmitExpressionInExtends4.symbols │ ├── declarationEmitExpressionInExtends4.types │ ├── declarationEmitExpressionInExtends5.js │ ├── declarationEmitExpressionInExtends5.symbols │ ├── declarationEmitExpressionInExtends5.types │ ├── declarationEmitExpressionInExtends6.js │ ├── declarationEmitExpressionInExtends6.symbols │ ├── declarationEmitExpressionInExtends6.types │ ├── declarationEmitExpressionInExtends7.errors.txt │ ├── declarationEmitExpressionInExtends7.js │ ├── declarationEmitExpressionInExtends7.symbols │ ├── declarationEmitExpressionInExtends7.types │ ├── declarationEmitExpressionWithNonlocalPrivateUniqueSymbol.errors.txt │ ├── declarationEmitExpressionWithNonlocalPrivateUniqueSymbol.js │ ├── declarationEmitExpressionWithNonlocalPrivateUniqueSymbol.symbols │ ├── declarationEmitExpressionWithNonlocalPrivateUniqueSymbol.types │ ├── declarationEmitFBoundedTypeParams.js │ ├── declarationEmitFBoundedTypeParams.symbols │ ├── declarationEmitFBoundedTypeParams.types │ ├── declarationEmitFirstTypeArgumentGenericFunctionType.js │ ├── declarationEmitFirstTypeArgumentGenericFunctionType.symbols │ ├── declarationEmitFirstTypeArgumentGenericFunctionType.types │ ├── declarationEmitForDefaultExportClassExtendingExpression01.js │ ├── declarationEmitForDefaultExportClassExtendingExpression01.symbols │ ├── declarationEmitForDefaultExportClassExtendingExpression01.types │ ├── declarationEmitForGlobalishSpecifierSymlink.js │ ├── declarationEmitForGlobalishSpecifierSymlink.symbols │ ├── declarationEmitForGlobalishSpecifierSymlink.types │ ├── declarationEmitForGlobalishSpecifierSymlink2.js │ ├── declarationEmitForGlobalishSpecifierSymlink2.symbols │ ├── declarationEmitForGlobalishSpecifierSymlink2.types │ ├── declarationEmitForModuleImportingModuleAugmentationRetainsImport.js │ ├── declarationEmitForModuleImportingModuleAugmentationRetainsImport.symbols │ ├── declarationEmitForModuleImportingModuleAugmentationRetainsImport.types │ ├── declarationEmitForTypesWhichNeedImportTypes.js │ ├── declarationEmitForTypesWhichNeedImportTypes.symbols │ ├── declarationEmitForTypesWhichNeedImportTypes.types │ ├── declarationEmitFunctionDuplicateNamespace.js │ ├── declarationEmitFunctionDuplicateNamespace.symbols │ ├── declarationEmitFunctionDuplicateNamespace.types │ ├── declarationEmitFunctionKeywordProp.js │ ├── declarationEmitFunctionKeywordProp.symbols │ ├── declarationEmitFunctionKeywordProp.types │ ├── declarationEmitGenericTypeParamerSerialization.js │ ├── declarationEmitGenericTypeParamerSerialization.symbols │ ├── declarationEmitGenericTypeParamerSerialization.types │ ├── declarationEmitGenericTypeParamerSerialization2.js │ ├── declarationEmitGenericTypeParamerSerialization2.symbols │ ├── declarationEmitGenericTypeParamerSerialization2.types │ ├── declarationEmitGenericTypeParamerSerialization3.js │ ├── declarationEmitGenericTypeParamerSerialization3.symbols │ ├── declarationEmitGenericTypeParamerSerialization3.types │ ├── declarationEmitGlobalThisPreserved.js │ ├── declarationEmitGlobalThisPreserved.symbols │ ├── declarationEmitGlobalThisPreserved.types │ ├── declarationEmitHasTypesRefOnNamespaceUse.js │ ├── declarationEmitHasTypesRefOnNamespaceUse.symbols │ ├── declarationEmitHasTypesRefOnNamespaceUse.types │ ├── declarationEmitHigherOrderRetainedGenerics.js │ ├── declarationEmitHigherOrderRetainedGenerics.symbols │ ├── declarationEmitHigherOrderRetainedGenerics.types │ ├── declarationEmitIdentifierPredicates01.js │ ├── declarationEmitIdentifierPredicates01.symbols │ ├── declarationEmitIdentifierPredicates01.types │ ├── declarationEmitIdentifierPredicatesWithPrivateName01.js │ ├── declarationEmitIdentifierPredicatesWithPrivateName01.symbols │ ├── declarationEmitIdentifierPredicatesWithPrivateName01.types │ ├── declarationEmitImportInExportAssignmentModule.js │ ├── declarationEmitImportInExportAssignmentModule.symbols │ ├── declarationEmitImportInExportAssignmentModule.types │ ├── declarationEmitIndexTypeArray.js │ ├── declarationEmitIndexTypeArray.symbols │ ├── declarationEmitIndexTypeArray.types │ ├── declarationEmitIndexTypeNotFound.errors.txt │ ├── declarationEmitIndexTypeNotFound.js │ ├── declarationEmitIndexTypeNotFound.symbols │ ├── declarationEmitIndexTypeNotFound.types │ ├── declarationEmitInferredDefaultExportType.js │ ├── declarationEmitInferredDefaultExportType.symbols │ ├── declarationEmitInferredDefaultExportType.types │ ├── declarationEmitInferredDefaultExportType2.js │ ├── declarationEmitInferredDefaultExportType2.symbols │ ├── declarationEmitInferredDefaultExportType2.types │ ├── declarationEmitInferredTypeAlias1.errors.txt │ ├── declarationEmitInferredTypeAlias1.js │ ├── declarationEmitInferredTypeAlias1.symbols │ ├── declarationEmitInferredTypeAlias1.types │ ├── declarationEmitInferredTypeAlias2.errors.txt │ ├── declarationEmitInferredTypeAlias2.js │ ├── declarationEmitInferredTypeAlias2.symbols │ ├── declarationEmitInferredTypeAlias2.types │ ├── declarationEmitInferredTypeAlias3.errors.txt │ ├── declarationEmitInferredTypeAlias3.js │ ├── declarationEmitInferredTypeAlias3.symbols │ ├── declarationEmitInferredTypeAlias3.types │ ├── declarationEmitInferredTypeAlias4.errors.txt │ ├── declarationEmitInferredTypeAlias4.js │ ├── declarationEmitInferredTypeAlias4.symbols │ ├── declarationEmitInferredTypeAlias4.types │ ├── declarationEmitInferredTypeAlias5.errors.txt │ ├── declarationEmitInferredTypeAlias5.js │ ├── declarationEmitInferredTypeAlias5.symbols │ ├── declarationEmitInferredTypeAlias5.types │ ├── declarationEmitInferredTypeAlias6.errors.txt │ ├── declarationEmitInferredTypeAlias6.js │ ├── declarationEmitInferredTypeAlias6.symbols │ ├── declarationEmitInferredTypeAlias6.types │ ├── declarationEmitInferredTypeAlias7.errors.txt │ ├── declarationEmitInferredTypeAlias7.js │ ├── declarationEmitInferredTypeAlias7.symbols │ ├── declarationEmitInferredTypeAlias7.types │ ├── declarationEmitInferredTypeAlias8.js │ ├── declarationEmitInferredTypeAlias8.symbols │ ├── declarationEmitInferredTypeAlias8.types │ ├── declarationEmitInferredTypeAlias9.js │ ├── declarationEmitInferredTypeAlias9.symbols │ ├── declarationEmitInferredTypeAlias9.types │ ├── declarationEmitInferredUndefinedPropFromFunctionInArray.js │ ├── declarationEmitInferredUndefinedPropFromFunctionInArray.symbols │ ├── declarationEmitInferredUndefinedPropFromFunctionInArray.types │ ├── declarationEmitInlinedDistributiveConditional.js │ ├── declarationEmitInlinedDistributiveConditional.symbols │ ├── declarationEmitInlinedDistributiveConditional.types │ ├── declarationEmitInterfaceWithNonEntityNameExpressionHeritage.errors.txt │ ├── declarationEmitInterfaceWithNonEntityNameExpressionHeritage.js │ ├── declarationEmitInterfaceWithNonEntityNameExpressionHeritage.symbols │ ├── declarationEmitInterfaceWithNonEntityNameExpressionHeritage.types │ ├── declarationEmitInvalidExport.errors.txt │ ├── declarationEmitInvalidExport.js │ ├── declarationEmitInvalidExport.symbols │ ├── declarationEmitInvalidExport.types │ ├── declarationEmitInvalidReference.js │ ├── declarationEmitInvalidReference.symbols │ ├── declarationEmitInvalidReference.types │ ├── declarationEmitInvalidReference2.errors.txt │ ├── declarationEmitInvalidReference2.js │ ├── declarationEmitInvalidReference2.symbols │ ├── declarationEmitInvalidReference2.types │ ├── declarationEmitInvalidReferenceAllowJs.errors.txt │ ├── declarationEmitInvalidReferenceAllowJs.js │ ├── declarationEmitInvalidReferenceAllowJs.symbols │ ├── declarationEmitInvalidReferenceAllowJs.types │ ├── declarationEmitIsolatedDeclarationErrorNotEmittedForNonEmittedFile.errors.txt │ ├── declarationEmitIsolatedDeclarationErrorNotEmittedForNonEmittedFile.js │ ├── declarationEmitIsolatedDeclarationErrorNotEmittedForNonEmittedFile.symbols │ ├── declarationEmitIsolatedDeclarationErrorNotEmittedForNonEmittedFile.types │ ├── declarationEmitJsReExportDefault.js │ ├── declarationEmitKeywordDestructuring.js │ ├── declarationEmitKeywordDestructuring.symbols │ ├── declarationEmitKeywordDestructuring.types │ ├── declarationEmitLambdaWithMissingTypeParameterNoCrash.errors.txt │ ├── declarationEmitLambdaWithMissingTypeParameterNoCrash.js │ ├── declarationEmitLambdaWithMissingTypeParameterNoCrash.symbols │ ├── declarationEmitLambdaWithMissingTypeParameterNoCrash.types │ ├── declarationEmitLateBoundAssignments.js │ ├── declarationEmitLateBoundAssignments.symbols │ ├── declarationEmitLateBoundAssignments.types │ ├── declarationEmitLateBoundAssignments2.js │ ├── declarationEmitLateBoundAssignments2.symbols │ ├── declarationEmitLateBoundAssignments2.types │ ├── declarationEmitLateBoundJSAssignments.js │ ├── declarationEmitLateBoundJSAssignments.symbols │ ├── declarationEmitLateBoundJSAssignments.types │ ├── declarationEmitLocalClassDeclarationMixin.js │ ├── declarationEmitLocalClassDeclarationMixin.symbols │ ├── declarationEmitLocalClassDeclarationMixin.types │ ├── declarationEmitLocalClassHasRequiredDeclare.js │ ├── declarationEmitLocalClassHasRequiredDeclare.symbols │ ├── declarationEmitLocalClassHasRequiredDeclare.types │ ├── declarationEmitMappedPrivateTypeTypeParameter.errors.txt │ ├── declarationEmitMappedPrivateTypeTypeParameter.js │ ├── declarationEmitMappedPrivateTypeTypeParameter.symbols │ ├── declarationEmitMappedPrivateTypeTypeParameter.types │ ├── declarationEmitMappedTypeDistributivityPreservesConstraints.js │ ├── declarationEmitMappedTypeDistributivityPreservesConstraints.symbols │ ├── declarationEmitMappedTypeDistributivityPreservesConstraints.types │ ├── declarationEmitMappedTypePreservesTypeParameterConstraint.js │ ├── declarationEmitMappedTypePreservesTypeParameterConstraint.symbols │ ├── declarationEmitMappedTypePreservesTypeParameterConstraint.types │ ├── declarationEmitMappedTypePropertyFromNumericStringKey.js │ ├── declarationEmitMappedTypePropertyFromNumericStringKey.symbols │ ├── declarationEmitMappedTypePropertyFromNumericStringKey.types │ ├── declarationEmitMappedTypeTemplateTypeofSymbol.errors.txt │ ├── declarationEmitMappedTypeTemplateTypeofSymbol.js │ ├── declarationEmitMappedTypeTemplateTypeofSymbol.symbols │ ├── declarationEmitMappedTypeTemplateTypeofSymbol.types │ ├── declarationEmitMergedAliasWithConst.js │ ├── declarationEmitMergedAliasWithConst.symbols │ ├── declarationEmitMergedAliasWithConst.types │ ├── declarationEmitMethodDeclaration.js │ ├── declarationEmitMethodDeclaration.symbols │ ├── declarationEmitMethodDeclaration.types │ ├── declarationEmitMixinPrivateProtected.errors.txt │ ├── declarationEmitMixinPrivateProtected.js │ ├── declarationEmitMixinPrivateProtected.symbols │ ├── declarationEmitMixinPrivateProtected.types │ ├── declarationEmitModuleWithScopeMarker(target=es2015).js │ ├── declarationEmitModuleWithScopeMarker(target=es2015).symbols │ ├── declarationEmitModuleWithScopeMarker(target=es2015).types │ ├── declarationEmitModuleWithScopeMarker(target=es5).errors.txt │ ├── declarationEmitModuleWithScopeMarker(target=es5).js │ ├── declarationEmitModuleWithScopeMarker(target=es5).symbols │ ├── declarationEmitModuleWithScopeMarker(target=es5).types │ ├── declarationEmitMonorepoBaseUrl.errors.txt │ ├── declarationEmitMonorepoBaseUrl.js │ ├── declarationEmitMultipleComputedNamesSameDomain.js │ ├── declarationEmitMultipleComputedNamesSameDomain.symbols │ ├── declarationEmitMultipleComputedNamesSameDomain.types │ ├── declarationEmitNameConflicts.js │ ├── declarationEmitNameConflicts.symbols │ ├── declarationEmitNameConflicts.types │ ├── declarationEmitNameConflicts2.js │ ├── declarationEmitNameConflicts2.symbols │ ├── declarationEmitNameConflicts2.types │ ├── declarationEmitNameConflicts3.js │ ├── declarationEmitNameConflicts3.symbols │ ├── declarationEmitNameConflicts3.types │ ├── declarationEmitNameConflictsWithAlias.js │ ├── declarationEmitNameConflictsWithAlias.symbols │ ├── declarationEmitNameConflictsWithAlias.types │ ├── declarationEmitNamespaceMergedWithInterfaceNestedFunction.js │ ├── declarationEmitNamespaceMergedWithInterfaceNestedFunction.symbols │ ├── declarationEmitNamespaceMergedWithInterfaceNestedFunction.types │ ├── declarationEmitNestedAnonymousMappedType.js │ ├── declarationEmitNestedAnonymousMappedType.symbols │ ├── declarationEmitNestedAnonymousMappedType.types │ ├── declarationEmitNestedBindingPattern.errors.txt │ ├── declarationEmitNestedBindingPattern.js │ ├── declarationEmitNestedBindingPattern.symbols │ ├── declarationEmitNestedBindingPattern.types │ ├── declarationEmitNestedGenerics.js │ ├── declarationEmitNestedGenerics.symbols │ ├── declarationEmitNestedGenerics.types │ ├── declarationEmitNoInvalidCommentReuse1.js │ ├── declarationEmitNoInvalidCommentReuse1.symbols │ ├── declarationEmitNoInvalidCommentReuse1.types │ ├── declarationEmitNoInvalidCommentReuse2.js │ ├── declarationEmitNoInvalidCommentReuse2.symbols │ ├── declarationEmitNoInvalidCommentReuse2.types │ ├── declarationEmitNoInvalidCommentReuse3.js │ ├── declarationEmitNoInvalidCommentReuse3.symbols │ ├── declarationEmitNoInvalidCommentReuse3.types │ ├── declarationEmitNoNonRequiredParens.js │ ├── declarationEmitNoNonRequiredParens.symbols │ ├── declarationEmitNoNonRequiredParens.types │ ├── declarationEmitNonExportedBindingPattern.js │ ├── declarationEmitNonExportedBindingPattern.symbols │ ├── declarationEmitNonExportedBindingPattern.types │ ├── declarationEmitObjectAssignedDefaultExport.errors.txt │ ├── declarationEmitObjectAssignedDefaultExport.js │ ├── declarationEmitObjectAssignedDefaultExport.symbols │ ├── declarationEmitObjectAssignedDefaultExport.types │ ├── declarationEmitObjectLiteralAccessors1.js │ ├── declarationEmitObjectLiteralAccessors1.symbols │ ├── declarationEmitObjectLiteralAccessors1.types │ ├── declarationEmitObjectLiteralAccessorsJs1.js │ ├── declarationEmitObjectLiteralAccessorsJs1.symbols │ ├── declarationEmitObjectLiteralAccessorsJs1.types │ ├── declarationEmitOfFuncspace.js │ ├── declarationEmitOfFuncspace.symbols │ ├── declarationEmitOfFuncspace.types │ ├── declarationEmitOfTypeofAliasedExport.js │ ├── declarationEmitOfTypeofAliasedExport.symbols │ ├── declarationEmitOfTypeofAliasedExport.types │ ├── declarationEmitOptionalMappedTypePropertyNoStrictNullChecks1.js │ ├── declarationEmitOptionalMappedTypePropertyNoStrictNullChecks1.symbols │ ├── declarationEmitOptionalMappedTypePropertyNoStrictNullChecks1.types │ ├── declarationEmitOptionalMappedTypePropertyNoStrictNullChecks2.js │ ├── declarationEmitOptionalMappedTypePropertyNoStrictNullChecks2.symbols │ ├── declarationEmitOptionalMappedTypePropertyNoStrictNullChecks2.types │ ├── declarationEmitOptionalMappedTypePropertyNoStrictNullChecks3.js │ ├── declarationEmitOptionalMappedTypePropertyNoStrictNullChecks3.symbols │ ├── declarationEmitOptionalMappedTypePropertyNoStrictNullChecks3.types │ ├── declarationEmitOptionalMappedTypePropertyNoStrictNullChecks4.js │ ├── declarationEmitOptionalMappedTypePropertyNoStrictNullChecks4.symbols │ ├── declarationEmitOptionalMappedTypePropertyNoStrictNullChecks4.types │ ├── declarationEmitOptionalMethod.js │ ├── declarationEmitOptionalMethod.symbols │ ├── declarationEmitOptionalMethod.types │ ├── declarationEmitOutFileBundlePaths.errors.txt │ ├── declarationEmitOutFileBundlePaths.js │ ├── declarationEmitOutFileBundlePaths.symbols │ ├── declarationEmitOutFileBundlePaths.types │ ├── declarationEmitOverloadedPrivateInference.js │ ├── declarationEmitOverloadedPrivateInference.symbols │ ├── declarationEmitOverloadedPrivateInference.types │ ├── declarationEmitParameterProperty.js │ ├── declarationEmitParameterProperty.symbols │ ├── declarationEmitParameterProperty.types │ ├── declarationEmitPartialNodeReuseTypeOf.js │ ├── declarationEmitPartialNodeReuseTypeOf.symbols │ ├── declarationEmitPartialNodeReuseTypeOf.types │ ├── declarationEmitPartialNodeReuseTypeReferences.js │ ├── declarationEmitPartialNodeReuseTypeReferences.symbols │ ├── declarationEmitPartialNodeReuseTypeReferences.types │ ├── declarationEmitPartialReuseComputedProperty.js │ ├── declarationEmitPartialReuseComputedProperty.symbols │ ├── declarationEmitPartialReuseComputedProperty.types │ ├── declarationEmitPathMappingMonorepo.errors.txt │ ├── declarationEmitPathMappingMonorepo.js │ ├── declarationEmitPathMappingMonorepo.symbols │ ├── declarationEmitPathMappingMonorepo.types │ ├── declarationEmitPathMappingMonorepo2.errors.txt │ ├── declarationEmitPathMappingMonorepo2.js │ ├── declarationEmitPathMappingMonorepo2.symbols │ ├── declarationEmitPathMappingMonorepo2.types │ ├── declarationEmitPrefersPathKindBasedOnBundling(target=es2015).errors.txt │ ├── declarationEmitPrefersPathKindBasedOnBundling(target=es2015).js │ ├── declarationEmitPrefersPathKindBasedOnBundling(target=es2015).symbols │ ├── declarationEmitPrefersPathKindBasedOnBundling(target=es2015).types │ ├── declarationEmitPrefersPathKindBasedOnBundling(target=es5).errors.txt │ ├── declarationEmitPrefersPathKindBasedOnBundling(target=es5).js │ ├── declarationEmitPrefersPathKindBasedOnBundling(target=es5).symbols │ ├── declarationEmitPrefersPathKindBasedOnBundling(target=es5).types │ ├── declarationEmitPrefersPathKindBasedOnBundling2(target=es2015).errors.txt │ ├── declarationEmitPrefersPathKindBasedOnBundling2(target=es2015).js │ ├── declarationEmitPrefersPathKindBasedOnBundling2(target=es2015).symbols │ ├── declarationEmitPrefersPathKindBasedOnBundling2(target=es2015).types │ ├── declarationEmitPrefersPathKindBasedOnBundling2(target=es5).errors.txt │ ├── declarationEmitPrefersPathKindBasedOnBundling2(target=es5).js │ ├── declarationEmitPrefersPathKindBasedOnBundling2(target=es5).symbols │ ├── declarationEmitPrefersPathKindBasedOnBundling2(target=es5).types │ ├── declarationEmitPreserveReferencedImports.js │ ├── declarationEmitPreserveReferencedImports.symbols │ ├── declarationEmitPreserveReferencedImports.types │ ├── declarationEmitPrivateAsync.js │ ├── declarationEmitPrivateAsync.symbols │ ├── declarationEmitPrivateAsync.types │ ├── declarationEmitPrivateNameCausesError.js │ ├── declarationEmitPrivateNameCausesError.symbols │ ├── declarationEmitPrivateNameCausesError.types │ ├── declarationEmitPrivatePromiseLikeInterface.errors.txt │ ├── declarationEmitPrivatePromiseLikeInterface.js │ ├── declarationEmitPrivateReadonlyLiterals.js │ ├── declarationEmitPrivateReadonlyLiterals.symbols │ ├── declarationEmitPrivateReadonlyLiterals.types │ ├── declarationEmitPrivateSymbolCausesVarDeclarationEmit2.errors.txt │ ├── declarationEmitPrivateSymbolCausesVarDeclarationEmit2.js │ ├── declarationEmitPrivateSymbolCausesVarDeclarationEmit2.symbols │ ├── declarationEmitPrivateSymbolCausesVarDeclarationEmit2.types │ ├── declarationEmitPrivateSymbolCausesVarDeclarationToBeEmitted.js │ ├── declarationEmitPrivateSymbolCausesVarDeclarationToBeEmitted.symbols │ ├── declarationEmitPrivateSymbolCausesVarDeclarationToBeEmitted.types │ ├── declarationEmitPromise.js │ ├── declarationEmitPromise.symbols │ ├── declarationEmitPromise.types │ ├── declarationEmitPropertyNumericStringKey.js │ ├── declarationEmitPropertyNumericStringKey.symbols │ ├── declarationEmitPropertyNumericStringKey.types │ ├── declarationEmitProtectedMembers(target=es2015).js │ ├── declarationEmitProtectedMembers(target=es2015).symbols │ ├── declarationEmitProtectedMembers(target=es2015).types │ ├── declarationEmitProtectedMembers(target=es5).errors.txt │ ├── declarationEmitProtectedMembers(target=es5).js │ ├── declarationEmitProtectedMembers(target=es5).symbols │ ├── declarationEmitProtectedMembers(target=es5).types │ ├── declarationEmitQualifiedAliasTypeArgument.js │ ├── declarationEmitQualifiedAliasTypeArgument.symbols │ ├── declarationEmitQualifiedAliasTypeArgument.types │ ├── declarationEmitReadonly.js │ ├── declarationEmitReadonly.symbols │ ├── declarationEmitReadonly.types │ ├── declarationEmitReadonlyComputedProperty.errors.txt │ ├── declarationEmitReadonlyComputedProperty.js │ ├── declarationEmitReadonlyComputedProperty.symbols │ ├── declarationEmitReadonlyComputedProperty.types │ ├── declarationEmitRecursiveConditionalAliasPreserved.js │ ├── declarationEmitRecursiveConditionalAliasPreserved.symbols │ ├── declarationEmitRecursiveConditionalAliasPreserved.types │ ├── declarationEmitRedundantTripleSlashModuleAugmentation.js │ ├── declarationEmitReexportedSymlinkReference.js │ ├── declarationEmitReexportedSymlinkReference.symbols │ ├── declarationEmitReexportedSymlinkReference.types │ ├── declarationEmitReexportedSymlinkReference2.js │ ├── declarationEmitReexportedSymlinkReference2.symbols │ ├── declarationEmitReexportedSymlinkReference2.types │ ├── declarationEmitReexportedSymlinkReference3.errors.txt │ ├── declarationEmitReexportedSymlinkReference3.js │ ├── declarationEmitReexportedSymlinkReference3.symbols │ ├── declarationEmitReexportedSymlinkReference3.types │ ├── declarationEmitRelativeModuleError.errors.txt │ ├── declarationEmitRelativeModuleError.js │ ├── declarationEmitRelativeModuleError.symbols │ ├── declarationEmitRelativeModuleError.types │ ├── declarationEmitResolveTypesIfNotReusable.js │ ├── declarationEmitResolveTypesIfNotReusable.symbols │ ├── declarationEmitResolveTypesIfNotReusable.types │ ├── declarationEmitRetainedAnnotationRetainsImportInOutput.js │ ├── declarationEmitRetainedAnnotationRetainsImportInOutput.symbols │ ├── declarationEmitRetainedAnnotationRetainsImportInOutput.types │ ├── declarationEmitRetainsJsdocyComments.js │ ├── declarationEmitRetainsJsdocyComments.symbols │ ├── declarationEmitRetainsJsdocyComments.types │ ├── declarationEmitReusesLambdaParameterNodes.js │ ├── declarationEmitReusesLambdaParameterNodes.symbols │ ├── declarationEmitReusesLambdaParameterNodes.types │ ├── declarationEmitScopeConsistency.js │ ├── declarationEmitScopeConsistency.symbols │ ├── declarationEmitScopeConsistency.types │ ├── declarationEmitScopeConsistency3.js │ ├── declarationEmitScopeConsistency3.symbols │ ├── declarationEmitScopeConsistency3.types │ ├── declarationEmitShadowing.js │ ├── declarationEmitShadowing.symbols │ ├── declarationEmitShadowing.types │ ├── declarationEmitShadowingInferNotRenamed.js │ ├── declarationEmitShadowingInferNotRenamed.symbols │ ├── declarationEmitShadowingInferNotRenamed.types │ ├── declarationEmitSimpleComputedNames1.js │ ├── declarationEmitSimpleComputedNames1.symbols │ ├── declarationEmitSimpleComputedNames1.types │ ├── declarationEmitSpreadStringlyKeyedEnum.js │ ├── declarationEmitSpreadStringlyKeyedEnum.symbols │ ├── declarationEmitSpreadStringlyKeyedEnum.types │ ├── declarationEmitStringEnumUsedInNonlocalSpread.js │ ├── declarationEmitStringEnumUsedInNonlocalSpread.symbols │ ├── declarationEmitStringEnumUsedInNonlocalSpread.types │ ├── declarationEmitSymlinkPaths(target=es2015).js │ ├── declarationEmitSymlinkPaths(target=es2015).symbols │ ├── declarationEmitSymlinkPaths(target=es2015).types │ ├── declarationEmitSymlinkPaths(target=es5).errors.txt │ ├── declarationEmitSymlinkPaths(target=es5).js │ ├── declarationEmitSymlinkPaths(target=es5).symbols │ ├── declarationEmitSymlinkPaths(target=es5).types │ ├── declarationEmitThisPredicates01.js │ ├── declarationEmitThisPredicates01.symbols │ ├── declarationEmitThisPredicates01.types │ ├── declarationEmitThisPredicates02.js │ ├── declarationEmitThisPredicates02.symbols │ ├── declarationEmitThisPredicates02.types │ ├── declarationEmitThisPredicatesWithPrivateName01.js │ ├── declarationEmitThisPredicatesWithPrivateName01.symbols │ ├── declarationEmitThisPredicatesWithPrivateName01.types │ ├── declarationEmitThisPredicatesWithPrivateName02.js │ ├── declarationEmitThisPredicatesWithPrivateName02.symbols │ ├── declarationEmitThisPredicatesWithPrivateName02.types │ ├── declarationEmitToDeclarationDirWithCompositeOption.js │ ├── declarationEmitToDeclarationDirWithCompositeOption.symbols │ ├── declarationEmitToDeclarationDirWithCompositeOption.types │ ├── declarationEmitToDeclarationDirWithDeclarationOption.js │ ├── declarationEmitToDeclarationDirWithDeclarationOption.symbols │ ├── declarationEmitToDeclarationDirWithDeclarationOption.types │ ├── declarationEmitToDeclarationDirWithoutCompositeAndDeclarationOptions.errors.txt │ ├── declarationEmitToDeclarationDirWithoutCompositeAndDeclarationOptions.js │ ├── declarationEmitToDeclarationDirWithoutCompositeAndDeclarationOptions.symbols │ ├── declarationEmitToDeclarationDirWithoutCompositeAndDeclarationOptions.types │ ├── declarationEmitTopLevelNodeFromCrossFile.js │ ├── declarationEmitTopLevelNodeFromCrossFile.symbols │ ├── declarationEmitTopLevelNodeFromCrossFile.types │ ├── declarationEmitTopLevelNodeFromCrossFile2.js │ ├── declarationEmitTopLevelNodeFromCrossFile2.symbols │ ├── declarationEmitTopLevelNodeFromCrossFile2.types │ ├── declarationEmitTransitiveImportOfHtmlDeclarationItem.js │ ├── declarationEmitTransitiveImportOfHtmlDeclarationItem.symbols │ ├── declarationEmitTransitiveImportOfHtmlDeclarationItem.types │ ├── declarationEmitTripleSlashReferenceAmbientModule.js │ ├── declarationEmitTupleRestSignatureLeadingVariadic.js │ ├── declarationEmitTupleRestSignatureLeadingVariadic.symbols │ ├── declarationEmitTupleRestSignatureLeadingVariadic.types │ ├── declarationEmitTypeAliasTypeParameterExtendingUnknownSymbol.errors.txt │ ├── declarationEmitTypeAliasTypeParameterExtendingUnknownSymbol.js │ ├── declarationEmitTypeAliasTypeParameterExtendingUnknownSymbol.symbols │ ├── declarationEmitTypeAliasTypeParameterExtendingUnknownSymbol.types │ ├── declarationEmitTypeAliasWithTypeParameters1.js │ ├── declarationEmitTypeAliasWithTypeParameters1.symbols │ ├── declarationEmitTypeAliasWithTypeParameters1.types │ ├── declarationEmitTypeAliasWithTypeParameters2.js │ ├── declarationEmitTypeAliasWithTypeParameters2.symbols │ ├── declarationEmitTypeAliasWithTypeParameters2.types │ ├── declarationEmitTypeAliasWithTypeParameters3.js │ ├── declarationEmitTypeAliasWithTypeParameters3.symbols │ ├── declarationEmitTypeAliasWithTypeParameters3.types │ ├── declarationEmitTypeAliasWithTypeParameters4.js │ ├── declarationEmitTypeAliasWithTypeParameters4.symbols │ ├── declarationEmitTypeAliasWithTypeParameters4.types │ ├── declarationEmitTypeAliasWithTypeParameters5.js │ ├── declarationEmitTypeAliasWithTypeParameters5.symbols │ ├── declarationEmitTypeAliasWithTypeParameters5.types │ ├── declarationEmitTypeAliasWithTypeParameters6.js │ ├── declarationEmitTypeAliasWithTypeParameters6.symbols │ ├── declarationEmitTypeAliasWithTypeParameters6.types │ ├── declarationEmitTypeParamMergedWithPrivate.js │ ├── declarationEmitTypeParamMergedWithPrivate.symbols │ ├── declarationEmitTypeParamMergedWithPrivate.types │ ├── declarationEmitTypeParameterNameInOuterScope.js │ ├── declarationEmitTypeParameterNameInOuterScope.symbols │ ├── declarationEmitTypeParameterNameInOuterScope.types │ ├── declarationEmitTypeParameterNameReusedInOverloads.errors.txt │ ├── declarationEmitTypeParameterNameReusedInOverloads.js │ ├── declarationEmitTypeParameterNameReusedInOverloads.symbols │ ├── declarationEmitTypeParameterNameReusedInOverloads.types │ ├── declarationEmitTypeParameterNameShadowedInternally.js │ ├── declarationEmitTypeParameterNameShadowedInternally.symbols │ ├── declarationEmitTypeParameterNameShadowedInternally.types │ ├── declarationEmitTypeofDefaultExport.js │ ├── declarationEmitTypeofDefaultExport.symbols │ ├── declarationEmitTypeofDefaultExport.types │ ├── declarationEmitTypeofRest.js │ ├── declarationEmitTypeofRest.symbols │ ├── declarationEmitTypeofRest.types │ ├── declarationEmitTypeofThisInClass.js │ ├── declarationEmitTypeofThisInClass.symbols │ ├── declarationEmitTypeofThisInClass.types │ ├── declarationEmitUnknownImport(target=es2015).errors.txt │ ├── declarationEmitUnknownImport(target=es2015).js │ ├── declarationEmitUnknownImport(target=es2015).symbols │ ├── declarationEmitUnknownImport(target=es2015).types │ ├── declarationEmitUnknownImport(target=es5).errors.txt │ ├── declarationEmitUnknownImport(target=es5).js │ ├── declarationEmitUnknownImport(target=es5).symbols │ ├── declarationEmitUnknownImport(target=es5).types │ ├── declarationEmitUnknownImport2(target=es2015).errors.txt │ ├── declarationEmitUnknownImport2(target=es2015).js │ ├── declarationEmitUnknownImport2(target=es2015).symbols │ ├── declarationEmitUnknownImport2(target=es2015).types │ ├── declarationEmitUnknownImport2(target=es5).errors.txt │ ├── declarationEmitUnknownImport2(target=es5).js │ ├── declarationEmitUnknownImport2(target=es5).symbols │ ├── declarationEmitUnknownImport2(target=es5).types │ ├── declarationEmitUnnessesaryTypeReferenceNotAdded(target=es2015).js │ ├── declarationEmitUnnessesaryTypeReferenceNotAdded(target=es2015).symbols │ ├── declarationEmitUnnessesaryTypeReferenceNotAdded(target=es2015).types │ ├── declarationEmitUnnessesaryTypeReferenceNotAdded(target=es5).errors.txt │ ├── declarationEmitUnnessesaryTypeReferenceNotAdded(target=es5).js │ ├── declarationEmitUnnessesaryTypeReferenceNotAdded(target=es5).symbols │ ├── declarationEmitUnnessesaryTypeReferenceNotAdded(target=es5).types │ ├── declarationEmitUnsafeImportSymbolName.errors.txt │ ├── declarationEmitUnsafeImportSymbolName.js │ ├── declarationEmitUnsafeImportSymbolName.symbols │ ├── declarationEmitUnsafeImportSymbolName.types │ ├── declarationEmitUsingAlternativeContainingModules1.js │ ├── declarationEmitUsingAlternativeContainingModules1.symbols │ ├── declarationEmitUsingAlternativeContainingModules1.types │ ├── declarationEmitUsingAlternativeContainingModules2.js │ ├── declarationEmitUsingAlternativeContainingModules2.symbols │ ├── declarationEmitUsingAlternativeContainingModules2.types │ ├── declarationEmitUsingTypeAlias1.errors.txt │ ├── declarationEmitUsingTypeAlias1.js │ ├── declarationEmitUsingTypeAlias1.symbols │ ├── declarationEmitUsingTypeAlias1.types │ ├── declarationEmitUsingTypeAlias2.js │ ├── declarationEmitUsingTypeAlias2.symbols │ ├── declarationEmitUsingTypeAlias2.types │ ├── declarationEmitVarInElidedBlock.errors.txt │ ├── declarationEmitVarInElidedBlock.symbols │ ├── declarationEmitVarInElidedBlock.types │ ├── declarationEmitWithComposite.js │ ├── declarationEmitWithComposite.symbols │ ├── declarationEmitWithComposite.types │ ├── declarationEmitWithDefaultAsComputedName(target=es2015).js │ ├── declarationEmitWithDefaultAsComputedName(target=es2015).symbols │ ├── declarationEmitWithDefaultAsComputedName(target=es2015).types │ ├── declarationEmitWithDefaultAsComputedName(target=es5).errors.txt │ ├── declarationEmitWithDefaultAsComputedName(target=es5).js │ ├── declarationEmitWithDefaultAsComputedName(target=es5).symbols │ ├── declarationEmitWithDefaultAsComputedName(target=es5).types │ ├── declarationEmitWithDefaultAsComputedName2(target=es2015).js │ ├── declarationEmitWithDefaultAsComputedName2(target=es2015).symbols │ ├── declarationEmitWithDefaultAsComputedName2(target=es2015).types │ ├── declarationEmitWithDefaultAsComputedName2(target=es5).errors.txt │ ├── declarationEmitWithDefaultAsComputedName2(target=es5).js │ ├── declarationEmitWithDefaultAsComputedName2(target=es5).symbols │ ├── declarationEmitWithDefaultAsComputedName2(target=es5).types │ ├── declarationEmitWithInvalidPackageJsonTypings.errors.txt │ ├── declarationEmitWithInvalidPackageJsonTypings.js │ ├── declarationEmitWithInvalidPackageJsonTypings.symbols │ ├── declarationEmitWithInvalidPackageJsonTypings.types │ ├── declarationEmitWorkWithInlineComments.js │ ├── declarationEmitWorkWithInlineComments.symbols │ ├── declarationEmitWorkWithInlineComments.types │ ├── declarationFileForHtmlFileWithinDeclarationFile.js │ ├── declarationFileForHtmlFileWithinDeclarationFile.symbols │ ├── declarationFileForHtmlFileWithinDeclarationFile.types │ ├── declarationFileForHtmlImport(allowarbitraryextensions=false).errors.txt │ ├── declarationFileForHtmlImport(allowarbitraryextensions=false).js │ ├── declarationFileForHtmlImport(allowarbitraryextensions=false).symbols │ ├── declarationFileForHtmlImport(allowarbitraryextensions=false).types │ ├── declarationFileForHtmlImport(allowarbitraryextensions=true).js │ ├── declarationFileForHtmlImport(allowarbitraryextensions=true).symbols │ ├── declarationFileForHtmlImport(allowarbitraryextensions=true).types │ ├── declarationFileForJsonImport(resolvejsonmodule=false).js │ ├── declarationFileForJsonImport(resolvejsonmodule=false).symbols │ ├── declarationFileForJsonImport(resolvejsonmodule=false).types │ ├── declarationFileForJsonImport(resolvejsonmodule=true).js │ ├── declarationFileForJsonImport(resolvejsonmodule=true).symbols │ ├── declarationFileForJsonImport(resolvejsonmodule=true).types │ ├── declarationFileForTsJsImport(module=node18).errors.txt │ ├── declarationFileForTsJsImport(module=node18).js │ ├── declarationFileForTsJsImport(module=node18).symbols │ ├── declarationFileForTsJsImport(module=node18).types │ ├── declarationFileForTsJsImport(module=node20).errors.txt │ ├── declarationFileForTsJsImport(module=node20).js │ ├── declarationFileForTsJsImport(module=node20).symbols │ ├── declarationFileForTsJsImport(module=node20).types │ ├── declarationFileForTsJsImport(module=nodenext).errors.txt │ ├── declarationFileForTsJsImport(module=nodenext).js │ ├── declarationFileForTsJsImport(module=nodenext).symbols │ ├── declarationFileForTsJsImport(module=nodenext).types │ ├── declarationFileNoCrashOnExtraExportModifier.errors.txt │ ├── declarationFileNoCrashOnExtraExportModifier.js │ ├── declarationFileNoCrashOnExtraExportModifier.symbols │ ├── declarationFileNoCrashOnExtraExportModifier.types │ ├── declarationFileOverwriteError.errors.txt │ ├── declarationFileOverwriteError.js │ ├── declarationFileOverwriteError.symbols │ ├── declarationFileOverwriteError.types │ ├── declarationFileOverwriteErrorWithOut.errors.txt │ ├── declarationFileOverwriteErrorWithOut.js │ ├── declarationFileOverwriteErrorWithOut.symbols │ ├── declarationFileOverwriteErrorWithOut.types │ ├── declarationFiles.errors.txt │ ├── declarationFiles.js │ ├── declarationFiles.symbols │ ├── declarationFiles.types │ ├── declarationFilesForNodeNativeModules(allowarbitraryextensions=false,module=node18).errors.txt │ ├── declarationFilesForNodeNativeModules(allowarbitraryextensions=false,module=node18).js │ ├── declarationFilesForNodeNativeModules(allowarbitraryextensions=false,module=node18).symbols │ ├── declarationFilesForNodeNativeModules(allowarbitraryextensions=false,module=node18).types │ ├── declarationFilesForNodeNativeModules(allowarbitraryextensions=false,module=node20).errors.txt │ ├── declarationFilesForNodeNativeModules(allowarbitraryextensions=false,module=node20).js │ ├── declarationFilesForNodeNativeModules(allowarbitraryextensions=false,module=node20).symbols │ ├── declarationFilesForNodeNativeModules(allowarbitraryextensions=false,module=node20).types │ ├── declarationFilesForNodeNativeModules(allowarbitraryextensions=false,module=nodenext).errors.txt │ ├── declarationFilesForNodeNativeModules(allowarbitraryextensions=false,module=nodenext).js │ ├── declarationFilesForNodeNativeModules(allowarbitraryextensions=false,module=nodenext).symbols │ ├── declarationFilesForNodeNativeModules(allowarbitraryextensions=false,module=nodenext).types │ ├── declarationFilesForNodeNativeModules(allowarbitraryextensions=true,module=node18).js │ ├── declarationFilesForNodeNativeModules(allowarbitraryextensions=true,module=node18).symbols │ ├── declarationFilesForNodeNativeModules(allowarbitraryextensions=true,module=node18).types │ ├── declarationFilesForNodeNativeModules(allowarbitraryextensions=true,module=node20).js │ ├── declarationFilesForNodeNativeModules(allowarbitraryextensions=true,module=node20).symbols │ ├── declarationFilesForNodeNativeModules(allowarbitraryextensions=true,module=node20).types │ ├── declarationFilesForNodeNativeModules(allowarbitraryextensions=true,module=nodenext).js │ ├── declarationFilesForNodeNativeModules(allowarbitraryextensions=true,module=nodenext).symbols │ ├── declarationFilesForNodeNativeModules(allowarbitraryextensions=true,module=nodenext).types │ ├── declarationFilesGeneratingTypeReferences.errors.txt │ ├── declarationFilesGeneratingTypeReferences.js │ ├── declarationFilesGeneratingTypeReferences.symbols │ ├── declarationFilesGeneratingTypeReferences.types │ ├── declarationFilesWithTypeReferences1.errors.txt │ ├── declarationFilesWithTypeReferences1.js │ ├── declarationFilesWithTypeReferences1.symbols │ ├── declarationFilesWithTypeReferences1.types │ ├── declarationFilesWithTypeReferences2.errors.txt │ ├── declarationFilesWithTypeReferences2.js │ ├── declarationFilesWithTypeReferences2.symbols │ ├── declarationFilesWithTypeReferences2.types │ ├── declarationFilesWithTypeReferences3.errors.txt │ ├── declarationFilesWithTypeReferences3.js │ ├── declarationFilesWithTypeReferences3.symbols │ ├── declarationFilesWithTypeReferences3.types │ ├── declarationFilesWithTypeReferences4.errors.txt │ ├── declarationFilesWithTypeReferences4.js │ ├── declarationFilesWithTypeReferences4.symbols │ ├── declarationFilesWithTypeReferences4.types │ ├── declarationFunctionTypeNonlocalShouldNotBeAnError.js │ ├── declarationFunctionTypeNonlocalShouldNotBeAnError.symbols │ ├── declarationFunctionTypeNonlocalShouldNotBeAnError.types │ ├── declarationImportTypeAliasInferredAndEmittable.js │ ├── declarationImportTypeAliasInferredAndEmittable.symbols │ ├── declarationImportTypeAliasInferredAndEmittable.types │ ├── declarationInAmbientContext.js │ ├── declarationInAmbientContext.symbols │ ├── declarationInAmbientContext.types │ ├── declarationMapGoToDefinition.baseline.jsonc │ ├── declarationMaps.js │ ├── declarationMaps.sourcemap.txt │ ├── declarationMaps.symbols │ ├── declarationMaps.types │ ├── declarationMapsEnableMapping_NoInline.baseline.jsonc │ ├── declarationMapsEnableMapping_NoInlineSources.baseline.jsonc │ ├── declarationMapsGeneratedMapsEnableMapping.baseline.jsonc │ ├── declarationMapsGeneratedMapsEnableMapping2.baseline.jsonc │ ├── declarationMapsGeneratedMapsEnableMapping3.baseline.jsonc │ ├── declarationMapsGoToDefinitionRelativeSourceRoot.baseline.jsonc │ ├── declarationMapsGoToDefinitionSameNameDifferentDirectory.baseline.jsonc │ ├── declarationMapsMultifile.js │ ├── declarationMapsMultifile.sourcemap.txt │ ├── declarationMapsMultifile.symbols │ ├── declarationMapsMultifile.types │ ├── declarationMapsOutFile.errors.txt │ ├── declarationMapsOutFile.js │ ├── declarationMapsOutFile.sourcemap.txt │ ├── declarationMapsOutFile.symbols │ ├── declarationMapsOutFile.types │ ├── declarationMapsOutFile2.errors.txt │ ├── declarationMapsOutFile2.js │ ├── declarationMapsOutFile2.sourcemap.txt │ ├── declarationMapsOutFile2.symbols │ ├── declarationMapsOutFile2.types │ ├── declarationMapsOutOfDateMapping.baseline.jsonc │ ├── declarationMapsWithSourceMap.errors.txt │ ├── declarationMapsWithSourceMap.js │ ├── declarationMapsWithSourceMap.sourcemap.txt │ ├── declarationMapsWithSourceMap.symbols │ ├── declarationMapsWithSourceMap.types │ ├── declarationMapsWithoutDeclaration.errors.txt │ ├── declarationMapsWithoutDeclaration.js │ ├── declarationMapsWithoutDeclaration.symbols │ ├── declarationMapsWithoutDeclaration.types │ ├── declarationMerging1.js │ ├── declarationMerging1.symbols │ ├── declarationMerging1.types │ ├── declarationMerging2.errors.txt │ ├── declarationMerging2.js │ ├── declarationMerging2.symbols │ ├── declarationMerging2.types │ ├── declarationNoDanglingGenerics.js │ ├── declarationNoDanglingGenerics.symbols │ ├── declarationNoDanglingGenerics.types │ ├── declarationNotFoundPackageBundlesTypes.errors.txt │ ├── declarationNotFoundPackageBundlesTypes.js │ ├── declarationNotFoundPackageBundlesTypes.symbols │ ├── declarationNotFoundPackageBundlesTypes.types │ ├── declarationQuotedMembers.js │ ├── declarationQuotedMembers.symbols │ ├── declarationQuotedMembers.types │ ├── declarationTypecheckNoUseBeforeReferenceCheck.symbols │ ├── declarationTypecheckNoUseBeforeReferenceCheck.types │ ├── declarationWithNoInitializer.errors.txt │ ├── declarationWithNoInitializer.js │ ├── declarationWithNoInitializer.symbols │ ├── declarationWithNoInitializer.types │ ├── declarationsAndAssignments.errors.txt │ ├── declarationsAndAssignments.js │ ├── declarationsAndAssignments.symbols │ ├── declarationsAndAssignments.types │ ├── declarationsForFileShadowingGlobalNoError.js │ ├── declarationsForFileShadowingGlobalNoError.symbols │ ├── declarationsForFileShadowingGlobalNoError.types │ ├── declarationsForIndirectTypeAliasReference.js │ ├── declarationsForIndirectTypeAliasReference.symbols │ ├── declarationsForIndirectTypeAliasReference.types │ ├── declarationsForInferredTypeFromOtherFile.js │ ├── declarationsForInferredTypeFromOtherFile.symbols │ ├── declarationsForInferredTypeFromOtherFile.types │ ├── declarationsIndirectGeneratedAliasReference.js │ ├── declarationsIndirectGeneratedAliasReference.symbols │ ├── declarationsIndirectGeneratedAliasReference.types │ ├── declarationsWithRecursiveInternalTypesProduceUniqueTypeParams.js │ ├── declarationsWithRecursiveInternalTypesProduceUniqueTypeParams.symbols │ ├── declarationsWithRecursiveInternalTypesProduceUniqueTypeParams.types │ ├── declareAlreadySeen.errors.txt │ ├── declareAlreadySeen.js │ ├── declareAlreadySeen.symbols │ ├── declareAlreadySeen.types │ ├── declareClassInterfaceImplementation.errors.txt │ ├── declareClassInterfaceImplementation.js │ ├── declareClassInterfaceImplementation.symbols │ ├── declareClassInterfaceImplementation.types │ ├── declareDottedExtend.js │ ├── declareDottedExtend.symbols │ ├── declareDottedExtend.types │ ├── declareDottedModuleName.js │ ├── declareDottedModuleName.symbols │ ├── declareDottedModuleName.types │ ├── declareExternalModuleWithExportAssignedFundule.js │ ├── declareExternalModuleWithExportAssignedFundule.symbols │ ├── declareExternalModuleWithExportAssignedFundule.types │ ├── declareFileExportAssignment.js │ ├── declareFileExportAssignment.symbols │ ├── declareFileExportAssignment.types │ ├── declareFileExportAssignmentWithVarFromVariableStatement.js │ ├── declareFileExportAssignmentWithVarFromVariableStatement.symbols │ ├── declareFileExportAssignmentWithVarFromVariableStatement.types │ ├── declareIdentifierAsBeginningOfStatementExpression01.js │ ├── declareIdentifierAsBeginningOfStatementExpression01.symbols │ ├── declareIdentifierAsBeginningOfStatementExpression01.types │ ├── declareModifierOnImport1.errors.txt │ ├── declareModifierOnImport1.js │ ├── declareModifierOnImport1.symbols │ ├── declareModifierOnImport1.types │ ├── declareModifierOnTypeAlias.js │ ├── declareModifierOnTypeAlias.symbols │ ├── declareModifierOnTypeAlias.types │ ├── declaredClassMergedwithSelf.errors.txt │ ├── declaredClassMergedwithSelf.js │ ├── declaredClassMergedwithSelf.symbols │ ├── declaredClassMergedwithSelf.types │ ├── declaredExternalModule.js │ ├── declaredExternalModule.symbols │ ├── declaredExternalModule.types │ ├── declaredExternalModuleWithExportAssignment.js │ ├── declaredExternalModuleWithExportAssignment.symbols │ ├── declaredExternalModuleWithExportAssignment.types │ ├── decoratedBlockScopedClass1(target=es2015).js │ ├── decoratedBlockScopedClass1(target=es2015).symbols │ ├── decoratedBlockScopedClass1(target=es2015).types │ ├── decoratedBlockScopedClass1(target=es5).errors.txt │ ├── decoratedBlockScopedClass1(target=es5).js │ ├── decoratedBlockScopedClass1(target=es5).symbols │ ├── decoratedBlockScopedClass1(target=es5).types │ ├── decoratedBlockScopedClass2(target=es2015).js │ ├── decoratedBlockScopedClass2(target=es2015).symbols │ ├── decoratedBlockScopedClass2(target=es2015).types │ ├── decoratedBlockScopedClass2(target=es5).errors.txt │ ├── decoratedBlockScopedClass2(target=es5).js │ ├── decoratedBlockScopedClass2(target=es5).symbols │ ├── decoratedBlockScopedClass2(target=es5).types │ ├── decoratedBlockScopedClass3(target=es2015).js │ ├── decoratedBlockScopedClass3(target=es2015).symbols │ ├── decoratedBlockScopedClass3(target=es2015).types │ ├── decoratedBlockScopedClass3(target=es5).errors.txt │ ├── decoratedBlockScopedClass3(target=es5).js │ ├── decoratedBlockScopedClass3(target=es5).symbols │ ├── decoratedBlockScopedClass3(target=es5).types │ ├── decoratedClassExportsCommonJS1.js │ ├── decoratedClassExportsCommonJS1.symbols │ ├── decoratedClassExportsCommonJS1.types │ ├── decoratedClassExportsCommonJS2.js │ ├── decoratedClassExportsCommonJS2.symbols │ ├── decoratedClassExportsCommonJS2.types │ ├── decoratedClassExportsSystem1.errors.txt │ ├── decoratedClassExportsSystem1.js │ ├── decoratedClassExportsSystem1.symbols │ ├── decoratedClassExportsSystem1.types │ ├── decoratedClassExportsSystem2.errors.txt │ ├── decoratedClassExportsSystem2.js │ ├── decoratedClassExportsSystem2.symbols │ ├── decoratedClassExportsSystem2.types │ ├── decoratedClassFromExternalModule.errors.txt │ ├── decoratedClassFromExternalModule.js │ ├── decoratedClassFromExternalModule.symbols │ ├── decoratedClassFromExternalModule.types │ ├── decoratedDefaultExportsGetExportedAmd.errors.txt │ ├── decoratedDefaultExportsGetExportedAmd.js │ ├── decoratedDefaultExportsGetExportedAmd.symbols │ ├── decoratedDefaultExportsGetExportedAmd.types │ ├── decoratedDefaultExportsGetExportedCommonjs.errors.txt │ ├── decoratedDefaultExportsGetExportedCommonjs.js │ ├── decoratedDefaultExportsGetExportedCommonjs.symbols │ ├── decoratedDefaultExportsGetExportedCommonjs.types │ ├── decoratedDefaultExportsGetExportedSystem.errors.txt │ ├── decoratedDefaultExportsGetExportedSystem.js │ ├── decoratedDefaultExportsGetExportedSystem.symbols │ ├── decoratedDefaultExportsGetExportedSystem.types │ ├── decoratedDefaultExportsGetExportedUmd.errors.txt │ ├── decoratedDefaultExportsGetExportedUmd.js │ ├── decoratedDefaultExportsGetExportedUmd.symbols │ ├── decoratedDefaultExportsGetExportedUmd.types │ ├── decoratorCallGeneric.errors.txt │ ├── decoratorCallGeneric.js │ ├── decoratorCallGeneric.symbols │ ├── decoratorCallGeneric.types │ ├── decoratorChecksFunctionBodies(target=es2015).errors.txt │ ├── decoratorChecksFunctionBodies(target=es2015).js │ ├── decoratorChecksFunctionBodies(target=es2015).symbols │ ├── decoratorChecksFunctionBodies(target=es2015).types │ ├── decoratorChecksFunctionBodies(target=es5).errors.txt │ ├── decoratorChecksFunctionBodies(target=es5).js │ ├── decoratorChecksFunctionBodies(target=es5).symbols │ ├── decoratorChecksFunctionBodies(target=es5).types │ ├── decoratorInAmbientContext.js │ ├── decoratorInAmbientContext.symbols │ ├── decoratorInAmbientContext.types │ ├── decoratorInJsFile.errors.txt │ ├── decoratorInJsFile.symbols │ ├── decoratorInJsFile.types │ ├── decoratorInJsFile1.errors.txt │ ├── decoratorInJsFile1.symbols │ ├── decoratorInJsFile1.types │ ├── decoratorInstantiateModulesInFunctionBodies(target=es2015).js │ ├── decoratorInstantiateModulesInFunctionBodies(target=es2015).symbols │ ├── decoratorInstantiateModulesInFunctionBodies(target=es2015).types │ ├── decoratorInstantiateModulesInFunctionBodies(target=es5).errors.txt │ ├── decoratorInstantiateModulesInFunctionBodies(target=es5).js │ ├── decoratorInstantiateModulesInFunctionBodies(target=es5).symbols │ ├── decoratorInstantiateModulesInFunctionBodies(target=es5).types │ ├── decoratorMetadata(target=es2015).js │ ├── decoratorMetadata(target=es2015).symbols │ ├── decoratorMetadata(target=es2015).types │ ├── decoratorMetadata(target=es5).errors.txt │ ├── decoratorMetadata(target=es5).js │ ├── decoratorMetadata(target=es5).symbols │ ├── decoratorMetadata(target=es5).types │ ├── decoratorMetadata-jsdoc(target=es2015).errors.txt │ ├── decoratorMetadata-jsdoc(target=es2015).js │ ├── decoratorMetadata-jsdoc(target=es2015).symbols │ ├── decoratorMetadata-jsdoc(target=es2015).types │ ├── decoratorMetadata-jsdoc(target=es5).errors.txt │ ├── decoratorMetadata-jsdoc(target=es5).js │ ├── decoratorMetadata-jsdoc(target=es5).symbols │ ├── decoratorMetadata-jsdoc(target=es5).types │ ├── decoratorMetadataConditionalType.errors.txt │ ├── decoratorMetadataConditionalType.js │ ├── decoratorMetadataConditionalType.symbols │ ├── decoratorMetadataConditionalType.types │ ├── decoratorMetadataElidedImport(module=commonjs).js │ ├── decoratorMetadataElidedImport(module=commonjs).symbols │ ├── decoratorMetadataElidedImport(module=commonjs).types │ ├── decoratorMetadataElidedImport(module=esnext).js │ ├── decoratorMetadataElidedImport(module=esnext).symbols │ ├── decoratorMetadataElidedImport(module=esnext).types │ ├── decoratorMetadataElidedImportOnDeclare(module=commonjs).js │ ├── decoratorMetadataElidedImportOnDeclare(module=commonjs).symbols │ ├── decoratorMetadataElidedImportOnDeclare(module=commonjs).types │ ├── decoratorMetadataElidedImportOnDeclare(module=esnext).js │ ├── decoratorMetadataElidedImportOnDeclare(module=esnext).symbols │ ├── decoratorMetadataElidedImportOnDeclare(module=esnext).types │ ├── decoratorMetadataForMethodWithNoReturnTypeAnnotation01(target=es2015).js │ ├── decoratorMetadataForMethodWithNoReturnTypeAnnotation01(target=es2015).symbols │ ├── decoratorMetadataForMethodWithNoReturnTypeAnnotation01(target=es2015).types │ ├── decoratorMetadataForMethodWithNoReturnTypeAnnotation01(target=es5).errors.txt │ ├── decoratorMetadataForMethodWithNoReturnTypeAnnotation01(target=es5).js │ ├── decoratorMetadataForMethodWithNoReturnTypeAnnotation01(target=es5).symbols │ ├── decoratorMetadataForMethodWithNoReturnTypeAnnotation01(target=es5).types │ ├── decoratorMetadataGenericTypeVariable.errors.txt │ ├── decoratorMetadataGenericTypeVariable.js │ ├── decoratorMetadataGenericTypeVariable.symbols │ ├── decoratorMetadataGenericTypeVariable.types │ ├── decoratorMetadataGenericTypeVariableDefault.errors.txt │ ├── decoratorMetadataGenericTypeVariableDefault.js │ ├── decoratorMetadataGenericTypeVariableDefault.symbols │ ├── decoratorMetadataGenericTypeVariableDefault.types │ ├── decoratorMetadataGenericTypeVariableInScope.errors.txt │ ├── decoratorMetadataGenericTypeVariableInScope.js │ ├── decoratorMetadataGenericTypeVariableInScope.symbols │ ├── decoratorMetadataGenericTypeVariableInScope.types │ ├── decoratorMetadataNoLibIsolatedModulesTypes.errors.txt │ ├── decoratorMetadataNoLibIsolatedModulesTypes.js │ ├── decoratorMetadataNoLibIsolatedModulesTypes.symbols │ ├── decoratorMetadataNoLibIsolatedModulesTypes.types │ ├── decoratorMetadataNoStrictNull.js │ ├── decoratorMetadataNoStrictNull.symbols │ ├── decoratorMetadataNoStrictNull.types │ ├── decoratorMetadataOnInferredType(target=es2015).js │ ├── decoratorMetadataOnInferredType(target=es2015).symbols │ ├── decoratorMetadataOnInferredType(target=es2015).types │ ├── decoratorMetadataOnInferredType(target=es5).errors.txt │ ├── decoratorMetadataOnInferredType(target=es5).js │ ├── decoratorMetadataOnInferredType(target=es5).symbols │ ├── decoratorMetadataOnInferredType(target=es5).types │ ├── decoratorMetadataPromise.js │ ├── decoratorMetadataPromise.symbols │ ├── decoratorMetadataPromise.types │ ├── decoratorMetadataRestParameterWithImportedType(target=es2015).errors.txt │ ├── decoratorMetadataRestParameterWithImportedType(target=es2015).js │ ├── decoratorMetadataRestParameterWithImportedType(target=es2015).symbols │ ├── decoratorMetadataRestParameterWithImportedType(target=es2015).types │ ├── decoratorMetadataRestParameterWithImportedType(target=es5).errors.txt │ ├── decoratorMetadataRestParameterWithImportedType(target=es5).js │ ├── decoratorMetadataRestParameterWithImportedType(target=es5).symbols │ ├── decoratorMetadataRestParameterWithImportedType(target=es5).types │ ├── decoratorMetadataTypeOnlyExport.js │ ├── decoratorMetadataTypeOnlyExport.symbols │ ├── decoratorMetadataTypeOnlyExport.types │ ├── decoratorMetadataTypeOnlyImport.errors.txt │ ├── decoratorMetadataTypeOnlyImport.js │ ├── decoratorMetadataTypeOnlyImport.symbols │ ├── decoratorMetadataTypeOnlyImport.types │ ├── decoratorMetadataWithConstructorType(target=es2015).js │ ├── decoratorMetadataWithConstructorType(target=es2015).symbols │ ├── decoratorMetadataWithConstructorType(target=es2015).types │ ├── decoratorMetadataWithConstructorType(target=es5).errors.txt │ ├── decoratorMetadataWithConstructorType(target=es5).js │ ├── decoratorMetadataWithConstructorType(target=es5).symbols │ ├── decoratorMetadataWithConstructorType(target=es5).types │ ├── decoratorMetadataWithImportDeclarationNameCollision(target=es2015).js │ ├── decoratorMetadataWithImportDeclarationNameCollision(target=es2015).symbols │ ├── decoratorMetadataWithImportDeclarationNameCollision(target=es2015).types │ ├── decoratorMetadataWithImportDeclarationNameCollision(target=es5).errors.txt │ ├── decoratorMetadataWithImportDeclarationNameCollision(target=es5).js │ ├── decoratorMetadataWithImportDeclarationNameCollision(target=es5).symbols │ ├── decoratorMetadataWithImportDeclarationNameCollision(target=es5).types │ ├── decoratorMetadataWithImportDeclarationNameCollision2(target=es2015).js │ ├── decoratorMetadataWithImportDeclarationNameCollision2(target=es2015).symbols │ ├── decoratorMetadataWithImportDeclarationNameCollision2(target=es2015).types │ ├── decoratorMetadataWithImportDeclarationNameCollision2(target=es5).errors.txt │ ├── decoratorMetadataWithImportDeclarationNameCollision2(target=es5).js │ ├── decoratorMetadataWithImportDeclarationNameCollision2(target=es5).symbols │ ├── decoratorMetadataWithImportDeclarationNameCollision2(target=es5).types │ ├── decoratorMetadataWithImportDeclarationNameCollision3(target=es2015).js │ ├── decoratorMetadataWithImportDeclarationNameCollision3(target=es2015).symbols │ ├── decoratorMetadataWithImportDeclarationNameCollision3(target=es2015).types │ ├── decoratorMetadataWithImportDeclarationNameCollision3(target=es5).errors.txt │ ├── decoratorMetadataWithImportDeclarationNameCollision3(target=es5).js │ ├── decoratorMetadataWithImportDeclarationNameCollision3(target=es5).symbols │ ├── decoratorMetadataWithImportDeclarationNameCollision3(target=es5).types │ ├── decoratorMetadataWithImportDeclarationNameCollision4(target=es2015).errors.txt │ ├── decoratorMetadataWithImportDeclarationNameCollision4(target=es2015).js │ ├── decoratorMetadataWithImportDeclarationNameCollision4(target=es2015).symbols │ ├── decoratorMetadataWithImportDeclarationNameCollision4(target=es2015).types │ ├── decoratorMetadataWithImportDeclarationNameCollision4(target=es5).errors.txt │ ├── decoratorMetadataWithImportDeclarationNameCollision4(target=es5).js │ ├── decoratorMetadataWithImportDeclarationNameCollision4(target=es5).symbols │ ├── decoratorMetadataWithImportDeclarationNameCollision4(target=es5).types │ ├── decoratorMetadataWithImportDeclarationNameCollision5(target=es2015).js │ ├── decoratorMetadataWithImportDeclarationNameCollision5(target=es2015).symbols │ ├── decoratorMetadataWithImportDeclarationNameCollision5(target=es2015).types │ ├── decoratorMetadataWithImportDeclarationNameCollision5(target=es5).errors.txt │ ├── decoratorMetadataWithImportDeclarationNameCollision5(target=es5).js │ ├── decoratorMetadataWithImportDeclarationNameCollision5(target=es5).symbols │ ├── decoratorMetadataWithImportDeclarationNameCollision5(target=es5).types │ ├── decoratorMetadataWithImportDeclarationNameCollision6(target=es2015).js │ ├── decoratorMetadataWithImportDeclarationNameCollision6(target=es2015).symbols │ ├── decoratorMetadataWithImportDeclarationNameCollision6(target=es2015).types │ ├── decoratorMetadataWithImportDeclarationNameCollision6(target=es5).errors.txt │ ├── decoratorMetadataWithImportDeclarationNameCollision6(target=es5).js │ ├── decoratorMetadataWithImportDeclarationNameCollision6(target=es5).symbols │ ├── decoratorMetadataWithImportDeclarationNameCollision6(target=es5).types │ ├── decoratorMetadataWithImportDeclarationNameCollision7(target=es2015).errors.txt │ ├── decoratorMetadataWithImportDeclarationNameCollision7(target=es2015).js │ ├── decoratorMetadataWithImportDeclarationNameCollision7(target=es2015).symbols │ ├── decoratorMetadataWithImportDeclarationNameCollision7(target=es2015).types │ ├── decoratorMetadataWithImportDeclarationNameCollision7(target=es5).errors.txt │ ├── decoratorMetadataWithImportDeclarationNameCollision7(target=es5).js │ ├── decoratorMetadataWithImportDeclarationNameCollision7(target=es5).symbols │ ├── decoratorMetadataWithImportDeclarationNameCollision7(target=es5).types │ ├── decoratorMetadataWithImportDeclarationNameCollision8(target=es2015).js │ ├── decoratorMetadataWithImportDeclarationNameCollision8(target=es2015).symbols │ ├── decoratorMetadataWithImportDeclarationNameCollision8(target=es2015).types │ ├── decoratorMetadataWithImportDeclarationNameCollision8(target=es5).errors.txt │ ├── decoratorMetadataWithImportDeclarationNameCollision8(target=es5).js │ ├── decoratorMetadataWithImportDeclarationNameCollision8(target=es5).symbols │ ├── decoratorMetadataWithImportDeclarationNameCollision8(target=es5).types │ ├── decoratorMetadataWithTypeOnlyImport(target=es2015).js │ ├── decoratorMetadataWithTypeOnlyImport(target=es2015).symbols │ ├── decoratorMetadataWithTypeOnlyImport(target=es2015).types │ ├── decoratorMetadataWithTypeOnlyImport(target=es5).errors.txt │ ├── decoratorMetadataWithTypeOnlyImport(target=es5).js │ ├── decoratorMetadataWithTypeOnlyImport(target=es5).symbols │ ├── decoratorMetadataWithTypeOnlyImport(target=es5).types │ ├── decoratorMetadataWithTypeOnlyImport2.errors.txt │ ├── decoratorMetadataWithTypeOnlyImport2.js │ ├── decoratorMetadataWithTypeOnlyImport2.symbols │ ├── decoratorMetadataWithTypeOnlyImport2.types │ ├── decoratorOnArrowFunction.errors.txt │ ├── decoratorOnArrowFunction.js │ ├── decoratorOnArrowFunction.symbols │ ├── decoratorOnArrowFunction.types │ ├── decoratorOnAwait.errors.txt │ ├── decoratorOnAwait.js │ ├── decoratorOnAwait.symbols │ ├── decoratorOnAwait.types │ ├── decoratorOnClass1(target=es2015).js │ ├── decoratorOnClass1(target=es2015).symbols │ ├── decoratorOnClass1(target=es2015).types │ ├── decoratorOnClass1(target=es5).errors.txt │ ├── decoratorOnClass1(target=es5).js │ ├── decoratorOnClass1(target=es5).symbols │ ├── decoratorOnClass1(target=es5).types │ ├── decoratorOnClass1.es6.js │ ├── decoratorOnClass1.es6.symbols │ ├── decoratorOnClass1.es6.types │ ├── decoratorOnClass2(target=es2015).js │ ├── decoratorOnClass2(target=es2015).symbols │ ├── decoratorOnClass2(target=es2015).types │ ├── decoratorOnClass2(target=es5).errors.txt │ ├── decoratorOnClass2(target=es5).js │ ├── decoratorOnClass2(target=es5).symbols │ ├── decoratorOnClass2(target=es5).types │ ├── decoratorOnClass2.es6.js │ ├── decoratorOnClass2.es6.symbols │ ├── decoratorOnClass2.es6.types │ ├── decoratorOnClass3(target=es2015).js │ ├── decoratorOnClass3(target=es2015).symbols │ ├── decoratorOnClass3(target=es2015).types │ ├── decoratorOnClass3(target=es5).errors.txt │ ├── decoratorOnClass3(target=es5).js │ ├── decoratorOnClass3(target=es5).symbols │ ├── decoratorOnClass3(target=es5).types │ ├── decoratorOnClass3.es6.js │ ├── decoratorOnClass3.es6.symbols │ ├── decoratorOnClass3.es6.types │ ├── decoratorOnClass4(target=es2015).js │ ├── decoratorOnClass4(target=es2015).symbols │ ├── decoratorOnClass4(target=es2015).types │ ├── decoratorOnClass4(target=es5).errors.txt │ ├── decoratorOnClass4(target=es5).js │ ├── decoratorOnClass4(target=es5).symbols │ ├── decoratorOnClass4(target=es5).types │ ├── decoratorOnClass4.es6.js │ ├── decoratorOnClass4.es6.symbols │ ├── decoratorOnClass4.es6.types │ ├── decoratorOnClass5(target=es2015).js │ ├── decoratorOnClass5(target=es2015).symbols │ ├── decoratorOnClass5(target=es2015).types │ ├── decoratorOnClass5(target=es5).errors.txt │ ├── decoratorOnClass5(target=es5).js │ ├── decoratorOnClass5(target=es5).symbols │ ├── decoratorOnClass5(target=es5).types │ ├── decoratorOnClass5.es6.js │ ├── decoratorOnClass5.es6.symbols │ ├── decoratorOnClass5.es6.types │ ├── decoratorOnClass6.es6.js │ ├── decoratorOnClass6.es6.symbols │ ├── decoratorOnClass6.es6.types │ ├── decoratorOnClass7.es6.js │ ├── decoratorOnClass7.es6.symbols │ ├── decoratorOnClass7.es6.types │ ├── decoratorOnClass8(target=es2015).errors.txt │ ├── decoratorOnClass8(target=es2015).js │ ├── decoratorOnClass8(target=es2015).symbols │ ├── decoratorOnClass8(target=es2015).types │ ├── decoratorOnClass8(target=es5).errors.txt │ ├── decoratorOnClass8(target=es5).js │ ├── decoratorOnClass8(target=es5).symbols │ ├── decoratorOnClass8(target=es5).types │ ├── decoratorOnClass8.es6.js │ ├── decoratorOnClass8.es6.symbols │ ├── decoratorOnClass8.es6.types │ ├── decoratorOnClass9(target=es2015).js │ ├── decoratorOnClass9(target=es2015).symbols │ ├── decoratorOnClass9(target=es2015).types │ ├── decoratorOnClass9(target=es5).errors.txt │ ├── decoratorOnClass9(target=es5).js │ ├── decoratorOnClass9(target=es5).symbols │ ├── decoratorOnClass9(target=es5).types │ ├── decoratorOnClassAccessor1(target=es2015).js │ ├── decoratorOnClassAccessor1(target=es2015).symbols │ ├── decoratorOnClassAccessor1(target=es2015).types │ ├── decoratorOnClassAccessor1(target=es5).errors.txt │ ├── decoratorOnClassAccessor1(target=es5).js │ ├── decoratorOnClassAccessor1(target=es5).symbols │ ├── decoratorOnClassAccessor1(target=es5).types │ ├── decoratorOnClassAccessor1.es6.js │ ├── decoratorOnClassAccessor1.es6.symbols │ ├── decoratorOnClassAccessor1.es6.types │ ├── decoratorOnClassAccessor2(target=es2015).js │ ├── decoratorOnClassAccessor2(target=es2015).symbols │ ├── decoratorOnClassAccessor2(target=es2015).types │ ├── decoratorOnClassAccessor2(target=es5).errors.txt │ ├── decoratorOnClassAccessor2(target=es5).js │ ├── decoratorOnClassAccessor2(target=es5).symbols │ ├── decoratorOnClassAccessor2(target=es5).types │ ├── decoratorOnClassAccessor3(target=es2015).errors.txt │ ├── decoratorOnClassAccessor3(target=es2015).js │ ├── decoratorOnClassAccessor3(target=es2015).symbols │ ├── decoratorOnClassAccessor3(target=es2015).types │ ├── decoratorOnClassAccessor3(target=es5).errors.txt │ ├── decoratorOnClassAccessor3(target=es5).js │ ├── decoratorOnClassAccessor3(target=es5).symbols │ ├── decoratorOnClassAccessor3(target=es5).types │ ├── decoratorOnClassAccessor4(target=es2015).js │ ├── decoratorOnClassAccessor4(target=es2015).symbols │ ├── decoratorOnClassAccessor4(target=es2015).types │ ├── decoratorOnClassAccessor4(target=es5).errors.txt │ ├── decoratorOnClassAccessor4(target=es5).js │ ├── decoratorOnClassAccessor4(target=es5).symbols │ ├── decoratorOnClassAccessor4(target=es5).types │ ├── decoratorOnClassAccessor5(target=es2015).js │ ├── decoratorOnClassAccessor5(target=es2015).symbols │ ├── decoratorOnClassAccessor5(target=es2015).types │ ├── decoratorOnClassAccessor5(target=es5).errors.txt │ ├── decoratorOnClassAccessor5(target=es5).js │ ├── decoratorOnClassAccessor5(target=es5).symbols │ ├── decoratorOnClassAccessor5(target=es5).types │ ├── decoratorOnClassAccessor6(target=es2015).errors.txt │ ├── decoratorOnClassAccessor6(target=es2015).js │ ├── decoratorOnClassAccessor6(target=es2015).symbols │ ├── decoratorOnClassAccessor6(target=es2015).types │ ├── decoratorOnClassAccessor6(target=es5).errors.txt │ ├── decoratorOnClassAccessor6(target=es5).js │ ├── decoratorOnClassAccessor6(target=es5).symbols │ ├── decoratorOnClassAccessor6(target=es5).types │ ├── decoratorOnClassAccessor7(target=es2015).errors.txt │ ├── decoratorOnClassAccessor7(target=es2015).js │ ├── decoratorOnClassAccessor7(target=es2015).symbols │ ├── decoratorOnClassAccessor7(target=es2015).types │ ├── decoratorOnClassAccessor7(target=es5).errors.txt │ ├── decoratorOnClassAccessor7(target=es5).js │ ├── decoratorOnClassAccessor7(target=es5).symbols │ ├── decoratorOnClassAccessor7(target=es5).types │ ├── decoratorOnClassAccessor8(target=es2015).js │ ├── decoratorOnClassAccessor8(target=es2015).symbols │ ├── decoratorOnClassAccessor8(target=es2015).types │ ├── decoratorOnClassAccessor8(target=es5).errors.txt │ ├── decoratorOnClassAccessor8(target=es5).js │ ├── decoratorOnClassAccessor8(target=es5).symbols │ ├── decoratorOnClassAccessor8(target=es5).types │ ├── decoratorOnClassConstructor1(target=es2015).errors.txt │ ├── decoratorOnClassConstructor1(target=es2015).js │ ├── decoratorOnClassConstructor1(target=es2015).symbols │ ├── decoratorOnClassConstructor1(target=es2015).types │ ├── decoratorOnClassConstructor1(target=es5).errors.txt │ ├── decoratorOnClassConstructor1(target=es5).js │ ├── decoratorOnClassConstructor1(target=es5).symbols │ ├── decoratorOnClassConstructor1(target=es5).types │ ├── decoratorOnClassConstructor2(target=es2015).errors.txt │ ├── decoratorOnClassConstructor2(target=es2015).js │ ├── decoratorOnClassConstructor2(target=es2015).symbols │ ├── decoratorOnClassConstructor2(target=es2015).types │ ├── decoratorOnClassConstructor2(target=es5).errors.txt │ ├── decoratorOnClassConstructor2(target=es5).js │ ├── decoratorOnClassConstructor2(target=es5).symbols │ ├── decoratorOnClassConstructor2(target=es5).types │ ├── decoratorOnClassConstructor3(target=es2015).errors.txt │ ├── decoratorOnClassConstructor3(target=es2015).js │ ├── decoratorOnClassConstructor3(target=es2015).symbols │ ├── decoratorOnClassConstructor3(target=es2015).types │ ├── decoratorOnClassConstructor3(target=es5).errors.txt │ ├── decoratorOnClassConstructor3(target=es5).js │ ├── decoratorOnClassConstructor3(target=es5).symbols │ ├── decoratorOnClassConstructor3(target=es5).types │ ├── decoratorOnClassConstructor4(target=es2015).js │ ├── decoratorOnClassConstructor4(target=es2015).symbols │ ├── decoratorOnClassConstructor4(target=es2015).types │ ├── decoratorOnClassConstructor4(target=es5).errors.txt │ ├── decoratorOnClassConstructor4(target=es5).js │ ├── decoratorOnClassConstructor4(target=es5).symbols │ ├── decoratorOnClassConstructor4(target=es5).types │ ├── decoratorOnClassConstructorParameter1(target=es2015).errors.txt │ ├── decoratorOnClassConstructorParameter1(target=es2015).js │ ├── decoratorOnClassConstructorParameter1(target=es2015).symbols │ ├── decoratorOnClassConstructorParameter1(target=es2015).types │ ├── decoratorOnClassConstructorParameter1(target=es5).errors.txt │ ├── decoratorOnClassConstructorParameter1(target=es5).js │ ├── decoratorOnClassConstructorParameter1(target=es5).symbols │ ├── decoratorOnClassConstructorParameter1(target=es5).types │ ├── decoratorOnClassConstructorParameter4(target=es2015).errors.txt │ ├── decoratorOnClassConstructorParameter4(target=es2015).js │ ├── decoratorOnClassConstructorParameter4(target=es2015).symbols │ ├── decoratorOnClassConstructorParameter4(target=es2015).types │ ├── decoratorOnClassConstructorParameter4(target=es5).errors.txt │ ├── decoratorOnClassConstructorParameter4(target=es5).js │ ├── decoratorOnClassConstructorParameter4(target=es5).symbols │ ├── decoratorOnClassConstructorParameter4(target=es5).types │ ├── decoratorOnClassConstructorParameter5.js │ ├── decoratorOnClassMethod1(target=es2015).js │ ├── decoratorOnClassMethod1(target=es2015).symbols │ ├── decoratorOnClassMethod1(target=es2015).types │ ├── decoratorOnClassMethod1(target=es5).errors.txt │ ├── decoratorOnClassMethod1(target=es5).js │ ├── decoratorOnClassMethod1(target=es5).symbols │ ├── decoratorOnClassMethod1(target=es5).types │ ├── decoratorOnClassMethod1.es6.js │ ├── decoratorOnClassMethod1.es6.symbols │ ├── decoratorOnClassMethod1.es6.types │ ├── decoratorOnClassMethod10(target=es2015).errors.txt │ ├── decoratorOnClassMethod10(target=es2015).js │ ├── decoratorOnClassMethod10(target=es2015).symbols │ ├── decoratorOnClassMethod10(target=es2015).types │ ├── decoratorOnClassMethod10(target=es5).errors.txt │ ├── decoratorOnClassMethod10(target=es5).js │ ├── decoratorOnClassMethod10(target=es5).symbols │ ├── decoratorOnClassMethod10(target=es5).types │ ├── decoratorOnClassMethod11(target=es2015).errors.txt │ ├── decoratorOnClassMethod11(target=es2015).js │ ├── decoratorOnClassMethod11(target=es2015).symbols │ ├── decoratorOnClassMethod11(target=es2015).types │ ├── decoratorOnClassMethod11(target=es5).errors.txt │ ├── decoratorOnClassMethod11(target=es5).js │ ├── decoratorOnClassMethod11(target=es5).symbols │ ├── decoratorOnClassMethod11(target=es5).types │ ├── decoratorOnClassMethod12(target=es2015).errors.txt │ ├── decoratorOnClassMethod12(target=es2015).js │ ├── decoratorOnClassMethod12(target=es2015).symbols │ ├── decoratorOnClassMethod12(target=es2015).types │ ├── decoratorOnClassMethod12(target=es5).errors.txt │ ├── decoratorOnClassMethod12(target=es5).js │ ├── decoratorOnClassMethod12(target=es5).symbols │ ├── decoratorOnClassMethod12(target=es5).types │ ├── decoratorOnClassMethod13.js │ ├── decoratorOnClassMethod13.symbols │ ├── decoratorOnClassMethod13.types │ ├── decoratorOnClassMethod14.js │ ├── decoratorOnClassMethod14.symbols │ ├── decoratorOnClassMethod14.types │ ├── decoratorOnClassMethod15.js │ ├── decoratorOnClassMethod15.symbols │ ├── decoratorOnClassMethod15.types │ ├── decoratorOnClassMethod16.js │ ├── decoratorOnClassMethod16.symbols │ ├── decoratorOnClassMethod16.types │ ├── decoratorOnClassMethod17.errors.txt │ ├── decoratorOnClassMethod17.js │ ├── decoratorOnClassMethod17.symbols │ ├── decoratorOnClassMethod17.types │ ├── decoratorOnClassMethod18.js │ ├── decoratorOnClassMethod18.symbols │ ├── decoratorOnClassMethod18.types │ ├── decoratorOnClassMethod19(target=es2015).js │ ├── decoratorOnClassMethod19(target=es2015).symbols │ ├── decoratorOnClassMethod19(target=es2015).types │ ├── decoratorOnClassMethod19(target=es2022).js │ ├── decoratorOnClassMethod19(target=es2022).symbols │ ├── decoratorOnClassMethod19(target=es2022).types │ ├── decoratorOnClassMethod19(target=esnext).js │ ├── decoratorOnClassMethod19(target=esnext).symbols │ ├── decoratorOnClassMethod19(target=esnext).types │ ├── decoratorOnClassMethod2(target=es2015).js │ ├── decoratorOnClassMethod2(target=es2015).symbols │ ├── decoratorOnClassMethod2(target=es2015).types │ ├── decoratorOnClassMethod2(target=es5).errors.txt │ ├── decoratorOnClassMethod2(target=es5).js │ ├── decoratorOnClassMethod2(target=es5).symbols │ ├── decoratorOnClassMethod2(target=es5).types │ ├── decoratorOnClassMethod3(target=es2015).errors.txt │ ├── decoratorOnClassMethod3(target=es2015).js │ ├── decoratorOnClassMethod3(target=es2015).symbols │ ├── decoratorOnClassMethod3(target=es2015).types │ ├── decoratorOnClassMethod3(target=es5).errors.txt │ ├── decoratorOnClassMethod3(target=es5).js │ ├── decoratorOnClassMethod3(target=es5).symbols │ ├── decoratorOnClassMethod3(target=es5).types │ ├── decoratorOnClassMethod4.js │ ├── decoratorOnClassMethod4.symbols │ ├── decoratorOnClassMethod4.types │ ├── decoratorOnClassMethod5.js │ ├── decoratorOnClassMethod5.symbols │ ├── decoratorOnClassMethod5.types │ ├── decoratorOnClassMethod6.errors.txt │ ├── decoratorOnClassMethod6.js │ ├── decoratorOnClassMethod6.symbols │ ├── decoratorOnClassMethod6.types │ ├── decoratorOnClassMethod7.js │ ├── decoratorOnClassMethod7.symbols │ ├── decoratorOnClassMethod7.types │ ├── decoratorOnClassMethod8(target=es2015).errors.txt │ ├── decoratorOnClassMethod8(target=es2015).js │ ├── decoratorOnClassMethod8(target=es2015).symbols │ ├── decoratorOnClassMethod8(target=es2015).types │ ├── decoratorOnClassMethod8(target=es5).errors.txt │ ├── decoratorOnClassMethod8(target=es5).js │ ├── decoratorOnClassMethod8(target=es5).symbols │ ├── decoratorOnClassMethod8(target=es5).types │ ├── decoratorOnClassMethodOverload1(target=es2015).errors.txt │ ├── decoratorOnClassMethodOverload1(target=es2015).js │ ├── decoratorOnClassMethodOverload1(target=es2015).symbols │ ├── decoratorOnClassMethodOverload1(target=es2015).types │ ├── decoratorOnClassMethodOverload1(target=es5).errors.txt │ ├── decoratorOnClassMethodOverload1(target=es5).js │ ├── decoratorOnClassMethodOverload1(target=es5).symbols │ ├── decoratorOnClassMethodOverload1(target=es5).types │ ├── decoratorOnClassMethodOverload2(target=es2015).js │ ├── decoratorOnClassMethodOverload2(target=es2015).symbols │ ├── decoratorOnClassMethodOverload2(target=es2015).types │ ├── decoratorOnClassMethodOverload2(target=es5).errors.txt │ ├── decoratorOnClassMethodOverload2(target=es5).js │ ├── decoratorOnClassMethodOverload2(target=es5).symbols │ ├── decoratorOnClassMethodOverload2(target=es5).types │ ├── decoratorOnClassMethodParameter1(target=es2015).js │ ├── decoratorOnClassMethodParameter1(target=es2015).symbols │ ├── decoratorOnClassMethodParameter1(target=es2015).types │ ├── decoratorOnClassMethodParameter1(target=es5).errors.txt │ ├── decoratorOnClassMethodParameter1(target=es5).js │ ├── decoratorOnClassMethodParameter1(target=es5).symbols │ ├── decoratorOnClassMethodParameter1(target=es5).types │ ├── decoratorOnClassMethodParameter1.es6.js │ ├── decoratorOnClassMethodParameter1.es6.symbols │ ├── decoratorOnClassMethodParameter1.es6.types │ ├── decoratorOnClassMethodParameter2(target=es2015).js │ ├── decoratorOnClassMethodParameter2(target=es2015).symbols │ ├── decoratorOnClassMethodParameter2(target=es2015).types │ ├── decoratorOnClassMethodParameter2(target=es5).errors.txt │ ├── decoratorOnClassMethodParameter2(target=es5).js │ ├── decoratorOnClassMethodParameter2(target=es5).symbols │ ├── decoratorOnClassMethodParameter2(target=es5).types │ ├── decoratorOnClassMethodParameter3.errors.txt │ ├── decoratorOnClassMethodParameter3.js │ ├── decoratorOnClassMethodParameter3.symbols │ ├── decoratorOnClassMethodParameter3.types │ ├── decoratorOnClassMethodThisParameter(target=es2015).errors.txt │ ├── decoratorOnClassMethodThisParameter(target=es2015).js │ ├── decoratorOnClassMethodThisParameter(target=es2015).symbols │ ├── decoratorOnClassMethodThisParameter(target=es2015).types │ ├── decoratorOnClassMethodThisParameter(target=es5).errors.txt │ ├── decoratorOnClassMethodThisParameter(target=es5).js │ ├── decoratorOnClassMethodThisParameter(target=es5).symbols │ ├── decoratorOnClassMethodThisParameter(target=es5).types │ ├── decoratorOnClassProperty1(target=es2015).js │ ├── decoratorOnClassProperty1(target=es2015).symbols │ ├── decoratorOnClassProperty1(target=es2015).types │ ├── decoratorOnClassProperty1(target=es5).errors.txt │ ├── decoratorOnClassProperty1(target=es5).js │ ├── decoratorOnClassProperty1(target=es5).symbols │ ├── decoratorOnClassProperty1(target=es5).types │ ├── decoratorOnClassProperty1.es6.js │ ├── decoratorOnClassProperty1.es6.symbols │ ├── decoratorOnClassProperty1.es6.types │ ├── decoratorOnClassProperty10(target=es2015).js │ ├── decoratorOnClassProperty10(target=es2015).symbols │ ├── decoratorOnClassProperty10(target=es2015).types │ ├── decoratorOnClassProperty10(target=es5).errors.txt │ ├── decoratorOnClassProperty10(target=es5).js │ ├── decoratorOnClassProperty10(target=es5).symbols │ ├── decoratorOnClassProperty10(target=es5).types │ ├── decoratorOnClassProperty11(target=es2015).errors.txt │ ├── decoratorOnClassProperty11(target=es2015).js │ ├── decoratorOnClassProperty11(target=es2015).symbols │ ├── decoratorOnClassProperty11(target=es2015).types │ ├── decoratorOnClassProperty11(target=es5).errors.txt │ ├── decoratorOnClassProperty11(target=es5).js │ ├── decoratorOnClassProperty11(target=es5).symbols │ ├── decoratorOnClassProperty11(target=es5).types │ ├── decoratorOnClassProperty12(target=es2015).js │ ├── decoratorOnClassProperty12(target=es2015).symbols │ ├── decoratorOnClassProperty12(target=es2015).types │ ├── decoratorOnClassProperty12(target=es5).errors.txt │ ├── decoratorOnClassProperty12(target=es5).js │ ├── decoratorOnClassProperty12(target=es5).symbols │ ├── decoratorOnClassProperty12(target=es5).types │ ├── decoratorOnClassProperty13.js │ ├── decoratorOnClassProperty13.symbols │ ├── decoratorOnClassProperty13.types │ ├── decoratorOnClassProperty2(target=es2015).js │ ├── decoratorOnClassProperty2(target=es2015).symbols │ ├── decoratorOnClassProperty2(target=es2015).types │ ├── decoratorOnClassProperty2(target=es5).errors.txt │ ├── decoratorOnClassProperty2(target=es5).js │ ├── decoratorOnClassProperty2(target=es5).symbols │ ├── decoratorOnClassProperty2(target=es5).types │ ├── decoratorOnClassProperty3(target=es2015).errors.txt │ ├── decoratorOnClassProperty3(target=es2015).js │ ├── decoratorOnClassProperty3(target=es2015).symbols │ ├── decoratorOnClassProperty3(target=es2015).types │ ├── decoratorOnClassProperty3(target=es5).errors.txt │ ├── decoratorOnClassProperty3(target=es5).js │ ├── decoratorOnClassProperty3(target=es5).symbols │ ├── decoratorOnClassProperty3(target=es5).types │ ├── decoratorOnClassProperty6(target=es2015).errors.txt │ ├── decoratorOnClassProperty6(target=es2015).js │ ├── decoratorOnClassProperty6(target=es2015).symbols │ ├── decoratorOnClassProperty6(target=es2015).types │ ├── decoratorOnClassProperty6(target=es5).errors.txt │ ├── decoratorOnClassProperty6(target=es5).js │ ├── decoratorOnClassProperty6(target=es5).symbols │ ├── decoratorOnClassProperty6(target=es5).types │ ├── decoratorOnClassProperty7(target=es2015).errors.txt │ ├── decoratorOnClassProperty7(target=es2015).js │ ├── decoratorOnClassProperty7(target=es2015).symbols │ ├── decoratorOnClassProperty7(target=es2015).types │ ├── decoratorOnClassProperty7(target=es5).errors.txt │ ├── decoratorOnClassProperty7(target=es5).js │ ├── decoratorOnClassProperty7(target=es5).symbols │ ├── decoratorOnClassProperty7(target=es5).types │ ├── decoratorOnEnum.errors.txt │ ├── decoratorOnEnum.js │ ├── decoratorOnEnum.symbols │ ├── decoratorOnEnum.types │ ├── decoratorOnEnum2.errors.txt │ ├── decoratorOnEnum2.js │ ├── decoratorOnEnum2.symbols │ ├── decoratorOnEnum2.types │ ├── decoratorOnFunctionDeclaration.errors.txt │ ├── decoratorOnFunctionDeclaration.js │ ├── decoratorOnFunctionDeclaration.symbols │ ├── decoratorOnFunctionDeclaration.types │ ├── decoratorOnFunctionExpression.errors.txt │ ├── decoratorOnFunctionExpression.js │ ├── decoratorOnFunctionExpression.symbols │ ├── decoratorOnFunctionExpression.types │ ├── decoratorOnFunctionParameter.errors.txt │ ├── decoratorOnFunctionParameter.js │ ├── decoratorOnFunctionParameter.symbols │ ├── decoratorOnFunctionParameter.types │ ├── decoratorOnImportEquals1.errors.txt │ ├── decoratorOnImportEquals1.js │ ├── decoratorOnImportEquals1.symbols │ ├── decoratorOnImportEquals1.types │ ├── decoratorOnImportEquals2.errors.txt │ ├── decoratorOnImportEquals2.js │ ├── decoratorOnImportEquals2.symbols │ ├── decoratorOnImportEquals2.types │ ├── decoratorOnInterface.errors.txt │ ├── decoratorOnInterface.js │ ├── decoratorOnInterface.symbols │ ├── decoratorOnInterface.types │ ├── decoratorOnInternalModule.errors.txt │ ├── decoratorOnInternalModule.js │ ├── decoratorOnInternalModule.symbols │ ├── decoratorOnInternalModule.types │ ├── decoratorOnTypeAlias.errors.txt │ ├── decoratorOnTypeAlias.js │ ├── decoratorOnTypeAlias.symbols │ ├── decoratorOnTypeAlias.types │ ├── decoratorOnUsing.errors.txt │ ├── decoratorOnUsing.js │ ├── decoratorOnUsing.symbols │ ├── decoratorOnUsing.types │ ├── decoratorOnVar.errors.txt │ ├── decoratorOnVar.js │ ├── decoratorOnVar.symbols │ ├── decoratorOnVar.types │ ├── decoratorReferenceOnOtherProperty.js │ ├── decoratorReferenceOnOtherProperty.symbols │ ├── decoratorReferenceOnOtherProperty.types │ ├── decoratorReferences.js │ ├── decoratorReferences.symbols │ ├── decoratorReferences.types │ ├── decoratorUsedBeforeDeclaration.errors.txt │ ├── decoratorUsedBeforeDeclaration.js │ ├── decoratorUsedBeforeDeclaration.symbols │ ├── decoratorUsedBeforeDeclaration.types │ ├── decoratorWithNegativeLiteralTypeNoCrash(target=es2015).js │ ├── decoratorWithNegativeLiteralTypeNoCrash(target=es2015).symbols │ ├── decoratorWithNegativeLiteralTypeNoCrash(target=es2015).types │ ├── decoratorWithNegativeLiteralTypeNoCrash(target=es5).errors.txt │ ├── decoratorWithNegativeLiteralTypeNoCrash(target=es5).js │ ├── decoratorWithNegativeLiteralTypeNoCrash(target=es5).symbols │ ├── decoratorWithNegativeLiteralTypeNoCrash(target=es5).types │ ├── decoratorWithUnderscoreMethod.js │ ├── decoratorWithUnderscoreMethod.symbols │ ├── decoratorWithUnderscoreMethod.types │ ├── decoratorsOnComputedProperties.errors.txt │ ├── decoratorsOnComputedProperties.js │ ├── decoratorsOnComputedProperties.symbols │ ├── decoratorsOnComputedProperties.types │ ├── decrementAndIncrementOperators.errors.txt │ ├── decrementAndIncrementOperators.js │ ├── decrementAndIncrementOperators.symbols │ ├── decrementAndIncrementOperators.types │ ├── decrementOperatorWithAnyOtherType.js │ ├── decrementOperatorWithAnyOtherType.symbols │ ├── decrementOperatorWithAnyOtherType.types │ ├── decrementOperatorWithAnyOtherTypeInvalidOperations.errors.txt │ ├── decrementOperatorWithAnyOtherTypeInvalidOperations.js │ ├── decrementOperatorWithAnyOtherTypeInvalidOperations.symbols │ ├── decrementOperatorWithAnyOtherTypeInvalidOperations.types │ ├── decrementOperatorWithEnumType.errors.txt │ ├── decrementOperatorWithEnumType.js │ ├── decrementOperatorWithEnumType.symbols │ ├── decrementOperatorWithEnumType.types │ ├── decrementOperatorWithEnumTypeInvalidOperations.errors.txt │ ├── decrementOperatorWithEnumTypeInvalidOperations.js │ ├── decrementOperatorWithEnumTypeInvalidOperations.symbols │ ├── decrementOperatorWithEnumTypeInvalidOperations.types │ ├── decrementOperatorWithNumberType.errors.txt │ ├── decrementOperatorWithNumberType.js │ ├── decrementOperatorWithNumberType.symbols │ ├── decrementOperatorWithNumberType.types │ ├── decrementOperatorWithNumberTypeInvalidOperations.errors.txt │ ├── decrementOperatorWithNumberTypeInvalidOperations.js │ ├── decrementOperatorWithNumberTypeInvalidOperations.symbols │ ├── decrementOperatorWithNumberTypeInvalidOperations.types │ ├── decrementOperatorWithUnsupportedBooleanType.errors.txt │ ├── decrementOperatorWithUnsupportedBooleanType.js │ ├── decrementOperatorWithUnsupportedBooleanType.symbols │ ├── decrementOperatorWithUnsupportedBooleanType.types │ ├── decrementOperatorWithUnsupportedStringType.errors.txt │ ├── decrementOperatorWithUnsupportedStringType.js │ ├── decrementOperatorWithUnsupportedStringType.symbols │ ├── decrementOperatorWithUnsupportedStringType.types │ ├── deduplicateImportsInSystem.errors.txt │ ├── deduplicateImportsInSystem.js │ ├── deduplicateImportsInSystem.symbols │ ├── deduplicateImportsInSystem.types │ ├── deepComparisons.errors.txt │ ├── deepComparisons.js │ ├── deepComparisons.symbols │ ├── deepComparisons.types │ ├── deepElaborationsIntoArrowExpressions.errors.txt │ ├── deepElaborationsIntoArrowExpressions.js │ ├── deepElaborationsIntoArrowExpressions.symbols │ ├── deepElaborationsIntoArrowExpressions.types │ ├── deepExcessPropertyCheckingWhenTargetIsIntersection.errors.txt │ ├── deepExcessPropertyCheckingWhenTargetIsIntersection.js │ ├── deepExcessPropertyCheckingWhenTargetIsIntersection.symbols │ ├── deepExcessPropertyCheckingWhenTargetIsIntersection.types │ ├── deepKeysIndexing.errors.txt │ ├── deepKeysIndexing.js │ ├── deepKeysIndexing.symbols │ ├── deepKeysIndexing.types │ ├── deeplyDependentLargeArrayMutation.symbols │ ├── deeplyDependentLargeArrayMutation.types │ ├── deeplyDependentLargeArrayMutation2.symbols │ ├── deeplyDependentLargeArrayMutation2.types │ ├── deeplyNestedAssignabilityErrorsCombined.errors.txt │ ├── deeplyNestedAssignabilityErrorsCombined.js │ ├── deeplyNestedAssignabilityErrorsCombined.symbols │ ├── deeplyNestedAssignabilityErrorsCombined.types │ ├── deeplyNestedAssignabilityIssue.errors.txt │ ├── deeplyNestedAssignabilityIssue.js │ ├── deeplyNestedAssignabilityIssue.symbols │ ├── deeplyNestedAssignabilityIssue.types │ ├── deeplyNestedCheck.errors.txt │ ├── deeplyNestedCheck.js │ ├── deeplyNestedCheck.symbols │ ├── deeplyNestedCheck.types │ ├── deeplyNestedConditionalTypes.js │ ├── deeplyNestedConditionalTypes.symbols │ ├── deeplyNestedConditionalTypes.types │ ├── deeplyNestedConstraints.js │ ├── deeplyNestedConstraints.symbols │ ├── deeplyNestedConstraints.types │ ├── deeplyNestedMappedTypes.errors.txt │ ├── deeplyNestedMappedTypes.symbols │ ├── deeplyNestedMappedTypes.types │ ├── defaultArgsInFunctionExpressions.errors.txt │ ├── defaultArgsInFunctionExpressions.js │ ├── defaultArgsInFunctionExpressions.symbols │ ├── defaultArgsInFunctionExpressions.types │ ├── defaultArgsInOverloads.errors.txt │ ├── defaultArgsInOverloads.js │ ├── defaultArgsInOverloads.symbols │ ├── defaultArgsInOverloads.types │ ├── defaultBestCommonTypesHaveDecls.errors.txt │ ├── defaultBestCommonTypesHaveDecls.js │ ├── defaultBestCommonTypesHaveDecls.symbols │ ├── defaultBestCommonTypesHaveDecls.types │ ├── defaultDeclarationEmitDefaultImport.js │ ├── defaultDeclarationEmitDefaultImport.symbols │ ├── defaultDeclarationEmitDefaultImport.types │ ├── defaultDeclarationEmitNamedCorrectly.errors.txt │ ├── defaultDeclarationEmitNamedCorrectly.js │ ├── defaultDeclarationEmitNamedCorrectly.symbols │ ├── defaultDeclarationEmitNamedCorrectly.types │ ├── defaultDeclarationEmitShadowedNamedCorrectly.errors.txt │ ├── defaultDeclarationEmitShadowedNamedCorrectly.js │ ├── defaultDeclarationEmitShadowedNamedCorrectly.symbols │ ├── defaultDeclarationEmitShadowedNamedCorrectly.types │ ├── defaultExportInAwaitExpression01.errors.txt │ ├── defaultExportInAwaitExpression01.js │ ├── defaultExportInAwaitExpression01.symbols │ ├── defaultExportInAwaitExpression01.types │ ├── defaultExportInAwaitExpression02.js │ ├── defaultExportInAwaitExpression02.symbols │ ├── defaultExportInAwaitExpression02.types │ ├── defaultExportWithOverloads01(target=es2015).js │ ├── defaultExportWithOverloads01(target=es2015).symbols │ ├── defaultExportWithOverloads01(target=es2015).types │ ├── defaultExportWithOverloads01(target=es5).errors.txt │ ├── defaultExportWithOverloads01(target=es5).js │ ├── defaultExportWithOverloads01(target=es5).symbols │ ├── defaultExportWithOverloads01(target=es5).types │ ├── defaultExportsCannotMerge01(target=es2015).errors.txt │ ├── defaultExportsCannotMerge01(target=es2015).js │ ├── defaultExportsCannotMerge01(target=es2015).symbols │ ├── defaultExportsCannotMerge01(target=es2015).types │ ├── defaultExportsCannotMerge01(target=es5).errors.txt │ ├── defaultExportsCannotMerge01(target=es5).js │ ├── defaultExportsCannotMerge01(target=es5).symbols │ ├── defaultExportsCannotMerge01(target=es5).types │ ├── defaultExportsCannotMerge02(target=es2015).errors.txt │ ├── defaultExportsCannotMerge02(target=es2015).js │ ├── defaultExportsCannotMerge02(target=es2015).symbols │ ├── defaultExportsCannotMerge02(target=es2015).types │ ├── defaultExportsCannotMerge02(target=es5).errors.txt │ ├── defaultExportsCannotMerge02(target=es5).js │ ├── defaultExportsCannotMerge02(target=es5).symbols │ ├── defaultExportsCannotMerge02(target=es5).types │ ├── defaultExportsCannotMerge03(target=es2015).errors.txt │ ├── defaultExportsCannotMerge03(target=es2015).js │ ├── defaultExportsCannotMerge03(target=es2015).symbols │ ├── defaultExportsCannotMerge03(target=es2015).types │ ├── defaultExportsCannotMerge03(target=es5).errors.txt │ ├── defaultExportsCannotMerge03(target=es5).js │ ├── defaultExportsCannotMerge03(target=es5).symbols │ ├── defaultExportsCannotMerge03(target=es5).types │ ├── defaultExportsCannotMerge04(target=es2015).errors.txt │ ├── defaultExportsCannotMerge04(target=es2015).js │ ├── defaultExportsCannotMerge04(target=es2015).symbols │ ├── defaultExportsCannotMerge04(target=es2015).types │ ├── defaultExportsCannotMerge04(target=es5).errors.txt │ ├── defaultExportsCannotMerge04(target=es5).js │ ├── defaultExportsCannotMerge04(target=es5).symbols │ ├── defaultExportsCannotMerge04(target=es5).types │ ├── defaultExportsGetExportedAmd.errors.txt │ ├── defaultExportsGetExportedAmd.js │ ├── defaultExportsGetExportedAmd.symbols │ ├── defaultExportsGetExportedAmd.types │ ├── defaultExportsGetExportedCommonjs.js │ ├── defaultExportsGetExportedCommonjs.symbols │ ├── defaultExportsGetExportedCommonjs.types │ ├── defaultExportsGetExportedSystem.errors.txt │ ├── defaultExportsGetExportedSystem.js │ ├── defaultExportsGetExportedSystem.symbols │ ├── defaultExportsGetExportedSystem.types │ ├── defaultExportsGetExportedUmd.errors.txt │ ├── defaultExportsGetExportedUmd.js │ ├── defaultExportsGetExportedUmd.symbols │ ├── defaultExportsGetExportedUmd.types │ ├── defaultIndexProps1.js │ ├── defaultIndexProps1.symbols │ ├── defaultIndexProps1.types │ ├── defaultIndexProps2.js │ ├── defaultIndexProps2.symbols │ ├── defaultIndexProps2.types │ ├── defaultIsNotVisibleInLocalScope.errors.txt │ ├── defaultIsNotVisibleInLocalScope.js │ ├── defaultIsNotVisibleInLocalScope.symbols │ ├── defaultIsNotVisibleInLocalScope.types │ ├── defaultKeywordWithoutExport1.errors.txt │ ├── defaultKeywordWithoutExport1.js │ ├── defaultKeywordWithoutExport1.symbols │ ├── defaultKeywordWithoutExport1.types │ ├── defaultKeywordWithoutExport2.errors.txt │ ├── defaultKeywordWithoutExport2.js │ ├── defaultKeywordWithoutExport2.symbols │ ├── defaultKeywordWithoutExport2.types │ ├── defaultNamedExportWithType1.js │ ├── defaultNamedExportWithType1.symbols │ ├── defaultNamedExportWithType1.types │ ├── defaultNamedExportWithType2.js │ ├── defaultNamedExportWithType2.symbols │ ├── defaultNamedExportWithType2.types │ ├── defaultNamedExportWithType3.js │ ├── defaultNamedExportWithType3.symbols │ ├── defaultNamedExportWithType3.types │ ├── defaultNamedExportWithType4.js │ ├── defaultNamedExportWithType4.symbols │ ├── defaultNamedExportWithType4.types │ ├── defaultOfAnyInStrictNullChecks.js │ ├── defaultOfAnyInStrictNullChecks.symbols │ ├── defaultOfAnyInStrictNullChecks.types │ ├── defaultParameterAddsUndefinedWithStrictNullChecks.js │ ├── defaultParameterAddsUndefinedWithStrictNullChecks.symbols │ ├── defaultParameterAddsUndefinedWithStrictNullChecks.types │ ├── defaultParameterTrailingComments.js │ ├── defaultParameterTrailingComments.symbols │ ├── defaultParameterTrailingComments.types │ ├── defaultPropertyAssignedClassWithPrototype.symbols │ ├── defaultPropertyAssignedClassWithPrototype.types │ ├── defaultPropsEmptyCurlyBecomesAnyForJs.js │ ├── defaultPropsEmptyCurlyBecomesAnyForJs.symbols │ ├── defaultPropsEmptyCurlyBecomesAnyForJs.types │ ├── defaultValueInConstructorOverload1.errors.txt │ ├── defaultValueInConstructorOverload1.js │ ├── defaultValueInConstructorOverload1.symbols │ ├── defaultValueInConstructorOverload1.types │ ├── defaultValueInFunctionOverload1.errors.txt │ ├── defaultValueInFunctionOverload1.js │ ├── defaultValueInFunctionOverload1.symbols │ ├── defaultValueInFunctionOverload1.types │ ├── defaultValueInFunctionTypes.errors.txt │ ├── defaultValueInFunctionTypes.js │ ├── defaultValueInFunctionTypes.symbols │ ├── defaultValueInFunctionTypes.types │ ├── deferredConditionalTypes.js │ ├── deferredConditionalTypes.symbols │ ├── deferredConditionalTypes.types │ ├── deferredConditionalTypes2.symbols │ ├── deferredConditionalTypes2.types │ ├── deferredLookupTypeResolution.js │ ├── deferredLookupTypeResolution.symbols │ ├── deferredLookupTypeResolution.types │ ├── deferredLookupTypeResolution2.js │ ├── deferredLookupTypeResolution2.symbols │ ├── deferredLookupTypeResolution2.types │ ├── deferredTypeReferenceWithinArrayWithinTuple.js │ ├── deferredTypeReferenceWithinArrayWithinTuple.symbols │ ├── deferredTypeReferenceWithinArrayWithinTuple.types │ ├── defineProperty(target=es5).errors.txt │ ├── defineProperty(target=es5).js │ ├── defineProperty(target=es5).symbols │ ├── defineProperty(target=es5).types │ ├── defineProperty(target=esnext).errors.txt │ ├── defineProperty(target=esnext).js │ ├── defineProperty(target=esnext).symbols │ ├── defineProperty(target=esnext).types │ ├── defineVariables_useDefineForClassFields.js │ ├── defineVariables_useDefineForClassFields.symbols │ ├── defineVariables_useDefineForClassFields.types │ ├── definiteAssignmentAssertions.errors.txt │ ├── definiteAssignmentAssertions.js │ ├── definiteAssignmentAssertions.symbols │ ├── definiteAssignmentAssertions.types │ ├── definiteAssignmentAssertionsWithObjectShortHand.errors.txt │ ├── definiteAssignmentAssertionsWithObjectShortHand.js │ ├── definiteAssignmentAssertionsWithObjectShortHand.symbols │ ├── definiteAssignmentAssertionsWithObjectShortHand.types │ ├── definiteAssignmentOfDestructuredVariable.js │ ├── definiteAssignmentOfDestructuredVariable.symbols │ ├── definiteAssignmentOfDestructuredVariable.types │ ├── definiteAssignmentWithErrorStillStripped.errors.txt │ ├── definiteAssignmentWithErrorStillStripped.js │ ├── definiteAssignmentWithErrorStillStripped.symbols │ ├── definiteAssignmentWithErrorStillStripped.types │ ├── definition.baseline.jsonc │ ├── definition01.baseline.jsonc │ ├── definitionNameOnEnumMember.baseline.jsonc │ ├── deleteChain.errors.txt │ ├── deleteChain.js │ ├── deleteChain.symbols │ ├── deleteChain.types │ ├── deleteExpressionMustBeOptional(strict=false).errors.txt │ ├── deleteExpressionMustBeOptional(strict=false).js │ ├── deleteExpressionMustBeOptional(strict=false).symbols │ ├── deleteExpressionMustBeOptional(strict=false).types │ ├── deleteExpressionMustBeOptional(strict=true).errors.txt │ ├── deleteExpressionMustBeOptional(strict=true).js │ ├── deleteExpressionMustBeOptional(strict=true).symbols │ ├── deleteExpressionMustBeOptional(strict=true).types │ ├── deleteExpressionMustBeOptional_exactOptionalPropertyTypes(exactoptionalpropertytypes=false).errors.txt │ ├── deleteExpressionMustBeOptional_exactOptionalPropertyTypes(exactoptionalpropertytypes=false).js │ ├── deleteExpressionMustBeOptional_exactOptionalPropertyTypes(exactoptionalpropertytypes=false).symbols │ ├── deleteExpressionMustBeOptional_exactOptionalPropertyTypes(exactoptionalpropertytypes=false).types │ ├── deleteExpressionMustBeOptional_exactOptionalPropertyTypes(exactoptionalpropertytypes=true).errors.txt │ ├── deleteExpressionMustBeOptional_exactOptionalPropertyTypes(exactoptionalpropertytypes=true).js │ ├── deleteExpressionMustBeOptional_exactOptionalPropertyTypes(exactoptionalpropertytypes=true).symbols │ ├── deleteExpressionMustBeOptional_exactOptionalPropertyTypes(exactoptionalpropertytypes=true).types │ ├── deleteOperator1.errors.txt │ ├── deleteOperator1.js │ ├── deleteOperator1.symbols │ ├── deleteOperator1.types │ ├── deleteOperatorInStrictMode.errors.txt │ ├── deleteOperatorInStrictMode.js │ ├── deleteOperatorInStrictMode.symbols │ ├── deleteOperatorInStrictMode.types │ ├── deleteOperatorInvalidOperations.errors.txt │ ├── deleteOperatorInvalidOperations.js │ ├── deleteOperatorInvalidOperations.symbols │ ├── deleteOperatorInvalidOperations.types │ ├── deleteOperatorWithAnyOtherType(alwaysstrict=false).errors.txt │ ├── deleteOperatorWithAnyOtherType(alwaysstrict=false).js │ ├── deleteOperatorWithAnyOtherType(alwaysstrict=false).symbols │ ├── deleteOperatorWithAnyOtherType(alwaysstrict=false).types │ ├── deleteOperatorWithAnyOtherType(alwaysstrict=true).errors.txt │ ├── deleteOperatorWithAnyOtherType(alwaysstrict=true).js │ ├── deleteOperatorWithAnyOtherType(alwaysstrict=true).symbols │ ├── deleteOperatorWithAnyOtherType(alwaysstrict=true).types │ ├── deleteOperatorWithBooleanType.errors.txt │ ├── deleteOperatorWithBooleanType.js │ ├── deleteOperatorWithBooleanType.symbols │ ├── deleteOperatorWithBooleanType.types │ ├── deleteOperatorWithEnumType.errors.txt │ ├── deleteOperatorWithEnumType.js │ ├── deleteOperatorWithEnumType.symbols │ ├── deleteOperatorWithEnumType.types │ ├── deleteOperatorWithNumberType.errors.txt │ ├── deleteOperatorWithNumberType.js │ ├── deleteOperatorWithNumberType.symbols │ ├── deleteOperatorWithNumberType.types │ ├── deleteOperatorWithStringType.errors.txt │ ├── deleteOperatorWithStringType.js │ ├── deleteOperatorWithStringType.symbols │ ├── deleteOperatorWithStringType.types │ ├── deleteReadonly.errors.txt │ ├── deleteReadonly.js │ ├── deleteReadonly.symbols │ ├── deleteReadonly.types │ ├── deleteReadonlyInStrictNullChecks.errors.txt │ ├── deleteReadonlyInStrictNullChecks.js │ ├── deleteReadonlyInStrictNullChecks.symbols │ ├── deleteReadonlyInStrictNullChecks.types │ ├── dependencyViaImportAlias.errors.txt │ ├── dependencyViaImportAlias.js │ ├── dependencyViaImportAlias.symbols │ ├── dependencyViaImportAlias.types │ ├── dependentDestructuredVariables.errors.txt │ ├── dependentDestructuredVariables.js │ ├── dependentDestructuredVariables.symbols │ ├── dependentDestructuredVariables.types │ ├── dependentDestructuredVariablesFromNestedPatterns.symbols │ ├── dependentDestructuredVariablesFromNestedPatterns.types │ ├── dependentDestructuredVariablesWithExport.symbols │ ├── dependentDestructuredVariablesWithExport.types │ ├── deprecatedBool.js │ ├── deprecatedBool.symbols │ ├── deprecatedBool.types │ ├── deprecatedCompilerOptions1.errors.txt │ ├── deprecatedCompilerOptions1.js │ ├── deprecatedCompilerOptions1.symbols │ ├── deprecatedCompilerOptions1.types │ ├── deprecatedCompilerOptions2.errors.txt │ ├── deprecatedCompilerOptions2.js │ ├── deprecatedCompilerOptions2.symbols │ ├── deprecatedCompilerOptions2.types │ ├── deprecatedCompilerOptions3.errors.txt │ ├── deprecatedCompilerOptions3.js │ ├── deprecatedCompilerOptions3.symbols │ ├── deprecatedCompilerOptions3.types │ ├── deprecatedCompilerOptions4.errors.txt │ ├── deprecatedCompilerOptions4.js │ ├── deprecatedCompilerOptions4.symbols │ ├── deprecatedCompilerOptions4.types │ ├── deprecatedCompilerOptions5.errors.txt │ ├── deprecatedCompilerOptions5.js │ ├── deprecatedCompilerOptions5.symbols │ ├── deprecatedCompilerOptions5.types │ ├── deprecatedCompilerOptions6.errors.txt │ ├── deprecatedCompilerOptions6.js │ ├── deprecatedCompilerOptions6.symbols │ ├── deprecatedCompilerOptions6.types │ ├── deprecatedInheritedJSDocOverload.baseline │ ├── derivedClassConstructorWithExplicitReturns01(target=es2015).errors.txt │ ├── derivedClassConstructorWithExplicitReturns01(target=es2015).js │ ├── derivedClassConstructorWithExplicitReturns01(target=es2015).sourcemap.txt │ ├── derivedClassConstructorWithExplicitReturns01(target=es2015).symbols │ ├── derivedClassConstructorWithExplicitReturns01(target=es2015).types │ ├── derivedClassConstructorWithExplicitReturns01(target=es5).errors.txt │ ├── derivedClassConstructorWithExplicitReturns01(target=es5).js │ ├── derivedClassConstructorWithExplicitReturns01(target=es5).sourcemap.txt │ ├── derivedClassConstructorWithExplicitReturns01(target=es5).symbols │ ├── derivedClassConstructorWithExplicitReturns01(target=es5).types │ ├── derivedClassConstructorWithoutSuperCall.errors.txt │ ├── derivedClassConstructorWithoutSuperCall.js │ ├── derivedClassConstructorWithoutSuperCall.symbols │ ├── derivedClassConstructorWithoutSuperCall.types │ ├── derivedClassFunctionOverridesBaseClassAccessor.errors.txt │ ├── derivedClassFunctionOverridesBaseClassAccessor.js │ ├── derivedClassFunctionOverridesBaseClassAccessor.symbols │ ├── derivedClassFunctionOverridesBaseClassAccessor.types │ ├── derivedClassIncludesInheritedMembers.js │ ├── derivedClassIncludesInheritedMembers.symbols │ ├── derivedClassIncludesInheritedMembers.types │ ├── derivedClassOverridesIndexersWithAssignmentCompatibility.js │ ├── derivedClassOverridesIndexersWithAssignmentCompatibility.symbols │ ├── derivedClassOverridesIndexersWithAssignmentCompatibility.types │ ├── derivedClassOverridesPrivateFunction1.errors.txt │ ├── derivedClassOverridesPrivateFunction1.js │ ├── derivedClassOverridesPrivateFunction1.symbols │ ├── derivedClassOverridesPrivateFunction1.types │ ├── derivedClassOverridesPrivates.errors.txt │ ├── derivedClassOverridesPrivates.js │ ├── derivedClassOverridesPrivates.symbols │ ├── derivedClassOverridesPrivates.types │ ├── derivedClassOverridesProtectedMembers(target=es2015).errors.txt │ ├── derivedClassOverridesProtectedMembers(target=es2015).js │ ├── derivedClassOverridesProtectedMembers(target=es2015).symbols │ ├── derivedClassOverridesProtectedMembers(target=es2015).types │ ├── derivedClassOverridesProtectedMembers(target=es5).errors.txt │ ├── derivedClassOverridesProtectedMembers(target=es5).js │ ├── derivedClassOverridesProtectedMembers(target=es5).symbols │ ├── derivedClassOverridesProtectedMembers(target=es5).types │ ├── derivedClassOverridesProtectedMembers2(target=es2015).errors.txt │ ├── derivedClassOverridesProtectedMembers2(target=es2015).js │ ├── derivedClassOverridesProtectedMembers2(target=es2015).symbols │ ├── derivedClassOverridesProtectedMembers2(target=es2015).types │ ├── derivedClassOverridesProtectedMembers2(target=es5).errors.txt │ ├── derivedClassOverridesProtectedMembers2(target=es5).js │ ├── derivedClassOverridesProtectedMembers2(target=es5).symbols │ ├── derivedClassOverridesProtectedMembers2(target=es5).types │ ├── derivedClassOverridesProtectedMembers3(target=es2015).errors.txt │ ├── derivedClassOverridesProtectedMembers3(target=es2015).js │ ├── derivedClassOverridesProtectedMembers3(target=es2015).symbols │ ├── derivedClassOverridesProtectedMembers3(target=es2015).types │ ├── derivedClassOverridesProtectedMembers3(target=es5).errors.txt │ ├── derivedClassOverridesProtectedMembers3(target=es5).js │ ├── derivedClassOverridesProtectedMembers3(target=es5).symbols │ ├── derivedClassOverridesProtectedMembers3(target=es5).types │ ├── derivedClassOverridesProtectedMembers4.errors.txt │ ├── derivedClassOverridesProtectedMembers4.js │ ├── derivedClassOverridesProtectedMembers4.symbols │ ├── derivedClassOverridesProtectedMembers4.types │ ├── derivedClassOverridesPublicMembers.errors.txt │ ├── derivedClassOverridesPublicMembers.js │ ├── derivedClassOverridesPublicMembers.symbols │ ├── derivedClassOverridesPublicMembers.types │ ├── derivedClassOverridesWithoutSubtype.errors.txt │ ├── derivedClassOverridesWithoutSubtype.js │ ├── derivedClassOverridesWithoutSubtype.symbols │ ├── derivedClassOverridesWithoutSubtype.types │ ├── derivedClassParameterProperties.errors.txt │ ├── derivedClassParameterProperties.js │ ├── derivedClassParameterProperties.symbols │ ├── derivedClassParameterProperties.types │ ├── derivedClassSuperCallsInNonConstructorMembers.errors.txt │ ├── derivedClassSuperCallsInNonConstructorMembers.js │ ├── derivedClassSuperCallsInNonConstructorMembers.symbols │ ├── derivedClassSuperCallsInNonConstructorMembers.types │ ├── derivedClassSuperCallsWithThisArg.errors.txt │ ├── derivedClassSuperCallsWithThisArg.js │ ├── derivedClassSuperCallsWithThisArg.symbols │ ├── derivedClassSuperCallsWithThisArg.types │ ├── derivedClassSuperProperties(target=es2015).errors.txt │ ├── derivedClassSuperProperties(target=es2015).js │ ├── derivedClassSuperProperties(target=es2015).symbols │ ├── derivedClassSuperProperties(target=es2015).types │ ├── derivedClassSuperProperties(target=es5).errors.txt │ ├── derivedClassSuperProperties(target=es5).js │ ├── derivedClassSuperProperties(target=es5).symbols │ ├── derivedClassSuperProperties(target=es5).types │ ├── derivedClassSuperStatementPosition(target=es2015).errors.txt │ ├── derivedClassSuperStatementPosition(target=es2015).js │ ├── derivedClassSuperStatementPosition(target=es2015).symbols │ ├── derivedClassSuperStatementPosition(target=es2015).types │ ├── derivedClassSuperStatementPosition(target=es5).errors.txt │ ├── derivedClassSuperStatementPosition(target=es5).js │ ├── derivedClassSuperStatementPosition(target=es5).symbols │ ├── derivedClassSuperStatementPosition(target=es5).types │ ├── derivedClassTransitivity.errors.txt │ ├── derivedClassTransitivity.js │ ├── derivedClassTransitivity.symbols │ ├── derivedClassTransitivity.types │ ├── derivedClassTransitivity2.errors.txt │ ├── derivedClassTransitivity2.js │ ├── derivedClassTransitivity2.symbols │ ├── derivedClassTransitivity2.types │ ├── derivedClassTransitivity3.errors.txt │ ├── derivedClassTransitivity3.js │ ├── derivedClassTransitivity3.symbols │ ├── derivedClassTransitivity3.types │ ├── derivedClassTransitivity4.errors.txt │ ├── derivedClassTransitivity4.js │ ├── derivedClassTransitivity4.symbols │ ├── derivedClassTransitivity4.types │ ├── derivedClassWithAny.errors.txt │ ├── derivedClassWithAny.js │ ├── derivedClassWithAny.symbols │ ├── derivedClassWithAny.types │ ├── derivedClassWithPrivateInstanceShadowingProtectedInstance(target=es2015).errors.txt │ ├── derivedClassWithPrivateInstanceShadowingProtectedInstance(target=es2015).js │ ├── derivedClassWithPrivateInstanceShadowingProtectedInstance(target=es2015).symbols │ ├── derivedClassWithPrivateInstanceShadowingProtectedInstance(target=es2015).types │ ├── derivedClassWithPrivateInstanceShadowingProtectedInstance(target=es5).errors.txt │ ├── derivedClassWithPrivateInstanceShadowingProtectedInstance(target=es5).js │ ├── derivedClassWithPrivateInstanceShadowingProtectedInstance(target=es5).symbols │ ├── derivedClassWithPrivateInstanceShadowingProtectedInstance(target=es5).types │ ├── derivedClassWithPrivateInstanceShadowingPublicInstance.errors.txt │ ├── derivedClassWithPrivateInstanceShadowingPublicInstance.js │ ├── derivedClassWithPrivateInstanceShadowingPublicInstance.symbols │ ├── derivedClassWithPrivateInstanceShadowingPublicInstance.types │ ├── derivedClassWithPrivateStaticShadowingProtectedStatic(target=es2015).errors.txt │ ├── derivedClassWithPrivateStaticShadowingProtectedStatic(target=es2015).js │ ├── derivedClassWithPrivateStaticShadowingProtectedStatic(target=es2015).symbols │ ├── derivedClassWithPrivateStaticShadowingProtectedStatic(target=es2015).types │ ├── derivedClassWithPrivateStaticShadowingProtectedStatic(target=es5).errors.txt │ ├── derivedClassWithPrivateStaticShadowingProtectedStatic(target=es5).js │ ├── derivedClassWithPrivateStaticShadowingProtectedStatic(target=es5).symbols │ ├── derivedClassWithPrivateStaticShadowingProtectedStatic(target=es5).types │ ├── derivedClassWithPrivateStaticShadowingPublicStatic.errors.txt │ ├── derivedClassWithPrivateStaticShadowingPublicStatic.js │ ├── derivedClassWithPrivateStaticShadowingPublicStatic.symbols │ ├── derivedClassWithPrivateStaticShadowingPublicStatic.types │ ├── derivedClassWithoutExplicitConstructor.errors.txt │ ├── derivedClassWithoutExplicitConstructor.js │ ├── derivedClassWithoutExplicitConstructor.symbols │ ├── derivedClassWithoutExplicitConstructor.types │ ├── derivedClassWithoutExplicitConstructor2.errors.txt │ ├── derivedClassWithoutExplicitConstructor2.js │ ├── derivedClassWithoutExplicitConstructor2.symbols │ ├── derivedClassWithoutExplicitConstructor2.types │ ├── derivedClassWithoutExplicitConstructor3.errors.txt │ ├── derivedClassWithoutExplicitConstructor3.js │ ├── derivedClassWithoutExplicitConstructor3.symbols │ ├── derivedClassWithoutExplicitConstructor3.types │ ├── derivedClasses.errors.txt │ ├── derivedClasses.js │ ├── derivedClasses.symbols │ ├── derivedClasses.types │ ├── derivedGenericClassWithAny.errors.txt │ ├── derivedGenericClassWithAny.js │ ├── derivedGenericClassWithAny.symbols │ ├── derivedGenericClassWithAny.types │ ├── derivedInterfaceCallSignature.errors.txt │ ├── derivedInterfaceCallSignature.js │ ├── derivedInterfaceCallSignature.symbols │ ├── derivedInterfaceCallSignature.types │ ├── derivedInterfaceDoesNotHideBaseSignatures.js │ ├── derivedInterfaceDoesNotHideBaseSignatures.symbols │ ├── derivedInterfaceDoesNotHideBaseSignatures.types │ ├── derivedInterfaceIncompatibleWithBaseIndexer.errors.txt │ ├── derivedInterfaceIncompatibleWithBaseIndexer.js │ ├── derivedInterfaceIncompatibleWithBaseIndexer.symbols │ ├── derivedInterfaceIncompatibleWithBaseIndexer.types │ ├── derivedTypeAccessesHiddenBaseCallViaSuperPropertyAccess.errors.txt │ ├── derivedTypeAccessesHiddenBaseCallViaSuperPropertyAccess.js │ ├── derivedTypeAccessesHiddenBaseCallViaSuperPropertyAccess.symbols │ ├── derivedTypeAccessesHiddenBaseCallViaSuperPropertyAccess.types │ ├── derivedTypeCallingBaseImplWithOptionalParams.errors.txt │ ├── derivedTypeCallingBaseImplWithOptionalParams.js │ ├── derivedTypeCallingBaseImplWithOptionalParams.symbols │ ├── derivedTypeCallingBaseImplWithOptionalParams.types │ ├── derivedTypeDoesNotRequireExtendsClause.errors.txt │ ├── derivedTypeDoesNotRequireExtendsClause.js │ ├── derivedTypeDoesNotRequireExtendsClause.symbols │ ├── derivedTypeDoesNotRequireExtendsClause.types │ ├── derivedTypeIncompatibleSignatures.errors.txt │ ├── derivedTypeIncompatibleSignatures.js │ ├── derivedTypeIncompatibleSignatures.symbols │ ├── derivedTypeIncompatibleSignatures.types │ ├── derivedUninitializedPropertyDeclaration.errors.txt │ ├── derivedUninitializedPropertyDeclaration.js │ ├── derivedUninitializedPropertyDeclaration.symbols │ ├── derivedUninitializedPropertyDeclaration.types │ ├── destructionAssignmentError.errors.txt │ ├── destructionAssignmentError.js │ ├── destructionAssignmentError.symbols │ ├── destructionAssignmentError.types │ ├── destructureCatchClause(strict=false,useunknownincatchvariables=false).errors.txt │ ├── destructureCatchClause(strict=false,useunknownincatchvariables=false).js │ ├── destructureCatchClause(strict=false,useunknownincatchvariables=false).symbols │ ├── destructureCatchClause(strict=false,useunknownincatchvariables=false).types │ ├── destructureCatchClause(strict=false,useunknownincatchvariables=true).errors.txt │ ├── destructureCatchClause(strict=false,useunknownincatchvariables=true).js │ ├── destructureCatchClause(strict=false,useunknownincatchvariables=true).symbols │ ├── destructureCatchClause(strict=false,useunknownincatchvariables=true).types │ ├── destructureCatchClause(strict=true,useunknownincatchvariables=false).errors.txt │ ├── destructureCatchClause(strict=true,useunknownincatchvariables=false).js │ ├── destructureCatchClause(strict=true,useunknownincatchvariables=false).symbols │ ├── destructureCatchClause(strict=true,useunknownincatchvariables=false).types │ ├── destructureCatchClause(strict=true,useunknownincatchvariables=true).errors.txt │ ├── destructureCatchClause(strict=true,useunknownincatchvariables=true).js │ ├── destructureCatchClause(strict=true,useunknownincatchvariables=true).symbols │ ├── destructureCatchClause(strict=true,useunknownincatchvariables=true).types │ ├── destructureComputedProperty.errors.txt │ ├── destructureComputedProperty.js │ ├── destructureComputedProperty.symbols │ ├── destructureComputedProperty.types │ ├── destructureOfVariableSameAsShorthand.js │ ├── destructureOfVariableSameAsShorthand.symbols │ ├── destructureOfVariableSameAsShorthand.types │ ├── destructureOptionalParameter.js │ ├── destructureOptionalParameter.symbols │ ├── destructureOptionalParameter.types │ ├── destructureTupleWithVariableElement.errors.txt │ ├── destructureTupleWithVariableElement.symbols │ ├── destructureTupleWithVariableElement.types │ ├── destructuredDeclarationEmit.js │ ├── destructuredDeclarationEmit.symbols │ ├── destructuredDeclarationEmit.types │ ├── destructuredLateBoundNameHasCorrectTypes.errors.txt │ ├── destructuredLateBoundNameHasCorrectTypes.js │ ├── destructuredLateBoundNameHasCorrectTypes.symbols │ ├── destructuredLateBoundNameHasCorrectTypes.types │ ├── destructuredMaappedTypeIsNotImplicitlyAny.js │ ├── destructuredMaappedTypeIsNotImplicitlyAny.symbols │ ├── destructuredMaappedTypeIsNotImplicitlyAny.types │ ├── destructuringArrayBindingPatternAndAssignment1ES5.errors.txt │ ├── destructuringArrayBindingPatternAndAssignment1ES5.js │ ├── destructuringArrayBindingPatternAndAssignment1ES5.symbols │ ├── destructuringArrayBindingPatternAndAssignment1ES5.types │ ├── destructuringArrayBindingPatternAndAssignment1ES5iterable.errors.txt │ ├── destructuringArrayBindingPatternAndAssignment1ES5iterable.js │ ├── destructuringArrayBindingPatternAndAssignment1ES5iterable.symbols │ ├── destructuringArrayBindingPatternAndAssignment1ES5iterable.types │ ├── destructuringArrayBindingPatternAndAssignment1ES6.errors.txt │ ├── destructuringArrayBindingPatternAndAssignment1ES6.js │ ├── destructuringArrayBindingPatternAndAssignment1ES6.symbols │ ├── destructuringArrayBindingPatternAndAssignment1ES6.types │ ├── destructuringArrayBindingPatternAndAssignment2.errors.txt │ ├── destructuringArrayBindingPatternAndAssignment2.js │ ├── destructuringArrayBindingPatternAndAssignment2.symbols │ ├── destructuringArrayBindingPatternAndAssignment2.types │ ├── destructuringArrayBindingPatternAndAssignment3.errors.txt │ ├── destructuringArrayBindingPatternAndAssignment3.js │ ├── destructuringArrayBindingPatternAndAssignment3.symbols │ ├── destructuringArrayBindingPatternAndAssignment3.types │ ├── destructuringArrayBindingPatternAndAssignment4(target=es2015).errors.txt │ ├── destructuringArrayBindingPatternAndAssignment4(target=es2015).js │ ├── destructuringArrayBindingPatternAndAssignment4(target=es2015).symbols │ ├── destructuringArrayBindingPatternAndAssignment4(target=es2015).types │ ├── destructuringArrayBindingPatternAndAssignment4(target=es5).errors.txt │ ├── destructuringArrayBindingPatternAndAssignment4(target=es5).js │ ├── destructuringArrayBindingPatternAndAssignment4(target=es5).symbols │ ├── destructuringArrayBindingPatternAndAssignment4(target=es5).types │ ├── destructuringArrayBindingPatternAndAssignment5SiblingInitializer.js │ ├── destructuringArrayBindingPatternAndAssignment5SiblingInitializer.symbols │ ├── destructuringArrayBindingPatternAndAssignment5SiblingInitializer.types │ ├── destructuringAssignabilityCheck.errors.txt │ ├── destructuringAssignabilityCheck.js │ ├── destructuringAssignabilityCheck.symbols │ ├── destructuringAssignabilityCheck.types │ ├── destructuringAssignmentWithDefault.js │ ├── destructuringAssignmentWithDefault.symbols │ ├── destructuringAssignmentWithDefault.types │ ├── destructuringAssignmentWithDefault2.errors.txt │ ├── destructuringAssignmentWithDefault2.js │ ├── destructuringAssignmentWithDefault2.symbols │ ├── destructuringAssignmentWithDefault2.types │ ├── destructuringAssignmentWithExportedName.errors.txt │ ├── destructuringAssignmentWithExportedName.js │ ├── destructuringAssignmentWithExportedName.symbols │ ├── destructuringAssignmentWithExportedName.types │ ├── destructuringAssignmentWithStrictNullChecks.js │ ├── destructuringAssignmentWithStrictNullChecks.symbols │ ├── destructuringAssignmentWithStrictNullChecks.types │ ├── destructuringAssignment_private.errors.txt │ ├── destructuringAssignment_private.js │ ├── destructuringAssignment_private.symbols │ ├── destructuringAssignment_private.types │ ├── destructuringCatch.js │ ├── destructuringCatch.symbols │ ├── destructuringCatch.types │ ├── destructuringControlFlow.errors.txt │ ├── destructuringControlFlow.js │ ├── destructuringControlFlow.symbols │ ├── destructuringControlFlow.types │ ├── destructuringControlFlowNoCrash.errors.txt │ ├── destructuringControlFlowNoCrash.js │ ├── destructuringControlFlowNoCrash.symbols │ ├── destructuringControlFlowNoCrash.types │ ├── destructuringEvaluationOrder(target=es2015).js │ ├── destructuringEvaluationOrder(target=es5).errors.txt │ ├── destructuringEvaluationOrder(target=es5).js │ ├── destructuringFromUnionSpread.errors.txt │ ├── destructuringFromUnionSpread.js │ ├── destructuringFromUnionSpread.symbols │ ├── destructuringFromUnionSpread.types │ ├── destructuringInFunctionType.errors.txt │ ├── destructuringInFunctionType.js │ ├── destructuringInFunctionType.symbols │ ├── destructuringInFunctionType.types │ ├── destructuringInVariableDeclarations1.js │ ├── destructuringInVariableDeclarations1.symbols │ ├── destructuringInVariableDeclarations1.types │ ├── destructuringInVariableDeclarations2.js │ ├── destructuringInVariableDeclarations2.symbols │ ├── destructuringInVariableDeclarations2.types │ ├── destructuringInVariableDeclarations3.errors.txt │ ├── destructuringInVariableDeclarations3.js │ ├── destructuringInVariableDeclarations3.symbols │ ├── destructuringInVariableDeclarations3.types │ ├── destructuringInVariableDeclarations4.errors.txt │ ├── destructuringInVariableDeclarations4.js │ ├── destructuringInVariableDeclarations4.symbols │ ├── destructuringInVariableDeclarations4.types │ ├── destructuringInVariableDeclarations5.errors.txt │ ├── destructuringInVariableDeclarations5.js │ ├── destructuringInVariableDeclarations5.symbols │ ├── destructuringInVariableDeclarations5.types │ ├── destructuringInVariableDeclarations6.errors.txt │ ├── destructuringInVariableDeclarations6.js │ ├── destructuringInVariableDeclarations6.symbols │ ├── destructuringInVariableDeclarations6.types │ ├── destructuringInVariableDeclarations7.errors.txt │ ├── destructuringInVariableDeclarations7.js │ ├── destructuringInVariableDeclarations7.symbols │ ├── destructuringInVariableDeclarations7.types │ ├── destructuringInVariableDeclarations8.errors.txt │ ├── destructuringInVariableDeclarations8.js │ ├── destructuringInVariableDeclarations8.symbols │ ├── destructuringInVariableDeclarations8.types │ ├── destructuringInitializerContextualTypeFromContext.js │ ├── destructuringInitializerContextualTypeFromContext.symbols │ ├── destructuringInitializerContextualTypeFromContext.types │ ├── destructuringObjectAssignmentPatternWithNestedSpread(target=es2015).js │ ├── destructuringObjectAssignmentPatternWithNestedSpread(target=es2018).js │ ├── destructuringObjectAssignmentPatternWithNestedSpread(target=es5).errors.txt │ ├── destructuringObjectAssignmentPatternWithNestedSpread(target=es5).js │ ├── destructuringObjectBindingPatternAndAssignment1ES5.js │ ├── destructuringObjectBindingPatternAndAssignment1ES5.symbols │ ├── destructuringObjectBindingPatternAndAssignment1ES5.types │ ├── destructuringObjectBindingPatternAndAssignment1ES6.js │ ├── destructuringObjectBindingPatternAndAssignment1ES6.symbols │ ├── destructuringObjectBindingPatternAndAssignment1ES6.types │ ├── destructuringObjectBindingPatternAndAssignment3.errors.txt │ ├── destructuringObjectBindingPatternAndAssignment3.js │ ├── destructuringObjectBindingPatternAndAssignment3.symbols │ ├── destructuringObjectBindingPatternAndAssignment3.types │ ├── destructuringObjectBindingPatternAndAssignment4.errors.txt │ ├── destructuringObjectBindingPatternAndAssignment4.js │ ├── destructuringObjectBindingPatternAndAssignment4.symbols │ ├── destructuringObjectBindingPatternAndAssignment4.types │ ├── destructuringObjectBindingPatternAndAssignment5.js │ ├── destructuringObjectBindingPatternAndAssignment5.symbols │ ├── destructuringObjectBindingPatternAndAssignment5.types │ ├── destructuringObjectBindingPatternAndAssignment6(target=es5).errors.txt │ ├── destructuringObjectBindingPatternAndAssignment6(target=es5).js │ ├── destructuringObjectBindingPatternAndAssignment6(target=es5).symbols │ ├── destructuringObjectBindingPatternAndAssignment6(target=es5).types │ ├── destructuringObjectBindingPatternAndAssignment6(target=esnext).js │ ├── destructuringObjectBindingPatternAndAssignment6(target=esnext).symbols │ ├── destructuringObjectBindingPatternAndAssignment6(target=esnext).types │ ├── destructuringObjectBindingPatternAndAssignment7(target=es5).errors.txt │ ├── destructuringObjectBindingPatternAndAssignment7(target=es5).js │ ├── destructuringObjectBindingPatternAndAssignment7(target=es5).symbols │ ├── destructuringObjectBindingPatternAndAssignment7(target=es5).types │ ├── destructuringObjectBindingPatternAndAssignment7(target=esnext).js │ ├── destructuringObjectBindingPatternAndAssignment7(target=esnext).symbols │ ├── destructuringObjectBindingPatternAndAssignment7(target=esnext).types │ ├── destructuringObjectBindingPatternAndAssignment8(target=es5).errors.txt │ ├── destructuringObjectBindingPatternAndAssignment8(target=es5).js │ ├── destructuringObjectBindingPatternAndAssignment8(target=es5).symbols │ ├── destructuringObjectBindingPatternAndAssignment8(target=es5).types │ ├── destructuringObjectBindingPatternAndAssignment8(target=esnext).js │ ├── destructuringObjectBindingPatternAndAssignment8(target=esnext).symbols │ ├── destructuringObjectBindingPatternAndAssignment8(target=esnext).types │ ├── destructuringObjectBindingPatternAndAssignment9SiblingInitializer.js │ ├── destructuringObjectBindingPatternAndAssignment9SiblingInitializer.symbols │ ├── destructuringObjectBindingPatternAndAssignment9SiblingInitializer.types │ ├── destructuringParameterDeclaration10(strict=false).symbols │ ├── destructuringParameterDeclaration10(strict=false).types │ ├── destructuringParameterDeclaration10(strict=true).symbols │ ├── destructuringParameterDeclaration10(strict=true).types │ ├── destructuringParameterDeclaration1ES5.errors.txt │ ├── destructuringParameterDeclaration1ES5.js │ ├── destructuringParameterDeclaration1ES5.symbols │ ├── destructuringParameterDeclaration1ES5.types │ ├── destructuringParameterDeclaration1ES5iterable.errors.txt │ ├── destructuringParameterDeclaration1ES5iterable.js │ ├── destructuringParameterDeclaration1ES5iterable.symbols │ ├── destructuringParameterDeclaration1ES5iterable.types │ ├── destructuringParameterDeclaration1ES6.errors.txt │ ├── destructuringParameterDeclaration1ES6.js │ ├── destructuringParameterDeclaration1ES6.symbols │ ├── destructuringParameterDeclaration1ES6.types │ ├── destructuringParameterDeclaration2.errors.txt │ ├── destructuringParameterDeclaration2.js │ ├── destructuringParameterDeclaration2.symbols │ ├── destructuringParameterDeclaration2.types │ ├── destructuringParameterDeclaration3ES5.errors.txt │ ├── destructuringParameterDeclaration3ES5.js │ ├── destructuringParameterDeclaration3ES5.symbols │ ├── destructuringParameterDeclaration3ES5.types │ ├── destructuringParameterDeclaration3ES5iterable(target=es2015).errors.txt │ ├── destructuringParameterDeclaration3ES5iterable(target=es2015).js │ ├── destructuringParameterDeclaration3ES5iterable(target=es2015).symbols │ ├── destructuringParameterDeclaration3ES5iterable(target=es2015).types │ ├── destructuringParameterDeclaration3ES5iterable(target=es5).errors.txt │ ├── destructuringParameterDeclaration3ES5iterable(target=es5).js │ ├── destructuringParameterDeclaration3ES5iterable(target=es5).symbols │ ├── destructuringParameterDeclaration3ES5iterable(target=es5).types │ ├── destructuringParameterDeclaration3ES6.errors.txt │ ├── destructuringParameterDeclaration3ES6.js │ ├── destructuringParameterDeclaration3ES6.symbols │ ├── destructuringParameterDeclaration3ES6.types │ ├── destructuringParameterDeclaration4.errors.txt │ ├── destructuringParameterDeclaration4.js │ ├── destructuringParameterDeclaration4.symbols │ ├── destructuringParameterDeclaration4.types │ ├── destructuringParameterDeclaration5.errors.txt │ ├── destructuringParameterDeclaration5.js │ ├── destructuringParameterDeclaration5.symbols │ ├── destructuringParameterDeclaration5.types │ ├── destructuringParameterDeclaration6.errors.txt │ ├── destructuringParameterDeclaration6.js │ ├── destructuringParameterDeclaration6.symbols │ ├── destructuringParameterDeclaration6.types │ ├── destructuringParameterDeclaration7ES5(target=es2015).js │ ├── destructuringParameterDeclaration7ES5(target=es2015).symbols │ ├── destructuringParameterDeclaration7ES5(target=es2015).types │ ├── destructuringParameterDeclaration7ES5(target=es5).errors.txt │ ├── destructuringParameterDeclaration7ES5(target=es5).js │ ├── destructuringParameterDeclaration7ES5(target=es5).symbols │ ├── destructuringParameterDeclaration7ES5(target=es5).types │ ├── destructuringParameterDeclaration7ES5iterable(target=es2015).errors.txt │ ├── destructuringParameterDeclaration7ES5iterable(target=es2015).js │ ├── destructuringParameterDeclaration7ES5iterable(target=es2015).symbols │ ├── destructuringParameterDeclaration7ES5iterable(target=es2015).types │ ├── destructuringParameterDeclaration7ES5iterable(target=es5).errors.txt │ ├── destructuringParameterDeclaration7ES5iterable(target=es5).js │ ├── destructuringParameterDeclaration7ES5iterable(target=es5).symbols │ ├── destructuringParameterDeclaration7ES5iterable(target=es5).types │ ├── destructuringParameterDeclaration8.errors.txt │ ├── destructuringParameterDeclaration8.js │ ├── destructuringParameterDeclaration8.symbols │ ├── destructuringParameterDeclaration8.types │ ├── destructuringParameterDeclaration9(strict=false).symbols │ ├── destructuringParameterDeclaration9(strict=false).types │ ├── destructuringParameterDeclaration9(strict=true).errors.txt │ ├── destructuringParameterDeclaration9(strict=true).symbols │ ├── destructuringParameterDeclaration9(strict=true).types │ ├── destructuringParameterProperties1.errors.txt │ ├── destructuringParameterProperties1.js │ ├── destructuringParameterProperties1.symbols │ ├── destructuringParameterProperties1.types │ ├── destructuringParameterProperties2.errors.txt │ ├── destructuringParameterProperties2.js │ ├── destructuringParameterProperties2.symbols │ ├── destructuringParameterProperties2.types │ ├── destructuringParameterProperties3.errors.txt │ ├── destructuringParameterProperties3.js │ ├── destructuringParameterProperties3.symbols │ ├── destructuringParameterProperties3.types │ ├── destructuringParameterProperties4.errors.txt │ ├── destructuringParameterProperties4.js │ ├── destructuringParameterProperties4.symbols │ ├── destructuringParameterProperties4.types │ ├── destructuringParameterProperties5.errors.txt │ ├── destructuringParameterProperties5.js │ ├── destructuringParameterProperties5.symbols │ ├── destructuringParameterProperties5.types │ ├── destructuringPropertyAssignmentNameIsNotAssignmentTarget.js │ ├── destructuringPropertyAssignmentNameIsNotAssignmentTarget.symbols │ ├── destructuringPropertyAssignmentNameIsNotAssignmentTarget.types │ ├── destructuringReassignsRightHandSide(target=es2015).js │ ├── destructuringReassignsRightHandSide(target=es2015).symbols │ ├── destructuringReassignsRightHandSide(target=es2015).types │ ├── destructuringReassignsRightHandSide(target=es5).errors.txt │ ├── destructuringReassignsRightHandSide(target=es5).js │ ├── destructuringReassignsRightHandSide(target=es5).symbols │ ├── destructuringReassignsRightHandSide(target=es5).types │ ├── destructuringSameNames.errors.txt │ ├── destructuringSameNames.js │ ├── destructuringSameNames.symbols │ ├── destructuringSameNames.types │ ├── destructuringSpread.errors.txt │ ├── destructuringSpread.js │ ├── destructuringSpread.symbols │ ├── destructuringSpread.types │ ├── destructuringTempOccursAfterPrologue.js │ ├── destructuringTempOccursAfterPrologue.symbols │ ├── destructuringTempOccursAfterPrologue.types │ ├── destructuringTuple.errors.txt │ ├── destructuringTuple.js │ ├── destructuringTuple.symbols │ ├── destructuringTuple.types │ ├── destructuringTypeAssertionsES5_1(target=es2015).errors.txt │ ├── destructuringTypeAssertionsES5_1(target=es2015).js │ ├── destructuringTypeAssertionsES5_1(target=es2015).symbols │ ├── destructuringTypeAssertionsES5_1(target=es2015).types │ ├── destructuringTypeAssertionsES5_1(target=es5).errors.txt │ ├── destructuringTypeAssertionsES5_1(target=es5).js │ ├── destructuringTypeAssertionsES5_1(target=es5).symbols │ ├── destructuringTypeAssertionsES5_1(target=es5).types │ ├── destructuringTypeAssertionsES5_2(target=es2015).errors.txt │ ├── destructuringTypeAssertionsES5_2(target=es2015).js │ ├── destructuringTypeAssertionsES5_2(target=es2015).symbols │ ├── destructuringTypeAssertionsES5_2(target=es2015).types │ ├── destructuringTypeAssertionsES5_2(target=es5).errors.txt │ ├── destructuringTypeAssertionsES5_2(target=es5).js │ ├── destructuringTypeAssertionsES5_2(target=es5).symbols │ ├── destructuringTypeAssertionsES5_2(target=es5).types │ ├── destructuringTypeAssertionsES5_3(target=es2015).errors.txt │ ├── destructuringTypeAssertionsES5_3(target=es2015).js │ ├── destructuringTypeAssertionsES5_3(target=es2015).symbols │ ├── destructuringTypeAssertionsES5_3(target=es2015).types │ ├── destructuringTypeAssertionsES5_3(target=es5).errors.txt │ ├── destructuringTypeAssertionsES5_3(target=es5).js │ ├── destructuringTypeAssertionsES5_3(target=es5).symbols │ ├── destructuringTypeAssertionsES5_3(target=es5).types │ ├── destructuringTypeAssertionsES5_4(target=es2015).errors.txt │ ├── destructuringTypeAssertionsES5_4(target=es2015).js │ ├── destructuringTypeAssertionsES5_4(target=es2015).symbols │ ├── destructuringTypeAssertionsES5_4(target=es2015).types │ ├── destructuringTypeAssertionsES5_4(target=es5).errors.txt │ ├── destructuringTypeAssertionsES5_4(target=es5).js │ ├── destructuringTypeAssertionsES5_4(target=es5).symbols │ ├── destructuringTypeAssertionsES5_4(target=es5).types │ ├── destructuringTypeAssertionsES5_5(target=es2015).js │ ├── destructuringTypeAssertionsES5_5(target=es2015).symbols │ ├── destructuringTypeAssertionsES5_5(target=es2015).types │ ├── destructuringTypeAssertionsES5_5(target=es5).errors.txt │ ├── destructuringTypeAssertionsES5_5(target=es5).js │ ├── destructuringTypeAssertionsES5_5(target=es5).symbols │ ├── destructuringTypeAssertionsES5_5(target=es5).types │ ├── destructuringTypeAssertionsES5_6(target=es2015).errors.txt │ ├── destructuringTypeAssertionsES5_6(target=es2015).js │ ├── destructuringTypeAssertionsES5_6(target=es2015).symbols │ ├── destructuringTypeAssertionsES5_6(target=es2015).types │ ├── destructuringTypeAssertionsES5_6(target=es5).errors.txt │ ├── destructuringTypeAssertionsES5_6(target=es5).js │ ├── destructuringTypeAssertionsES5_6(target=es5).symbols │ ├── destructuringTypeAssertionsES5_6(target=es5).types │ ├── destructuringTypeAssertionsES5_7(target=es2015).errors.txt │ ├── destructuringTypeAssertionsES5_7(target=es2015).js │ ├── destructuringTypeAssertionsES5_7(target=es2015).symbols │ ├── destructuringTypeAssertionsES5_7(target=es2015).types │ ├── destructuringTypeAssertionsES5_7(target=es5).errors.txt │ ├── destructuringTypeAssertionsES5_7(target=es5).js │ ├── destructuringTypeAssertionsES5_7(target=es5).symbols │ ├── destructuringTypeAssertionsES5_7(target=es5).types │ ├── destructuringTypeGuardFlow.js │ ├── destructuringTypeGuardFlow.symbols │ ├── destructuringTypeGuardFlow.types │ ├── destructuringUnspreadableIntoRest.errors.txt │ ├── destructuringUnspreadableIntoRest.js │ ├── destructuringUnspreadableIntoRest.symbols │ ├── destructuringUnspreadableIntoRest.types │ ├── destructuringVariableDeclaration1ES5.errors.txt │ ├── destructuringVariableDeclaration1ES5.js │ ├── destructuringVariableDeclaration1ES5.symbols │ ├── destructuringVariableDeclaration1ES5.types │ ├── destructuringVariableDeclaration1ES5iterable(target=es2015).errors.txt │ ├── destructuringVariableDeclaration1ES5iterable(target=es2015).js │ ├── destructuringVariableDeclaration1ES5iterable(target=es2015).symbols │ ├── destructuringVariableDeclaration1ES5iterable(target=es2015).types │ ├── destructuringVariableDeclaration1ES5iterable(target=es5).errors.txt │ ├── destructuringVariableDeclaration1ES5iterable(target=es5).js │ ├── destructuringVariableDeclaration1ES5iterable(target=es5).symbols │ ├── destructuringVariableDeclaration1ES5iterable(target=es5).types │ ├── destructuringVariableDeclaration1ES6.errors.txt │ ├── destructuringVariableDeclaration1ES6.js │ ├── destructuringVariableDeclaration1ES6.symbols │ ├── destructuringVariableDeclaration1ES6.types │ ├── destructuringVariableDeclaration2.errors.txt │ ├── destructuringVariableDeclaration2.js │ ├── destructuringVariableDeclaration2.symbols │ ├── destructuringVariableDeclaration2.types │ ├── destructuringVoid.js │ ├── destructuringVoid.symbols │ ├── destructuringVoid.types │ ├── destructuringVoidStrictNullChecks.errors.txt │ ├── destructuringVoidStrictNullChecks.js │ ├── destructuringVoidStrictNullChecks.symbols │ ├── destructuringVoidStrictNullChecks.types │ ├── destructuringWithConstraint.js │ ├── destructuringWithConstraint.symbols │ ├── destructuringWithConstraint.types │ ├── destructuringWithGenericParameter.errors.txt │ ├── destructuringWithGenericParameter.js │ ├── destructuringWithGenericParameter.symbols │ ├── destructuringWithGenericParameter.types │ ├── destructuringWithLiteralInitializers.js │ ├── destructuringWithLiteralInitializers.symbols │ ├── destructuringWithLiteralInitializers.types │ ├── destructuringWithLiteralInitializers2.errors.txt │ ├── destructuringWithLiteralInitializers2.js │ ├── destructuringWithLiteralInitializers2.symbols │ ├── destructuringWithLiteralInitializers2.types │ ├── destructuringWithNewExpression.js │ ├── destructuringWithNewExpression.symbols │ ├── destructuringWithNewExpression.types │ ├── destructuringWithNumberLiteral.js │ ├── destructuringWithNumberLiteral.symbols │ ├── destructuringWithNumberLiteral.types │ ├── detachedCommentAtStartOfConstructor1.js │ ├── detachedCommentAtStartOfConstructor1.symbols │ ├── detachedCommentAtStartOfConstructor1.types │ ├── detachedCommentAtStartOfConstructor2.errors.txt │ ├── detachedCommentAtStartOfConstructor2.js │ ├── detachedCommentAtStartOfConstructor2.symbols │ ├── detachedCommentAtStartOfConstructor2.types │ ├── detachedCommentAtStartOfFunctionBody1.errors.txt │ ├── detachedCommentAtStartOfFunctionBody1.js │ ├── detachedCommentAtStartOfFunctionBody1.symbols │ ├── detachedCommentAtStartOfFunctionBody1.types │ ├── detachedCommentAtStartOfFunctionBody2.errors.txt │ ├── detachedCommentAtStartOfFunctionBody2.js │ ├── detachedCommentAtStartOfFunctionBody2.symbols │ ├── detachedCommentAtStartOfFunctionBody2.types │ ├── detachedCommentAtStartOfLambdaFunction1.errors.txt │ ├── detachedCommentAtStartOfLambdaFunction1.js │ ├── detachedCommentAtStartOfLambdaFunction1.symbols │ ├── detachedCommentAtStartOfLambdaFunction1.types │ ├── detachedCommentAtStartOfLambdaFunction2.errors.txt │ ├── detachedCommentAtStartOfLambdaFunction2.js │ ├── detachedCommentAtStartOfLambdaFunction2.symbols │ ├── detachedCommentAtStartOfLambdaFunction2.types │ ├── didYouMeanElaborationsForExpressionsWhichCouldBeCalled.errors.txt │ ├── didYouMeanElaborationsForExpressionsWhichCouldBeCalled.js │ ├── didYouMeanElaborationsForExpressionsWhichCouldBeCalled.symbols │ ├── didYouMeanElaborationsForExpressionsWhichCouldBeCalled.types │ ├── didYouMeanStringLiteral.errors.txt │ ├── didYouMeanStringLiteral.js │ ├── didYouMeanStringLiteral.symbols │ ├── didYouMeanStringLiteral.types │ ├── didYouMeanSuggestionErrors.errors.txt │ ├── didYouMeanSuggestionErrors.js │ ├── didYouMeanSuggestionErrors.symbols │ ├── didYouMeanSuggestionErrors.types │ ├── differentTypesWithSameName.errors.txt │ ├── differentTypesWithSameName.js │ ├── differentTypesWithSameName.symbols │ ├── differentTypesWithSameName.types │ ├── directDependenceBetweenTypeAliases.errors.txt │ ├── directDependenceBetweenTypeAliases.js │ ├── directDependenceBetweenTypeAliases.symbols │ ├── directDependenceBetweenTypeAliases.types │ ├── directReferenceToNull.errors.txt │ ├── directReferenceToNull.js │ ├── directReferenceToNull.symbols │ ├── directReferenceToNull.types │ ├── directReferenceToUndefined.errors.txt │ ├── directReferenceToUndefined.js │ ├── directReferenceToUndefined.symbols │ ├── directReferenceToUndefined.types │ ├── disallowLineTerminatorBeforeArrow.errors.txt │ ├── disallowLineTerminatorBeforeArrow.js │ ├── disallowLineTerminatorBeforeArrow.symbols │ ├── disallowLineTerminatorBeforeArrow.types │ ├── disallowedBlockScopedInPresenceOfParseErrors1.errors.txt │ ├── disallowedBlockScopedInPresenceOfParseErrors1.symbols │ ├── disallowedBlockScopedInPresenceOfParseErrors1.types │ ├── discriminableUnionWithIntersectedMembers.js │ ├── discriminableUnionWithIntersectedMembers.symbols │ ├── discriminableUnionWithIntersectedMembers.types │ ├── discriminantElementAccessCheck.js │ ├── discriminantElementAccessCheck.symbols │ ├── discriminantElementAccessCheck.types │ ├── discriminantNarrowingCouldBeCircular.js │ ├── discriminantNarrowingCouldBeCircular.symbols │ ├── discriminantNarrowingCouldBeCircular.types │ ├── discriminantOrderIndependence.js │ ├── discriminantOrderIndependence.symbols │ ├── discriminantOrderIndependence.types │ ├── discriminantPropertyCheck.js │ ├── discriminantPropertyCheck.symbols │ ├── discriminantPropertyCheck.types │ ├── discriminantPropertyInference.js │ ├── discriminantPropertyInference.symbols │ ├── discriminantPropertyInference.types │ ├── discriminantUsingEvaluatableTemplateExpression.symbols │ ├── discriminantUsingEvaluatableTemplateExpression.types │ ├── discriminantsAndNullOrUndefined.js │ ├── discriminantsAndNullOrUndefined.symbols │ ├── discriminantsAndNullOrUndefined.types │ ├── discriminantsAndPrimitives.js │ ├── discriminantsAndPrimitives.symbols │ ├── discriminantsAndPrimitives.types │ ├── discriminantsAndTypePredicates.js │ ├── discriminantsAndTypePredicates.symbols │ ├── discriminantsAndTypePredicates.types │ ├── discriminateObjectTypesOnly.js │ ├── discriminateObjectTypesOnly.symbols │ ├── discriminateObjectTypesOnly.types │ ├── discriminateWithDivergentAccessors1.symbols │ ├── discriminateWithDivergentAccessors1.types │ ├── discriminateWithMissingProperty.symbols │ ├── discriminateWithMissingProperty.types │ ├── discriminateWithOptionalProperty1(exactoptionalpropertytypes=false).symbols │ ├── discriminateWithOptionalProperty1(exactoptionalpropertytypes=false).types │ ├── discriminateWithOptionalProperty1(exactoptionalpropertytypes=true).symbols │ ├── discriminateWithOptionalProperty1(exactoptionalpropertytypes=true).types │ ├── discriminateWithOptionalProperty2(exactoptionalpropertytypes=false).symbols │ ├── discriminateWithOptionalProperty2(exactoptionalpropertytypes=false).types │ ├── discriminateWithOptionalProperty2(exactoptionalpropertytypes=true).symbols │ ├── discriminateWithOptionalProperty2(exactoptionalpropertytypes=true).types │ ├── discriminateWithOptionalProperty3(exactoptionalpropertytypes=false).symbols │ ├── discriminateWithOptionalProperty3(exactoptionalpropertytypes=false).types │ ├── discriminateWithOptionalProperty3(exactoptionalpropertytypes=true).symbols │ ├── discriminateWithOptionalProperty3(exactoptionalpropertytypes=true).types │ ├── discriminateWithOptionalProperty4(exactoptionalpropertytypes=false).errors.txt │ ├── discriminateWithOptionalProperty4(exactoptionalpropertytypes=false).symbols │ ├── discriminateWithOptionalProperty4(exactoptionalpropertytypes=false).types │ ├── discriminateWithOptionalProperty4(exactoptionalpropertytypes=true).symbols │ ├── discriminateWithOptionalProperty4(exactoptionalpropertytypes=true).types │ ├── discriminatedUnionErrorMessage.errors.txt │ ├── discriminatedUnionErrorMessage.js │ ├── discriminatedUnionErrorMessage.symbols │ ├── discriminatedUnionErrorMessage.types │ ├── discriminatedUnionInference.js │ ├── discriminatedUnionInference.symbols │ ├── discriminatedUnionInference.types │ ├── discriminatedUnionJsxElement.js │ ├── discriminatedUnionJsxElement.symbols │ ├── discriminatedUnionJsxElement.types │ ├── discriminatedUnionTypes1.errors.txt │ ├── discriminatedUnionTypes1.js │ ├── discriminatedUnionTypes1.symbols │ ├── discriminatedUnionTypes1.types │ ├── discriminatedUnionTypes2.errors.txt │ ├── discriminatedUnionTypes2.js │ ├── discriminatedUnionTypes2.symbols │ ├── discriminatedUnionTypes2.types │ ├── discriminatedUnionTypes3.js │ ├── discriminatedUnionTypes3.symbols │ ├── discriminatedUnionTypes3.types │ ├── discriminatedUnionTypes4.symbols │ ├── discriminatedUnionTypes4.types │ ├── discriminatedUnionWithIndexSignature.js │ ├── discriminatedUnionWithIndexSignature.symbols │ ├── discriminatedUnionWithIndexSignature.types │ ├── discriminatingUnionWithUnionPropertyAgainstUndefinedWithoutStrictNullChecks.symbols │ ├── discriminatingUnionWithUnionPropertyAgainstUndefinedWithoutStrictNullChecks.types │ ├── dissallowSymbolAsWeakType.errors.txt │ ├── dissallowSymbolAsWeakType.js │ ├── dissallowSymbolAsWeakType.symbols │ ├── dissallowSymbolAsWeakType.types │ ├── distributiveConditionalTypeConstraints.errors.txt │ ├── distributiveConditionalTypeConstraints.symbols │ ├── distributiveConditionalTypeConstraints.types │ ├── distributiveConditionalTypeNeverIntersection1.symbols │ ├── distributiveConditionalTypeNeverIntersection1.types │ ├── divergentAccessors1.js │ ├── divergentAccessors1.symbols │ ├── divergentAccessors1.types │ ├── divergentAccessorsTypes1.js │ ├── divergentAccessorsTypes1.symbols │ ├── divergentAccessorsTypes1.types │ ├── divergentAccessorsTypes2.errors.txt │ ├── divergentAccessorsTypes2.js │ ├── divergentAccessorsTypes2.symbols │ ├── divergentAccessorsTypes2.types │ ├── divergentAccessorsTypes3(target=es2015).errors.txt │ ├── divergentAccessorsTypes3(target=es2015).js │ ├── divergentAccessorsTypes3(target=es2015).symbols │ ├── divergentAccessorsTypes3(target=es2015).types │ ├── divergentAccessorsTypes3(target=es5).errors.txt │ ├── divergentAccessorsTypes3(target=es5).js │ ├── divergentAccessorsTypes3(target=es5).symbols │ ├── divergentAccessorsTypes3(target=es5).types │ ├── divergentAccessorsTypes4(target=es2015).errors.txt │ ├── divergentAccessorsTypes4(target=es2015).js │ ├── divergentAccessorsTypes4(target=es2015).symbols │ ├── divergentAccessorsTypes4(target=es2015).types │ ├── divergentAccessorsTypes4(target=es5).errors.txt │ ├── divergentAccessorsTypes4(target=es5).js │ ├── divergentAccessorsTypes4(target=es5).symbols │ ├── divergentAccessorsTypes4(target=es5).types │ ├── divergentAccessorsTypes5(target=es2015).errors.txt │ ├── divergentAccessorsTypes5(target=es2015).js │ ├── divergentAccessorsTypes5(target=es2015).symbols │ ├── divergentAccessorsTypes5(target=es2015).types │ ├── divergentAccessorsTypes5(target=es5).errors.txt │ ├── divergentAccessorsTypes5(target=es5).js │ ├── divergentAccessorsTypes5(target=es5).symbols │ ├── divergentAccessorsTypes5(target=es5).types │ ├── divergentAccessorsTypes6.errors.txt │ ├── divergentAccessorsTypes6.js │ ├── divergentAccessorsTypes6.symbols │ ├── divergentAccessorsTypes6.types │ ├── divergentAccessorsTypes7.js │ ├── divergentAccessorsTypes7.symbols │ ├── divergentAccessorsTypes7.types │ ├── divergentAccessorsTypes8.errors.txt │ ├── divergentAccessorsTypes8.symbols │ ├── divergentAccessorsTypes8.types │ ├── divergentAccessorsVisibility1.errors.txt │ ├── divergentAccessorsVisibility1.js │ ├── divergentAccessorsVisibility1.symbols │ ├── divergentAccessorsVisibility1.types │ ├── divideAndConquerIntersections.symbols │ ├── divideAndConquerIntersections.types │ ├── doNotElaborateAssignabilityToTypeParameters(target=es2015).errors.txt │ ├── doNotElaborateAssignabilityToTypeParameters(target=es2015).js │ ├── doNotElaborateAssignabilityToTypeParameters(target=es2015).symbols │ ├── doNotElaborateAssignabilityToTypeParameters(target=es2015).types │ ├── doNotElaborateAssignabilityToTypeParameters(target=es5).errors.txt │ ├── doNotElaborateAssignabilityToTypeParameters(target=es5).js │ ├── doNotElaborateAssignabilityToTypeParameters(target=es5).symbols │ ├── doNotElaborateAssignabilityToTypeParameters(target=es5).types │ ├── doNotEmitDetachedComments.js │ ├── doNotEmitDetachedComments.symbols │ ├── doNotEmitDetachedComments.types │ ├── doNotEmitDetachedCommentsAtStartOfConstructor.js │ ├── doNotEmitDetachedCommentsAtStartOfConstructor.symbols │ ├── doNotEmitDetachedCommentsAtStartOfConstructor.types │ ├── doNotEmitDetachedCommentsAtStartOfFunctionBody.js │ ├── doNotEmitDetachedCommentsAtStartOfFunctionBody.symbols │ ├── doNotEmitDetachedCommentsAtStartOfFunctionBody.types │ ├── doNotEmitDetachedCommentsAtStartOfLambdaFunction.js │ ├── doNotEmitDetachedCommentsAtStartOfLambdaFunction.symbols │ ├── doNotEmitDetachedCommentsAtStartOfLambdaFunction.types │ ├── doNotEmitPinnedCommentNotOnTopOfFile.js │ ├── doNotEmitPinnedCommentNotOnTopOfFile.symbols │ ├── doNotEmitPinnedCommentNotOnTopOfFile.types │ ├── doNotEmitPinnedCommentOnNotEmittedNode.js │ ├── doNotEmitPinnedCommentOnNotEmittedNode.symbols │ ├── doNotEmitPinnedCommentOnNotEmittedNode.types │ ├── doNotEmitPinnedCommentOnNotEmittedNodets.js │ ├── doNotEmitPinnedCommentOnNotEmittedNodets.symbols │ ├── doNotEmitPinnedCommentOnNotEmittedNodets.types │ ├── doNotEmitPinnedDetachedComments.js │ ├── doNotEmitPinnedDetachedComments.symbols │ ├── doNotEmitPinnedDetachedComments.types │ ├── doNotEmitTripleSlashCommentsInEmptyFile.js │ ├── doNotEmitTripleSlashCommentsInEmptyFile.symbols │ ├── doNotEmitTripleSlashCommentsInEmptyFile.types │ ├── doNotEmitTripleSlashCommentsOnNotEmittedNode.js │ ├── doNotEmitTripleSlashCommentsOnNotEmittedNode.symbols │ ├── doNotEmitTripleSlashCommentsOnNotEmittedNode.types │ ├── doNotInferUnrelatedTypes.js │ ├── doNotInferUnrelatedTypes.symbols │ ├── doNotInferUnrelatedTypes.types │ ├── doNotWidenAtObjectLiteralPropertyAssignment.errors.txt │ ├── doNotWidenAtObjectLiteralPropertyAssignment.js │ ├── doNotWidenAtObjectLiteralPropertyAssignment.symbols │ ├── doNotWidenAtObjectLiteralPropertyAssignment.types │ ├── doNotemitTripleSlashComments.js │ ├── doNotemitTripleSlashComments.symbols │ ├── doNotemitTripleSlashComments.types │ ├── doWhileBreakStatements.js │ ├── doWhileBreakStatements.symbols │ ├── doWhileBreakStatements.types │ ├── doWhileContinueStatements.js │ ├── doWhileContinueStatements.symbols │ ├── doWhileContinueStatements.types │ ├── doWhileLoop.js │ ├── doWhileLoop.symbols │ ├── doWhileLoop.types │ ├── doWhileUnreachableCode.js │ ├── doWhileUnreachableCode.symbols │ ├── doWhileUnreachableCode.types │ ├── doYouNeedToChangeYourTargetLibraryES2015.js │ ├── doYouNeedToChangeYourTargetLibraryES2015.symbols │ ├── doYouNeedToChangeYourTargetLibraryES2015.types │ ├── doYouNeedToChangeYourTargetLibraryES2016Plus.errors.txt │ ├── doYouNeedToChangeYourTargetLibraryES2016Plus.js │ ├── doYouNeedToChangeYourTargetLibraryES2016Plus.symbols │ ├── doYouNeedToChangeYourTargetLibraryES2016Plus.types │ ├── doYouNeedToChangeYourTargetLibraryES2023(target=es5).errors.txt │ ├── doYouNeedToChangeYourTargetLibraryES2023(target=es5).symbols │ ├── doYouNeedToChangeYourTargetLibraryES2023(target=es5).types │ ├── doYouNeedToChangeYourTargetLibraryES2023(target=esnext).errors.txt │ ├── doYouNeedToChangeYourTargetLibraryES2023(target=esnext).symbols │ ├── doYouNeedToChangeYourTargetLibraryES2023(target=esnext).types │ ├── documentHighlightAtInheritedProperties1.baseline.jsonc │ ├── documentHighlightAtInheritedProperties2.baseline.jsonc │ ├── documentHighlightAtInheritedProperties3.baseline.jsonc │ ├── documentHighlightAtInheritedProperties4.baseline.jsonc │ ├── documentHighlightAtInheritedProperties5.baseline.jsonc │ ├── documentHighlightAtInheritedProperties6.baseline.jsonc │ ├── documentHighlightAtParameterPropertyDeclaration1.baseline.jsonc │ ├── documentHighlightAtParameterPropertyDeclaration2.baseline.jsonc │ ├── documentHighlightAtParameterPropertyDeclaration3.baseline.jsonc │ ├── documentHighlightDefaultInKeyword.baseline.jsonc │ ├── documentHighlightDefaultInSwitch.baseline.jsonc │ ├── documentHighlightInExport1.baseline.jsonc │ ├── documentHighlightInKeyword.baseline.jsonc │ ├── documentHighlightInTypeExport.baseline.jsonc │ ├── documentHighlightJSDocTypedef.baseline.jsonc │ ├── documentHighlightMultilineTemplateStrings.baseline.jsonc │ ├── documentHighlightTemplateStrings.baseline.jsonc │ ├── documentHighlightVarianceModifiers.baseline.jsonc │ ├── documentHighlights01.baseline.jsonc │ ├── documentHighlights02.baseline.jsonc │ ├── documentHighlightsInvalidGlobalThis.baseline.jsonc │ ├── documentHighlightsInvalidModifierLocations.baseline.jsonc │ ├── documentHighlightsTypeParameterInHeritageClause01.baseline.jsonc │ ├── documentHighlights_33722.baseline.jsonc │ ├── documentHighlights_40082.baseline.jsonc │ ├── documentHighlights_filesToSearch.baseline.jsonc │ ├── documentHighlights_moduleImport_filesToSearch.baseline.jsonc │ ├── documentHighlights_moduleImport_filesToSearchWithInvalidFile.baseline.jsonc │ ├── documentHighlights_windowsPath.baseline.jsonc │ ├── doesNotNarrowUnionOfConstructorsWithInstanceof.js │ ├── doesNotNarrowUnionOfConstructorsWithInstanceof.symbols │ ├── doesNotNarrowUnionOfConstructorsWithInstanceof.types │ ├── dontShowCompilerGeneratedMembers.errors.txt │ ├── dontShowCompilerGeneratedMembers.js │ ├── dontShowCompilerGeneratedMembers.symbols │ ├── dontShowCompilerGeneratedMembers.types │ ├── dottedModuleName.errors.txt │ ├── dottedModuleName.js │ ├── dottedModuleName.symbols │ ├── dottedModuleName.types │ ├── dottedModuleName2.js │ ├── dottedModuleName2.symbols │ ├── dottedModuleName2.types │ ├── dottedNamesInSystem.errors.txt │ ├── dottedNamesInSystem.js │ ├── dottedNamesInSystem.symbols │ ├── dottedNamesInSystem.types │ ├── dottedSymbolResolution1.errors.txt │ ├── dottedSymbolResolution1.js │ ├── dottedSymbolResolution1.symbols │ ├── dottedSymbolResolution1.types │ ├── doubleMixinConditionalTypeBaseClassWorks.errors.txt │ ├── doubleMixinConditionalTypeBaseClassWorks.js │ ├── doubleMixinConditionalTypeBaseClassWorks.symbols │ ├── doubleMixinConditionalTypeBaseClassWorks.types │ ├── doubleUnderStringLiteralAssignability.errors.txt │ ├── doubleUnderStringLiteralAssignability.js │ ├── doubleUnderStringLiteralAssignability.symbols │ ├── doubleUnderStringLiteralAssignability.types │ ├── doubleUnderscoreEnumEmit.js │ ├── doubleUnderscoreEnumEmit.symbols │ ├── doubleUnderscoreEnumEmit.types │ ├── doubleUnderscoreExportStarConflict.errors.txt │ ├── doubleUnderscoreExportStarConflict.js │ ├── doubleUnderscoreExportStarConflict.symbols │ ├── doubleUnderscoreExportStarConflict.types │ ├── doubleUnderscoreLabels.js │ ├── doubleUnderscoreLabels.symbols │ ├── doubleUnderscoreLabels.types │ ├── doubleUnderscoreMappedTypes.js │ ├── doubleUnderscoreMappedTypes.symbols │ ├── doubleUnderscoreMappedTypes.types │ ├── doubleUnderscoreReactNamespace.js │ ├── doubleUnderscoreReactNamespace.symbols │ ├── doubleUnderscoreReactNamespace.types │ ├── doubleUnderscoreRenames.baseline.jsonc │ ├── downlevelIterationDeprecated(downleveliteration=false).errors.txt │ ├── downlevelIterationDeprecated(downleveliteration=false).js │ ├── downlevelIterationDeprecated(downleveliteration=false).symbols │ ├── downlevelIterationDeprecated(downleveliteration=false).types │ ├── downlevelIterationDeprecated(downleveliteration=true).errors.txt │ ├── downlevelIterationDeprecated(downleveliteration=true).js │ ├── downlevelIterationDeprecated(downleveliteration=true).symbols │ ├── downlevelIterationDeprecated(downleveliteration=true).types │ ├── downlevelLetConst1.errors.txt │ ├── downlevelLetConst1.js │ ├── downlevelLetConst1.symbols │ ├── downlevelLetConst1.types │ ├── downlevelLetConst10.js │ ├── downlevelLetConst10.symbols │ ├── downlevelLetConst10.types │ ├── downlevelLetConst11.errors.txt │ ├── downlevelLetConst11.js │ ├── downlevelLetConst11.symbols │ ├── downlevelLetConst11.types │ ├── downlevelLetConst12(target=es2015).errors.txt │ ├── downlevelLetConst12(target=es2015).js │ ├── downlevelLetConst12(target=es2015).symbols │ ├── downlevelLetConst12(target=es2015).types │ ├── downlevelLetConst12(target=es5).errors.txt │ ├── downlevelLetConst12(target=es5).js │ ├── downlevelLetConst12(target=es5).symbols │ ├── downlevelLetConst12(target=es5).types │ ├── downlevelLetConst13(target=es2015).js │ ├── downlevelLetConst13(target=es2015).symbols │ ├── downlevelLetConst13(target=es2015).types │ ├── downlevelLetConst13(target=es5).errors.txt │ ├── downlevelLetConst13(target=es5).js │ ├── downlevelLetConst13(target=es5).symbols │ ├── downlevelLetConst13(target=es5).types │ ├── downlevelLetConst14(target=es2015).js │ ├── downlevelLetConst14(target=es2015).symbols │ ├── downlevelLetConst14(target=es2015).types │ ├── downlevelLetConst14(target=es5).errors.txt │ ├── downlevelLetConst14(target=es5).js │ ├── downlevelLetConst14(target=es5).symbols │ ├── downlevelLetConst14(target=es5).types │ ├── downlevelLetConst15(target=es2015).js │ ├── downlevelLetConst15(target=es2015).symbols │ ├── downlevelLetConst15(target=es2015).types │ ├── downlevelLetConst15(target=es5).errors.txt │ ├── downlevelLetConst15(target=es5).js │ ├── downlevelLetConst15(target=es5).symbols │ ├── downlevelLetConst15(target=es5).types │ ├── downlevelLetConst16(target=es2015).errors.txt │ ├── downlevelLetConst16(target=es2015).js │ ├── downlevelLetConst16(target=es2015).symbols │ ├── downlevelLetConst16(target=es2015).types │ ├── downlevelLetConst16(target=es5).errors.txt │ ├── downlevelLetConst16(target=es5).js │ ├── downlevelLetConst16(target=es5).symbols │ ├── downlevelLetConst16(target=es5).types │ ├── downlevelLetConst17(target=es2015).js │ ├── downlevelLetConst17(target=es2015).symbols │ ├── downlevelLetConst17(target=es2015).types │ ├── downlevelLetConst17(target=es5).errors.txt │ ├── downlevelLetConst17(target=es5).js │ ├── downlevelLetConst17(target=es5).symbols │ ├── downlevelLetConst17(target=es5).types │ ├── downlevelLetConst18(target=es2015).js │ ├── downlevelLetConst18(target=es2015).symbols │ ├── downlevelLetConst18(target=es2015).types │ ├── downlevelLetConst18(target=es5).errors.txt │ ├── downlevelLetConst18(target=es5).js │ ├── downlevelLetConst18(target=es5).symbols │ ├── downlevelLetConst18(target=es5).types │ ├── downlevelLetConst19(target=es2015).js │ ├── downlevelLetConst19(target=es2015).symbols │ ├── downlevelLetConst19(target=es2015).types │ ├── downlevelLetConst19(target=es5).errors.txt │ ├── downlevelLetConst19(target=es5).js │ ├── downlevelLetConst19(target=es5).symbols │ ├── downlevelLetConst19(target=es5).types │ ├── downlevelLetConst2.errors.txt │ ├── downlevelLetConst2.js │ ├── downlevelLetConst2.symbols │ ├── downlevelLetConst2.types │ ├── downlevelLetConst3.js │ ├── downlevelLetConst3.symbols │ ├── downlevelLetConst3.types │ ├── downlevelLetConst4.errors.txt │ ├── downlevelLetConst4.js │ ├── downlevelLetConst4.symbols │ ├── downlevelLetConst4.types │ ├── downlevelLetConst5.js │ ├── downlevelLetConst5.symbols │ ├── downlevelLetConst5.types │ ├── downlevelLetConst6.errors.txt │ ├── downlevelLetConst6.js │ ├── downlevelLetConst6.symbols │ ├── downlevelLetConst6.types │ ├── downlevelLetConst7.js │ ├── downlevelLetConst7.symbols │ ├── downlevelLetConst7.types │ ├── downlevelLetConst8.js │ ├── downlevelLetConst8.symbols │ ├── downlevelLetConst8.types │ ├── downlevelLetConst9.js │ ├── downlevelLetConst9.symbols │ ├── downlevelLetConst9.types │ ├── dtsEmitTripleSlashAvoidUnnecessaryResolutionMode.js │ ├── dtsEmitTripleSlashAvoidUnnecessaryResolutionMode.symbols │ ├── dtsEmitTripleSlashAvoidUnnecessaryResolutionMode.types │ ├── duplicateAnonymousInners1.js │ ├── duplicateAnonymousInners1.symbols │ ├── duplicateAnonymousInners1.types │ ├── duplicateAnonymousModuleClasses.js │ ├── duplicateAnonymousModuleClasses.symbols │ ├── duplicateAnonymousModuleClasses.types │ ├── duplicateClassElements.errors.txt │ ├── duplicateClassElements.js │ ├── duplicateClassElements.symbols │ ├── duplicateClassElements.types │ ├── duplicateConstructSignature.js │ ├── duplicateConstructSignature.symbols │ ├── duplicateConstructSignature.types │ ├── duplicateConstructSignature2.js │ ├── duplicateConstructSignature2.symbols │ ├── duplicateConstructSignature2.types │ ├── duplicateConstructorOverloadSignature.js │ ├── duplicateConstructorOverloadSignature.symbols │ ├── duplicateConstructorOverloadSignature.types │ ├── duplicateConstructorOverloadSignature2.js │ ├── duplicateConstructorOverloadSignature2.symbols │ ├── duplicateConstructorOverloadSignature2.types │ ├── duplicateDefaultExport.errors.txt │ ├── duplicateDefaultExport.js │ ├── duplicateDefaultExport.symbols │ ├── duplicateDefaultExport.types │ ├── duplicateErrorAssignability.errors.txt │ ├── duplicateErrorAssignability.js │ ├── duplicateErrorAssignability.symbols │ ├── duplicateErrorAssignability.types │ ├── duplicateErrorClassExpression.errors.txt │ ├── duplicateErrorClassExpression.js │ ├── duplicateErrorClassExpression.symbols │ ├── duplicateErrorClassExpression.types │ ├── duplicateErrorNameNotFound.errors.txt │ ├── duplicateErrorNameNotFound.js │ ├── duplicateErrorNameNotFound.symbols │ ├── duplicateErrorNameNotFound.types │ ├── duplicateExportAssignments.errors.txt │ ├── duplicateExportAssignments.js │ ├── duplicateExportAssignments.symbols │ ├── duplicateExportAssignments.types │ ├── duplicateIdentifierBindingElementInParameterDeclaration1(target=es2015).errors.txt │ ├── duplicateIdentifierBindingElementInParameterDeclaration1(target=es2015).js │ ├── duplicateIdentifierBindingElementInParameterDeclaration1(target=es2015).symbols │ ├── duplicateIdentifierBindingElementInParameterDeclaration1(target=es2015).types │ ├── duplicateIdentifierBindingElementInParameterDeclaration1(target=es5).errors.txt │ ├── duplicateIdentifierBindingElementInParameterDeclaration1(target=es5).js │ ├── duplicateIdentifierBindingElementInParameterDeclaration1(target=es5).symbols │ ├── duplicateIdentifierBindingElementInParameterDeclaration1(target=es5).types │ ├── duplicateIdentifierBindingElementInParameterDeclaration2(target=es2015).errors.txt │ ├── duplicateIdentifierBindingElementInParameterDeclaration2(target=es2015).js │ ├── duplicateIdentifierBindingElementInParameterDeclaration2(target=es2015).symbols │ ├── duplicateIdentifierBindingElementInParameterDeclaration2(target=es2015).types │ ├── duplicateIdentifierBindingElementInParameterDeclaration2(target=es5).errors.txt │ ├── duplicateIdentifierBindingElementInParameterDeclaration2(target=es5).js │ ├── duplicateIdentifierBindingElementInParameterDeclaration2(target=es5).symbols │ ├── duplicateIdentifierBindingElementInParameterDeclaration2(target=es5).types │ ├── duplicateIdentifierComputedName.errors.txt │ ├── duplicateIdentifierComputedName.js │ ├── duplicateIdentifierComputedName.symbols │ ├── duplicateIdentifierComputedName.types │ ├── duplicateIdentifierDifferentModifiers.errors.txt │ ├── duplicateIdentifierDifferentModifiers.js │ ├── duplicateIdentifierDifferentModifiers.symbols │ ├── duplicateIdentifierDifferentModifiers.types │ ├── duplicateIdentifierDifferentSpelling.errors.txt │ ├── duplicateIdentifierDifferentSpelling.js │ ├── duplicateIdentifierDifferentSpelling.symbols │ ├── duplicateIdentifierDifferentSpelling.types │ ├── duplicateIdentifierEnum.errors.txt │ ├── duplicateIdentifierEnum.js │ ├── duplicateIdentifierEnum.symbols │ ├── duplicateIdentifierEnum.types │ ├── duplicateIdentifierInCatchBlock.errors.txt │ ├── duplicateIdentifierInCatchBlock.js │ ├── duplicateIdentifierInCatchBlock.symbols │ ├── duplicateIdentifierInCatchBlock.types │ ├── duplicateIdentifierRelatedSpans1.errors.txt │ ├── duplicateIdentifierRelatedSpans1.js │ ├── duplicateIdentifierRelatedSpans1.symbols │ ├── duplicateIdentifierRelatedSpans1.types │ ├── duplicateIdentifierRelatedSpans2.errors.txt │ ├── duplicateIdentifierRelatedSpans2.js │ ├── duplicateIdentifierRelatedSpans2.symbols │ ├── duplicateIdentifierRelatedSpans2.types │ ├── duplicateIdentifierRelatedSpans3.errors.txt │ ├── duplicateIdentifierRelatedSpans3.js │ ├── duplicateIdentifierRelatedSpans3.symbols │ ├── duplicateIdentifierRelatedSpans3.types │ ├── duplicateIdentifierRelatedSpans4.errors.txt │ ├── duplicateIdentifierRelatedSpans4.js │ ├── duplicateIdentifierRelatedSpans4.symbols │ ├── duplicateIdentifierRelatedSpans4.types │ ├── duplicateIdentifierRelatedSpans5.errors.txt │ ├── duplicateIdentifierRelatedSpans5.js │ ├── duplicateIdentifierRelatedSpans5.symbols │ ├── duplicateIdentifierRelatedSpans5.types │ ├── duplicateIdentifierRelatedSpans6.errors.txt │ ├── duplicateIdentifierRelatedSpans6.js │ ├── duplicateIdentifierRelatedSpans6.symbols │ ├── duplicateIdentifierRelatedSpans6.types │ ├── duplicateIdentifierRelatedSpans7.errors.txt │ ├── duplicateIdentifierRelatedSpans7.js │ ├── duplicateIdentifierRelatedSpans7.symbols │ ├── duplicateIdentifierRelatedSpans7.types │ ├── duplicateIdentifierRelatedSpans_moduleAugmentation.errors.txt │ ├── duplicateIdentifierRelatedSpans_moduleAugmentation.js │ ├── duplicateIdentifierRelatedSpans_moduleAugmentation.symbols │ ├── duplicateIdentifierRelatedSpans_moduleAugmentation.types │ ├── duplicateIdentifierShouldNotShortCircuitBaseTypeBinding.errors.txt │ ├── duplicateIdentifierShouldNotShortCircuitBaseTypeBinding.js │ ├── duplicateIdentifierShouldNotShortCircuitBaseTypeBinding.symbols │ ├── duplicateIdentifierShouldNotShortCircuitBaseTypeBinding.types │ ├── duplicateIdentifiersAcrossContainerBoundaries.errors.txt │ ├── duplicateIdentifiersAcrossContainerBoundaries.js │ ├── duplicateIdentifiersAcrossContainerBoundaries.symbols │ ├── duplicateIdentifiersAcrossContainerBoundaries.types │ ├── duplicateIdentifiersAcrossFileBoundaries.errors.txt │ ├── duplicateIdentifiersAcrossFileBoundaries.js │ ├── duplicateIdentifiersAcrossFileBoundaries.symbols │ ├── duplicateIdentifiersAcrossFileBoundaries.types │ ├── duplicateInterfaceMembers1.errors.txt │ ├── duplicateInterfaceMembers1.js │ ├── duplicateInterfaceMembers1.symbols │ ├── duplicateInterfaceMembers1.types │ ├── duplicateLabel1.errors.txt │ ├── duplicateLabel1.js │ ├── duplicateLabel1.symbols │ ├── duplicateLabel1.types │ ├── duplicateLabel2.errors.txt │ ├── duplicateLabel2.js │ ├── duplicateLabel2.symbols │ ├── duplicateLabel2.types │ ├── duplicateLabel3.js │ ├── duplicateLabel3.symbols │ ├── duplicateLabel3.types │ ├── duplicateLabel4.js │ ├── duplicateLabel4.symbols │ ├── duplicateLabel4.types │ ├── duplicateLocalVariable1.errors.txt │ ├── duplicateLocalVariable1.js │ ├── duplicateLocalVariable1.symbols │ ├── duplicateLocalVariable1.types │ ├── duplicateLocalVariable2.errors.txt │ ├── duplicateLocalVariable2.js │ ├── duplicateLocalVariable2.symbols │ ├── duplicateLocalVariable2.types │ ├── duplicateLocalVariable3.errors.txt │ ├── duplicateLocalVariable3.js │ ├── duplicateLocalVariable3.symbols │ ├── duplicateLocalVariable3.types │ ├── duplicateLocalVariable4.errors.txt │ ├── duplicateLocalVariable4.js │ ├── duplicateLocalVariable4.symbols │ ├── duplicateLocalVariable4.types │ ├── duplicateNumericIndexers.errors.txt │ ├── duplicateNumericIndexers.js │ ├── duplicateNumericIndexers.symbols │ ├── duplicateNumericIndexers.types │ ├── duplicateObjectLiteralProperty(target=es2015).errors.txt │ ├── duplicateObjectLiteralProperty(target=es2015).js │ ├── duplicateObjectLiteralProperty(target=es2015).symbols │ ├── duplicateObjectLiteralProperty(target=es2015).types │ ├── duplicateObjectLiteralProperty(target=es5).errors.txt │ ├── duplicateObjectLiteralProperty(target=es5).js │ ├── duplicateObjectLiteralProperty(target=es5).symbols │ ├── duplicateObjectLiteralProperty(target=es5).types │ ├── duplicateObjectLiteralProperty_computedName1.errors.txt │ ├── duplicateObjectLiteralProperty_computedName1.js │ ├── duplicateObjectLiteralProperty_computedName1.symbols │ ├── duplicateObjectLiteralProperty_computedName1.types │ ├── duplicateObjectLiteralProperty_computedName2.errors.txt │ ├── duplicateObjectLiteralProperty_computedName2.js │ ├── duplicateObjectLiteralProperty_computedName2.symbols │ ├── duplicateObjectLiteralProperty_computedName2.types │ ├── duplicateObjectLiteralProperty_computedName3.errors.txt │ ├── duplicateObjectLiteralProperty_computedName3.js │ ├── duplicateObjectLiteralProperty_computedName3.symbols │ ├── duplicateObjectLiteralProperty_computedName3.types │ ├── duplicateObjectLiteralProperty_computedNameNegative1.symbols │ ├── duplicateObjectLiteralProperty_computedNameNegative1.types │ ├── duplicateOverloadInTypeAugmentation1.errors.txt │ ├── duplicateOverloadInTypeAugmentation1.js │ ├── duplicateOverloadInTypeAugmentation1.symbols │ ├── duplicateOverloadInTypeAugmentation1.types │ ├── duplicatePackage.errors.txt │ ├── duplicatePackage.js │ ├── duplicatePackage.symbols │ ├── duplicatePackage.types │ ├── duplicatePackageServices.baseline.jsonc │ ├── duplicatePackage_globalMerge.errors.txt │ ├── duplicatePackage_globalMerge.js │ ├── duplicatePackage_globalMerge.symbols │ ├── duplicatePackage_globalMerge.types │ ├── duplicatePackage_packageIdIncludesSubModule.js │ ├── duplicatePackage_packageIdIncludesSubModule.symbols │ ├── duplicatePackage_packageIdIncludesSubModule.types │ ├── duplicatePackage_referenceTypes.js │ ├── duplicatePackage_referenceTypes.symbols │ ├── duplicatePackage_referenceTypes.types │ ├── duplicatePackage_relativeImportWithinPackage.js │ ├── duplicatePackage_relativeImportWithinPackage.symbols │ ├── duplicatePackage_relativeImportWithinPackage.trace.json │ ├── duplicatePackage_relativeImportWithinPackage.types │ ├── duplicatePackage_relativeImportWithinPackage_scoped.js │ ├── duplicatePackage_relativeImportWithinPackage_scoped.symbols │ ├── duplicatePackage_relativeImportWithinPackage_scoped.trace.json │ ├── duplicatePackage_relativeImportWithinPackage_scoped.types │ ├── duplicatePackage_subModule.js │ ├── duplicatePackage_subModule.symbols │ ├── duplicatePackage_subModule.types │ ├── duplicatePackage_withErrors.errors.txt │ ├── duplicatePackage_withErrors.js │ ├── duplicatePackage_withErrors.symbols │ ├── duplicatePackage_withErrors.types │ ├── duplicatePropertiesInStrictMode.errors.txt │ ├── duplicatePropertiesInStrictMode.js │ ├── duplicatePropertiesInStrictMode.symbols │ ├── duplicatePropertiesInStrictMode.types │ ├── duplicatePropertiesInTypeAssertions01.errors.txt │ ├── duplicatePropertiesInTypeAssertions01.js │ ├── duplicatePropertiesInTypeAssertions01.symbols │ ├── duplicatePropertiesInTypeAssertions01.types │ ├── duplicatePropertiesInTypeAssertions02.errors.txt │ ├── duplicatePropertiesInTypeAssertions02.js │ ├── duplicatePropertiesInTypeAssertions02.symbols │ ├── duplicatePropertiesInTypeAssertions02.types │ ├── duplicatePropertyNames.errors.txt │ ├── duplicatePropertyNames.js │ ├── duplicatePropertyNames.symbols │ ├── duplicatePropertyNames.types │ ├── duplicateStringIndexers.errors.txt │ ├── duplicateStringIndexers.js │ ├── duplicateStringIndexers.symbols │ ├── duplicateStringIndexers.types │ ├── duplicateStringNamedProperty1.errors.txt │ ├── duplicateStringNamedProperty1.js │ ├── duplicateStringNamedProperty1.symbols │ ├── duplicateStringNamedProperty1.types │ ├── duplicateSymbolsExportMatching.errors.txt │ ├── duplicateSymbolsExportMatching.js │ ├── duplicateSymbolsExportMatching.symbols │ ├── duplicateSymbolsExportMatching.types │ ├── duplicateTypeParameters1.errors.txt │ ├── duplicateTypeParameters1.js │ ├── duplicateTypeParameters1.symbols │ ├── duplicateTypeParameters1.types │ ├── duplicateTypeParameters2.errors.txt │ ├── duplicateTypeParameters2.js │ ├── duplicateTypeParameters2.symbols │ ├── duplicateTypeParameters2.types │ ├── duplicateTypeParameters3.errors.txt │ ├── duplicateTypeParameters3.js │ ├── duplicateTypeParameters3.symbols │ ├── duplicateTypeParameters3.types │ ├── duplicateVarAndImport.js │ ├── duplicateVarAndImport.symbols │ ├── duplicateVarAndImport.types │ ├── duplicateVarAndImport2.errors.txt │ ├── duplicateVarAndImport2.js │ ├── duplicateVarAndImport2.symbols │ ├── duplicateVarAndImport2.types │ ├── duplicateVariableDeclaration1.js │ ├── duplicateVariableDeclaration1.symbols │ ├── duplicateVariableDeclaration1.types │ ├── duplicateVariablesByScope.js │ ├── duplicateVariablesByScope.symbols │ ├── duplicateVariablesByScope.types │ ├── duplicateVariablesWithAny.errors.txt │ ├── duplicateVariablesWithAny.js │ ├── duplicateVariablesWithAny.symbols │ ├── duplicateVariablesWithAny.types │ ├── duplicateVarsAcrossFileBoundaries.errors.txt │ ├── duplicateVarsAcrossFileBoundaries.js │ ├── duplicateVarsAcrossFileBoundaries.symbols │ ├── duplicateVarsAcrossFileBoundaries.types │ ├── dynamicImportDefer(module=commonjs).errors.txt │ ├── dynamicImportDefer(module=commonjs).js │ ├── dynamicImportDefer(module=commonjs).symbols │ ├── dynamicImportDefer(module=commonjs).types │ ├── dynamicImportDefer(module=es2015).errors.txt │ ├── dynamicImportDefer(module=es2015).js │ ├── dynamicImportDefer(module=es2015).symbols │ ├── dynamicImportDefer(module=es2015).types │ ├── dynamicImportDefer(module=es2020).errors.txt │ ├── dynamicImportDefer(module=es2020).js │ ├── dynamicImportDefer(module=es2020).symbols │ ├── dynamicImportDefer(module=es2020).types │ ├── dynamicImportDefer(module=esnext).js │ ├── dynamicImportDefer(module=esnext).symbols │ ├── dynamicImportDefer(module=esnext).types │ ├── dynamicImportDefer(module=nodenext).errors.txt │ ├── dynamicImportDefer(module=nodenext).js │ ├── dynamicImportDefer(module=nodenext).symbols │ ├── dynamicImportDefer(module=nodenext).types │ ├── dynamicImportDefer(module=preserve).js │ ├── dynamicImportDefer(module=preserve).symbols │ ├── dynamicImportDefer(module=preserve).types │ ├── dynamicImportDeferInvalidStandalone.errors.txt │ ├── dynamicImportDeferInvalidStandalone.js │ ├── dynamicImportDeferInvalidStandalone.symbols │ ├── dynamicImportDeferInvalidStandalone.types │ ├── dynamicImportEvaluateSpecifier.js │ ├── dynamicImportEvaluateSpecifier.symbols │ ├── dynamicImportEvaluateSpecifier.types │ ├── dynamicImportInDefaultExportExpression.errors.txt │ ├── dynamicImportInDefaultExportExpression.js │ ├── dynamicImportInDefaultExportExpression.symbols │ ├── dynamicImportInDefaultExportExpression.types │ ├── dynamicImportTrailingComma.errors.txt │ ├── dynamicImportTrailingComma.js │ ├── dynamicImportTrailingComma.symbols │ ├── dynamicImportTrailingComma.types │ ├── dynamicImportWithNestedThis_es2015.errors.txt │ ├── dynamicImportWithNestedThis_es2015.js │ ├── dynamicImportWithNestedThis_es2015.symbols │ ├── dynamicImportWithNestedThis_es2015.types │ ├── dynamicImportWithNestedThis_es5(target=es2015).errors.txt │ ├── dynamicImportWithNestedThis_es5(target=es2015).js │ ├── dynamicImportWithNestedThis_es5(target=es2015).symbols │ ├── dynamicImportWithNestedThis_es5(target=es2015).types │ ├── dynamicImportWithNestedThis_es5(target=es5).errors.txt │ ├── dynamicImportWithNestedThis_es5(target=es5).js │ ├── dynamicImportWithNestedThis_es5(target=es5).symbols │ ├── dynamicImportWithNestedThis_es5(target=es5).types │ ├── dynamicImportsDeclaration.js │ ├── dynamicImportsDeclaration.symbols │ ├── dynamicImportsDeclaration.types │ ├── dynamicModuleTypecheckError.js │ ├── dynamicModuleTypecheckError.symbols │ ├── dynamicModuleTypecheckError.types │ ├── dynamicNames.errors.txt │ ├── dynamicNames.js │ ├── dynamicNames.symbols │ ├── dynamicNames.types │ ├── dynamicNamesErrors.errors.txt │ ├── dynamicNamesErrors.js │ ├── dynamicNamesErrors.symbols │ ├── dynamicNamesErrors.types │ ├── dynamicRequire.errors.txt │ ├── dynamicRequire.js │ ├── dynamicRequire.symbols │ ├── dynamicRequire.types │ ├── elaboratedErrors.errors.txt │ ├── elaboratedErrors.js │ ├── elaboratedErrors.symbols │ ├── elaboratedErrors.types │ ├── elaboratedErrorsOnNullableTargets01.errors.txt │ ├── elaboratedErrorsOnNullableTargets01.js │ ├── elaboratedErrorsOnNullableTargets01.symbols │ ├── elaboratedErrorsOnNullableTargets01.types │ ├── elaborationForPossiblyCallableTypeStillReferencesArgumentAtTopLevel.errors.txt │ ├── elaborationForPossiblyCallableTypeStillReferencesArgumentAtTopLevel.js │ ├── elaborationForPossiblyCallableTypeStillReferencesArgumentAtTopLevel.symbols │ ├── elaborationForPossiblyCallableTypeStillReferencesArgumentAtTopLevel.types │ ├── elementAccessChain.2.js │ ├── elementAccessChain.2.symbols │ ├── elementAccessChain.2.types │ ├── elementAccessChain.3.errors.txt │ ├── elementAccessChain.3.js │ ├── elementAccessChain.3.symbols │ ├── elementAccessChain.3.types │ ├── elementAccessChain.js │ ├── elementAccessChain.symbols │ ├── elementAccessChain.types │ ├── elementAccessExpressionInternalComments.js │ ├── elementAccessExpressionInternalComments.symbols │ ├── elementAccessExpressionInternalComments.types │ ├── elidedEmbeddedStatementsReplacedWithSemicolon.js │ ├── elidedEmbeddedStatementsReplacedWithSemicolon.symbols │ ├── elidedEmbeddedStatementsReplacedWithSemicolon.types │ ├── elidedJSImport1.errors.txt │ ├── elidedJSImport1.js │ ├── elidedJSImport1.symbols │ ├── elidedJSImport1.types │ ├── elidedJSImport2(module=commonjs).errors.txt │ ├── elidedJSImport2(module=commonjs).js │ ├── elidedJSImport2(module=commonjs).symbols │ ├── elidedJSImport2(module=commonjs).types │ ├── elidedJSImport2(module=es2022).errors.txt │ ├── elidedJSImport2(module=es2022).js │ ├── elidedJSImport2(module=es2022).symbols │ ├── elidedJSImport2(module=es2022).types │ ├── elidingImportNames.js │ ├── elidingImportNames.symbols │ ├── elidingImportNames.types │ ├── emit(jsx=preserve).errors.txt │ ├── emit(jsx=preserve).js │ ├── emit(jsx=react).errors.txt │ ├── emit(jsx=react).js │ ├── emitAccessExpressionOfCastedObjectLiteralExpressionInArrowFunctionES5(target=es2015).js │ ├── emitAccessExpressionOfCastedObjectLiteralExpressionInArrowFunctionES5(target=es2015).symbols │ ├── emitAccessExpressionOfCastedObjectLiteralExpressionInArrowFunctionES5(target=es2015).types │ ├── emitAccessExpressionOfCastedObjectLiteralExpressionInArrowFunctionES5(target=es5).errors.txt │ ├── emitAccessExpressionOfCastedObjectLiteralExpressionInArrowFunctionES5(target=es5).js │ ├── emitAccessExpressionOfCastedObjectLiteralExpressionInArrowFunctionES5(target=es5).symbols │ ├── emitAccessExpressionOfCastedObjectLiteralExpressionInArrowFunctionES5(target=es5).types │ ├── emitAccessExpressionOfCastedObjectLiteralExpressionInArrowFunctionES6.js │ ├── emitAccessExpressionOfCastedObjectLiteralExpressionInArrowFunctionES6.symbols │ ├── emitAccessExpressionOfCastedObjectLiteralExpressionInArrowFunctionES6.types │ ├── emitArrowFunction(target=es2015).js │ ├── emitArrowFunction(target=es2015).symbols │ ├── emitArrowFunction(target=es2015).types │ ├── emitArrowFunction(target=es5).errors.txt │ ├── emitArrowFunction(target=es5).js │ ├── emitArrowFunction(target=es5).symbols │ ├── emitArrowFunction(target=es5).types │ ├── emitArrowFunctionAsIs(target=es2015).js │ ├── emitArrowFunctionAsIs(target=es2015).symbols │ ├── emitArrowFunctionAsIs(target=es2015).types │ ├── emitArrowFunctionAsIs(target=es5).errors.txt │ ├── emitArrowFunctionAsIs(target=es5).js │ ├── emitArrowFunctionAsIs(target=es5).symbols │ ├── emitArrowFunctionAsIs(target=es5).types │ ├── emitArrowFunctionAsIsES6.js │ ├── emitArrowFunctionAsIsES6.symbols │ ├── emitArrowFunctionAsIsES6.types │ ├── emitArrowFunctionES6.js │ ├── emitArrowFunctionES6.symbols │ ├── emitArrowFunctionES6.types │ ├── emitArrowFunctionThisCapturing(target=es2015).errors.txt │ ├── emitArrowFunctionThisCapturing(target=es2015).js │ ├── emitArrowFunctionThisCapturing(target=es2015).symbols │ ├── emitArrowFunctionThisCapturing(target=es2015).types │ ├── emitArrowFunctionThisCapturing(target=es5).errors.txt │ ├── emitArrowFunctionThisCapturing(target=es5).js │ ├── emitArrowFunctionThisCapturing(target=es5).symbols │ ├── emitArrowFunctionThisCapturing(target=es5).types │ ├── emitArrowFunctionThisCapturingES6.errors.txt │ ├── emitArrowFunctionThisCapturingES6.js │ ├── emitArrowFunctionThisCapturingES6.symbols │ ├── emitArrowFunctionThisCapturingES6.types │ ├── emitArrowFunctionWhenUsingArguments01(target=es2015).errors.txt │ ├── emitArrowFunctionWhenUsingArguments01(target=es2015).js │ ├── emitArrowFunctionWhenUsingArguments01(target=es2015).symbols │ ├── emitArrowFunctionWhenUsingArguments01(target=es2015).types │ ├── emitArrowFunctionWhenUsingArguments01(target=es5).errors.txt │ ├── emitArrowFunctionWhenUsingArguments01(target=es5).js │ ├── emitArrowFunctionWhenUsingArguments01(target=es5).symbols │ ├── emitArrowFunctionWhenUsingArguments01(target=es5).types │ ├── emitArrowFunctionWhenUsingArguments01_ES6.errors.txt │ ├── emitArrowFunctionWhenUsingArguments01_ES6.js │ ├── emitArrowFunctionWhenUsingArguments01_ES6.symbols │ ├── emitArrowFunctionWhenUsingArguments01_ES6.types │ ├── emitArrowFunctionWhenUsingArguments02(target=es2015).errors.txt │ ├── emitArrowFunctionWhenUsingArguments02(target=es2015).js │ ├── emitArrowFunctionWhenUsingArguments02(target=es2015).symbols │ ├── emitArrowFunctionWhenUsingArguments02(target=es2015).types │ ├── emitArrowFunctionWhenUsingArguments02(target=es5).errors.txt │ ├── emitArrowFunctionWhenUsingArguments02(target=es5).js │ ├── emitArrowFunctionWhenUsingArguments02(target=es5).symbols │ ├── emitArrowFunctionWhenUsingArguments02(target=es5).types │ ├── emitArrowFunctionWhenUsingArguments02_ES6.errors.txt │ ├── emitArrowFunctionWhenUsingArguments02_ES6.js │ ├── emitArrowFunctionWhenUsingArguments02_ES6.symbols │ ├── emitArrowFunctionWhenUsingArguments02_ES6.types │ ├── emitArrowFunctionWhenUsingArguments03(alwaysstrict=false,target=es2015).js │ ├── emitArrowFunctionWhenUsingArguments03(alwaysstrict=false,target=es2015).symbols │ ├── emitArrowFunctionWhenUsingArguments03(alwaysstrict=false,target=es2015).types │ ├── emitArrowFunctionWhenUsingArguments03(alwaysstrict=false,target=es5).errors.txt │ ├── emitArrowFunctionWhenUsingArguments03(alwaysstrict=false,target=es5).js │ ├── emitArrowFunctionWhenUsingArguments03(alwaysstrict=false,target=es5).symbols │ ├── emitArrowFunctionWhenUsingArguments03(alwaysstrict=false,target=es5).types │ ├── emitArrowFunctionWhenUsingArguments03(alwaysstrict=true,target=es2015).errors.txt │ ├── emitArrowFunctionWhenUsingArguments03(alwaysstrict=true,target=es2015).js │ ├── emitArrowFunctionWhenUsingArguments03(alwaysstrict=true,target=es2015).symbols │ ├── emitArrowFunctionWhenUsingArguments03(alwaysstrict=true,target=es2015).types │ ├── emitArrowFunctionWhenUsingArguments03(alwaysstrict=true,target=es5).errors.txt │ ├── emitArrowFunctionWhenUsingArguments03(alwaysstrict=true,target=es5).js │ ├── emitArrowFunctionWhenUsingArguments03(alwaysstrict=true,target=es5).symbols │ ├── emitArrowFunctionWhenUsingArguments03(alwaysstrict=true,target=es5).types │ ├── emitArrowFunctionWhenUsingArguments03_ES6(alwaysstrict=false).js │ ├── emitArrowFunctionWhenUsingArguments03_ES6(alwaysstrict=false).symbols │ ├── emitArrowFunctionWhenUsingArguments03_ES6(alwaysstrict=false).types │ ├── emitArrowFunctionWhenUsingArguments03_ES6(alwaysstrict=true).errors.txt │ ├── emitArrowFunctionWhenUsingArguments03_ES6(alwaysstrict=true).js │ ├── emitArrowFunctionWhenUsingArguments03_ES6(alwaysstrict=true).symbols │ ├── emitArrowFunctionWhenUsingArguments03_ES6(alwaysstrict=true).types │ ├── emitArrowFunctionWhenUsingArguments04(alwaysstrict=false,target=es2015).js │ ├── emitArrowFunctionWhenUsingArguments04(alwaysstrict=false,target=es2015).symbols │ ├── emitArrowFunctionWhenUsingArguments04(alwaysstrict=false,target=es2015).types │ ├── emitArrowFunctionWhenUsingArguments04(alwaysstrict=false,target=es5).errors.txt │ ├── emitArrowFunctionWhenUsingArguments04(alwaysstrict=false,target=es5).js │ ├── emitArrowFunctionWhenUsingArguments04(alwaysstrict=false,target=es5).symbols │ ├── emitArrowFunctionWhenUsingArguments04(alwaysstrict=false,target=es5).types │ ├── emitArrowFunctionWhenUsingArguments04(alwaysstrict=true,target=es2015).errors.txt │ ├── emitArrowFunctionWhenUsingArguments04(alwaysstrict=true,target=es2015).js │ ├── emitArrowFunctionWhenUsingArguments04(alwaysstrict=true,target=es2015).symbols │ ├── emitArrowFunctionWhenUsingArguments04(alwaysstrict=true,target=es2015).types │ ├── emitArrowFunctionWhenUsingArguments04(alwaysstrict=true,target=es5).errors.txt │ ├── emitArrowFunctionWhenUsingArguments04(alwaysstrict=true,target=es5).js │ ├── emitArrowFunctionWhenUsingArguments04(alwaysstrict=true,target=es5).symbols │ ├── emitArrowFunctionWhenUsingArguments04(alwaysstrict=true,target=es5).types │ ├── emitArrowFunctionWhenUsingArguments04_ES6(alwaysstrict=false).js │ ├── emitArrowFunctionWhenUsingArguments04_ES6(alwaysstrict=false).symbols │ ├── emitArrowFunctionWhenUsingArguments04_ES6(alwaysstrict=false).types │ ├── emitArrowFunctionWhenUsingArguments04_ES6(alwaysstrict=true).errors.txt │ ├── emitArrowFunctionWhenUsingArguments04_ES6(alwaysstrict=true).js │ ├── emitArrowFunctionWhenUsingArguments04_ES6(alwaysstrict=true).symbols │ ├── emitArrowFunctionWhenUsingArguments04_ES6(alwaysstrict=true).types │ ├── emitArrowFunctionWhenUsingArguments05(alwaysstrict=false,target=es2015).js │ ├── emitArrowFunctionWhenUsingArguments05(alwaysstrict=false,target=es2015).symbols │ ├── emitArrowFunctionWhenUsingArguments05(alwaysstrict=false,target=es2015).types │ ├── emitArrowFunctionWhenUsingArguments05(alwaysstrict=false,target=es5).errors.txt │ ├── emitArrowFunctionWhenUsingArguments05(alwaysstrict=false,target=es5).js │ ├── emitArrowFunctionWhenUsingArguments05(alwaysstrict=false,target=es5).symbols │ ├── emitArrowFunctionWhenUsingArguments05(alwaysstrict=false,target=es5).types │ ├── emitArrowFunctionWhenUsingArguments05(alwaysstrict=true,target=es2015).errors.txt │ ├── emitArrowFunctionWhenUsingArguments05(alwaysstrict=true,target=es2015).js │ ├── emitArrowFunctionWhenUsingArguments05(alwaysstrict=true,target=es2015).symbols │ ├── emitArrowFunctionWhenUsingArguments05(alwaysstrict=true,target=es2015).types │ ├── emitArrowFunctionWhenUsingArguments05(alwaysstrict=true,target=es5).errors.txt │ ├── emitArrowFunctionWhenUsingArguments05(alwaysstrict=true,target=es5).js │ ├── emitArrowFunctionWhenUsingArguments05(alwaysstrict=true,target=es5).symbols │ ├── emitArrowFunctionWhenUsingArguments05(alwaysstrict=true,target=es5).types │ ├── emitArrowFunctionWhenUsingArguments05_ES6(alwaysstrict=false).js │ ├── emitArrowFunctionWhenUsingArguments05_ES6(alwaysstrict=false).symbols │ ├── emitArrowFunctionWhenUsingArguments05_ES6(alwaysstrict=false).types │ ├── emitArrowFunctionWhenUsingArguments05_ES6(alwaysstrict=true).errors.txt │ ├── emitArrowFunctionWhenUsingArguments05_ES6(alwaysstrict=true).js │ ├── emitArrowFunctionWhenUsingArguments05_ES6(alwaysstrict=true).symbols │ ├── emitArrowFunctionWhenUsingArguments05_ES6(alwaysstrict=true).types │ ├── emitArrowFunctionWhenUsingArguments06(alwaysstrict=false,target=es2015).js │ ├── emitArrowFunctionWhenUsingArguments06(alwaysstrict=false,target=es2015).symbols │ ├── emitArrowFunctionWhenUsingArguments06(alwaysstrict=false,target=es2015).types │ ├── emitArrowFunctionWhenUsingArguments06(alwaysstrict=false,target=es5).errors.txt │ ├── emitArrowFunctionWhenUsingArguments06(alwaysstrict=false,target=es5).js │ ├── emitArrowFunctionWhenUsingArguments06(alwaysstrict=false,target=es5).symbols │ ├── emitArrowFunctionWhenUsingArguments06(alwaysstrict=false,target=es5).types │ ├── emitArrowFunctionWhenUsingArguments06(alwaysstrict=true,target=es2015).errors.txt │ ├── emitArrowFunctionWhenUsingArguments06(alwaysstrict=true,target=es2015).js │ ├── emitArrowFunctionWhenUsingArguments06(alwaysstrict=true,target=es2015).symbols │ ├── emitArrowFunctionWhenUsingArguments06(alwaysstrict=true,target=es2015).types │ ├── emitArrowFunctionWhenUsingArguments06(alwaysstrict=true,target=es5).errors.txt │ ├── emitArrowFunctionWhenUsingArguments06(alwaysstrict=true,target=es5).js │ ├── emitArrowFunctionWhenUsingArguments06(alwaysstrict=true,target=es5).symbols │ ├── emitArrowFunctionWhenUsingArguments06(alwaysstrict=true,target=es5).types │ ├── emitArrowFunctionWhenUsingArguments06_ES6(alwaysstrict=false).js │ ├── emitArrowFunctionWhenUsingArguments06_ES6(alwaysstrict=false).symbols │ ├── emitArrowFunctionWhenUsingArguments06_ES6(alwaysstrict=false).types │ ├── emitArrowFunctionWhenUsingArguments06_ES6(alwaysstrict=true).errors.txt │ ├── emitArrowFunctionWhenUsingArguments06_ES6(alwaysstrict=true).js │ ├── emitArrowFunctionWhenUsingArguments06_ES6(alwaysstrict=true).symbols │ ├── emitArrowFunctionWhenUsingArguments06_ES6(alwaysstrict=true).types │ ├── emitArrowFunctionWhenUsingArguments07(alwaysstrict=false,target=es2015).js │ ├── emitArrowFunctionWhenUsingArguments07(alwaysstrict=false,target=es2015).symbols │ ├── emitArrowFunctionWhenUsingArguments07(alwaysstrict=false,target=es2015).types │ ├── emitArrowFunctionWhenUsingArguments07(alwaysstrict=false,target=es5).errors.txt │ ├── emitArrowFunctionWhenUsingArguments07(alwaysstrict=false,target=es5).js │ ├── emitArrowFunctionWhenUsingArguments07(alwaysstrict=false,target=es5).symbols │ ├── emitArrowFunctionWhenUsingArguments07(alwaysstrict=false,target=es5).types │ ├── emitArrowFunctionWhenUsingArguments07(alwaysstrict=true,target=es2015).errors.txt │ ├── emitArrowFunctionWhenUsingArguments07(alwaysstrict=true,target=es2015).js │ ├── emitArrowFunctionWhenUsingArguments07(alwaysstrict=true,target=es2015).symbols │ ├── emitArrowFunctionWhenUsingArguments07(alwaysstrict=true,target=es2015).types │ ├── emitArrowFunctionWhenUsingArguments07(alwaysstrict=true,target=es5).errors.txt │ ├── emitArrowFunctionWhenUsingArguments07(alwaysstrict=true,target=es5).js │ ├── emitArrowFunctionWhenUsingArguments07(alwaysstrict=true,target=es5).symbols │ ├── emitArrowFunctionWhenUsingArguments07(alwaysstrict=true,target=es5).types │ ├── emitArrowFunctionWhenUsingArguments07_ES6(alwaysstrict=false).js │ ├── emitArrowFunctionWhenUsingArguments07_ES6(alwaysstrict=false).symbols │ ├── emitArrowFunctionWhenUsingArguments07_ES6(alwaysstrict=false).types │ ├── emitArrowFunctionWhenUsingArguments07_ES6(alwaysstrict=true).errors.txt │ ├── emitArrowFunctionWhenUsingArguments07_ES6(alwaysstrict=true).js │ ├── emitArrowFunctionWhenUsingArguments07_ES6(alwaysstrict=true).symbols │ ├── emitArrowFunctionWhenUsingArguments07_ES6(alwaysstrict=true).types │ ├── emitArrowFunctionWhenUsingArguments08(alwaysstrict=false,target=es2015).js │ ├── emitArrowFunctionWhenUsingArguments08(alwaysstrict=false,target=es2015).symbols │ ├── emitArrowFunctionWhenUsingArguments08(alwaysstrict=false,target=es2015).types │ ├── emitArrowFunctionWhenUsingArguments08(alwaysstrict=false,target=es5).js │ ├── emitArrowFunctionWhenUsingArguments08(alwaysstrict=false,target=es5).symbols │ ├── emitArrowFunctionWhenUsingArguments08(alwaysstrict=false,target=es5).types │ ├── emitArrowFunctionWhenUsingArguments08(alwaysstrict=true,target=es2015).errors.txt │ ├── emitArrowFunctionWhenUsingArguments08(alwaysstrict=true,target=es2015).js │ ├── emitArrowFunctionWhenUsingArguments08(alwaysstrict=true,target=es2015).symbols │ ├── emitArrowFunctionWhenUsingArguments08(alwaysstrict=true,target=es2015).types │ ├── emitArrowFunctionWhenUsingArguments08(alwaysstrict=true,target=es5).errors.txt │ ├── emitArrowFunctionWhenUsingArguments08(alwaysstrict=true,target=es5).js │ ├── emitArrowFunctionWhenUsingArguments08(alwaysstrict=true,target=es5).symbols │ ├── emitArrowFunctionWhenUsingArguments08(alwaysstrict=true,target=es5).types │ ├── emitArrowFunctionWhenUsingArguments08_ES6(alwaysstrict=false).js │ ├── emitArrowFunctionWhenUsingArguments08_ES6(alwaysstrict=false).symbols │ ├── emitArrowFunctionWhenUsingArguments08_ES6(alwaysstrict=false).types │ ├── emitArrowFunctionWhenUsingArguments08_ES6(alwaysstrict=true).errors.txt │ ├── emitArrowFunctionWhenUsingArguments08_ES6(alwaysstrict=true).js │ ├── emitArrowFunctionWhenUsingArguments08_ES6(alwaysstrict=true).symbols │ ├── emitArrowFunctionWhenUsingArguments08_ES6(alwaysstrict=true).types │ ├── emitArrowFunctionWhenUsingArguments09(target=es2015).js │ ├── emitArrowFunctionWhenUsingArguments09(target=es2015).symbols │ ├── emitArrowFunctionWhenUsingArguments09(target=es2015).types │ ├── emitArrowFunctionWhenUsingArguments09(target=es5).errors.txt │ ├── emitArrowFunctionWhenUsingArguments09(target=es5).js │ ├── emitArrowFunctionWhenUsingArguments09(target=es5).symbols │ ├── emitArrowFunctionWhenUsingArguments09(target=es5).types │ ├── emitArrowFunctionWhenUsingArguments09_ES6.js │ ├── emitArrowFunctionWhenUsingArguments09_ES6.symbols │ ├── emitArrowFunctionWhenUsingArguments09_ES6.types │ ├── emitArrowFunctionWhenUsingArguments10(target=es2015).js │ ├── emitArrowFunctionWhenUsingArguments10(target=es2015).symbols │ ├── emitArrowFunctionWhenUsingArguments10(target=es2015).types │ ├── emitArrowFunctionWhenUsingArguments10(target=es5).errors.txt │ ├── emitArrowFunctionWhenUsingArguments10(target=es5).js │ ├── emitArrowFunctionWhenUsingArguments10(target=es5).symbols │ ├── emitArrowFunctionWhenUsingArguments10(target=es5).types │ ├── emitArrowFunctionWhenUsingArguments10_ES6.js │ ├── emitArrowFunctionWhenUsingArguments10_ES6.symbols │ ├── emitArrowFunctionWhenUsingArguments10_ES6.types │ ├── emitArrowFunctionWhenUsingArguments11(alwaysstrict=false,target=es2015).js │ ├── emitArrowFunctionWhenUsingArguments11(alwaysstrict=false,target=es2015).symbols │ ├── emitArrowFunctionWhenUsingArguments11(alwaysstrict=false,target=es2015).types │ ├── emitArrowFunctionWhenUsingArguments11(alwaysstrict=false,target=es5).errors.txt │ ├── emitArrowFunctionWhenUsingArguments11(alwaysstrict=false,target=es5).js │ ├── emitArrowFunctionWhenUsingArguments11(alwaysstrict=false,target=es5).symbols │ ├── emitArrowFunctionWhenUsingArguments11(alwaysstrict=false,target=es5).types │ ├── emitArrowFunctionWhenUsingArguments11(alwaysstrict=true,target=es2015).errors.txt │ ├── emitArrowFunctionWhenUsingArguments11(alwaysstrict=true,target=es2015).js │ ├── emitArrowFunctionWhenUsingArguments11(alwaysstrict=true,target=es2015).symbols │ ├── emitArrowFunctionWhenUsingArguments11(alwaysstrict=true,target=es2015).types │ ├── emitArrowFunctionWhenUsingArguments11(alwaysstrict=true,target=es5).errors.txt │ ├── emitArrowFunctionWhenUsingArguments11(alwaysstrict=true,target=es5).js │ ├── emitArrowFunctionWhenUsingArguments11(alwaysstrict=true,target=es5).symbols │ ├── emitArrowFunctionWhenUsingArguments11(alwaysstrict=true,target=es5).types │ ├── emitArrowFunctionWhenUsingArguments11_ES6(alwaysstrict=false).js │ ├── emitArrowFunctionWhenUsingArguments11_ES6(alwaysstrict=false).symbols │ ├── emitArrowFunctionWhenUsingArguments11_ES6(alwaysstrict=false).types │ ├── emitArrowFunctionWhenUsingArguments11_ES6(alwaysstrict=true).errors.txt │ ├── emitArrowFunctionWhenUsingArguments11_ES6(alwaysstrict=true).js │ ├── emitArrowFunctionWhenUsingArguments11_ES6(alwaysstrict=true).symbols │ ├── emitArrowFunctionWhenUsingArguments11_ES6(alwaysstrict=true).types │ ├── emitArrowFunctionWhenUsingArguments12(target=es2015).errors.txt │ ├── emitArrowFunctionWhenUsingArguments12(target=es2015).js │ ├── emitArrowFunctionWhenUsingArguments12(target=es2015).symbols │ ├── emitArrowFunctionWhenUsingArguments12(target=es2015).types │ ├── emitArrowFunctionWhenUsingArguments12(target=es5).errors.txt │ ├── emitArrowFunctionWhenUsingArguments12(target=es5).js │ ├── emitArrowFunctionWhenUsingArguments12(target=es5).symbols │ ├── emitArrowFunctionWhenUsingArguments12(target=es5).types │ ├── emitArrowFunctionWhenUsingArguments12_ES6.errors.txt │ ├── emitArrowFunctionWhenUsingArguments12_ES6.js │ ├── emitArrowFunctionWhenUsingArguments12_ES6.symbols │ ├── emitArrowFunctionWhenUsingArguments12_ES6.types │ ├── emitArrowFunctionWhenUsingArguments13(alwaysstrict=false,target=es2015).js │ ├── emitArrowFunctionWhenUsingArguments13(alwaysstrict=false,target=es2015).symbols │ ├── emitArrowFunctionWhenUsingArguments13(alwaysstrict=false,target=es2015).types │ ├── emitArrowFunctionWhenUsingArguments13(alwaysstrict=false,target=es5).js │ ├── emitArrowFunctionWhenUsingArguments13(alwaysstrict=false,target=es5).symbols │ ├── emitArrowFunctionWhenUsingArguments13(alwaysstrict=false,target=es5).types │ ├── emitArrowFunctionWhenUsingArguments13(alwaysstrict=true,target=es2015).errors.txt │ ├── emitArrowFunctionWhenUsingArguments13(alwaysstrict=true,target=es2015).js │ ├── emitArrowFunctionWhenUsingArguments13(alwaysstrict=true,target=es2015).symbols │ ├── emitArrowFunctionWhenUsingArguments13(alwaysstrict=true,target=es2015).types │ ├── emitArrowFunctionWhenUsingArguments13(alwaysstrict=true,target=es5).errors.txt │ ├── emitArrowFunctionWhenUsingArguments13(alwaysstrict=true,target=es5).js │ ├── emitArrowFunctionWhenUsingArguments13(alwaysstrict=true,target=es5).symbols │ ├── emitArrowFunctionWhenUsingArguments13(alwaysstrict=true,target=es5).types │ ├── emitArrowFunctionWhenUsingArguments13_ES6(alwaysstrict=false).js │ ├── emitArrowFunctionWhenUsingArguments13_ES6(alwaysstrict=false).symbols │ ├── emitArrowFunctionWhenUsingArguments13_ES6(alwaysstrict=false).types │ ├── emitArrowFunctionWhenUsingArguments13_ES6(alwaysstrict=true).errors.txt │ ├── emitArrowFunctionWhenUsingArguments13_ES6(alwaysstrict=true).js │ ├── emitArrowFunctionWhenUsingArguments13_ES6(alwaysstrict=true).symbols │ ├── emitArrowFunctionWhenUsingArguments13_ES6(alwaysstrict=true).types │ ├── emitArrowFunctionWhenUsingArguments14(alwaysstrict=false,target=es2015).js │ ├── emitArrowFunctionWhenUsingArguments14(alwaysstrict=false,target=es2015).symbols │ ├── emitArrowFunctionWhenUsingArguments14(alwaysstrict=false,target=es2015).types │ ├── emitArrowFunctionWhenUsingArguments14(alwaysstrict=false,target=es5).errors.txt │ ├── emitArrowFunctionWhenUsingArguments14(alwaysstrict=false,target=es5).js │ ├── emitArrowFunctionWhenUsingArguments14(alwaysstrict=false,target=es5).symbols │ ├── emitArrowFunctionWhenUsingArguments14(alwaysstrict=false,target=es5).types │ ├── emitArrowFunctionWhenUsingArguments14(alwaysstrict=true,target=es2015).errors.txt │ ├── emitArrowFunctionWhenUsingArguments14(alwaysstrict=true,target=es2015).js │ ├── emitArrowFunctionWhenUsingArguments14(alwaysstrict=true,target=es2015).symbols │ ├── emitArrowFunctionWhenUsingArguments14(alwaysstrict=true,target=es2015).types │ ├── emitArrowFunctionWhenUsingArguments14(alwaysstrict=true,target=es5).errors.txt │ ├── emitArrowFunctionWhenUsingArguments14(alwaysstrict=true,target=es5).js │ ├── emitArrowFunctionWhenUsingArguments14(alwaysstrict=true,target=es5).symbols │ ├── emitArrowFunctionWhenUsingArguments14(alwaysstrict=true,target=es5).types │ ├── emitArrowFunctionWhenUsingArguments14_ES6(alwaysstrict=false).js │ ├── emitArrowFunctionWhenUsingArguments14_ES6(alwaysstrict=false).symbols │ ├── emitArrowFunctionWhenUsingArguments14_ES6(alwaysstrict=false).types │ ├── emitArrowFunctionWhenUsingArguments14_ES6(alwaysstrict=true).errors.txt │ ├── emitArrowFunctionWhenUsingArguments14_ES6(alwaysstrict=true).js │ ├── emitArrowFunctionWhenUsingArguments14_ES6(alwaysstrict=true).symbols │ ├── emitArrowFunctionWhenUsingArguments14_ES6(alwaysstrict=true).types │ ├── emitArrowFunctionWhenUsingArguments15(alwaysstrict=false,target=es2015).js │ ├── emitArrowFunctionWhenUsingArguments15(alwaysstrict=false,target=es2015).symbols │ ├── emitArrowFunctionWhenUsingArguments15(alwaysstrict=false,target=es2015).types │ ├── emitArrowFunctionWhenUsingArguments15(alwaysstrict=false,target=es5).errors.txt │ ├── emitArrowFunctionWhenUsingArguments15(alwaysstrict=false,target=es5).js │ ├── emitArrowFunctionWhenUsingArguments15(alwaysstrict=false,target=es5).symbols │ ├── emitArrowFunctionWhenUsingArguments15(alwaysstrict=false,target=es5).types │ ├── emitArrowFunctionWhenUsingArguments15(alwaysstrict=true,target=es2015).errors.txt │ ├── emitArrowFunctionWhenUsingArguments15(alwaysstrict=true,target=es2015).js │ ├── emitArrowFunctionWhenUsingArguments15(alwaysstrict=true,target=es2015).symbols │ ├── emitArrowFunctionWhenUsingArguments15(alwaysstrict=true,target=es2015).types │ ├── emitArrowFunctionWhenUsingArguments15(alwaysstrict=true,target=es5).errors.txt │ ├── emitArrowFunctionWhenUsingArguments15(alwaysstrict=true,target=es5).js │ ├── emitArrowFunctionWhenUsingArguments15(alwaysstrict=true,target=es5).symbols │ ├── emitArrowFunctionWhenUsingArguments15(alwaysstrict=true,target=es5).types │ ├── emitArrowFunctionWhenUsingArguments15_ES6(alwaysstrict=false).js │ ├── emitArrowFunctionWhenUsingArguments15_ES6(alwaysstrict=false).symbols │ ├── emitArrowFunctionWhenUsingArguments15_ES6(alwaysstrict=false).types │ ├── emitArrowFunctionWhenUsingArguments15_ES6(alwaysstrict=true).errors.txt │ ├── emitArrowFunctionWhenUsingArguments15_ES6(alwaysstrict=true).js │ ├── emitArrowFunctionWhenUsingArguments15_ES6(alwaysstrict=true).symbols │ ├── emitArrowFunctionWhenUsingArguments15_ES6(alwaysstrict=true).types │ ├── emitArrowFunctionWhenUsingArguments16(alwaysstrict=false,target=es2015).js │ ├── emitArrowFunctionWhenUsingArguments16(alwaysstrict=false,target=es2015).symbols │ ├── emitArrowFunctionWhenUsingArguments16(alwaysstrict=false,target=es2015).types │ ├── emitArrowFunctionWhenUsingArguments16(alwaysstrict=false,target=es5).errors.txt │ ├── emitArrowFunctionWhenUsingArguments16(alwaysstrict=false,target=es5).js │ ├── emitArrowFunctionWhenUsingArguments16(alwaysstrict=false,target=es5).symbols │ ├── emitArrowFunctionWhenUsingArguments16(alwaysstrict=false,target=es5).types │ ├── emitArrowFunctionWhenUsingArguments16(alwaysstrict=true,target=es2015).errors.txt │ ├── emitArrowFunctionWhenUsingArguments16(alwaysstrict=true,target=es2015).js │ ├── emitArrowFunctionWhenUsingArguments16(alwaysstrict=true,target=es2015).symbols │ ├── emitArrowFunctionWhenUsingArguments16(alwaysstrict=true,target=es2015).types │ ├── emitArrowFunctionWhenUsingArguments16(alwaysstrict=true,target=es5).errors.txt │ ├── emitArrowFunctionWhenUsingArguments16(alwaysstrict=true,target=es5).js │ ├── emitArrowFunctionWhenUsingArguments16(alwaysstrict=true,target=es5).symbols │ ├── emitArrowFunctionWhenUsingArguments16(alwaysstrict=true,target=es5).types │ ├── emitArrowFunctionWhenUsingArguments16_ES6(alwaysstrict=false).js │ ├── emitArrowFunctionWhenUsingArguments16_ES6(alwaysstrict=false).symbols │ ├── emitArrowFunctionWhenUsingArguments16_ES6(alwaysstrict=false).types │ ├── emitArrowFunctionWhenUsingArguments16_ES6(alwaysstrict=true).errors.txt │ ├── emitArrowFunctionWhenUsingArguments16_ES6(alwaysstrict=true).js │ ├── emitArrowFunctionWhenUsingArguments16_ES6(alwaysstrict=true).symbols │ ├── emitArrowFunctionWhenUsingArguments16_ES6(alwaysstrict=true).types │ ├── emitArrowFunctionWhenUsingArguments17(alwaysstrict=false,target=es2015).js │ ├── emitArrowFunctionWhenUsingArguments17(alwaysstrict=false,target=es2015).symbols │ ├── emitArrowFunctionWhenUsingArguments17(alwaysstrict=false,target=es2015).types │ ├── emitArrowFunctionWhenUsingArguments17(alwaysstrict=false,target=es5).errors.txt │ ├── emitArrowFunctionWhenUsingArguments17(alwaysstrict=false,target=es5).js │ ├── emitArrowFunctionWhenUsingArguments17(alwaysstrict=false,target=es5).symbols │ ├── emitArrowFunctionWhenUsingArguments17(alwaysstrict=false,target=es5).types │ ├── emitArrowFunctionWhenUsingArguments17(alwaysstrict=true,target=es2015).errors.txt │ ├── emitArrowFunctionWhenUsingArguments17(alwaysstrict=true,target=es2015).js │ ├── emitArrowFunctionWhenUsingArguments17(alwaysstrict=true,target=es2015).symbols │ ├── emitArrowFunctionWhenUsingArguments17(alwaysstrict=true,target=es2015).types │ ├── emitArrowFunctionWhenUsingArguments17(alwaysstrict=true,target=es5).errors.txt │ ├── emitArrowFunctionWhenUsingArguments17(alwaysstrict=true,target=es5).js │ ├── emitArrowFunctionWhenUsingArguments17(alwaysstrict=true,target=es5).symbols │ ├── emitArrowFunctionWhenUsingArguments17(alwaysstrict=true,target=es5).types │ ├── emitArrowFunctionWhenUsingArguments17_ES6(alwaysstrict=false).js │ ├── emitArrowFunctionWhenUsingArguments17_ES6(alwaysstrict=false).symbols │ ├── emitArrowFunctionWhenUsingArguments17_ES6(alwaysstrict=false).types │ ├── emitArrowFunctionWhenUsingArguments17_ES6(alwaysstrict=true).errors.txt │ ├── emitArrowFunctionWhenUsingArguments17_ES6(alwaysstrict=true).js │ ├── emitArrowFunctionWhenUsingArguments17_ES6(alwaysstrict=true).symbols │ ├── emitArrowFunctionWhenUsingArguments17_ES6(alwaysstrict=true).types │ ├── emitArrowFunctionWhenUsingArguments18(target=es2015).js │ ├── emitArrowFunctionWhenUsingArguments18(target=es2015).symbols │ ├── emitArrowFunctionWhenUsingArguments18(target=es2015).types │ ├── emitArrowFunctionWhenUsingArguments18(target=es5).errors.txt │ ├── emitArrowFunctionWhenUsingArguments18(target=es5).js │ ├── emitArrowFunctionWhenUsingArguments18(target=es5).symbols │ ├── emitArrowFunctionWhenUsingArguments18(target=es5).types │ ├── emitArrowFunctionWhenUsingArguments18_ES6.js │ ├── emitArrowFunctionWhenUsingArguments18_ES6.symbols │ ├── emitArrowFunctionWhenUsingArguments18_ES6.types │ ├── emitArrowFunctionWhenUsingArguments19(target=es2015).js │ ├── emitArrowFunctionWhenUsingArguments19(target=es2015).symbols │ ├── emitArrowFunctionWhenUsingArguments19(target=es2015).types │ ├── emitArrowFunctionWhenUsingArguments19(target=es5).errors.txt │ ├── emitArrowFunctionWhenUsingArguments19(target=es5).js │ ├── emitArrowFunctionWhenUsingArguments19(target=es5).symbols │ ├── emitArrowFunctionWhenUsingArguments19(target=es5).types │ ├── emitArrowFunctionWhenUsingArguments19_ES6.js │ ├── emitArrowFunctionWhenUsingArguments19_ES6.symbols │ ├── emitArrowFunctionWhenUsingArguments19_ES6.types │ ├── emitArrowFunctionsAsIs(target=es2015).js │ ├── emitArrowFunctionsAsIs(target=es2015).symbols │ ├── emitArrowFunctionsAsIs(target=es2015).types │ ├── emitArrowFunctionsAsIs(target=es5).errors.txt │ ├── emitArrowFunctionsAsIs(target=es5).js │ ├── emitArrowFunctionsAsIs(target=es5).symbols │ ├── emitArrowFunctionsAsIs(target=es5).types │ ├── emitArrowFunctionsAsIsES6.js │ ├── emitArrowFunctionsAsIsES6.symbols │ ├── emitArrowFunctionsAsIsES6.types │ ├── emitBOM.js │ ├── emitBOM.sourcemap.txt │ ├── emitBOM.symbols │ ├── emitBOM.types │ ├── emitBundleWithPrologueDirectives1(target=es2015).errors.txt │ ├── emitBundleWithPrologueDirectives1(target=es2015).js │ ├── emitBundleWithPrologueDirectives1(target=es2015).symbols │ ├── emitBundleWithPrologueDirectives1(target=es2015).types │ ├── emitBundleWithPrologueDirectives1(target=es5).errors.txt │ ├── emitBundleWithPrologueDirectives1(target=es5).js │ ├── emitBundleWithPrologueDirectives1(target=es5).symbols │ ├── emitBundleWithPrologueDirectives1(target=es5).types │ ├── emitBundleWithShebang1(target=es2015).errors.txt │ ├── emitBundleWithShebang1(target=es2015).js │ ├── emitBundleWithShebang1(target=es2015).symbols │ ├── emitBundleWithShebang1(target=es2015).types │ ├── emitBundleWithShebang1(target=es5).errors.txt │ ├── emitBundleWithShebang1(target=es5).js │ ├── emitBundleWithShebang1(target=es5).symbols │ ├── emitBundleWithShebang1(target=es5).types │ ├── emitBundleWithShebang2(target=es2015).errors.txt │ ├── emitBundleWithShebang2(target=es2015).js │ ├── emitBundleWithShebang2(target=es2015).symbols │ ├── emitBundleWithShebang2(target=es2015).types │ ├── emitBundleWithShebang2(target=es5).errors.txt │ ├── emitBundleWithShebang2(target=es5).js │ ├── emitBundleWithShebang2(target=es5).symbols │ ├── emitBundleWithShebang2(target=es5).types │ ├── emitBundleWithShebangAndPrologueDirectives1(target=es2015).errors.txt │ ├── emitBundleWithShebangAndPrologueDirectives1(target=es2015).js │ ├── emitBundleWithShebangAndPrologueDirectives1(target=es2015).symbols │ ├── emitBundleWithShebangAndPrologueDirectives1(target=es2015).types │ ├── emitBundleWithShebangAndPrologueDirectives1(target=es5).errors.txt │ ├── emitBundleWithShebangAndPrologueDirectives1(target=es5).js │ ├── emitBundleWithShebangAndPrologueDirectives1(target=es5).symbols │ ├── emitBundleWithShebangAndPrologueDirectives1(target=es5).types │ ├── emitBundleWithShebangAndPrologueDirectives2(target=es2015).errors.txt │ ├── emitBundleWithShebangAndPrologueDirectives2(target=es2015).js │ ├── emitBundleWithShebangAndPrologueDirectives2(target=es2015).symbols │ ├── emitBundleWithShebangAndPrologueDirectives2(target=es2015).types │ ├── emitBundleWithShebangAndPrologueDirectives2(target=es5).errors.txt │ ├── emitBundleWithShebangAndPrologueDirectives2(target=es5).js │ ├── emitBundleWithShebangAndPrologueDirectives2(target=es5).symbols │ ├── emitBundleWithShebangAndPrologueDirectives2(target=es5).types │ ├── emitCapturingThisInTupleDestructuring1.errors.txt │ ├── emitCapturingThisInTupleDestructuring1.js │ ├── emitCapturingThisInTupleDestructuring1.symbols │ ├── emitCapturingThisInTupleDestructuring1.types │ ├── emitCapturingThisInTupleDestructuring2.errors.txt │ ├── emitCapturingThisInTupleDestructuring2.js │ ├── emitCapturingThisInTupleDestructuring2.symbols │ ├── emitCapturingThisInTupleDestructuring2.types │ ├── emitClassDeclarationOverloadInES6.js │ ├── emitClassDeclarationOverloadInES6.symbols │ ├── emitClassDeclarationOverloadInES6.types │ ├── emitClassDeclarationWithConstructorInES6.js │ ├── emitClassDeclarationWithConstructorInES6.symbols │ ├── emitClassDeclarationWithConstructorInES6.types │ ├── emitClassDeclarationWithExtensionAndTypeArgumentInES6.js │ ├── emitClassDeclarationWithExtensionAndTypeArgumentInES6.symbols │ ├── emitClassDeclarationWithExtensionAndTypeArgumentInES6.types │ ├── emitClassDeclarationWithExtensionInES6.js │ ├── emitClassDeclarationWithExtensionInES6.symbols │ ├── emitClassDeclarationWithExtensionInES6.types │ ├── emitClassDeclarationWithGetterSetterInES6.errors.txt │ ├── emitClassDeclarationWithGetterSetterInES6.js │ ├── emitClassDeclarationWithGetterSetterInES6.symbols │ ├── emitClassDeclarationWithGetterSetterInES6.types │ ├── emitClassDeclarationWithLiteralPropertyNameInES6.js │ ├── emitClassDeclarationWithLiteralPropertyNameInES6.symbols │ ├── emitClassDeclarationWithLiteralPropertyNameInES6.types │ ├── emitClassDeclarationWithMethodInES6.errors.txt │ ├── emitClassDeclarationWithMethodInES6.js │ ├── emitClassDeclarationWithMethodInES6.symbols │ ├── emitClassDeclarationWithMethodInES6.types │ ├── emitClassDeclarationWithPropertyAccessInHeritageClause1.js │ ├── emitClassDeclarationWithPropertyAccessInHeritageClause1.symbols │ ├── emitClassDeclarationWithPropertyAccessInHeritageClause1.types │ ├── emitClassDeclarationWithPropertyAssignmentInES6.js │ ├── emitClassDeclarationWithPropertyAssignmentInES6.symbols │ ├── emitClassDeclarationWithPropertyAssignmentInES6.types │ ├── emitClassDeclarationWithStaticPropertyAssignmentInES6.js │ ├── emitClassDeclarationWithStaticPropertyAssignmentInES6.symbols │ ├── emitClassDeclarationWithStaticPropertyAssignmentInES6.types │ ├── emitClassDeclarationWithSuperMethodCall01.js │ ├── emitClassDeclarationWithSuperMethodCall01.symbols │ ├── emitClassDeclarationWithSuperMethodCall01.types │ ├── emitClassDeclarationWithThisKeywordInES6.js │ ├── emitClassDeclarationWithThisKeywordInES6.symbols │ ├── emitClassDeclarationWithThisKeywordInES6.types │ ├── emitClassDeclarationWithTypeArgumentAndOverloadInES6.js │ ├── emitClassDeclarationWithTypeArgumentAndOverloadInES6.symbols │ ├── emitClassDeclarationWithTypeArgumentAndOverloadInES6.types │ ├── emitClassDeclarationWithTypeArgumentInES6.errors.txt │ ├── emitClassDeclarationWithTypeArgumentInES6.js │ ├── emitClassDeclarationWithTypeArgumentInES6.symbols │ ├── emitClassDeclarationWithTypeArgumentInES6.types │ ├── emitClassExpressionInDeclarationFile.js │ ├── emitClassExpressionInDeclarationFile.symbols │ ├── emitClassExpressionInDeclarationFile.types │ ├── emitClassExpressionInDeclarationFile2.errors.txt │ ├── emitClassExpressionInDeclarationFile2.js │ ├── emitClassExpressionInDeclarationFile2.symbols │ ├── emitClassExpressionInDeclarationFile2.types │ ├── emitClassMergedWithConstNamespaceNotElided.js │ ├── emitClassMergedWithConstNamespaceNotElided.symbols │ ├── emitClassMergedWithConstNamespaceNotElided.types │ ├── emitCommentsOnlyFile.js │ ├── emitCommentsOnlyFile.symbols │ ├── emitCommentsOnlyFile.types │ ├── emitCompoundExponentiationAssignmentWithIndexingOnLHS1(target=es2015).js │ ├── emitCompoundExponentiationAssignmentWithIndexingOnLHS1(target=es2015).symbols │ ├── emitCompoundExponentiationAssignmentWithIndexingOnLHS1(target=es2015).types │ ├── emitCompoundExponentiationAssignmentWithIndexingOnLHS1(target=es5).errors.txt │ ├── emitCompoundExponentiationAssignmentWithIndexingOnLHS1(target=es5).js │ ├── emitCompoundExponentiationAssignmentWithIndexingOnLHS1(target=es5).symbols │ ├── emitCompoundExponentiationAssignmentWithIndexingOnLHS1(target=es5).types │ ├── emitCompoundExponentiationAssignmentWithIndexingOnLHS2(target=es2015).js │ ├── emitCompoundExponentiationAssignmentWithIndexingOnLHS2(target=es2015).symbols │ ├── emitCompoundExponentiationAssignmentWithIndexingOnLHS2(target=es2015).types │ ├── emitCompoundExponentiationAssignmentWithIndexingOnLHS2(target=es5).errors.txt │ ├── emitCompoundExponentiationAssignmentWithIndexingOnLHS2(target=es5).js │ ├── emitCompoundExponentiationAssignmentWithIndexingOnLHS2(target=es5).symbols │ ├── emitCompoundExponentiationAssignmentWithIndexingOnLHS2(target=es5).types │ ├── emitCompoundExponentiationAssignmentWithIndexingOnLHS3(target=es2015).js │ ├── emitCompoundExponentiationAssignmentWithIndexingOnLHS3(target=es2015).symbols │ ├── emitCompoundExponentiationAssignmentWithIndexingOnLHS3(target=es2015).types │ ├── emitCompoundExponentiationAssignmentWithIndexingOnLHS3(target=es5).errors.txt │ ├── emitCompoundExponentiationAssignmentWithIndexingOnLHS3(target=es5).js │ ├── emitCompoundExponentiationAssignmentWithIndexingOnLHS3(target=es5).symbols │ ├── emitCompoundExponentiationAssignmentWithIndexingOnLHS3(target=es5).types │ ├── emitCompoundExponentiationAssignmentWithIndexingOnLHS4(target=es2015).js │ ├── emitCompoundExponentiationAssignmentWithIndexingOnLHS4(target=es2015).symbols │ ├── emitCompoundExponentiationAssignmentWithIndexingOnLHS4(target=es2015).types │ ├── emitCompoundExponentiationAssignmentWithIndexingOnLHS4(target=es5).errors.txt │ ├── emitCompoundExponentiationAssignmentWithIndexingOnLHS4(target=es5).js │ ├── emitCompoundExponentiationAssignmentWithIndexingOnLHS4(target=es5).symbols │ ├── emitCompoundExponentiationAssignmentWithIndexingOnLHS4(target=es5).types │ ├── emitCompoundExponentiationAssignmentWithPropertyAccessingOnLHS1(target=es2015).js │ ├── emitCompoundExponentiationAssignmentWithPropertyAccessingOnLHS1(target=es2015).symbols │ ├── emitCompoundExponentiationAssignmentWithPropertyAccessingOnLHS1(target=es2015).types │ ├── emitCompoundExponentiationAssignmentWithPropertyAccessingOnLHS1(target=es5).errors.txt │ ├── emitCompoundExponentiationAssignmentWithPropertyAccessingOnLHS1(target=es5).js │ ├── emitCompoundExponentiationAssignmentWithPropertyAccessingOnLHS1(target=es5).symbols │ ├── emitCompoundExponentiationAssignmentWithPropertyAccessingOnLHS1(target=es5).types │ ├── emitCompoundExponentiationOperator1(target=es2015).errors.txt │ ├── emitCompoundExponentiationOperator1(target=es2015).js │ ├── emitCompoundExponentiationOperator1(target=es2015).symbols │ ├── emitCompoundExponentiationOperator1(target=es2015).types │ ├── emitCompoundExponentiationOperator1(target=es5).errors.txt │ ├── emitCompoundExponentiationOperator1(target=es5).js │ ├── emitCompoundExponentiationOperator1(target=es5).symbols │ ├── emitCompoundExponentiationOperator1(target=es5).types │ ├── emitCompoundExponentiationOperator2(target=es2015).errors.txt │ ├── emitCompoundExponentiationOperator2(target=es2015).js │ ├── emitCompoundExponentiationOperator2(target=es2015).symbols │ ├── emitCompoundExponentiationOperator2(target=es2015).types │ ├── emitCompoundExponentiationOperator2(target=es5).errors.txt │ ├── emitCompoundExponentiationOperator2(target=es5).js │ ├── emitCompoundExponentiationOperator2(target=es5).symbols │ ├── emitCompoundExponentiationOperator2(target=es5).types │ ├── emitDecoratorMetadata_isolatedModules(module=commonjs).js │ ├── emitDecoratorMetadata_isolatedModules(module=commonjs).symbols │ ├── emitDecoratorMetadata_isolatedModules(module=commonjs).types │ ├── emitDecoratorMetadata_isolatedModules(module=esnext).errors.txt │ ├── emitDecoratorMetadata_isolatedModules(module=esnext).js │ ├── emitDecoratorMetadata_isolatedModules(module=esnext).symbols │ ├── emitDecoratorMetadata_isolatedModules(module=esnext).types │ ├── emitDecoratorMetadata_object(target=es2015).js │ ├── emitDecoratorMetadata_object(target=es2015).symbols │ ├── emitDecoratorMetadata_object(target=es2015).types │ ├── emitDecoratorMetadata_object(target=es5).errors.txt │ ├── emitDecoratorMetadata_object(target=es5).js │ ├── emitDecoratorMetadata_object(target=es5).symbols │ ├── emitDecoratorMetadata_object(target=es5).types │ ├── emitDecoratorMetadata_restArgs(target=es2015).js │ ├── emitDecoratorMetadata_restArgs(target=es2015).symbols │ ├── emitDecoratorMetadata_restArgs(target=es2015).types │ ├── emitDecoratorMetadata_restArgs(target=es5).errors.txt │ ├── emitDecoratorMetadata_restArgs(target=es5).js │ ├── emitDecoratorMetadata_restArgs(target=es5).symbols │ ├── emitDecoratorMetadata_restArgs(target=es5).types │ ├── emitDefaultParametersFunction(target=es2015).js │ ├── emitDefaultParametersFunction(target=es2015).symbols │ ├── emitDefaultParametersFunction(target=es2015).types │ ├── emitDefaultParametersFunction(target=es5).errors.txt │ ├── emitDefaultParametersFunction(target=es5).js │ ├── emitDefaultParametersFunction(target=es5).symbols │ ├── emitDefaultParametersFunction(target=es5).types │ ├── emitDefaultParametersFunctionES6.js │ ├── emitDefaultParametersFunctionES6.symbols │ ├── emitDefaultParametersFunctionES6.types │ ├── emitDefaultParametersFunctionExpression(target=es2015).js │ ├── emitDefaultParametersFunctionExpression(target=es2015).symbols │ ├── emitDefaultParametersFunctionExpression(target=es2015).types │ ├── emitDefaultParametersFunctionExpression(target=es5).errors.txt │ ├── emitDefaultParametersFunctionExpression(target=es5).js │ ├── emitDefaultParametersFunctionExpression(target=es5).symbols │ ├── emitDefaultParametersFunctionExpression(target=es5).types │ ├── emitDefaultParametersFunctionExpressionES6.js │ ├── emitDefaultParametersFunctionExpressionES6.symbols │ ├── emitDefaultParametersFunctionExpressionES6.types │ ├── emitDefaultParametersFunctionProperty(target=es2015).js │ ├── emitDefaultParametersFunctionProperty(target=es2015).symbols │ ├── emitDefaultParametersFunctionProperty(target=es2015).types │ ├── emitDefaultParametersFunctionProperty(target=es5).errors.txt │ ├── emitDefaultParametersFunctionProperty(target=es5).js │ ├── emitDefaultParametersFunctionProperty(target=es5).symbols │ ├── emitDefaultParametersFunctionProperty(target=es5).types │ ├── emitDefaultParametersFunctionPropertyES6.js │ ├── emitDefaultParametersFunctionPropertyES6.symbols │ ├── emitDefaultParametersFunctionPropertyES6.types │ ├── emitDefaultParametersMethod(target=es2015).js │ ├── emitDefaultParametersMethod(target=es2015).symbols │ ├── emitDefaultParametersMethod(target=es2015).types │ ├── emitDefaultParametersMethod(target=es5).errors.txt │ ├── emitDefaultParametersMethod(target=es5).js │ ├── emitDefaultParametersMethod(target=es5).symbols │ ├── emitDefaultParametersMethod(target=es5).types │ ├── emitDefaultParametersMethodES6.js │ ├── emitDefaultParametersMethodES6.symbols │ ├── emitDefaultParametersMethodES6.types │ ├── emitExponentiationOperator1(target=es2015).js │ ├── emitExponentiationOperator1(target=es2015).symbols │ ├── emitExponentiationOperator1(target=es2015).types │ ├── emitExponentiationOperator1(target=es5).errors.txt │ ├── emitExponentiationOperator1(target=es5).js │ ├── emitExponentiationOperator1(target=es5).symbols │ ├── emitExponentiationOperator1(target=es5).types │ ├── emitExponentiationOperator2(target=es2015).js │ ├── emitExponentiationOperator2(target=es2015).symbols │ ├── emitExponentiationOperator2(target=es2015).types │ ├── emitExponentiationOperator2(target=es5).errors.txt │ ├── emitExponentiationOperator2(target=es5).js │ ├── emitExponentiationOperator2(target=es5).symbols │ ├── emitExponentiationOperator2(target=es5).types │ ├── emitExponentiationOperator3(target=es2015).js │ ├── emitExponentiationOperator3(target=es2015).symbols │ ├── emitExponentiationOperator3(target=es2015).types │ ├── emitExponentiationOperator3(target=es5).errors.txt │ ├── emitExponentiationOperator3(target=es5).js │ ├── emitExponentiationOperator3(target=es5).symbols │ ├── emitExponentiationOperator3(target=es5).types │ ├── emitExponentiationOperator4(target=es2015).errors.txt │ ├── emitExponentiationOperator4(target=es2015).js │ ├── emitExponentiationOperator4(target=es2015).symbols │ ├── emitExponentiationOperator4(target=es2015).types │ ├── emitExponentiationOperator4(target=es5).errors.txt │ ├── emitExponentiationOperator4(target=es5).js │ ├── emitExponentiationOperator4(target=es5).symbols │ ├── emitExponentiationOperator4(target=es5).types │ ├── emitExponentiationOperatorInTempalteString4(target=es2015).js │ ├── emitExponentiationOperatorInTempalteString4(target=es2015).symbols │ ├── emitExponentiationOperatorInTempalteString4(target=es2015).types │ ├── emitExponentiationOperatorInTempalteString4(target=es5).errors.txt │ ├── emitExponentiationOperatorInTempalteString4(target=es5).js │ ├── emitExponentiationOperatorInTempalteString4(target=es5).symbols │ ├── emitExponentiationOperatorInTempalteString4(target=es5).types │ ├── emitExponentiationOperatorInTempalteString4ES6.js │ ├── emitExponentiationOperatorInTempalteString4ES6.symbols │ ├── emitExponentiationOperatorInTempalteString4ES6.types │ ├── emitExponentiationOperatorInTemplateString1(target=es2015).js │ ├── emitExponentiationOperatorInTemplateString1(target=es2015).symbols │ ├── emitExponentiationOperatorInTemplateString1(target=es2015).types │ ├── emitExponentiationOperatorInTemplateString1(target=es5).errors.txt │ ├── emitExponentiationOperatorInTemplateString1(target=es5).js │ ├── emitExponentiationOperatorInTemplateString1(target=es5).symbols │ ├── emitExponentiationOperatorInTemplateString1(target=es5).types │ ├── emitExponentiationOperatorInTemplateString1ES6.js │ ├── emitExponentiationOperatorInTemplateString1ES6.symbols │ ├── emitExponentiationOperatorInTemplateString1ES6.types │ ├── emitExponentiationOperatorInTemplateString2(target=es2015).js │ ├── emitExponentiationOperatorInTemplateString2(target=es2015).symbols │ ├── emitExponentiationOperatorInTemplateString2(target=es2015).types │ ├── emitExponentiationOperatorInTemplateString2(target=es5).errors.txt │ ├── emitExponentiationOperatorInTemplateString2(target=es5).js │ ├── emitExponentiationOperatorInTemplateString2(target=es5).symbols │ ├── emitExponentiationOperatorInTemplateString2(target=es5).types │ ├── emitExponentiationOperatorInTemplateString2ES6.js │ ├── emitExponentiationOperatorInTemplateString2ES6.symbols │ ├── emitExponentiationOperatorInTemplateString2ES6.types │ ├── emitExponentiationOperatorInTemplateString3(target=es2015).js │ ├── emitExponentiationOperatorInTemplateString3(target=es2015).symbols │ ├── emitExponentiationOperatorInTemplateString3(target=es2015).types │ ├── emitExponentiationOperatorInTemplateString3(target=es5).errors.txt │ ├── emitExponentiationOperatorInTemplateString3(target=es5).js │ ├── emitExponentiationOperatorInTemplateString3(target=es5).symbols │ ├── emitExponentiationOperatorInTemplateString3(target=es5).types │ ├── emitExponentiationOperatorInTemplateString3ES6.js │ ├── emitExponentiationOperatorInTemplateString3ES6.symbols │ ├── emitExponentiationOperatorInTemplateString3ES6.types │ ├── emitHelpersWithLocalCollisions(module=amd).errors.txt │ ├── emitHelpersWithLocalCollisions(module=amd).js │ ├── emitHelpersWithLocalCollisions(module=commonjs).js │ ├── emitHelpersWithLocalCollisions(module=es2020).js │ ├── emitHelpersWithLocalCollisions(module=es2022).js │ ├── emitHelpersWithLocalCollisions(module=es6).js │ ├── emitHelpersWithLocalCollisions(module=esnext).js │ ├── emitHelpersWithLocalCollisions(module=node16).js │ ├── emitHelpersWithLocalCollisions(module=node18).js │ ├── emitHelpersWithLocalCollisions(module=node20).js │ ├── emitHelpersWithLocalCollisions(module=nodenext).js │ ├── emitHelpersWithLocalCollisions(module=none).errors.txt │ ├── emitHelpersWithLocalCollisions(module=none).js │ ├── emitHelpersWithLocalCollisions(module=preserve).js │ ├── emitHelpersWithLocalCollisions(module=system).errors.txt │ ├── emitHelpersWithLocalCollisions(module=system).js │ ├── emitHelpersWithLocalCollisions(module=umd).errors.txt │ ├── emitHelpersWithLocalCollisions(module=umd).js │ ├── emitMemberAccessExpression.js │ ├── emitMemberAccessExpression.symbols │ ├── emitMemberAccessExpression.types │ ├── emitMethodCalledNew.js │ ├── emitMethodCalledNew.symbols │ ├── emitMethodCalledNew.types │ ├── emitModuleCommonJS(module=commonjs).errors.txt │ ├── emitModuleCommonJS(module=commonjs).js │ ├── emitModuleCommonJS(module=nodenext).errors.txt │ ├── emitModuleCommonJS(module=nodenext).js │ ├── emitOneLineVariableDeclarationRemoveCommentsFalse.js │ ├── emitOneLineVariableDeclarationRemoveCommentsFalse.symbols │ ├── emitOneLineVariableDeclarationRemoveCommentsFalse.types │ ├── emitPinnedCommentsOnTopOfFile.js │ ├── emitPinnedCommentsOnTopOfFile.symbols │ ├── emitPinnedCommentsOnTopOfFile.types │ ├── emitPostComments.js │ ├── emitPostComments.symbols │ ├── emitPostComments.types │ ├── emitPreComments.js │ ├── emitPreComments.symbols │ ├── emitPreComments.types │ ├── emitRestParametersFunction(target=es2015).js │ ├── emitRestParametersFunction(target=es2015).symbols │ ├── emitRestParametersFunction(target=es2015).types │ ├── emitRestParametersFunction(target=es5).errors.txt │ ├── emitRestParametersFunction(target=es5).js │ ├── emitRestParametersFunction(target=es5).symbols │ ├── emitRestParametersFunction(target=es5).types │ ├── emitRestParametersFunctionES6.js │ ├── emitRestParametersFunctionES6.symbols │ ├── emitRestParametersFunctionES6.types │ ├── emitRestParametersFunctionExpression(target=es2015).js │ ├── emitRestParametersFunctionExpression(target=es2015).symbols │ ├── emitRestParametersFunctionExpression(target=es2015).types │ ├── emitRestParametersFunctionExpression(target=es5).errors.txt │ ├── emitRestParametersFunctionExpression(target=es5).js │ ├── emitRestParametersFunctionExpression(target=es5).symbols │ ├── emitRestParametersFunctionExpression(target=es5).types │ ├── emitRestParametersFunctionExpressionES6.js │ ├── emitRestParametersFunctionExpressionES6.symbols │ ├── emitRestParametersFunctionExpressionES6.types │ ├── emitRestParametersFunctionProperty(target=es2015).js │ ├── emitRestParametersFunctionProperty(target=es2015).symbols │ ├── emitRestParametersFunctionProperty(target=es2015).types │ ├── emitRestParametersFunctionProperty(target=es5).errors.txt │ ├── emitRestParametersFunctionProperty(target=es5).js │ ├── emitRestParametersFunctionProperty(target=es5).symbols │ ├── emitRestParametersFunctionProperty(target=es5).types │ ├── emitRestParametersFunctionPropertyES6.js │ ├── emitRestParametersFunctionPropertyES6.symbols │ ├── emitRestParametersFunctionPropertyES6.types │ ├── emitRestParametersMethod(target=es2015).js │ ├── emitRestParametersMethod(target=es2015).symbols │ ├── emitRestParametersMethod(target=es2015).types │ ├── emitRestParametersMethod(target=es5).errors.txt │ ├── emitRestParametersMethod(target=es5).js │ ├── emitRestParametersMethod(target=es5).symbols │ ├── emitRestParametersMethod(target=es5).types │ ├── emitRestParametersMethodES6.js │ ├── emitRestParametersMethodES6.symbols │ ├── emitRestParametersMethodES6.types │ ├── emitSkipsThisWithRestParameter.errors.txt │ ├── emitSkipsThisWithRestParameter.js │ ├── emitSkipsThisWithRestParameter.symbols │ ├── emitSkipsThisWithRestParameter.types │ ├── emitStatementsBeforeSuperCall.js │ ├── emitStatementsBeforeSuperCall.symbols │ ├── emitStatementsBeforeSuperCall.types │ ├── emitStatementsBeforeSuperCallWithDefineFields.js │ ├── emitStatementsBeforeSuperCallWithDefineFields.symbols │ ├── emitStatementsBeforeSuperCallWithDefineFields.types │ ├── emitSuperCallBeforeEmitParameterPropertyDeclaration1.js │ ├── emitSuperCallBeforeEmitParameterPropertyDeclaration1.symbols │ ├── emitSuperCallBeforeEmitParameterPropertyDeclaration1.types │ ├── emitSuperCallBeforeEmitParameterPropertyDeclaration1ES6.js │ ├── emitSuperCallBeforeEmitParameterPropertyDeclaration1ES6.symbols │ ├── emitSuperCallBeforeEmitParameterPropertyDeclaration1ES6.types │ ├── emitSuperCallBeforeEmitPropertyDeclaration1.js │ ├── emitSuperCallBeforeEmitPropertyDeclaration1.symbols │ ├── emitSuperCallBeforeEmitPropertyDeclaration1.types │ ├── emitSuperCallBeforeEmitPropertyDeclaration1ES6.js │ ├── emitSuperCallBeforeEmitPropertyDeclaration1ES6.symbols │ ├── emitSuperCallBeforeEmitPropertyDeclaration1ES6.types │ ├── emitSuperCallBeforeEmitPropertyDeclarationAndParameterPropertyDeclaration1.js │ ├── emitSuperCallBeforeEmitPropertyDeclarationAndParameterPropertyDeclaration1.symbols │ ├── emitSuperCallBeforeEmitPropertyDeclarationAndParameterPropertyDeclaration1.types │ ├── emitSuperCallBeforeEmitPropertyDeclarationAndParameterPropertyDeclaration1ES6.js │ ├── emitSuperCallBeforeEmitPropertyDeclarationAndParameterPropertyDeclaration1ES6.symbols │ ├── emitSuperCallBeforeEmitPropertyDeclarationAndParameterPropertyDeclaration1ES6.types │ ├── emitThisInObjectLiteralGetter(target=es2015).js │ ├── emitThisInObjectLiteralGetter(target=es2015).symbols │ ├── emitThisInObjectLiteralGetter(target=es2015).types │ ├── emitThisInObjectLiteralGetter(target=es5).errors.txt │ ├── emitThisInObjectLiteralGetter(target=es5).js │ ├── emitThisInObjectLiteralGetter(target=es5).symbols │ ├── emitThisInObjectLiteralGetter(target=es5).types │ ├── emitThisInSuperMethodCall.errors.txt │ ├── emitThisInSuperMethodCall.js │ ├── emitThisInSuperMethodCall.symbols │ ├── emitThisInSuperMethodCall.types │ ├── emitTopOfFileTripleSlashCommentOnNotEmittedNodeIfRemoveCommentsIsFalse.js │ ├── emitTopOfFileTripleSlashCommentOnNotEmittedNodeIfRemoveCommentsIsFalse.symbols │ ├── emitTopOfFileTripleSlashCommentOnNotEmittedNodeIfRemoveCommentsIsFalse.types │ ├── emitter.asyncGenerators.classMethods.es2015.js │ ├── emitter.asyncGenerators.classMethods.es2015.symbols │ ├── emitter.asyncGenerators.classMethods.es2015.types │ ├── emitter.asyncGenerators.classMethods.es2018.js │ ├── emitter.asyncGenerators.classMethods.es2018.symbols │ ├── emitter.asyncGenerators.classMethods.es2018.types │ ├── emitter.asyncGenerators.classMethods.es5(target=es2015).js │ ├── emitter.asyncGenerators.classMethods.es5(target=es2015).symbols │ ├── emitter.asyncGenerators.classMethods.es5(target=es2015).types │ ├── emitter.asyncGenerators.classMethods.es5(target=es5).errors.txt │ ├── emitter.asyncGenerators.classMethods.es5(target=es5).js │ ├── emitter.asyncGenerators.classMethods.es5(target=es5).symbols │ ├── emitter.asyncGenerators.classMethods.es5(target=es5).types │ ├── emitter.asyncGenerators.functionDeclarations.es2015.js │ ├── emitter.asyncGenerators.functionDeclarations.es2015.symbols │ ├── emitter.asyncGenerators.functionDeclarations.es2015.types │ ├── emitter.asyncGenerators.functionDeclarations.es2018.js │ ├── emitter.asyncGenerators.functionDeclarations.es2018.symbols │ ├── emitter.asyncGenerators.functionDeclarations.es2018.types │ ├── emitter.asyncGenerators.functionDeclarations.es5(target=es2015).js │ ├── emitter.asyncGenerators.functionDeclarations.es5(target=es2015).symbols │ ├── emitter.asyncGenerators.functionDeclarations.es5(target=es2015).types │ ├── emitter.asyncGenerators.functionDeclarations.es5(target=es5).errors.txt │ ├── emitter.asyncGenerators.functionDeclarations.es5(target=es5).js │ ├── emitter.asyncGenerators.functionDeclarations.es5(target=es5).symbols │ ├── emitter.asyncGenerators.functionDeclarations.es5(target=es5).types │ ├── emitter.asyncGenerators.functionExpressions.es2015.js │ ├── emitter.asyncGenerators.functionExpressions.es2015.symbols │ ├── emitter.asyncGenerators.functionExpressions.es2015.types │ ├── emitter.asyncGenerators.functionExpressions.es2018.js │ ├── emitter.asyncGenerators.functionExpressions.es2018.symbols │ ├── emitter.asyncGenerators.functionExpressions.es2018.types │ ├── emitter.asyncGenerators.functionExpressions.es5(target=es2015).js │ ├── emitter.asyncGenerators.functionExpressions.es5(target=es2015).symbols │ ├── emitter.asyncGenerators.functionExpressions.es5(target=es2015).types │ ├── emitter.asyncGenerators.functionExpressions.es5(target=es5).errors.txt │ ├── emitter.asyncGenerators.functionExpressions.es5(target=es5).js │ ├── emitter.asyncGenerators.functionExpressions.es5(target=es5).symbols │ ├── emitter.asyncGenerators.functionExpressions.es5(target=es5).types │ ├── emitter.asyncGenerators.objectLiteralMethods.es2015.js │ ├── emitter.asyncGenerators.objectLiteralMethods.es2015.symbols │ ├── emitter.asyncGenerators.objectLiteralMethods.es2015.types │ ├── emitter.asyncGenerators.objectLiteralMethods.es2018.js │ ├── emitter.asyncGenerators.objectLiteralMethods.es2018.symbols │ ├── emitter.asyncGenerators.objectLiteralMethods.es2018.types │ ├── emitter.asyncGenerators.objectLiteralMethods.es5(target=es2015).js │ ├── emitter.asyncGenerators.objectLiteralMethods.es5(target=es2015).symbols │ ├── emitter.asyncGenerators.objectLiteralMethods.es5(target=es2015).types │ ├── emitter.asyncGenerators.objectLiteralMethods.es5(target=es5).errors.txt │ ├── emitter.asyncGenerators.objectLiteralMethods.es5(target=es5).js │ ├── emitter.asyncGenerators.objectLiteralMethods.es5(target=es5).symbols │ ├── emitter.asyncGenerators.objectLiteralMethods.es5(target=es5).types │ ├── emitter.forAwait(target=es2015).js │ ├── emitter.forAwait(target=es2015).symbols │ ├── emitter.forAwait(target=es2015).types │ ├── emitter.forAwait(target=es2017).js │ ├── emitter.forAwait(target=es2017).symbols │ ├── emitter.forAwait(target=es2017).types │ ├── emitter.forAwait(target=es2018).js │ ├── emitter.forAwait(target=es2018).symbols │ ├── emitter.forAwait(target=es2018).types │ ├── emitter.forAwait(target=es5).errors.txt │ ├── emitter.forAwait(target=es5).js │ ├── emitter.forAwait(target=es5).symbols │ ├── emitter.forAwait(target=es5).types │ ├── emitter.noCatchBinding.es2019.js │ ├── emitter.noCatchBinding.es2019.symbols │ ├── emitter.noCatchBinding.es2019.types │ ├── emptyAnonymousObjectNarrowing(strictnullchecks=false).js │ ├── emptyAnonymousObjectNarrowing(strictnullchecks=false).symbols │ ├── emptyAnonymousObjectNarrowing(strictnullchecks=false).types │ ├── emptyAnonymousObjectNarrowing(strictnullchecks=true).js │ ├── emptyAnonymousObjectNarrowing(strictnullchecks=true).symbols │ ├── emptyAnonymousObjectNarrowing(strictnullchecks=true).types │ ├── emptyArgumentsListComment.js │ ├── emptyArgumentsListComment.symbols │ ├── emptyArgumentsListComment.types │ ├── emptyArrayBindingPatternParameter01.js │ ├── emptyArrayBindingPatternParameter01.symbols │ ├── emptyArrayBindingPatternParameter01.types │ ├── emptyArrayBindingPatternParameter02.js │ ├── emptyArrayBindingPatternParameter02.symbols │ ├── emptyArrayBindingPatternParameter02.types │ ├── emptyArrayBindingPatternParameter03.js │ ├── emptyArrayBindingPatternParameter03.symbols │ ├── emptyArrayBindingPatternParameter03.types │ ├── emptyArrayBindingPatternParameter04.js │ ├── emptyArrayBindingPatternParameter04.symbols │ ├── emptyArrayBindingPatternParameter04.types │ ├── emptyArrayDestructuringExpressionVisitedByTransformer.js │ ├── emptyArrayDestructuringExpressionVisitedByTransformer.symbols │ ├── emptyArrayDestructuringExpressionVisitedByTransformer.types │ ├── emptyAssignmentPatterns01_ES5(target=es2015).js │ ├── emptyAssignmentPatterns01_ES5(target=es2015).symbols │ ├── emptyAssignmentPatterns01_ES5(target=es2015).types │ ├── emptyAssignmentPatterns01_ES5(target=es5).errors.txt │ ├── emptyAssignmentPatterns01_ES5(target=es5).js │ ├── emptyAssignmentPatterns01_ES5(target=es5).symbols │ ├── emptyAssignmentPatterns01_ES5(target=es5).types │ ├── emptyAssignmentPatterns01_ES5iterable(target=es2015).errors.txt │ ├── emptyAssignmentPatterns01_ES5iterable(target=es2015).js │ ├── emptyAssignmentPatterns01_ES5iterable(target=es2015).symbols │ ├── emptyAssignmentPatterns01_ES5iterable(target=es2015).types │ ├── emptyAssignmentPatterns01_ES5iterable(target=es5).errors.txt │ ├── emptyAssignmentPatterns01_ES5iterable(target=es5).js │ ├── emptyAssignmentPatterns01_ES5iterable(target=es5).symbols │ ├── emptyAssignmentPatterns01_ES5iterable(target=es5).types │ ├── emptyAssignmentPatterns01_ES6.js │ ├── emptyAssignmentPatterns01_ES6.symbols │ ├── emptyAssignmentPatterns01_ES6.types │ ├── emptyAssignmentPatterns02_ES5(target=es2015).js │ ├── emptyAssignmentPatterns02_ES5(target=es2015).symbols │ ├── emptyAssignmentPatterns02_ES5(target=es2015).types │ ├── emptyAssignmentPatterns02_ES5(target=es5).errors.txt │ ├── emptyAssignmentPatterns02_ES5(target=es5).js │ ├── emptyAssignmentPatterns02_ES5(target=es5).symbols │ ├── emptyAssignmentPatterns02_ES5(target=es5).types │ ├── emptyAssignmentPatterns02_ES5iterable(target=es2015).errors.txt │ ├── emptyAssignmentPatterns02_ES5iterable(target=es2015).js │ ├── emptyAssignmentPatterns02_ES5iterable(target=es2015).symbols │ ├── emptyAssignmentPatterns02_ES5iterable(target=es2015).types │ ├── emptyAssignmentPatterns02_ES5iterable(target=es5).errors.txt │ ├── emptyAssignmentPatterns02_ES5iterable(target=es5).js │ ├── emptyAssignmentPatterns02_ES5iterable(target=es5).symbols │ ├── emptyAssignmentPatterns02_ES5iterable(target=es5).types │ ├── emptyAssignmentPatterns02_ES6.js │ ├── emptyAssignmentPatterns02_ES6.symbols │ ├── emptyAssignmentPatterns02_ES6.types │ ├── emptyAssignmentPatterns03_ES5(target=es2015).js │ ├── emptyAssignmentPatterns03_ES5(target=es2015).symbols │ ├── emptyAssignmentPatterns03_ES5(target=es2015).types │ ├── emptyAssignmentPatterns03_ES5(target=es5).errors.txt │ ├── emptyAssignmentPatterns03_ES5(target=es5).js │ ├── emptyAssignmentPatterns03_ES5(target=es5).symbols │ ├── emptyAssignmentPatterns03_ES5(target=es5).types │ ├── emptyAssignmentPatterns03_ES5iterable(target=es2015).errors.txt │ ├── emptyAssignmentPatterns03_ES5iterable(target=es2015).js │ ├── emptyAssignmentPatterns03_ES5iterable(target=es2015).symbols │ ├── emptyAssignmentPatterns03_ES5iterable(target=es2015).types │ ├── emptyAssignmentPatterns03_ES5iterable(target=es5).errors.txt │ ├── emptyAssignmentPatterns03_ES5iterable(target=es5).js │ ├── emptyAssignmentPatterns03_ES5iterable(target=es5).symbols │ ├── emptyAssignmentPatterns03_ES5iterable(target=es5).types │ ├── emptyAssignmentPatterns03_ES6.js │ ├── emptyAssignmentPatterns03_ES6.symbols │ ├── emptyAssignmentPatterns03_ES6.types │ ├── emptyAssignmentPatterns04_ES5(target=es2015).js │ ├── emptyAssignmentPatterns04_ES5(target=es2015).symbols │ ├── emptyAssignmentPatterns04_ES5(target=es2015).types │ ├── emptyAssignmentPatterns04_ES5(target=es5).errors.txt │ ├── emptyAssignmentPatterns04_ES5(target=es5).js │ ├── emptyAssignmentPatterns04_ES5(target=es5).symbols │ ├── emptyAssignmentPatterns04_ES5(target=es5).types │ ├── emptyAssignmentPatterns04_ES5iterable(target=es2015).errors.txt │ ├── emptyAssignmentPatterns04_ES5iterable(target=es2015).js │ ├── emptyAssignmentPatterns04_ES5iterable(target=es2015).symbols │ ├── emptyAssignmentPatterns04_ES5iterable(target=es2015).types │ ├── emptyAssignmentPatterns04_ES5iterable(target=es5).errors.txt │ ├── emptyAssignmentPatterns04_ES5iterable(target=es5).js │ ├── emptyAssignmentPatterns04_ES5iterable(target=es5).symbols │ ├── emptyAssignmentPatterns04_ES5iterable(target=es5).types │ ├── emptyAssignmentPatterns04_ES6.js │ ├── emptyAssignmentPatterns04_ES6.symbols │ ├── emptyAssignmentPatterns04_ES6.types │ ├── emptyDeclarationEmitIsModule.js │ ├── emptyDeclarationEmitIsModule.symbols │ ├── emptyDeclarationEmitIsModule.types │ ├── emptyEnum.js │ ├── emptyEnum.symbols │ ├── emptyEnum.types │ ├── emptyExportFindReferences.baseline.jsonc │ ├── emptyExpr.js │ ├── emptyExpr.symbols │ ├── emptyExpr.types │ ├── emptyFile-declaration(target=es2015).js │ ├── emptyFile-declaration(target=es2015).symbols │ ├── emptyFile-declaration(target=es2015).types │ ├── emptyFile-declaration(target=es5).errors.txt │ ├── emptyFile-declaration(target=es5).js │ ├── emptyFile-declaration(target=es5).symbols │ ├── emptyFile-declaration(target=es5).types │ ├── emptyFile-souremap(target=es2015).js │ ├── emptyFile-souremap(target=es2015).sourcemap.txt │ ├── emptyFile-souremap(target=es2015).symbols │ ├── emptyFile-souremap(target=es2015).types │ ├── emptyFile-souremap(target=es5).errors.txt │ ├── emptyFile-souremap(target=es5).js │ ├── emptyFile-souremap(target=es5).sourcemap.txt │ ├── emptyFile-souremap(target=es5).symbols │ ├── emptyFile-souremap(target=es5).types │ ├── emptyFile.js │ ├── emptyFile.symbols │ ├── emptyFile.types │ ├── emptyGenericParamList.errors.txt │ ├── emptyGenericParamList.js │ ├── emptyGenericParamList.symbols │ ├── emptyGenericParamList.types │ ├── emptyIndexer.errors.txt │ ├── emptyIndexer.js │ ├── emptyIndexer.symbols │ ├── emptyIndexer.types │ ├── emptyMemberAccess.errors.txt │ ├── emptyMemberAccess.js │ ├── emptyMemberAccess.symbols │ ├── emptyMemberAccess.types │ ├── emptyModuleName.errors.txt │ ├── emptyModuleName.js │ ├── emptyModuleName.symbols │ ├── emptyModuleName.types │ ├── emptyObjectBindingPatternParameter01.js │ ├── emptyObjectBindingPatternParameter01.symbols │ ├── emptyObjectBindingPatternParameter01.types │ ├── emptyObjectBindingPatternParameter02.js │ ├── emptyObjectBindingPatternParameter02.symbols │ ├── emptyObjectBindingPatternParameter02.types │ ├── emptyObjectBindingPatternParameter03.js │ ├── emptyObjectBindingPatternParameter03.symbols │ ├── emptyObjectBindingPatternParameter03.types │ ├── emptyObjectBindingPatternParameter04.js │ ├── emptyObjectBindingPatternParameter04.symbols │ ├── emptyObjectBindingPatternParameter04.types │ ├── emptyObjectNotSubtypeOfIndexSignatureContainingObject1.errors.txt │ ├── emptyObjectNotSubtypeOfIndexSignatureContainingObject1.js │ ├── emptyObjectNotSubtypeOfIndexSignatureContainingObject1.symbols │ ├── emptyObjectNotSubtypeOfIndexSignatureContainingObject1.types │ ├── emptyObjectNotSubtypeOfIndexSignatureContainingObject2.errors.txt │ ├── emptyObjectNotSubtypeOfIndexSignatureContainingObject2.js │ ├── emptyObjectNotSubtypeOfIndexSignatureContainingObject2.symbols │ ├── emptyObjectNotSubtypeOfIndexSignatureContainingObject2.types │ ├── emptyOptionalBindingPatternInDeclarationSignature.symbols │ ├── emptyOptionalBindingPatternInDeclarationSignature.types │ ├── emptyThenWarning.errors.txt │ ├── emptyThenWarning.js │ ├── emptyThenWarning.symbols │ ├── emptyThenWarning.types │ ├── emptyThenWithoutWarning.js │ ├── emptyThenWithoutWarning.symbols │ ├── emptyThenWithoutWarning.types │ ├── emptyTuplesTypeAssertion01.errors.txt │ ├── emptyTuplesTypeAssertion01.js │ ├── emptyTuplesTypeAssertion01.symbols │ ├── emptyTuplesTypeAssertion01.types │ ├── emptyTuplesTypeAssertion02.errors.txt │ ├── emptyTuplesTypeAssertion02.js │ ├── emptyTuplesTypeAssertion02.symbols │ ├── emptyTuplesTypeAssertion02.types │ ├── emptyTypeArgumentList.errors.txt │ ├── emptyTypeArgumentList.js │ ├── emptyTypeArgumentList.symbols │ ├── emptyTypeArgumentList.types │ ├── emptyTypeArgumentListWithNew.errors.txt │ ├── emptyTypeArgumentListWithNew.js │ ├── emptyTypeArgumentListWithNew.symbols │ ├── emptyTypeArgumentListWithNew.types │ ├── emptyVariableDeclarationBindingPatterns01_ES5(target=es2015).js │ ├── emptyVariableDeclarationBindingPatterns01_ES5(target=es2015).symbols │ ├── emptyVariableDeclarationBindingPatterns01_ES5(target=es2015).types │ ├── emptyVariableDeclarationBindingPatterns01_ES5(target=es5).errors.txt │ ├── emptyVariableDeclarationBindingPatterns01_ES5(target=es5).js │ ├── emptyVariableDeclarationBindingPatterns01_ES5(target=es5).symbols │ ├── emptyVariableDeclarationBindingPatterns01_ES5(target=es5).types │ ├── emptyVariableDeclarationBindingPatterns01_ES5iterable(target=es2015).errors.txt │ ├── emptyVariableDeclarationBindingPatterns01_ES5iterable(target=es2015).js │ ├── emptyVariableDeclarationBindingPatterns01_ES5iterable(target=es2015).symbols │ ├── emptyVariableDeclarationBindingPatterns01_ES5iterable(target=es2015).types │ ├── emptyVariableDeclarationBindingPatterns01_ES5iterable(target=es5).errors.txt │ ├── emptyVariableDeclarationBindingPatterns01_ES5iterable(target=es5).js │ ├── emptyVariableDeclarationBindingPatterns01_ES5iterable(target=es5).symbols │ ├── emptyVariableDeclarationBindingPatterns01_ES5iterable(target=es5).types │ ├── emptyVariableDeclarationBindingPatterns01_ES6.js │ ├── emptyVariableDeclarationBindingPatterns01_ES6.symbols │ ├── emptyVariableDeclarationBindingPatterns01_ES6.types │ ├── emptyVariableDeclarationBindingPatterns02_ES5(target=es2015).errors.txt │ ├── emptyVariableDeclarationBindingPatterns02_ES5(target=es2015).js │ ├── emptyVariableDeclarationBindingPatterns02_ES5(target=es2015).symbols │ ├── emptyVariableDeclarationBindingPatterns02_ES5(target=es2015).types │ ├── emptyVariableDeclarationBindingPatterns02_ES5(target=es5).errors.txt │ ├── emptyVariableDeclarationBindingPatterns02_ES5(target=es5).js │ ├── emptyVariableDeclarationBindingPatterns02_ES5(target=es5).symbols │ ├── emptyVariableDeclarationBindingPatterns02_ES5(target=es5).types │ ├── emptyVariableDeclarationBindingPatterns02_ES5iterable(target=es2015).errors.txt │ ├── emptyVariableDeclarationBindingPatterns02_ES5iterable(target=es2015).js │ ├── emptyVariableDeclarationBindingPatterns02_ES5iterable(target=es2015).symbols │ ├── emptyVariableDeclarationBindingPatterns02_ES5iterable(target=es2015).types │ ├── emptyVariableDeclarationBindingPatterns02_ES5iterable(target=es5).errors.txt │ ├── emptyVariableDeclarationBindingPatterns02_ES5iterable(target=es5).js │ ├── emptyVariableDeclarationBindingPatterns02_ES5iterable(target=es5).symbols │ ├── emptyVariableDeclarationBindingPatterns02_ES5iterable(target=es5).types │ ├── emptyVariableDeclarationBindingPatterns02_ES6.errors.txt │ ├── emptyVariableDeclarationBindingPatterns02_ES6.js │ ├── emptyVariableDeclarationBindingPatterns02_ES6.symbols │ ├── emptyVariableDeclarationBindingPatterns02_ES6.types │ ├── ensureNoCrashExportAssignmentDefineProperrtyPotentialMerge.errors.txt │ ├── ensureNoCrashExportAssignmentDefineProperrtyPotentialMerge.symbols │ ├── ensureNoCrashExportAssignmentDefineProperrtyPotentialMerge.types │ ├── enumAssignability.errors.txt │ ├── enumAssignability.js │ ├── enumAssignability.symbols │ ├── enumAssignability.types │ ├── enumAssignabilityInInheritance.errors.txt │ ├── enumAssignabilityInInheritance.js │ ├── enumAssignabilityInInheritance.symbols │ ├── enumAssignabilityInInheritance.types │ ├── enumAssignmentCompat.errors.txt │ ├── enumAssignmentCompat.js │ ├── enumAssignmentCompat.symbols │ ├── enumAssignmentCompat.types │ ├── enumAssignmentCompat2.errors.txt │ ├── enumAssignmentCompat2.js │ ├── enumAssignmentCompat2.symbols │ ├── enumAssignmentCompat2.types │ ├── enumAssignmentCompat3.errors.txt │ ├── enumAssignmentCompat3.js │ ├── enumAssignmentCompat3.symbols │ ├── enumAssignmentCompat3.types │ ├── enumAssignmentCompat4.js │ ├── enumAssignmentCompat4.symbols │ ├── enumAssignmentCompat4.types │ ├── enumAssignmentCompat5.errors.txt │ ├── enumAssignmentCompat5.js │ ├── enumAssignmentCompat5.symbols │ ├── enumAssignmentCompat5.types │ ├── enumAssignmentCompat6.errors.txt │ ├── enumAssignmentCompat6.js │ ├── enumAssignmentCompat6.symbols │ ├── enumAssignmentCompat6.types │ ├── enumAssignmentCompat7.errors.txt │ ├── enumAssignmentCompat7.js │ ├── enumAssignmentCompat7.symbols │ ├── enumAssignmentCompat7.types │ ├── enumBasics.js │ ├── enumBasics.symbols │ ├── enumBasics.types │ ├── enumBasics1.errors.txt │ ├── enumBasics1.js │ ├── enumBasics1.symbols │ ├── enumBasics1.types │ ├── enumBasics2.errors.txt │ ├── enumBasics2.js │ ├── enumBasics2.symbols │ ├── enumBasics2.types │ ├── enumBasics3.errors.txt │ ├── enumBasics3.js │ ├── enumBasics3.symbols │ ├── enumBasics3.types │ ├── enumClassification.js │ ├── enumClassification.symbols │ ├── enumClassification.types │ ├── enumCodeGenNewLines1.js │ ├── enumCodeGenNewLines1.symbols │ ├── enumCodeGenNewLines1.types │ ├── enumConflictsWithGlobalIdentifier.errors.txt │ ├── enumConflictsWithGlobalIdentifier.js │ ├── enumConflictsWithGlobalIdentifier.symbols │ ├── enumConflictsWithGlobalIdentifier.types │ ├── enumConstantMemberWithString.errors.txt │ ├── enumConstantMemberWithString.js │ ├── enumConstantMemberWithString.symbols │ ├── enumConstantMemberWithString.types │ ├── enumConstantMemberWithStringEmitDeclaration.js │ ├── enumConstantMemberWithStringEmitDeclaration.symbols │ ├── enumConstantMemberWithStringEmitDeclaration.types │ ├── enumConstantMemberWithTemplateLiterals.errors.txt │ ├── enumConstantMemberWithTemplateLiterals.js │ ├── enumConstantMemberWithTemplateLiterals.symbols │ ├── enumConstantMemberWithTemplateLiterals.types │ ├── enumConstantMemberWithTemplateLiteralsEmitDeclaration.js │ ├── enumConstantMemberWithTemplateLiteralsEmitDeclaration.symbols │ ├── enumConstantMemberWithTemplateLiteralsEmitDeclaration.types │ ├── enumConstantMembers.errors.txt │ ├── enumConstantMembers.js │ ├── enumConstantMembers.symbols │ ├── enumConstantMembers.types │ ├── enumDecl1.js │ ├── enumDecl1.symbols │ ├── enumDecl1.types │ ├── enumDeclarationEmitInitializerHasImport.js │ ├── enumDeclarationEmitInitializerHasImport.symbols │ ├── enumDeclarationEmitInitializerHasImport.types │ ├── enumErrorOnConstantBindingWithInitializer.errors.txt │ ├── enumErrorOnConstantBindingWithInitializer.js │ ├── enumErrorOnConstantBindingWithInitializer.symbols │ ├── enumErrorOnConstantBindingWithInitializer.types │ ├── enumErrors.errors.txt │ ├── enumErrors.js │ ├── enumErrors.symbols │ ├── enumErrors.types │ ├── enumExportMergingES6.js │ ├── enumExportMergingES6.symbols │ ├── enumExportMergingES6.types │ ├── enumFromExternalModule.js │ ├── enumFromExternalModule.symbols │ ├── enumFromExternalModule.types │ ├── enumGenericTypeClash.errors.txt │ ├── enumGenericTypeClash.js │ ├── enumGenericTypeClash.symbols │ ├── enumGenericTypeClash.types │ ├── enumIdentifierLiterals.errors.txt │ ├── enumIdentifierLiterals.js │ ├── enumIdentifierLiterals.symbols │ ├── enumIdentifierLiterals.types │ ├── enumIndexer.js │ ├── enumIndexer.symbols │ ├── enumIndexer.types │ ├── enumInitializersWithExponents.js │ ├── enumInitializersWithExponents.symbols │ ├── enumInitializersWithExponents.types │ ├── enumIsNotASubtypeOfAnythingButNumber.errors.txt │ ├── enumIsNotASubtypeOfAnythingButNumber.js │ ├── enumIsNotASubtypeOfAnythingButNumber.symbols │ ├── enumIsNotASubtypeOfAnythingButNumber.types │ ├── enumKeysQuotedAsObjectPropertiesInDeclarationEmit.js │ ├── enumKeysQuotedAsObjectPropertiesInDeclarationEmit.symbols │ ├── enumKeysQuotedAsObjectPropertiesInDeclarationEmit.types │ ├── enumLiteralAssignableToEnumInsideUnion.errors.txt │ ├── enumLiteralAssignableToEnumInsideUnion.js │ ├── enumLiteralAssignableToEnumInsideUnion.symbols │ ├── enumLiteralAssignableToEnumInsideUnion.types │ ├── enumLiteralTypes1.js │ ├── enumLiteralTypes1.symbols │ ├── enumLiteralTypes1.types │ ├── enumLiteralTypes2.js │ ├── enumLiteralTypes2.symbols │ ├── enumLiteralTypes2.types │ ├── enumLiteralTypes3.errors.txt │ ├── enumLiteralTypes3.js │ ├── enumLiteralTypes3.symbols │ ├── enumLiteralTypes3.types │ ├── enumLiteralUnionNotWidened.js │ ├── enumLiteralUnionNotWidened.symbols │ ├── enumLiteralUnionNotWidened.types │ ├── enumLiteralsSubtypeReduction.js │ ├── enumLiteralsSubtypeReduction.symbols │ ├── enumLiteralsSubtypeReduction.types │ ├── enumMapBackIntoItself.js │ ├── enumMapBackIntoItself.symbols │ ├── enumMapBackIntoItself.types │ ├── enumMemberNameNonIdentifier.js │ ├── enumMemberNameNonIdentifier.symbols │ ├── enumMemberNameNonIdentifier.types │ ├── enumMemberReduction.js │ ├── enumMemberReduction.symbols │ ├── enumMemberReduction.types │ ├── enumMemberResolution.errors.txt │ ├── enumMemberResolution.js │ ├── enumMemberResolution.symbols │ ├── enumMemberResolution.types │ ├── enumMergeWithExpando.errors.txt │ ├── enumMergeWithExpando.symbols │ ├── enumMergeWithExpando.types │ ├── enumMerging.js │ ├── enumMerging.symbols │ ├── enumMerging.types │ ├── enumMergingErrors.errors.txt │ ├── enumMergingErrors.js │ ├── enumMergingErrors.symbols │ ├── enumMergingErrors.types │ ├── enumNegativeLiteral1.js │ ├── enumNegativeLiteral1.symbols │ ├── enumNegativeLiteral1.types │ ├── enumNoInitializerFollowsNonLiteralInitializer.errors.txt │ ├── enumNoInitializerFollowsNonLiteralInitializer.js │ ├── enumNumbering1.js │ ├── enumNumbering1.symbols │ ├── enumNumbering1.types │ ├── enumOperations.js │ ├── enumOperations.symbols │ ├── enumOperations.types │ ├── enumPropertyAccess.errors.txt │ ├── enumPropertyAccess.js │ ├── enumPropertyAccess.symbols │ ├── enumPropertyAccess.types │ ├── enumPropertyAccessBeforeInitalisation.errors.txt │ ├── enumPropertyAccessBeforeInitalisation.js │ ├── enumPropertyAccessBeforeInitalisation.symbols │ ├── enumPropertyAccessBeforeInitalisation.types │ ├── enumShadowedInfinityNaN.errors.txt │ ├── enumShadowedInfinityNaN.js │ ├── enumShadowedInfinityNaN.symbols │ ├── enumShadowedInfinityNaN.types │ ├── enumTag.errors.txt │ ├── enumTag.symbols │ ├── enumTag.types │ ├── enumTagCircularReference.errors.txt │ ├── enumTagCircularReference.symbols │ ├── enumTagCircularReference.types │ ├── enumTagImported.symbols │ ├── enumTagImported.types │ ├── enumTagOnExports.symbols │ ├── enumTagOnExports.types │ ├── enumTagOnExports2.symbols │ ├── enumTagOnExports2.types │ ├── enumTagUseBeforeDefCrash.symbols │ ├── enumTagUseBeforeDefCrash.types │ ├── enumUsedBeforeDeclaration.errors.txt │ ├── enumUsedBeforeDeclaration.js │ ├── enumUsedBeforeDeclaration.symbols │ ├── enumUsedBeforeDeclaration.types │ ├── enumWithBigint.errors.txt │ ├── enumWithBigint.js │ ├── enumWithBigint.symbols │ ├── enumWithBigint.types │ ├── enumWithComputedMember.errors.txt │ ├── enumWithComputedMember.js │ ├── enumWithComputedMember.symbols │ ├── enumWithComputedMember.types │ ├── enumWithExport.errors.txt │ ├── enumWithExport.js │ ├── enumWithExport.symbols │ ├── enumWithExport.types │ ├── enumWithInfinityProperty.js │ ├── enumWithInfinityProperty.symbols │ ├── enumWithInfinityProperty.types │ ├── enumWithNaNProperty.js │ ├── enumWithNaNProperty.symbols │ ├── enumWithNaNProperty.types │ ├── enumWithNegativeInfinityProperty.js │ ├── enumWithNegativeInfinityProperty.symbols │ ├── enumWithNegativeInfinityProperty.types │ ├── enumWithNonLiteralStringInitializer.errors.txt │ ├── enumWithNonLiteralStringInitializer.js │ ├── enumWithParenthesizedInitializer1.errors.txt │ ├── enumWithParenthesizedInitializer1.js │ ├── enumWithParenthesizedInitializer1.symbols │ ├── enumWithParenthesizedInitializer1.types │ ├── enumWithPrimitiveName.errors.txt │ ├── enumWithPrimitiveName.js │ ├── enumWithPrimitiveName.symbols │ ├── enumWithPrimitiveName.types │ ├── enumWithQuotedElementName1.js │ ├── enumWithQuotedElementName1.symbols │ ├── enumWithQuotedElementName1.types │ ├── enumWithQuotedElementName2.js │ ├── enumWithQuotedElementName2.symbols │ ├── enumWithQuotedElementName2.types │ ├── enumWithUnicodeEscape1.js │ ├── enumWithUnicodeEscape1.symbols │ ├── enumWithUnicodeEscape1.types │ ├── enumWithoutInitializerAfterComputedMember.js │ ├── enumWithoutInitializerAfterComputedMember.symbols │ ├── enumWithoutInitializerAfterComputedMember.types │ ├── enums.errors.txt │ ├── enums.js │ ├── enums.symbols │ ├── enums.types │ ├── enumsWithMultipleDeclarations1.errors.txt │ ├── enumsWithMultipleDeclarations1.js │ ├── enumsWithMultipleDeclarations1.symbols │ ├── enumsWithMultipleDeclarations1.types │ ├── enumsWithMultipleDeclarations2.errors.txt │ ├── enumsWithMultipleDeclarations2.js │ ├── enumsWithMultipleDeclarations2.symbols │ ├── enumsWithMultipleDeclarations2.types │ ├── enumsWithMultipleDeclarations3.js │ ├── enumsWithMultipleDeclarations3.symbols │ ├── enumsWithMultipleDeclarations3.types │ ├── equalityStrictNulls.errors.txt │ ├── equalityStrictNulls.js │ ├── equalityStrictNulls.symbols │ ├── equalityStrictNulls.types │ ├── equalityWithEnumTypes.errors.txt │ ├── equalityWithEnumTypes.js │ ├── equalityWithEnumTypes.symbols │ ├── equalityWithEnumTypes.types │ ├── equalityWithIntersectionTypes01.errors.txt │ ├── equalityWithIntersectionTypes01.js │ ├── equalityWithIntersectionTypes01.symbols │ ├── equalityWithIntersectionTypes01.types │ ├── equalityWithUnionTypes01.js │ ├── equalityWithUnionTypes01.symbols │ ├── equalityWithUnionTypes01.types │ ├── equalityWithtNullishCoalescingAssignment(strict=false).js │ ├── equalityWithtNullishCoalescingAssignment(strict=false).symbols │ ├── equalityWithtNullishCoalescingAssignment(strict=false).types │ ├── equalityWithtNullishCoalescingAssignment(strict=true).js │ ├── equalityWithtNullishCoalescingAssignment(strict=true).symbols │ ├── equalityWithtNullishCoalescingAssignment(strict=true).types │ ├── erasableSyntaxOnly.errors.txt │ ├── erasableSyntaxOnly.js │ ├── erasableSyntaxOnly.symbols │ ├── erasableSyntaxOnly.types │ ├── erasableSyntaxOnly2.errors.txt │ ├── erasableSyntaxOnly2.js │ ├── erasableSyntaxOnly2.symbols │ ├── erasableSyntaxOnly2.types │ ├── erasableSyntaxOnlyDeclaration.errors.txt │ ├── erasableSyntaxOnlyDeclaration.symbols │ ├── erasableSyntaxOnlyDeclaration.types │ ├── errorCause(target=es2021).errors.txt │ ├── errorCause(target=es2021).js │ ├── errorCause(target=es2021).symbols │ ├── errorCause(target=es2021).types │ ├── errorCause(target=es2022).js │ ├── errorCause(target=es2022).symbols │ ├── errorCause(target=es2022).types │ ├── errorCause(target=esnext).js │ ├── errorCause(target=esnext).symbols │ ├── errorCause(target=esnext).types │ ├── errorConstructorSubtypes.js │ ├── errorConstructorSubtypes.symbols │ ├── errorConstructorSubtypes.types │ ├── errorElaboration.errors.txt │ ├── errorElaboration.js │ ├── errorElaboration.symbols │ ├── errorElaboration.types │ ├── errorElaborationDivesIntoApparentlyPresentPropsOnly.errors.txt │ ├── errorElaborationDivesIntoApparentlyPresentPropsOnly.js │ ├── errorElaborationDivesIntoApparentlyPresentPropsOnly.symbols │ ├── errorElaborationDivesIntoApparentlyPresentPropsOnly.types │ ├── errorForBareSpecifierWithImplicitModuleResolutionNone.errors.txt │ ├── errorForBareSpecifierWithImplicitModuleResolutionNone.js │ ├── errorForBareSpecifierWithImplicitModuleResolutionNone.symbols │ ├── errorForBareSpecifierWithImplicitModuleResolutionNone.types │ ├── errorForConflictingExportEqualsValue.errors.txt │ ├── errorForConflictingExportEqualsValue.js │ ├── errorForConflictingExportEqualsValue.symbols │ ├── errorForConflictingExportEqualsValue.types │ ├── errorForUsingPropertyOfTypeAsType01.errors.txt │ ├── errorForUsingPropertyOfTypeAsType01.js │ ├── errorForUsingPropertyOfTypeAsType01.symbols │ ├── errorForUsingPropertyOfTypeAsType01.types │ ├── errorForUsingPropertyOfTypeAsType02.errors.txt │ ├── errorForUsingPropertyOfTypeAsType02.js │ ├── errorForUsingPropertyOfTypeAsType02.symbols │ ├── errorForUsingPropertyOfTypeAsType02.types │ ├── errorForUsingPropertyOfTypeAsType03.errors.txt │ ├── errorForUsingPropertyOfTypeAsType03.js │ ├── errorForUsingPropertyOfTypeAsType03.symbols │ ├── errorForUsingPropertyOfTypeAsType03.types │ ├── errorForwardReferenceForwadingConstructor.errors.txt │ ├── errorForwardReferenceForwadingConstructor.js │ ├── errorForwardReferenceForwadingConstructor.symbols │ ├── errorForwardReferenceForwadingConstructor.types │ ├── errorHandlingInInstanceOf.errors.txt │ ├── errorHandlingInInstanceOf.js │ ├── errorHandlingInInstanceOf.symbols │ ├── errorHandlingInInstanceOf.types │ ├── errorInUnnamedClassExpression.errors.txt │ ├── errorInUnnamedClassExpression.symbols │ ├── errorInUnnamedClassExpression.types │ ├── errorInfoForRelatedIndexTypesNoConstraintElaboration.errors.txt │ ├── errorInfoForRelatedIndexTypesNoConstraintElaboration.js │ ├── errorInfoForRelatedIndexTypesNoConstraintElaboration.symbols │ ├── errorInfoForRelatedIndexTypesNoConstraintElaboration.types │ ├── errorIsolation.symbols │ ├── errorIsolation.types │ ├── errorLocationForInterfaceExtension.errors.txt │ ├── errorLocationForInterfaceExtension.js │ ├── errorLocationForInterfaceExtension.symbols │ ├── errorLocationForInterfaceExtension.types │ ├── errorMessageOnIntersectionsWithDiscriminants01.errors.txt │ ├── errorMessageOnIntersectionsWithDiscriminants01.symbols │ ├── errorMessageOnIntersectionsWithDiscriminants01.types │ ├── errorMessageOnObjectLiteralType.errors.txt │ ├── errorMessageOnObjectLiteralType.js │ ├── errorMessageOnObjectLiteralType.symbols │ ├── errorMessageOnObjectLiteralType.types │ ├── errorMessagesIntersectionTypes01.errors.txt │ ├── errorMessagesIntersectionTypes01.js │ ├── errorMessagesIntersectionTypes01.symbols │ ├── errorMessagesIntersectionTypes01.types │ ├── errorMessagesIntersectionTypes02.errors.txt │ ├── errorMessagesIntersectionTypes02.js │ ├── errorMessagesIntersectionTypes02.symbols │ ├── errorMessagesIntersectionTypes02.types │ ├── errorMessagesIntersectionTypes03.errors.txt │ ├── errorMessagesIntersectionTypes03.js │ ├── errorMessagesIntersectionTypes03.symbols │ ├── errorMessagesIntersectionTypes03.types │ ├── errorMessagesIntersectionTypes04.errors.txt │ ├── errorMessagesIntersectionTypes04.js │ ├── errorMessagesIntersectionTypes04.symbols │ ├── errorMessagesIntersectionTypes04.types │ ├── errorOnContextuallyTypedReturnType.errors.txt │ ├── errorOnContextuallyTypedReturnType.js │ ├── errorOnContextuallyTypedReturnType.symbols │ ├── errorOnContextuallyTypedReturnType.types │ ├── errorOnEnumReferenceInCondition.errors.txt │ ├── errorOnEnumReferenceInCondition.js │ ├── errorOnEnumReferenceInCondition.symbols │ ├── errorOnEnumReferenceInCondition.types │ ├── errorOnFunctionReturnType(target=es2015).errors.txt │ ├── errorOnFunctionReturnType(target=es2015).symbols │ ├── errorOnFunctionReturnType(target=es2015).types │ ├── errorOnFunctionReturnType(target=es5).errors.txt │ ├── errorOnFunctionReturnType(target=es5).symbols │ ├── errorOnFunctionReturnType(target=es5).types │ ├── errorOnInitializerInInterfaceProperty.errors.txt │ ├── errorOnInitializerInInterfaceProperty.js │ ├── errorOnInitializerInInterfaceProperty.symbols │ ├── errorOnInitializerInInterfaceProperty.types │ ├── errorOnInitializerInObjectTypeLiteralProperty.errors.txt │ ├── errorOnInitializerInObjectTypeLiteralProperty.js │ ├── errorOnInitializerInObjectTypeLiteralProperty.symbols │ ├── errorOnInitializerInObjectTypeLiteralProperty.types │ ├── errorOnUnionVsObjectShouldDeeplyDisambiguate.errors.txt │ ├── errorOnUnionVsObjectShouldDeeplyDisambiguate.js │ ├── errorOnUnionVsObjectShouldDeeplyDisambiguate.symbols │ ├── errorOnUnionVsObjectShouldDeeplyDisambiguate.types │ ├── errorOnUnionVsObjectShouldDeeplyDisambiguate2.errors.txt │ ├── errorOnUnionVsObjectShouldDeeplyDisambiguate2.js │ ├── errorOnUnionVsObjectShouldDeeplyDisambiguate2.symbols │ ├── errorOnUnionVsObjectShouldDeeplyDisambiguate2.types │ ├── errorRecoveryInClassDeclaration.errors.txt │ ├── errorRecoveryInClassDeclaration.js │ ├── errorRecoveryInClassDeclaration.symbols │ ├── errorRecoveryInClassDeclaration.types │ ├── errorRecoveryWithDotFollowedByNamespaceKeyword.errors.txt │ ├── errorRecoveryWithDotFollowedByNamespaceKeyword.js │ ├── errorRecoveryWithDotFollowedByNamespaceKeyword.symbols │ ├── errorRecoveryWithDotFollowedByNamespaceKeyword.types │ ├── errorSpanForUnclosedJsxTag.errors.txt │ ├── errorSpanForUnclosedJsxTag.js │ ├── errorSpanForUnclosedJsxTag.symbols │ ├── errorSpanForUnclosedJsxTag.types │ ├── errorSuperCalls.errors.txt │ ├── errorSuperCalls.js │ ├── errorSuperCalls.symbols │ ├── errorSuperCalls.types │ ├── errorSuperPropertyAccess(target=es2015).errors.txt │ ├── errorSuperPropertyAccess(target=es2015).js │ ├── errorSuperPropertyAccess(target=es2015).symbols │ ├── errorSuperPropertyAccess(target=es2015).types │ ├── errorSuperPropertyAccess(target=es5).errors.txt │ ├── errorSuperPropertyAccess(target=es5).js │ ├── errorSuperPropertyAccess(target=es5).symbols │ ├── errorSuperPropertyAccess(target=es5).types │ ├── errorSupression1.errors.txt │ ├── errorSupression1.js │ ├── errorSupression1.symbols │ ├── errorSupression1.types │ ├── errorTypesAsTypeArguments.errors.txt │ ├── errorTypesAsTypeArguments.js │ ├── errorTypesAsTypeArguments.symbols │ ├── errorTypesAsTypeArguments.types │ ├── errorWithSameNameType.errors.txt │ ├── errorWithSameNameType.js │ ├── errorWithSameNameType.symbols │ ├── errorWithSameNameType.types │ ├── errorWithTruncatedType.errors.txt │ ├── errorWithTruncatedType.js │ ├── errorWithTruncatedType.symbols │ ├── errorWithTruncatedType.types │ ├── errorsForCallAndAssignmentAreSimilar.errors.txt │ ├── errorsForCallAndAssignmentAreSimilar.js │ ├── errorsForCallAndAssignmentAreSimilar.symbols │ ├── errorsForCallAndAssignmentAreSimilar.types │ ├── errorsInGenericTypeReference.errors.txt │ ├── errorsInGenericTypeReference.js │ ├── errorsInGenericTypeReference.symbols │ ├── errorsInGenericTypeReference.types │ ├── errorsOnImportedSymbol(target=es2015).errors.txt │ ├── errorsOnImportedSymbol(target=es2015).js │ ├── errorsOnImportedSymbol(target=es2015).symbols │ ├── errorsOnImportedSymbol(target=es2015).types │ ├── errorsOnImportedSymbol(target=es5).errors.txt │ ├── errorsOnImportedSymbol(target=es5).js │ ├── errorsOnImportedSymbol(target=es5).symbols │ ├── errorsOnImportedSymbol(target=es5).types │ ├── errorsOnUnionsOfOverlappingObjects01.errors.txt │ ├── errorsOnUnionsOfOverlappingObjects01.js │ ├── errorsOnUnionsOfOverlappingObjects01.symbols │ ├── errorsOnUnionsOfOverlappingObjects01.types │ ├── errorsWithInvokablesInUnions01.errors.txt │ ├── errorsWithInvokablesInUnions01.js │ ├── errorsWithInvokablesInUnions01.symbols │ ├── errorsWithInvokablesInUnions01.types │ ├── es2015modulekind.js │ ├── es2015modulekind.symbols │ ├── es2015modulekind.types │ ├── es2015modulekindWithES6Target.js │ ├── es2015modulekindWithES6Target.symbols │ ├── es2015modulekindWithES6Target.types │ ├── es2016IntlAPIs.errors.txt │ ├── es2016IntlAPIs.js │ ├── es2016IntlAPIs.symbols │ ├── es2016IntlAPIs.types │ ├── es2017DateAPIs.js │ ├── es2017DateAPIs.symbols │ ├── es2017DateAPIs.types │ ├── es2017basicAsync.js │ ├── es2017basicAsync.symbols │ ├── es2017basicAsync.types │ ├── es2018IntlAPIs.js │ ├── es2018IntlAPIs.symbols │ ├── es2018IntlAPIs.types │ ├── es2018ObjectAssign.js │ ├── es2018ObjectAssign.symbols │ ├── es2018ObjectAssign.types │ ├── es2020IntlAPIs.errors.txt │ ├── es2020IntlAPIs.js │ ├── es2020IntlAPIs.symbols │ ├── es2020IntlAPIs.types │ ├── es2021LocalesObjectArgument.js │ ├── es2021LocalesObjectArgument.symbols │ ├── es2021LocalesObjectArgument.types │ ├── es2022IntlAPIs.js │ ├── es2022IntlAPIs.symbols │ ├── es2022IntlAPIs.types │ ├── es2022LocalesObjectArgument.js │ ├── es2022LocalesObjectArgument.symbols │ ├── es2022LocalesObjectArgument.types │ ├── es2024SharedMemory.errors.txt │ ├── es2024SharedMemory.symbols │ ├── es2024SharedMemory.types │ ├── es5-amd(target=es2015).errors.txt │ ├── es5-amd(target=es2015).js │ ├── es5-amd(target=es2015).symbols │ ├── es5-amd(target=es2015).types │ ├── es5-amd(target=es5).errors.txt │ ├── es5-amd(target=es5).js │ ├── es5-amd(target=es5).symbols │ ├── es5-amd(target=es5).types │ ├── es5-asyncFunction(target=es2015).js │ ├── es5-asyncFunction(target=es2015).symbols │ ├── es5-asyncFunction(target=es2015).types │ ├── es5-asyncFunction(target=es5).errors.txt │ ├── es5-asyncFunction(target=es5).js │ ├── es5-asyncFunction(target=es5).symbols │ ├── es5-asyncFunction(target=es5).types │ ├── es5-asyncFunctionArrayLiterals(target=es2015).js │ ├── es5-asyncFunctionArrayLiterals(target=es2015).symbols │ ├── es5-asyncFunctionArrayLiterals(target=es2015).types │ ├── es5-asyncFunctionArrayLiterals(target=es5).errors.txt │ ├── es5-asyncFunctionArrayLiterals(target=es5).js │ ├── es5-asyncFunctionArrayLiterals(target=es5).symbols │ ├── es5-asyncFunctionArrayLiterals(target=es5).types │ ├── es5-asyncFunctionBinaryExpressions(target=es2015).js │ ├── es5-asyncFunctionBinaryExpressions(target=es2015).symbols │ ├── es5-asyncFunctionBinaryExpressions(target=es2015).types │ ├── es5-asyncFunctionBinaryExpressions(target=es5).errors.txt │ ├── es5-asyncFunctionBinaryExpressions(target=es5).js │ ├── es5-asyncFunctionBinaryExpressions(target=es5).symbols │ ├── es5-asyncFunctionBinaryExpressions(target=es5).types │ ├── es5-asyncFunctionCallExpressions(target=es2015).js │ ├── es5-asyncFunctionCallExpressions(target=es2015).symbols │ ├── es5-asyncFunctionCallExpressions(target=es2015).types │ ├── es5-asyncFunctionCallExpressions(target=es5).errors.txt │ ├── es5-asyncFunctionCallExpressions(target=es5).js │ ├── es5-asyncFunctionCallExpressions(target=es5).symbols │ ├── es5-asyncFunctionCallExpressions(target=es5).types │ ├── es5-asyncFunctionConditionals(target=es2015).js │ ├── es5-asyncFunctionConditionals(target=es2015).symbols │ ├── es5-asyncFunctionConditionals(target=es2015).types │ ├── es5-asyncFunctionConditionals(target=es5).errors.txt │ ├── es5-asyncFunctionConditionals(target=es5).js │ ├── es5-asyncFunctionConditionals(target=es5).symbols │ ├── es5-asyncFunctionConditionals(target=es5).types │ ├── es5-asyncFunctionDoStatements(target=es2015).js │ ├── es5-asyncFunctionDoStatements(target=es2015).symbols │ ├── es5-asyncFunctionDoStatements(target=es2015).types │ ├── es5-asyncFunctionDoStatements(target=es5).errors.txt │ ├── es5-asyncFunctionDoStatements(target=es5).js │ ├── es5-asyncFunctionDoStatements(target=es5).symbols │ ├── es5-asyncFunctionDoStatements(target=es5).types │ ├── es5-asyncFunctionElementAccess(target=es2015).js │ ├── es5-asyncFunctionElementAccess(target=es2015).symbols │ ├── es5-asyncFunctionElementAccess(target=es2015).types │ ├── es5-asyncFunctionElementAccess(target=es5).errors.txt │ ├── es5-asyncFunctionElementAccess(target=es5).js │ ├── es5-asyncFunctionElementAccess(target=es5).symbols │ ├── es5-asyncFunctionElementAccess(target=es5).types │ ├── es5-asyncFunctionForInStatements(target=es2015).js │ ├── es5-asyncFunctionForInStatements(target=es2015).symbols │ ├── es5-asyncFunctionForInStatements(target=es2015).types │ ├── es5-asyncFunctionForInStatements(target=es5).errors.txt │ ├── es5-asyncFunctionForInStatements(target=es5).js │ ├── es5-asyncFunctionForInStatements(target=es5).symbols │ ├── es5-asyncFunctionForInStatements(target=es5).types │ ├── es5-asyncFunctionForOfStatements(target=es2015).js │ ├── es5-asyncFunctionForOfStatements(target=es2015).symbols │ ├── es5-asyncFunctionForOfStatements(target=es2015).types │ ├── es5-asyncFunctionForOfStatements(target=es5).errors.txt │ ├── es5-asyncFunctionForOfStatements(target=es5).js │ ├── es5-asyncFunctionForOfStatements(target=es5).symbols │ ├── es5-asyncFunctionForOfStatements(target=es5).types │ ├── es5-asyncFunctionForStatements(target=es2015).js │ ├── es5-asyncFunctionForStatements(target=es2015).symbols │ ├── es5-asyncFunctionForStatements(target=es2015).types │ ├── es5-asyncFunctionForStatements(target=es5).errors.txt │ ├── es5-asyncFunctionForStatements(target=es5).js │ ├── es5-asyncFunctionForStatements(target=es5).symbols │ ├── es5-asyncFunctionForStatements(target=es5).types │ ├── es5-asyncFunctionHoisting(target=es2015).js │ ├── es5-asyncFunctionHoisting(target=es2015).symbols │ ├── es5-asyncFunctionHoisting(target=es2015).types │ ├── es5-asyncFunctionHoisting(target=es5).errors.txt │ ├── es5-asyncFunctionHoisting(target=es5).js │ ├── es5-asyncFunctionHoisting(target=es5).symbols │ ├── es5-asyncFunctionHoisting(target=es5).types │ ├── es5-asyncFunctionIfStatements(target=es2015).js │ ├── es5-asyncFunctionIfStatements(target=es2015).symbols │ ├── es5-asyncFunctionIfStatements(target=es2015).types │ ├── es5-asyncFunctionIfStatements(target=es5).errors.txt │ ├── es5-asyncFunctionIfStatements(target=es5).js │ ├── es5-asyncFunctionIfStatements(target=es5).symbols │ ├── es5-asyncFunctionIfStatements(target=es5).types │ ├── es5-asyncFunctionLongObjectLiteral(target=es2015).js │ ├── es5-asyncFunctionLongObjectLiteral(target=es2015).symbols │ ├── es5-asyncFunctionLongObjectLiteral(target=es2015).types │ ├── es5-asyncFunctionLongObjectLiteral(target=es5).errors.txt │ ├── es5-asyncFunctionLongObjectLiteral(target=es5).js │ ├── es5-asyncFunctionLongObjectLiteral(target=es5).symbols │ ├── es5-asyncFunctionLongObjectLiteral(target=es5).types │ ├── es5-asyncFunctionNestedLoops(target=es2015).js │ ├── es5-asyncFunctionNestedLoops(target=es2015).symbols │ ├── es5-asyncFunctionNestedLoops(target=es2015).types │ ├── es5-asyncFunctionNestedLoops(target=es5).errors.txt │ ├── es5-asyncFunctionNestedLoops(target=es5).js │ ├── es5-asyncFunctionNestedLoops(target=es5).symbols │ ├── es5-asyncFunctionNestedLoops(target=es5).types │ ├── es5-asyncFunctionNewExpressions(target=es2015).js │ ├── es5-asyncFunctionNewExpressions(target=es2015).symbols │ ├── es5-asyncFunctionNewExpressions(target=es2015).types │ ├── es5-asyncFunctionNewExpressions(target=es5).errors.txt │ ├── es5-asyncFunctionNewExpressions(target=es5).js │ ├── es5-asyncFunctionNewExpressions(target=es5).symbols │ ├── es5-asyncFunctionNewExpressions(target=es5).types │ ├── es5-asyncFunctionObjectLiterals(target=es2015).js │ ├── es5-asyncFunctionObjectLiterals(target=es2015).symbols │ ├── es5-asyncFunctionObjectLiterals(target=es2015).types │ ├── es5-asyncFunctionObjectLiterals(target=es5).errors.txt │ ├── es5-asyncFunctionObjectLiterals(target=es5).js │ ├── es5-asyncFunctionObjectLiterals(target=es5).symbols │ ├── es5-asyncFunctionObjectLiterals(target=es5).types │ ├── es5-asyncFunctionPropertyAccess(target=es2015).js │ ├── es5-asyncFunctionPropertyAccess(target=es2015).symbols │ ├── es5-asyncFunctionPropertyAccess(target=es2015).types │ ├── es5-asyncFunctionPropertyAccess(target=es5).errors.txt │ ├── es5-asyncFunctionPropertyAccess(target=es5).js │ ├── es5-asyncFunctionPropertyAccess(target=es5).symbols │ ├── es5-asyncFunctionPropertyAccess(target=es5).types │ ├── es5-asyncFunctionReturnStatements(target=es2015).js │ ├── es5-asyncFunctionReturnStatements(target=es2015).symbols │ ├── es5-asyncFunctionReturnStatements(target=es2015).types │ ├── es5-asyncFunctionReturnStatements(target=es5).errors.txt │ ├── es5-asyncFunctionReturnStatements(target=es5).js │ ├── es5-asyncFunctionReturnStatements(target=es5).symbols │ ├── es5-asyncFunctionReturnStatements(target=es5).types │ ├── es5-asyncFunctionSwitchStatements(target=es2015).js │ ├── es5-asyncFunctionSwitchStatements(target=es2015).symbols │ ├── es5-asyncFunctionSwitchStatements(target=es2015).types │ ├── es5-asyncFunctionSwitchStatements(target=es5).errors.txt │ ├── es5-asyncFunctionSwitchStatements(target=es5).js │ ├── es5-asyncFunctionSwitchStatements(target=es5).symbols │ ├── es5-asyncFunctionSwitchStatements(target=es5).types │ ├── es5-asyncFunctionTryStatements(target=es2015).js │ ├── es5-asyncFunctionTryStatements(target=es2015).symbols │ ├── es5-asyncFunctionTryStatements(target=es2015).types │ ├── es5-asyncFunctionTryStatements(target=es5).errors.txt │ ├── es5-asyncFunctionTryStatements(target=es5).js │ ├── es5-asyncFunctionTryStatements(target=es5).symbols │ ├── es5-asyncFunctionTryStatements(target=es5).types │ ├── es5-asyncFunctionWhileStatements(target=es2015).js │ ├── es5-asyncFunctionWhileStatements(target=es2015).symbols │ ├── es5-asyncFunctionWhileStatements(target=es2015).types │ ├── es5-asyncFunctionWhileStatements(target=es5).errors.txt │ ├── es5-asyncFunctionWhileStatements(target=es5).js │ ├── es5-asyncFunctionWhileStatements(target=es5).symbols │ ├── es5-asyncFunctionWhileStatements(target=es5).types │ ├── es5-asyncFunctionWithStatements(alwaysstrict=false,target=es2015).errors.txt │ ├── es5-asyncFunctionWithStatements(alwaysstrict=false,target=es2015).js │ ├── es5-asyncFunctionWithStatements(alwaysstrict=false,target=es2015).symbols │ ├── es5-asyncFunctionWithStatements(alwaysstrict=false,target=es2015).types │ ├── es5-asyncFunctionWithStatements(alwaysstrict=false,target=es5).errors.txt │ ├── es5-asyncFunctionWithStatements(alwaysstrict=false,target=es5).js │ ├── es5-asyncFunctionWithStatements(alwaysstrict=false,target=es5).symbols │ ├── es5-asyncFunctionWithStatements(alwaysstrict=false,target=es5).types │ ├── es5-asyncFunctionWithStatements(alwaysstrict=true,target=es2015).errors.txt │ ├── es5-asyncFunctionWithStatements(alwaysstrict=true,target=es2015).js │ ├── es5-asyncFunctionWithStatements(alwaysstrict=true,target=es2015).symbols │ ├── es5-asyncFunctionWithStatements(alwaysstrict=true,target=es2015).types │ ├── es5-asyncFunctionWithStatements(alwaysstrict=true,target=es5).errors.txt │ ├── es5-asyncFunctionWithStatements(alwaysstrict=true,target=es5).js │ ├── es5-asyncFunctionWithStatements(alwaysstrict=true,target=es5).symbols │ ├── es5-asyncFunctionWithStatements(alwaysstrict=true,target=es5).types │ ├── es5-commonjs(target=es2015).js │ ├── es5-commonjs(target=es2015).symbols │ ├── es5-commonjs(target=es2015).types │ ├── es5-commonjs(target=es5).errors.txt │ ├── es5-commonjs(target=es5).js │ ├── es5-commonjs(target=es5).symbols │ ├── es5-commonjs(target=es5).types │ ├── es5-commonjs2(target=es2015).js │ ├── es5-commonjs2(target=es2015).symbols │ ├── es5-commonjs2(target=es2015).types │ ├── es5-commonjs2(target=es5).errors.txt │ ├── es5-commonjs2(target=es5).js │ ├── es5-commonjs2(target=es5).symbols │ ├── es5-commonjs2(target=es5).types │ ├── es5-commonjs3(target=es2015).errors.txt │ ├── es5-commonjs3(target=es2015).js │ ├── es5-commonjs3(target=es2015).symbols │ ├── es5-commonjs3(target=es2015).types │ ├── es5-commonjs3(target=es5).errors.txt │ ├── es5-commonjs3(target=es5).js │ ├── es5-commonjs3(target=es5).symbols │ ├── es5-commonjs3(target=es5).types │ ├── es5-commonjs4(target=es2015).errors.txt │ ├── es5-commonjs4(target=es2015).js │ ├── es5-commonjs4(target=es2015).symbols │ ├── es5-commonjs4(target=es2015).types │ ├── es5-commonjs4(target=es5).errors.txt │ ├── es5-commonjs4(target=es5).js │ ├── es5-commonjs4(target=es5).symbols │ ├── es5-commonjs4(target=es5).types │ ├── es5-commonjs5(target=es2015).js │ ├── es5-commonjs5(target=es2015).symbols │ ├── es5-commonjs5(target=es2015).types │ ├── es5-commonjs5(target=es5).errors.txt │ ├── es5-commonjs5(target=es5).js │ ├── es5-commonjs5(target=es5).symbols │ ├── es5-commonjs5(target=es5).types │ ├── es5-commonjs6(target=es2015).js │ ├── es5-commonjs6(target=es2015).symbols │ ├── es5-commonjs6(target=es2015).types │ ├── es5-commonjs6(target=es5).errors.txt │ ├── es5-commonjs6(target=es5).js │ ├── es5-commonjs6(target=es5).symbols │ ├── es5-commonjs6(target=es5).types │ ├── es5-commonjs7(target=es2015).symbols │ ├── es5-commonjs7(target=es2015).types │ ├── es5-commonjs7(target=es5).errors.txt │ ├── es5-commonjs7(target=es5).symbols │ ├── es5-commonjs7(target=es5).types │ ├── es5-commonjs8(target=es2015).symbols │ ├── es5-commonjs8(target=es2015).types │ ├── es5-commonjs8(target=es5).errors.txt │ ├── es5-commonjs8(target=es5).symbols │ ├── es5-commonjs8(target=es5).types │ ├── es5-declaration-amd(target=es2015).errors.txt │ ├── es5-declaration-amd(target=es2015).js │ ├── es5-declaration-amd(target=es2015).symbols │ ├── es5-declaration-amd(target=es2015).types │ ├── es5-declaration-amd(target=es5).errors.txt │ ├── es5-declaration-amd(target=es5).js │ ├── es5-declaration-amd(target=es5).symbols │ ├── es5-declaration-amd(target=es5).types │ ├── es5-importHelpersAsyncFunctions(target=es2015).js │ ├── es5-importHelpersAsyncFunctions(target=es2015).symbols │ ├── es5-importHelpersAsyncFunctions(target=es2015).types │ ├── es5-importHelpersAsyncFunctions(target=es5).errors.txt │ ├── es5-importHelpersAsyncFunctions(target=es5).js │ ├── es5-importHelpersAsyncFunctions(target=es5).symbols │ ├── es5-importHelpersAsyncFunctions(target=es5).types │ ├── es5-oldStyleOctalLiteralInEnums(target=es2015).errors.txt │ ├── es5-oldStyleOctalLiteralInEnums(target=es2015).js │ ├── es5-oldStyleOctalLiteralInEnums(target=es2015).symbols │ ├── es5-oldStyleOctalLiteralInEnums(target=es2015).types │ ├── es5-oldStyleOctalLiteralInEnums(target=es5).errors.txt │ ├── es5-oldStyleOctalLiteralInEnums(target=es5).js │ ├── es5-oldStyleOctalLiteralInEnums(target=es5).symbols │ ├── es5-oldStyleOctalLiteralInEnums(target=es5).types │ ├── es5-souremap-amd(target=es2015).errors.txt │ ├── es5-souremap-amd(target=es2015).js │ ├── es5-souremap-amd(target=es2015).sourcemap.txt │ ├── es5-souremap-amd(target=es2015).symbols │ ├── es5-souremap-amd(target=es2015).types │ ├── es5-souremap-amd(target=es5).errors.txt │ ├── es5-souremap-amd(target=es5).js │ ├── es5-souremap-amd(target=es5).sourcemap.txt │ ├── es5-souremap-amd(target=es5).symbols │ ├── es5-souremap-amd(target=es5).types │ ├── es5-system(target=es2015).errors.txt │ ├── es5-system(target=es2015).js │ ├── es5-system(target=es2015).symbols │ ├── es5-system(target=es2015).types │ ├── es5-system(target=es5).errors.txt │ ├── es5-system(target=es5).js │ ├── es5-system(target=es5).symbols │ ├── es5-system(target=es5).types │ ├── es5-system2(target=es2015).errors.txt │ ├── es5-system2(target=es2015).js │ ├── es5-system2(target=es2015).symbols │ ├── es5-system2(target=es2015).types │ ├── es5-system2(target=es5).errors.txt │ ├── es5-system2(target=es5).js │ ├── es5-system2(target=es5).symbols │ ├── es5-system2(target=es5).types │ ├── es5-umd(target=es2015).errors.txt │ ├── es5-umd(target=es2015).js │ ├── es5-umd(target=es2015).symbols │ ├── es5-umd(target=es2015).types │ ├── es5-umd(target=es5).errors.txt │ ├── es5-umd(target=es5).js │ ├── es5-umd(target=es5).symbols │ ├── es5-umd(target=es5).types │ ├── es5-umd2(target=es2015).errors.txt │ ├── es5-umd2(target=es2015).js │ ├── es5-umd2(target=es2015).symbols │ ├── es5-umd2(target=es2015).types │ ├── es5-umd2(target=es5).errors.txt │ ├── es5-umd2(target=es5).js │ ├── es5-umd2(target=es5).symbols │ ├── es5-umd2(target=es5).types │ ├── es5-umd3(target=es2015).errors.txt │ ├── es5-umd3(target=es2015).js │ ├── es5-umd3(target=es2015).symbols │ ├── es5-umd3(target=es2015).types │ ├── es5-umd3(target=es5).errors.txt │ ├── es5-umd3(target=es5).js │ ├── es5-umd3(target=es5).symbols │ ├── es5-umd3(target=es5).types │ ├── es5-umd4(target=es2015).errors.txt │ ├── es5-umd4(target=es2015).js │ ├── es5-umd4(target=es2015).symbols │ ├── es5-umd4(target=es2015).types │ ├── es5-umd4(target=es5).errors.txt │ ├── es5-umd4(target=es5).js │ ├── es5-umd4(target=es5).symbols │ ├── es5-umd4(target=es5).types │ ├── es5-yieldFunctionObjectLiterals(target=es2015).js │ ├── es5-yieldFunctionObjectLiterals(target=es2015).symbols │ ├── es5-yieldFunctionObjectLiterals(target=es2015).types │ ├── es5-yieldFunctionObjectLiterals(target=es5).errors.txt │ ├── es5-yieldFunctionObjectLiterals(target=es5).js │ ├── es5-yieldFunctionObjectLiterals(target=es5).symbols │ ├── es5-yieldFunctionObjectLiterals(target=es5).types │ ├── es5DateAPIs(target=es2015).errors.txt │ ├── es5DateAPIs(target=es2015).js │ ├── es5DateAPIs(target=es2015).symbols │ ├── es5DateAPIs(target=es2015).types │ ├── es5DateAPIs(target=es5).errors.txt │ ├── es5DateAPIs(target=es5).js │ ├── es5DateAPIs(target=es5).symbols │ ├── es5DateAPIs(target=es5).types │ ├── es5ExportDefaultClassDeclaration(target=es2015).js │ ├── es5ExportDefaultClassDeclaration(target=es2015).symbols │ ├── es5ExportDefaultClassDeclaration(target=es2015).types │ ├── es5ExportDefaultClassDeclaration(target=es5).errors.txt │ ├── es5ExportDefaultClassDeclaration(target=es5).js │ ├── es5ExportDefaultClassDeclaration(target=es5).symbols │ ├── es5ExportDefaultClassDeclaration(target=es5).types │ ├── es5ExportDefaultClassDeclaration2(target=es2015).js │ ├── es5ExportDefaultClassDeclaration2(target=es2015).symbols │ ├── es5ExportDefaultClassDeclaration2(target=es2015).types │ ├── es5ExportDefaultClassDeclaration2(target=es5).errors.txt │ ├── es5ExportDefaultClassDeclaration2(target=es5).js │ ├── es5ExportDefaultClassDeclaration2(target=es5).symbols │ ├── es5ExportDefaultClassDeclaration2(target=es5).types │ ├── es5ExportDefaultClassDeclaration3(target=es2015).errors.txt │ ├── es5ExportDefaultClassDeclaration3(target=es2015).js │ ├── es5ExportDefaultClassDeclaration3(target=es2015).symbols │ ├── es5ExportDefaultClassDeclaration3(target=es2015).types │ ├── es5ExportDefaultClassDeclaration3(target=es5).errors.txt │ ├── es5ExportDefaultClassDeclaration3(target=es5).js │ ├── es5ExportDefaultClassDeclaration3(target=es5).symbols │ ├── es5ExportDefaultClassDeclaration3(target=es5).types │ ├── es5ExportDefaultClassDeclaration4(target=es2015).js │ ├── es5ExportDefaultClassDeclaration4(target=es2015).symbols │ ├── es5ExportDefaultClassDeclaration4(target=es2015).types │ ├── es5ExportDefaultClassDeclaration4(target=es5).errors.txt │ ├── es5ExportDefaultClassDeclaration4(target=es5).js │ ├── es5ExportDefaultClassDeclaration4(target=es5).symbols │ ├── es5ExportDefaultClassDeclaration4(target=es5).types │ ├── es5ExportDefaultExpression(target=es2015).js │ ├── es5ExportDefaultExpression(target=es2015).symbols │ ├── es5ExportDefaultExpression(target=es2015).types │ ├── es5ExportDefaultExpression(target=es5).errors.txt │ ├── es5ExportDefaultExpression(target=es5).js │ ├── es5ExportDefaultExpression(target=es5).symbols │ ├── es5ExportDefaultExpression(target=es5).types │ ├── es5ExportDefaultFunctionDeclaration(target=es2015).js │ ├── es5ExportDefaultFunctionDeclaration(target=es2015).symbols │ ├── es5ExportDefaultFunctionDeclaration(target=es2015).types │ ├── es5ExportDefaultFunctionDeclaration(target=es5).errors.txt │ ├── es5ExportDefaultFunctionDeclaration(target=es5).js │ ├── es5ExportDefaultFunctionDeclaration(target=es5).symbols │ ├── es5ExportDefaultFunctionDeclaration(target=es5).types │ ├── es5ExportDefaultFunctionDeclaration2(target=es2015).js │ ├── es5ExportDefaultFunctionDeclaration2(target=es2015).symbols │ ├── es5ExportDefaultFunctionDeclaration2(target=es2015).types │ ├── es5ExportDefaultFunctionDeclaration2(target=es5).errors.txt │ ├── es5ExportDefaultFunctionDeclaration2(target=es5).js │ ├── es5ExportDefaultFunctionDeclaration2(target=es5).symbols │ ├── es5ExportDefaultFunctionDeclaration2(target=es5).types │ ├── es5ExportDefaultFunctionDeclaration3(target=es2015).js │ ├── es5ExportDefaultFunctionDeclaration3(target=es2015).symbols │ ├── es5ExportDefaultFunctionDeclaration3(target=es2015).types │ ├── es5ExportDefaultFunctionDeclaration3(target=es5).errors.txt │ ├── es5ExportDefaultFunctionDeclaration3(target=es5).js │ ├── es5ExportDefaultFunctionDeclaration3(target=es5).symbols │ ├── es5ExportDefaultFunctionDeclaration3(target=es5).types │ ├── es5ExportDefaultFunctionDeclaration4(target=es2015).js │ ├── es5ExportDefaultFunctionDeclaration4(target=es2015).symbols │ ├── es5ExportDefaultFunctionDeclaration4(target=es2015).types │ ├── es5ExportDefaultFunctionDeclaration4(target=es5).errors.txt │ ├── es5ExportDefaultFunctionDeclaration4(target=es5).js │ ├── es5ExportDefaultFunctionDeclaration4(target=es5).symbols │ ├── es5ExportDefaultFunctionDeclaration4(target=es5).types │ ├── es5ExportDefaultIdentifier(target=es2015).js │ ├── es5ExportDefaultIdentifier(target=es2015).symbols │ ├── es5ExportDefaultIdentifier(target=es2015).types │ ├── es5ExportDefaultIdentifier(target=es5).errors.txt │ ├── es5ExportDefaultIdentifier(target=es5).js │ ├── es5ExportDefaultIdentifier(target=es5).symbols │ ├── es5ExportDefaultIdentifier(target=es5).types │ ├── es5ExportEquals(target=es2015).errors.txt │ ├── es5ExportEquals(target=es2015).js │ ├── es5ExportEquals(target=es2015).symbols │ ├── es5ExportEquals(target=es2015).types │ ├── es5ExportEquals(target=es5).errors.txt │ ├── es5ExportEquals(target=es5).js │ ├── es5ExportEquals(target=es5).symbols │ ├── es5ExportEquals(target=es5).types │ ├── es5ExportEqualsDts(target=es2015).errors.txt │ ├── es5ExportEqualsDts(target=es2015).js │ ├── es5ExportEqualsDts(target=es2015).symbols │ ├── es5ExportEqualsDts(target=es2015).types │ ├── es5ExportEqualsDts(target=es5).errors.txt │ ├── es5ExportEqualsDts(target=es5).js │ ├── es5ExportEqualsDts(target=es5).symbols │ ├── es5ExportEqualsDts(target=es5).types │ ├── es5ModuleInternalNamedImports(target=es2015).errors.txt │ ├── es5ModuleInternalNamedImports(target=es2015).js │ ├── es5ModuleInternalNamedImports(target=es2015).symbols │ ├── es5ModuleInternalNamedImports(target=es2015).types │ ├── es5ModuleInternalNamedImports(target=es5).errors.txt │ ├── es5ModuleInternalNamedImports(target=es5).js │ ├── es5ModuleInternalNamedImports(target=es5).symbols │ ├── es5ModuleInternalNamedImports(target=es5).types │ ├── es5ModuleWithModuleGenAmd(target=es2015).errors.txt │ ├── es5ModuleWithModuleGenAmd(target=es2015).js │ ├── es5ModuleWithModuleGenAmd(target=es2015).symbols │ ├── es5ModuleWithModuleGenAmd(target=es2015).types │ ├── es5ModuleWithModuleGenAmd(target=es5).errors.txt │ ├── es5ModuleWithModuleGenAmd(target=es5).js │ ├── es5ModuleWithModuleGenAmd(target=es5).symbols │ ├── es5ModuleWithModuleGenAmd(target=es5).types │ ├── es5ModuleWithModuleGenCommonjs(target=es2015).js │ ├── es5ModuleWithModuleGenCommonjs(target=es2015).symbols │ ├── es5ModuleWithModuleGenCommonjs(target=es2015).types │ ├── es5ModuleWithModuleGenCommonjs(target=es5).errors.txt │ ├── es5ModuleWithModuleGenCommonjs(target=es5).js │ ├── es5ModuleWithModuleGenCommonjs(target=es5).symbols │ ├── es5ModuleWithModuleGenCommonjs(target=es5).types │ ├── es5ModuleWithoutModuleGenTarget(target=es2015).js │ ├── es5ModuleWithoutModuleGenTarget(target=es2015).symbols │ ├── es5ModuleWithoutModuleGenTarget(target=es2015).types │ ├── es5ModuleWithoutModuleGenTarget(target=es5).errors.txt │ ├── es5ModuleWithoutModuleGenTarget(target=es5).js │ ├── es5ModuleWithoutModuleGenTarget(target=es5).symbols │ ├── es5ModuleWithoutModuleGenTarget(target=es5).types │ ├── es5SetterparameterDestructuringNotElided(target=es2015).js │ ├── es5SetterparameterDestructuringNotElided(target=es2015).symbols │ ├── es5SetterparameterDestructuringNotElided(target=es2015).types │ ├── es5SetterparameterDestructuringNotElided(target=es5).errors.txt │ ├── es5SetterparameterDestructuringNotElided(target=es5).js │ ├── es5SetterparameterDestructuringNotElided(target=es5).symbols │ ├── es5SetterparameterDestructuringNotElided(target=es5).types │ ├── es5andes6module(target=es2015).js │ ├── es5andes6module(target=es2015).symbols │ ├── es5andes6module(target=es2015).types │ ├── es5andes6module(target=es5).errors.txt │ ├── es5andes6module(target=es5).js │ ├── es5andes6module(target=es5).symbols │ ├── es5andes6module(target=es5).types │ ├── es6-amd.errors.txt │ ├── es6-amd.js │ ├── es6-amd.symbols │ ├── es6-amd.types │ ├── es6-declaration-amd.errors.txt │ ├── es6-declaration-amd.js │ ├── es6-declaration-amd.symbols │ ├── es6-declaration-amd.types │ ├── es6-sourcemap-amd.errors.txt │ ├── es6-sourcemap-amd.js │ ├── es6-sourcemap-amd.sourcemap.txt │ ├── es6-sourcemap-amd.symbols │ ├── es6-sourcemap-amd.types │ ├── es6-umd.errors.txt │ ├── es6-umd.js │ ├── es6-umd.symbols │ ├── es6-umd.types │ ├── es6-umd2.errors.txt │ ├── es6-umd2.js │ ├── es6-umd2.symbols │ ├── es6-umd2.types │ ├── es6ClassSuperCodegenBug.js │ ├── es6ClassSuperCodegenBug.symbols │ ├── es6ClassSuperCodegenBug.types │ ├── es6ClassTest.errors.txt │ ├── es6ClassTest.js │ ├── es6ClassTest.symbols │ ├── es6ClassTest.types │ ├── es6ClassTest2.js │ ├── es6ClassTest2.symbols │ ├── es6ClassTest2.types │ ├── es6ClassTest3.js │ ├── es6ClassTest3.symbols │ ├── es6ClassTest3.types │ ├── es6ClassTest4.js │ ├── es6ClassTest4.symbols │ ├── es6ClassTest4.types │ ├── es6ClassTest5.js │ ├── es6ClassTest5.symbols │ ├── es6ClassTest5.types │ ├── es6ClassTest7.js │ ├── es6ClassTest7.symbols │ ├── es6ClassTest7.types │ ├── es6ClassTest8.js │ ├── es6ClassTest8.symbols │ ├── es6ClassTest8.types │ ├── es6ClassTest9.errors.txt │ ├── es6ClassTest9.js │ ├── es6ClassTest9.symbols │ ├── es6ClassTest9.types │ ├── es6DeclOrdering.errors.txt │ ├── es6DeclOrdering.js │ ├── es6DeclOrdering.symbols │ ├── es6DeclOrdering.types │ ├── es6ExportAll.errors.txt │ ├── es6ExportAll.js │ ├── es6ExportAll.symbols │ ├── es6ExportAll.types │ ├── es6ExportAllInEs5(target=es2015).js │ ├── es6ExportAllInEs5(target=es2015).symbols │ ├── es6ExportAllInEs5(target=es2015).types │ ├── es6ExportAllInEs5(target=es5).errors.txt │ ├── es6ExportAllInEs5(target=es5).js │ ├── es6ExportAllInEs5(target=es5).symbols │ ├── es6ExportAllInEs5(target=es5).types │ ├── es6ExportAssignment.errors.txt │ ├── es6ExportAssignment.js │ ├── es6ExportAssignment.symbols │ ├── es6ExportAssignment.types │ ├── es6ExportAssignment2.errors.txt │ ├── es6ExportAssignment2.js │ ├── es6ExportAssignment2.symbols │ ├── es6ExportAssignment2.types │ ├── es6ExportAssignment3.errors.txt │ ├── es6ExportAssignment3.js │ ├── es6ExportAssignment3.symbols │ ├── es6ExportAssignment3.types │ ├── es6ExportAssignment4.js │ ├── es6ExportAssignment4.symbols │ ├── es6ExportAssignment4.types │ ├── es6ExportClause.js │ ├── es6ExportClause.symbols │ ├── es6ExportClause.types │ ├── es6ExportClauseInEs5(target=es2015).js │ ├── es6ExportClauseInEs5(target=es2015).symbols │ ├── es6ExportClauseInEs5(target=es2015).types │ ├── es6ExportClauseInEs5(target=es5).errors.txt │ ├── es6ExportClauseInEs5(target=es5).js │ ├── es6ExportClauseInEs5(target=es5).symbols │ ├── es6ExportClauseInEs5(target=es5).types │ ├── es6ExportClauseWithAssignmentInEs5(target=es2015).js │ ├── es6ExportClauseWithAssignmentInEs5(target=es2015).symbols │ ├── es6ExportClauseWithAssignmentInEs5(target=es2015).types │ ├── es6ExportClauseWithAssignmentInEs5(target=es5).errors.txt │ ├── es6ExportClauseWithAssignmentInEs5(target=es5).js │ ├── es6ExportClauseWithAssignmentInEs5(target=es5).symbols │ ├── es6ExportClauseWithAssignmentInEs5(target=es5).types │ ├── es6ExportClauseWithoutModuleSpecifier.js │ ├── es6ExportClauseWithoutModuleSpecifier.symbols │ ├── es6ExportClauseWithoutModuleSpecifier.types │ ├── es6ExportClauseWithoutModuleSpecifierInEs5(target=es2015).js │ ├── es6ExportClauseWithoutModuleSpecifierInEs5(target=es2015).symbols │ ├── es6ExportClauseWithoutModuleSpecifierInEs5(target=es2015).types │ ├── es6ExportClauseWithoutModuleSpecifierInEs5(target=es5).errors.txt │ ├── es6ExportClauseWithoutModuleSpecifierInEs5(target=es5).js │ ├── es6ExportClauseWithoutModuleSpecifierInEs5(target=es5).symbols │ ├── es6ExportClauseWithoutModuleSpecifierInEs5(target=es5).types │ ├── es6ExportDefaultClassDeclaration.js │ ├── es6ExportDefaultClassDeclaration.symbols │ ├── es6ExportDefaultClassDeclaration.types │ ├── es6ExportDefaultClassDeclaration2.js │ ├── es6ExportDefaultClassDeclaration2.symbols │ ├── es6ExportDefaultClassDeclaration2.types │ ├── es6ExportDefaultExpression.js │ ├── es6ExportDefaultExpression.symbols │ ├── es6ExportDefaultExpression.types │ ├── es6ExportDefaultFunctionDeclaration.js │ ├── es6ExportDefaultFunctionDeclaration.symbols │ ├── es6ExportDefaultFunctionDeclaration.types │ ├── es6ExportDefaultFunctionDeclaration2.js │ ├── es6ExportDefaultFunctionDeclaration2.symbols │ ├── es6ExportDefaultFunctionDeclaration2.types │ ├── es6ExportDefaultIdentifier.js │ ├── es6ExportDefaultIdentifier.symbols │ ├── es6ExportDefaultIdentifier.types │ ├── es6ExportEquals.errors.txt │ ├── es6ExportEquals.js │ ├── es6ExportEquals.symbols │ ├── es6ExportEquals.types │ ├── es6ExportEqualsInterop.errors.txt │ ├── es6ExportEqualsInterop.js │ ├── es6ExportEqualsInterop.symbols │ ├── es6ExportEqualsInterop.types │ ├── es6ImportDefaultBinding.js │ ├── es6ImportDefaultBinding.symbols │ ├── es6ImportDefaultBinding.types │ ├── es6ImportDefaultBindingAmd(target=es2015).errors.txt │ ├── es6ImportDefaultBindingAmd(target=es2015).js │ ├── es6ImportDefaultBindingAmd(target=es2015).symbols │ ├── es6ImportDefaultBindingAmd(target=es2015).types │ ├── es6ImportDefaultBindingAmd(target=es5).errors.txt │ ├── es6ImportDefaultBindingAmd(target=es5).js │ ├── es6ImportDefaultBindingAmd(target=es5).symbols │ ├── es6ImportDefaultBindingAmd(target=es5).types │ ├── es6ImportDefaultBindingDts(target=es2015).js │ ├── es6ImportDefaultBindingDts(target=es2015).symbols │ ├── es6ImportDefaultBindingDts(target=es2015).types │ ├── es6ImportDefaultBindingDts(target=es5).errors.txt │ ├── es6ImportDefaultBindingDts(target=es5).js │ ├── es6ImportDefaultBindingDts(target=es5).symbols │ ├── es6ImportDefaultBindingDts(target=es5).types │ ├── es6ImportDefaultBindingFollowedWithNamedImport.js │ ├── es6ImportDefaultBindingFollowedWithNamedImport.symbols │ ├── es6ImportDefaultBindingFollowedWithNamedImport.types │ ├── es6ImportDefaultBindingFollowedWithNamedImport1.errors.txt │ ├── es6ImportDefaultBindingFollowedWithNamedImport1.js │ ├── es6ImportDefaultBindingFollowedWithNamedImport1.symbols │ ├── es6ImportDefaultBindingFollowedWithNamedImport1.types │ ├── es6ImportDefaultBindingFollowedWithNamedImport1InEs5(target=es2015).errors.txt │ ├── es6ImportDefaultBindingFollowedWithNamedImport1InEs5(target=es2015).js │ ├── es6ImportDefaultBindingFollowedWithNamedImport1InEs5(target=es2015).symbols │ ├── es6ImportDefaultBindingFollowedWithNamedImport1InEs5(target=es2015).types │ ├── es6ImportDefaultBindingFollowedWithNamedImport1InEs5(target=es5).errors.txt │ ├── es6ImportDefaultBindingFollowedWithNamedImport1InEs5(target=es5).js │ ├── es6ImportDefaultBindingFollowedWithNamedImport1InEs5(target=es5).symbols │ ├── es6ImportDefaultBindingFollowedWithNamedImport1InEs5(target=es5).types │ ├── es6ImportDefaultBindingFollowedWithNamedImport1WithExport(target=es2015).errors.txt │ ├── es6ImportDefaultBindingFollowedWithNamedImport1WithExport(target=es2015).js │ ├── es6ImportDefaultBindingFollowedWithNamedImport1WithExport(target=es2015).symbols │ ├── es6ImportDefaultBindingFollowedWithNamedImport1WithExport(target=es2015).types │ ├── es6ImportDefaultBindingFollowedWithNamedImport1WithExport(target=es5).errors.txt │ ├── es6ImportDefaultBindingFollowedWithNamedImport1WithExport(target=es5).js │ ├── es6ImportDefaultBindingFollowedWithNamedImport1WithExport(target=es5).symbols │ ├── es6ImportDefaultBindingFollowedWithNamedImport1WithExport(target=es5).types │ ├── es6ImportDefaultBindingFollowedWithNamedImportDts.errors.txt │ ├── es6ImportDefaultBindingFollowedWithNamedImportDts.js │ ├── es6ImportDefaultBindingFollowedWithNamedImportDts.symbols │ ├── es6ImportDefaultBindingFollowedWithNamedImportDts.types │ ├── es6ImportDefaultBindingFollowedWithNamedImportDts1(target=es2015).errors.txt │ ├── es6ImportDefaultBindingFollowedWithNamedImportDts1(target=es2015).js │ ├── es6ImportDefaultBindingFollowedWithNamedImportDts1(target=es2015).symbols │ ├── es6ImportDefaultBindingFollowedWithNamedImportDts1(target=es2015).types │ ├── es6ImportDefaultBindingFollowedWithNamedImportDts1(target=es5).errors.txt │ ├── es6ImportDefaultBindingFollowedWithNamedImportDts1(target=es5).js │ ├── es6ImportDefaultBindingFollowedWithNamedImportDts1(target=es5).symbols │ ├── es6ImportDefaultBindingFollowedWithNamedImportDts1(target=es5).types │ ├── es6ImportDefaultBindingFollowedWithNamedImportInEs5(target=es2015).errors.txt │ ├── es6ImportDefaultBindingFollowedWithNamedImportInEs5(target=es2015).js │ ├── es6ImportDefaultBindingFollowedWithNamedImportInEs5(target=es2015).symbols │ ├── es6ImportDefaultBindingFollowedWithNamedImportInEs5(target=es2015).types │ ├── es6ImportDefaultBindingFollowedWithNamedImportInEs5(target=es5).errors.txt │ ├── es6ImportDefaultBindingFollowedWithNamedImportInEs5(target=es5).js │ ├── es6ImportDefaultBindingFollowedWithNamedImportInEs5(target=es5).symbols │ ├── es6ImportDefaultBindingFollowedWithNamedImportInEs5(target=es5).types │ ├── es6ImportDefaultBindingFollowedWithNamedImportWithExport(target=es2015).errors.txt │ ├── es6ImportDefaultBindingFollowedWithNamedImportWithExport(target=es2015).js │ ├── es6ImportDefaultBindingFollowedWithNamedImportWithExport(target=es2015).symbols │ ├── es6ImportDefaultBindingFollowedWithNamedImportWithExport(target=es2015).types │ ├── es6ImportDefaultBindingFollowedWithNamedImportWithExport(target=es5).errors.txt │ ├── es6ImportDefaultBindingFollowedWithNamedImportWithExport(target=es5).js │ ├── es6ImportDefaultBindingFollowedWithNamedImportWithExport(target=es5).symbols │ ├── es6ImportDefaultBindingFollowedWithNamedImportWithExport(target=es5).types │ ├── es6ImportDefaultBindingFollowedWithNamespaceBinding.errors.txt │ ├── es6ImportDefaultBindingFollowedWithNamespaceBinding.js │ ├── es6ImportDefaultBindingFollowedWithNamespaceBinding.symbols │ ├── es6ImportDefaultBindingFollowedWithNamespaceBinding.types │ ├── es6ImportDefaultBindingFollowedWithNamespaceBinding1.js │ ├── es6ImportDefaultBindingFollowedWithNamespaceBinding1.symbols │ ├── es6ImportDefaultBindingFollowedWithNamespaceBinding1.types │ ├── es6ImportDefaultBindingFollowedWithNamespaceBinding1InEs5(target=es2015).js │ ├── es6ImportDefaultBindingFollowedWithNamespaceBinding1InEs5(target=es2015).symbols │ ├── es6ImportDefaultBindingFollowedWithNamespaceBinding1InEs5(target=es2015).types │ ├── es6ImportDefaultBindingFollowedWithNamespaceBinding1InEs5(target=es5).errors.txt │ ├── es6ImportDefaultBindingFollowedWithNamespaceBinding1InEs5(target=es5).js │ ├── es6ImportDefaultBindingFollowedWithNamespaceBinding1InEs5(target=es5).symbols │ ├── es6ImportDefaultBindingFollowedWithNamespaceBinding1InEs5(target=es5).types │ ├── es6ImportDefaultBindingFollowedWithNamespaceBinding1WithExport(target=es2015).errors.txt │ ├── es6ImportDefaultBindingFollowedWithNamespaceBinding1WithExport(target=es2015).js │ ├── es6ImportDefaultBindingFollowedWithNamespaceBinding1WithExport(target=es2015).symbols │ ├── es6ImportDefaultBindingFollowedWithNamespaceBinding1WithExport(target=es2015).types │ ├── es6ImportDefaultBindingFollowedWithNamespaceBinding1WithExport(target=es5).errors.txt │ ├── es6ImportDefaultBindingFollowedWithNamespaceBinding1WithExport(target=es5).js │ ├── es6ImportDefaultBindingFollowedWithNamespaceBinding1WithExport(target=es5).symbols │ ├── es6ImportDefaultBindingFollowedWithNamespaceBinding1WithExport(target=es5).types │ ├── es6ImportDefaultBindingFollowedWithNamespaceBindingDts.errors.txt │ ├── es6ImportDefaultBindingFollowedWithNamespaceBindingDts.js │ ├── es6ImportDefaultBindingFollowedWithNamespaceBindingDts.symbols │ ├── es6ImportDefaultBindingFollowedWithNamespaceBindingDts.types │ ├── es6ImportDefaultBindingFollowedWithNamespaceBindingDts1(target=es2015).errors.txt │ ├── es6ImportDefaultBindingFollowedWithNamespaceBindingDts1(target=es2015).js │ ├── es6ImportDefaultBindingFollowedWithNamespaceBindingDts1(target=es2015).symbols │ ├── es6ImportDefaultBindingFollowedWithNamespaceBindingDts1(target=es2015).types │ ├── es6ImportDefaultBindingFollowedWithNamespaceBindingDts1(target=es5).errors.txt │ ├── es6ImportDefaultBindingFollowedWithNamespaceBindingDts1(target=es5).js │ ├── es6ImportDefaultBindingFollowedWithNamespaceBindingDts1(target=es5).symbols │ ├── es6ImportDefaultBindingFollowedWithNamespaceBindingDts1(target=es5).types │ ├── es6ImportDefaultBindingFollowedWithNamespaceBindingInEs5(target=es2015).errors.txt │ ├── es6ImportDefaultBindingFollowedWithNamespaceBindingInEs5(target=es2015).js │ ├── es6ImportDefaultBindingFollowedWithNamespaceBindingInEs5(target=es2015).symbols │ ├── es6ImportDefaultBindingFollowedWithNamespaceBindingInEs5(target=es2015).types │ ├── es6ImportDefaultBindingFollowedWithNamespaceBindingInEs5(target=es5).errors.txt │ ├── es6ImportDefaultBindingFollowedWithNamespaceBindingInEs5(target=es5).js │ ├── es6ImportDefaultBindingFollowedWithNamespaceBindingInEs5(target=es5).symbols │ ├── es6ImportDefaultBindingFollowedWithNamespaceBindingInEs5(target=es5).types │ ├── es6ImportDefaultBindingFollowedWithNamespaceBindingWithExport.errors.txt │ ├── es6ImportDefaultBindingFollowedWithNamespaceBindingWithExport.js │ ├── es6ImportDefaultBindingFollowedWithNamespaceBindingWithExport.symbols │ ├── es6ImportDefaultBindingFollowedWithNamespaceBindingWithExport.types │ ├── es6ImportDefaultBindingInEs5(target=es2015).js │ ├── es6ImportDefaultBindingInEs5(target=es2015).symbols │ ├── es6ImportDefaultBindingInEs5(target=es2015).types │ ├── es6ImportDefaultBindingInEs5(target=es5).errors.txt │ ├── es6ImportDefaultBindingInEs5(target=es5).js │ ├── es6ImportDefaultBindingInEs5(target=es5).symbols │ ├── es6ImportDefaultBindingInEs5(target=es5).types │ ├── es6ImportDefaultBindingMergeErrors(target=es2015).errors.txt │ ├── es6ImportDefaultBindingMergeErrors(target=es2015).js │ ├── es6ImportDefaultBindingMergeErrors(target=es2015).symbols │ ├── es6ImportDefaultBindingMergeErrors(target=es2015).types │ ├── es6ImportDefaultBindingMergeErrors(target=es5).errors.txt │ ├── es6ImportDefaultBindingMergeErrors(target=es5).js │ ├── es6ImportDefaultBindingMergeErrors(target=es5).symbols │ ├── es6ImportDefaultBindingMergeErrors(target=es5).types │ ├── es6ImportDefaultBindingNoDefaultProperty.errors.txt │ ├── es6ImportDefaultBindingNoDefaultProperty.js │ ├── es6ImportDefaultBindingNoDefaultProperty.symbols │ ├── es6ImportDefaultBindingNoDefaultProperty.types │ ├── es6ImportDefaultBindingWithExport(target=es2015).errors.txt │ ├── es6ImportDefaultBindingWithExport(target=es2015).js │ ├── es6ImportDefaultBindingWithExport(target=es2015).symbols │ ├── es6ImportDefaultBindingWithExport(target=es2015).types │ ├── es6ImportDefaultBindingWithExport(target=es5).errors.txt │ ├── es6ImportDefaultBindingWithExport(target=es5).js │ ├── es6ImportDefaultBindingWithExport(target=es5).symbols │ ├── es6ImportDefaultBindingWithExport(target=es5).types │ ├── es6ImportEqualsDeclaration.errors.txt │ ├── es6ImportEqualsDeclaration.js │ ├── es6ImportEqualsDeclaration.symbols │ ├── es6ImportEqualsDeclaration.types │ ├── es6ImportEqualsDeclaration2.js │ ├── es6ImportEqualsDeclaration2.symbols │ ├── es6ImportEqualsDeclaration2.types │ ├── es6ImportEqualsExportModuleCommonJsError.errors.txt │ ├── es6ImportEqualsExportModuleCommonJsError.js │ ├── es6ImportEqualsExportModuleCommonJsError.symbols │ ├── es6ImportEqualsExportModuleCommonJsError.types │ ├── es6ImportEqualsExportModuleEs2015Error.errors.txt │ ├── es6ImportEqualsExportModuleEs2015Error.js │ ├── es6ImportEqualsExportModuleEs2015Error.symbols │ ├── es6ImportEqualsExportModuleEs2015Error.types │ ├── es6ImportNameSpaceImport.js │ ├── es6ImportNameSpaceImport.symbols │ ├── es6ImportNameSpaceImport.types │ ├── es6ImportNameSpaceImportAmd.errors.txt │ ├── es6ImportNameSpaceImportAmd.js │ ├── es6ImportNameSpaceImportAmd.symbols │ ├── es6ImportNameSpaceImportAmd.types │ ├── es6ImportNameSpaceImportDts.js │ ├── es6ImportNameSpaceImportDts.symbols │ ├── es6ImportNameSpaceImportDts.types │ ├── es6ImportNameSpaceImportInEs5(target=es2015).js │ ├── es6ImportNameSpaceImportInEs5(target=es2015).symbols │ ├── es6ImportNameSpaceImportInEs5(target=es2015).types │ ├── es6ImportNameSpaceImportInEs5(target=es5).errors.txt │ ├── es6ImportNameSpaceImportInEs5(target=es5).js │ ├── es6ImportNameSpaceImportInEs5(target=es5).symbols │ ├── es6ImportNameSpaceImportInEs5(target=es5).types │ ├── es6ImportNameSpaceImportMergeErrors(target=es2015).errors.txt │ ├── es6ImportNameSpaceImportMergeErrors(target=es2015).js │ ├── es6ImportNameSpaceImportMergeErrors(target=es2015).symbols │ ├── es6ImportNameSpaceImportMergeErrors(target=es2015).types │ ├── es6ImportNameSpaceImportMergeErrors(target=es5).errors.txt │ ├── es6ImportNameSpaceImportMergeErrors(target=es5).js │ ├── es6ImportNameSpaceImportMergeErrors(target=es5).symbols │ ├── es6ImportNameSpaceImportMergeErrors(target=es5).types │ ├── es6ImportNameSpaceImportNoNamedExports(target=es2015).js │ ├── es6ImportNameSpaceImportNoNamedExports(target=es2015).symbols │ ├── es6ImportNameSpaceImportNoNamedExports(target=es2015).types │ ├── es6ImportNameSpaceImportNoNamedExports(target=es5).errors.txt │ ├── es6ImportNameSpaceImportNoNamedExports(target=es5).js │ ├── es6ImportNameSpaceImportNoNamedExports(target=es5).symbols │ ├── es6ImportNameSpaceImportNoNamedExports(target=es5).types │ ├── es6ImportNameSpaceImportWithExport.errors.txt │ ├── es6ImportNameSpaceImportWithExport.js │ ├── es6ImportNameSpaceImportWithExport.symbols │ ├── es6ImportNameSpaceImportWithExport.types │ ├── es6ImportNamedImport.js │ ├── es6ImportNamedImport.symbols │ ├── es6ImportNamedImport.types │ ├── es6ImportNamedImportAmd.errors.txt │ ├── es6ImportNamedImportAmd.js │ ├── es6ImportNamedImportAmd.symbols │ ├── es6ImportNamedImportAmd.types │ ├── es6ImportNamedImportDts.js │ ├── es6ImportNamedImportDts.symbols │ ├── es6ImportNamedImportDts.types │ ├── es6ImportNamedImportIdentifiersParsing.errors.txt │ ├── es6ImportNamedImportIdentifiersParsing.js │ ├── es6ImportNamedImportIdentifiersParsing.symbols │ ├── es6ImportNamedImportIdentifiersParsing.types │ ├── es6ImportNamedImportInEs5(target=es2015).js │ ├── es6ImportNamedImportInEs5(target=es2015).symbols │ ├── es6ImportNamedImportInEs5(target=es2015).types │ ├── es6ImportNamedImportInEs5(target=es5).errors.txt │ ├── es6ImportNamedImportInEs5(target=es5).js │ ├── es6ImportNamedImportInEs5(target=es5).symbols │ ├── es6ImportNamedImportInEs5(target=es5).types │ ├── es6ImportNamedImportInExportAssignment.js │ ├── es6ImportNamedImportInExportAssignment.symbols │ ├── es6ImportNamedImportInExportAssignment.types │ ├── es6ImportNamedImportInIndirectExportAssignment.js │ ├── es6ImportNamedImportInIndirectExportAssignment.symbols │ ├── es6ImportNamedImportInIndirectExportAssignment.types │ ├── es6ImportNamedImportMergeErrors.errors.txt │ ├── es6ImportNamedImportMergeErrors.js │ ├── es6ImportNamedImportMergeErrors.symbols │ ├── es6ImportNamedImportMergeErrors.types │ ├── es6ImportNamedImportNoExportMember.errors.txt │ ├── es6ImportNamedImportNoExportMember.js │ ├── es6ImportNamedImportNoExportMember.symbols │ ├── es6ImportNamedImportNoExportMember.types │ ├── es6ImportNamedImportNoNamedExports(target=es2015).errors.txt │ ├── es6ImportNamedImportNoNamedExports(target=es2015).js │ ├── es6ImportNamedImportNoNamedExports(target=es2015).symbols │ ├── es6ImportNamedImportNoNamedExports(target=es2015).types │ ├── es6ImportNamedImportNoNamedExports(target=es5).errors.txt │ ├── es6ImportNamedImportNoNamedExports(target=es5).js │ ├── es6ImportNamedImportNoNamedExports(target=es5).symbols │ ├── es6ImportNamedImportNoNamedExports(target=es5).types │ ├── es6ImportNamedImportParsingError.errors.txt │ ├── es6ImportNamedImportParsingError.js │ ├── es6ImportNamedImportParsingError.symbols │ ├── es6ImportNamedImportParsingError.types │ ├── es6ImportNamedImportWithExport.errors.txt │ ├── es6ImportNamedImportWithExport.js │ ├── es6ImportNamedImportWithExport.symbols │ ├── es6ImportNamedImportWithExport.types │ ├── es6ImportNamedImportWithTypesAndValues.js │ ├── es6ImportNamedImportWithTypesAndValues.symbols │ ├── es6ImportNamedImportWithTypesAndValues.types │ ├── es6ImportParseErrors.errors.txt │ ├── es6ImportParseErrors.js │ ├── es6ImportParseErrors.symbols │ ├── es6ImportParseErrors.types │ ├── es6ImportWithJsDocTags.symbols │ ├── es6ImportWithJsDocTags.types │ ├── es6ImportWithoutFromClause.errors.txt │ ├── es6ImportWithoutFromClause.js │ ├── es6ImportWithoutFromClause.symbols │ ├── es6ImportWithoutFromClause.types │ ├── es6ImportWithoutFromClauseAmd.errors.txt │ ├── es6ImportWithoutFromClauseAmd.js │ ├── es6ImportWithoutFromClauseAmd.symbols │ ├── es6ImportWithoutFromClauseAmd.types │ ├── es6ImportWithoutFromClauseInEs5(target=es2015).errors.txt │ ├── es6ImportWithoutFromClauseInEs5(target=es2015).js │ ├── es6ImportWithoutFromClauseInEs5(target=es2015).symbols │ ├── es6ImportWithoutFromClauseInEs5(target=es2015).types │ ├── es6ImportWithoutFromClauseInEs5(target=es5).errors.txt │ ├── es6ImportWithoutFromClauseInEs5(target=es5).js │ ├── es6ImportWithoutFromClauseInEs5(target=es5).symbols │ ├── es6ImportWithoutFromClauseInEs5(target=es5).types │ ├── es6ImportWithoutFromClauseNonInstantiatedModule.errors.txt │ ├── es6ImportWithoutFromClauseNonInstantiatedModule.js │ ├── es6ImportWithoutFromClauseNonInstantiatedModule.symbols │ ├── es6ImportWithoutFromClauseNonInstantiatedModule.types │ ├── es6ImportWithoutFromClauseWithExport.errors.txt │ ├── es6ImportWithoutFromClauseWithExport.js │ ├── es6ImportWithoutFromClauseWithExport.symbols │ ├── es6ImportWithoutFromClauseWithExport.types │ ├── es6MemberScoping.errors.txt │ ├── es6MemberScoping.js │ ├── es6MemberScoping.symbols │ ├── es6MemberScoping.types │ ├── es6Module.js │ ├── es6Module.symbols │ ├── es6Module.types │ ├── es6ModuleClassDeclaration.js │ ├── es6ModuleClassDeclaration.symbols │ ├── es6ModuleClassDeclaration.types │ ├── es6ModuleConst.js │ ├── es6ModuleConst.symbols │ ├── es6ModuleConst.types │ ├── es6ModuleConstEnumDeclaration.js │ ├── es6ModuleConstEnumDeclaration.symbols │ ├── es6ModuleConstEnumDeclaration.types │ ├── es6ModuleConstEnumDeclaration2.js │ ├── es6ModuleConstEnumDeclaration2.symbols │ ├── es6ModuleConstEnumDeclaration2.types │ ├── es6ModuleEnumDeclaration.js │ ├── es6ModuleEnumDeclaration.symbols │ ├── es6ModuleEnumDeclaration.types │ ├── es6ModuleFunctionDeclaration.js │ ├── es6ModuleFunctionDeclaration.symbols │ ├── es6ModuleFunctionDeclaration.types │ ├── es6ModuleInternalImport.js │ ├── es6ModuleInternalImport.symbols │ ├── es6ModuleInternalImport.types │ ├── es6ModuleInternalNamedImports.errors.txt │ ├── es6ModuleInternalNamedImports.js │ ├── es6ModuleInternalNamedImports.symbols │ ├── es6ModuleInternalNamedImports.types │ ├── es6ModuleInternalNamedImports2.errors.txt │ ├── es6ModuleInternalNamedImports2.js │ ├── es6ModuleInternalNamedImports2.symbols │ ├── es6ModuleInternalNamedImports2.types │ ├── es6ModuleLet.js │ ├── es6ModuleLet.symbols │ ├── es6ModuleLet.types │ ├── es6ModuleModuleDeclaration.js │ ├── es6ModuleModuleDeclaration.symbols │ ├── es6ModuleModuleDeclaration.types │ ├── es6ModuleVariableStatement.js │ ├── es6ModuleVariableStatement.symbols │ ├── es6ModuleVariableStatement.types │ ├── es6ModuleWithModuleGenTargetAmd.errors.txt │ ├── es6ModuleWithModuleGenTargetAmd.js │ ├── es6ModuleWithModuleGenTargetAmd.symbols │ ├── es6ModuleWithModuleGenTargetAmd.types │ ├── es6ModuleWithModuleGenTargetCommonjs.js │ ├── es6ModuleWithModuleGenTargetCommonjs.symbols │ ├── es6ModuleWithModuleGenTargetCommonjs.types │ ├── es6UseOfTopLevelRequire.js │ ├── es6UseOfTopLevelRequire.symbols │ ├── es6UseOfTopLevelRequire.types │ ├── es6modulekind.js │ ├── es6modulekind.symbols │ ├── es6modulekind.types │ ├── es6modulekindExportClassNameWithObject(target=es2015).js │ ├── es6modulekindExportClassNameWithObject(target=es2015).symbols │ ├── es6modulekindExportClassNameWithObject(target=es2015).types │ ├── es6modulekindExportClassNameWithObject(target=es5).errors.txt │ ├── es6modulekindExportClassNameWithObject(target=es5).js │ ├── es6modulekindExportClassNameWithObject(target=es5).symbols │ ├── es6modulekindExportClassNameWithObject(target=es5).types │ ├── es6modulekindWithES2015Target.js │ ├── es6modulekindWithES2015Target.symbols │ ├── es6modulekindWithES2015Target.types │ ├── es6modulekindWithES5Target(target=es2015).js │ ├── es6modulekindWithES5Target(target=es2015).symbols │ ├── es6modulekindWithES5Target(target=es2015).types │ ├── es6modulekindWithES5Target(target=es5).errors.txt │ ├── es6modulekindWithES5Target(target=es5).js │ ├── es6modulekindWithES5Target(target=es5).symbols │ ├── es6modulekindWithES5Target(target=es5).types │ ├── es6modulekindWithES5Target10(target=es2015).errors.txt │ ├── es6modulekindWithES5Target10(target=es2015).js │ ├── es6modulekindWithES5Target10(target=es2015).symbols │ ├── es6modulekindWithES5Target10(target=es2015).types │ ├── es6modulekindWithES5Target10(target=es5).errors.txt │ ├── es6modulekindWithES5Target10(target=es5).js │ ├── es6modulekindWithES5Target10(target=es5).symbols │ ├── es6modulekindWithES5Target10(target=es5).types │ ├── es6modulekindWithES5Target11(target=es2015).js │ ├── es6modulekindWithES5Target11(target=es2015).symbols │ ├── es6modulekindWithES5Target11(target=es2015).types │ ├── es6modulekindWithES5Target11(target=es5).errors.txt │ ├── es6modulekindWithES5Target11(target=es5).js │ ├── es6modulekindWithES5Target11(target=es5).symbols │ ├── es6modulekindWithES5Target11(target=es5).types │ ├── es6modulekindWithES5Target12(target=es2015).js │ ├── es6modulekindWithES5Target12(target=es2015).symbols │ ├── es6modulekindWithES5Target12(target=es2015).types │ ├── es6modulekindWithES5Target12(target=es5).errors.txt │ ├── es6modulekindWithES5Target12(target=es5).js │ ├── es6modulekindWithES5Target12(target=es5).symbols │ ├── es6modulekindWithES5Target12(target=es5).types │ ├── es6modulekindWithES5Target2(target=es2015).js │ ├── es6modulekindWithES5Target2(target=es2015).symbols │ ├── es6modulekindWithES5Target2(target=es2015).types │ ├── es6modulekindWithES5Target2(target=es5).errors.txt │ ├── es6modulekindWithES5Target2(target=es5).js │ ├── es6modulekindWithES5Target2(target=es5).symbols │ ├── es6modulekindWithES5Target2(target=es5).types │ ├── es6modulekindWithES5Target3(target=es2015).js │ ├── es6modulekindWithES5Target3(target=es2015).symbols │ ├── es6modulekindWithES5Target3(target=es2015).types │ ├── es6modulekindWithES5Target3(target=es5).errors.txt │ ├── es6modulekindWithES5Target3(target=es5).js │ ├── es6modulekindWithES5Target3(target=es5).symbols │ ├── es6modulekindWithES5Target3(target=es5).types │ ├── es6modulekindWithES5Target4(target=es2015).js │ ├── es6modulekindWithES5Target4(target=es2015).symbols │ ├── es6modulekindWithES5Target4(target=es2015).types │ ├── es6modulekindWithES5Target4(target=es5).errors.txt │ ├── es6modulekindWithES5Target4(target=es5).js │ ├── es6modulekindWithES5Target4(target=es5).symbols │ ├── es6modulekindWithES5Target4(target=es5).types │ ├── es6modulekindWithES5Target5(target=es2015).js │ ├── es6modulekindWithES5Target5(target=es2015).symbols │ ├── es6modulekindWithES5Target5(target=es2015).types │ ├── es6modulekindWithES5Target5(target=es5).errors.txt │ ├── es6modulekindWithES5Target5(target=es5).js │ ├── es6modulekindWithES5Target5(target=es5).symbols │ ├── es6modulekindWithES5Target5(target=es5).types │ ├── es6modulekindWithES5Target6(target=es2015).js │ ├── es6modulekindWithES5Target6(target=es2015).symbols │ ├── es6modulekindWithES5Target6(target=es2015).types │ ├── es6modulekindWithES5Target6(target=es5).errors.txt │ ├── es6modulekindWithES5Target6(target=es5).js │ ├── es6modulekindWithES5Target6(target=es5).symbols │ ├── es6modulekindWithES5Target6(target=es5).types │ ├── es6modulekindWithES5Target7(target=es2015).js │ ├── es6modulekindWithES5Target7(target=es2015).symbols │ ├── es6modulekindWithES5Target7(target=es2015).types │ ├── es6modulekindWithES5Target7(target=es5).errors.txt │ ├── es6modulekindWithES5Target7(target=es5).js │ ├── es6modulekindWithES5Target7(target=es5).symbols │ ├── es6modulekindWithES5Target7(target=es5).types │ ├── es6modulekindWithES5Target8(target=es2015).js │ ├── es6modulekindWithES5Target8(target=es2015).symbols │ ├── es6modulekindWithES5Target8(target=es2015).types │ ├── es6modulekindWithES5Target8(target=es5).errors.txt │ ├── es6modulekindWithES5Target8(target=es5).js │ ├── es6modulekindWithES5Target8(target=es5).symbols │ ├── es6modulekindWithES5Target8(target=es5).types │ ├── es6modulekindWithES5Target9(target=es2015).errors.txt │ ├── es6modulekindWithES5Target9(target=es2015).js │ ├── es6modulekindWithES5Target9(target=es2015).symbols │ ├── es6modulekindWithES5Target9(target=es2015).types │ ├── es6modulekindWithES5Target9(target=es5).errors.txt │ ├── es6modulekindWithES5Target9(target=es5).js │ ├── es6modulekindWithES5Target9(target=es5).symbols │ ├── es6modulekindWithES5Target9(target=es5).types │ ├── esDecorators-arguments.errors.txt │ ├── esDecorators-arguments.js │ ├── esDecorators-arguments.symbols │ ├── esDecorators-arguments.types │ ├── esDecorators-classDeclaration-accessors-nonStatic(target=es2015).js │ ├── esDecorators-classDeclaration-accessors-nonStatic(target=es2022).js │ ├── esDecorators-classDeclaration-accessors-nonStatic(target=es5).errors.txt │ ├── esDecorators-classDeclaration-accessors-nonStatic(target=es5).js │ ├── esDecorators-classDeclaration-accessors-nonStatic(target=esnext).js │ ├── esDecorators-classDeclaration-accessors-nonStaticAbstract(target=es2015).errors.txt │ ├── esDecorators-classDeclaration-accessors-nonStaticAbstract(target=es2015).js │ ├── esDecorators-classDeclaration-accessors-nonStaticAbstract(target=es2022).errors.txt │ ├── esDecorators-classDeclaration-accessors-nonStaticAbstract(target=es2022).js │ ├── esDecorators-classDeclaration-accessors-nonStaticAbstract(target=es5).errors.txt │ ├── esDecorators-classDeclaration-accessors-nonStaticAbstract(target=es5).js │ ├── esDecorators-classDeclaration-accessors-nonStaticAbstract(target=esnext).errors.txt │ ├── esDecorators-classDeclaration-accessors-nonStaticAbstract(target=esnext).js │ ├── esDecorators-classDeclaration-accessors-nonStaticPrivate(target=es2015).js │ ├── esDecorators-classDeclaration-accessors-nonStaticPrivate(target=es2022).js │ ├── esDecorators-classDeclaration-accessors-nonStaticPrivate(target=esnext).js │ ├── esDecorators-classDeclaration-accessors-static(target=es2015).js │ ├── esDecorators-classDeclaration-accessors-static(target=es2022).js │ ├── esDecorators-classDeclaration-accessors-static(target=es5).errors.txt │ ├── esDecorators-classDeclaration-accessors-static(target=es5).js │ ├── esDecorators-classDeclaration-accessors-static(target=esnext).js │ ├── esDecorators-classDeclaration-accessors-staticPrivate(target=es2015).js │ ├── esDecorators-classDeclaration-accessors-staticPrivate(target=es2022).js │ ├── esDecorators-classDeclaration-accessors-staticPrivate(target=esnext).js │ ├── esDecorators-classDeclaration-classSuper.1.js │ ├── esDecorators-classDeclaration-classSuper.2.js │ ├── esDecorators-classDeclaration-classSuper.3.js │ ├── esDecorators-classDeclaration-classSuper.4.js │ ├── esDecorators-classDeclaration-classSuper.5.js │ ├── esDecorators-classDeclaration-classSuper.6.js │ ├── esDecorators-classDeclaration-classSuper.7.js │ ├── esDecorators-classDeclaration-classThisReference(target=es2015).js │ ├── esDecorators-classDeclaration-classThisReference(target=es2022).js │ ├── esDecorators-classDeclaration-classThisReference(target=esnext).js │ ├── esDecorators-classDeclaration-classThisReference.es5(target=es2015).js │ ├── esDecorators-classDeclaration-classThisReference.es5(target=es5).errors.txt │ ├── esDecorators-classDeclaration-classThisReference.es5(target=es5).js │ ├── esDecorators-classDeclaration-commentPreservation(module=commonjs,target=es2015).js │ ├── esDecorators-classDeclaration-commentPreservation(module=commonjs,target=es2022).js │ ├── esDecorators-classDeclaration-commentPreservation(module=commonjs,target=esnext).js │ ├── esDecorators-classDeclaration-commentPreservation(module=esnext,target=es2015).js │ ├── esDecorators-classDeclaration-commentPreservation(module=esnext,target=es2022).js │ ├── esDecorators-classDeclaration-commentPreservation(module=esnext,target=esnext).js │ ├── esDecorators-classDeclaration-commonjs-classNamespaceMerge.js │ ├── esDecorators-classDeclaration-commonjs-classNamespaceMerge.symbols │ ├── esDecorators-classDeclaration-commonjs-classNamespaceMerge.types │ ├── esDecorators-classDeclaration-commonjs.js │ ├── esDecorators-classDeclaration-commonjs.symbols │ ├── esDecorators-classDeclaration-commonjs.types │ ├── esDecorators-classDeclaration-exportModifier.2.errors.txt │ ├── esDecorators-classDeclaration-exportModifier.2.js │ ├── esDecorators-classDeclaration-exportModifier.2.symbols │ ├── esDecorators-classDeclaration-exportModifier.2.types │ ├── esDecorators-classDeclaration-exportModifier.errors.txt │ ├── esDecorators-classDeclaration-exportModifier.symbols │ ├── esDecorators-classDeclaration-exportModifier.types │ ├── esDecorators-classDeclaration-fields-nonStatic(target=es2015,usedefineforclassfields=false).js │ ├── esDecorators-classDeclaration-fields-nonStatic(target=es2015,usedefineforclassfields=true).js │ ├── esDecorators-classDeclaration-fields-nonStatic(target=es2022,usedefineforclassfields=false).js │ ├── esDecorators-classDeclaration-fields-nonStatic(target=es2022,usedefineforclassfields=true).js │ ├── esDecorators-classDeclaration-fields-nonStatic(target=es5,usedefineforclassfields=false).errors.txt │ ├── esDecorators-classDeclaration-fields-nonStatic(target=es5,usedefineforclassfields=false).js │ ├── esDecorators-classDeclaration-fields-nonStatic(target=es5,usedefineforclassfields=true).errors.txt │ ├── esDecorators-classDeclaration-fields-nonStatic(target=es5,usedefineforclassfields=true).js │ ├── esDecorators-classDeclaration-fields-nonStatic(target=esnext,usedefineforclassfields=false).js │ ├── esDecorators-classDeclaration-fields-nonStatic(target=esnext,usedefineforclassfields=true).js │ ├── esDecorators-classDeclaration-fields-nonStaticAbstract(target=es2015).errors.txt │ ├── esDecorators-classDeclaration-fields-nonStaticAbstract(target=es2015).js │ ├── esDecorators-classDeclaration-fields-nonStaticAbstract(target=es2022).errors.txt │ ├── esDecorators-classDeclaration-fields-nonStaticAbstract(target=es2022).js │ ├── esDecorators-classDeclaration-fields-nonStaticAbstract(target=es5).errors.txt │ ├── esDecorators-classDeclaration-fields-nonStaticAbstract(target=es5).js │ ├── esDecorators-classDeclaration-fields-nonStaticAbstract(target=esnext).errors.txt │ ├── esDecorators-classDeclaration-fields-nonStaticAbstract(target=esnext).js │ ├── esDecorators-classDeclaration-fields-nonStaticAbstractAccessor(target=es2015).errors.txt │ ├── esDecorators-classDeclaration-fields-nonStaticAbstractAccessor(target=es2015).js │ ├── esDecorators-classDeclaration-fields-nonStaticAbstractAccessor(target=es2022).errors.txt │ ├── esDecorators-classDeclaration-fields-nonStaticAbstractAccessor(target=es2022).js │ ├── esDecorators-classDeclaration-fields-nonStaticAbstractAccessor(target=esnext).errors.txt │ ├── esDecorators-classDeclaration-fields-nonStaticAbstractAccessor(target=esnext).js │ ├── esDecorators-classDeclaration-fields-nonStaticAccessor(target=es2015).js │ ├── esDecorators-classDeclaration-fields-nonStaticAccessor(target=es2022).js │ ├── esDecorators-classDeclaration-fields-nonStaticAccessor(target=esnext).js │ ├── esDecorators-classDeclaration-fields-nonStaticAmbient(target=es2015).errors.txt │ ├── esDecorators-classDeclaration-fields-nonStaticAmbient(target=es2015).js │ ├── esDecorators-classDeclaration-fields-nonStaticAmbient(target=es2022).errors.txt │ ├── esDecorators-classDeclaration-fields-nonStaticAmbient(target=es2022).js │ ├── esDecorators-classDeclaration-fields-nonStaticAmbient(target=es5).errors.txt │ ├── esDecorators-classDeclaration-fields-nonStaticAmbient(target=es5).js │ ├── esDecorators-classDeclaration-fields-nonStaticAmbient(target=esnext).errors.txt │ ├── esDecorators-classDeclaration-fields-nonStaticAmbient(target=esnext).js │ ├── esDecorators-classDeclaration-fields-nonStaticPrivate(target=es2015).js │ ├── esDecorators-classDeclaration-fields-nonStaticPrivate(target=es2022).js │ ├── esDecorators-classDeclaration-fields-nonStaticPrivate(target=esnext).js │ ├── esDecorators-classDeclaration-fields-nonStaticPrivateAccessor(target=es2015).js │ ├── esDecorators-classDeclaration-fields-nonStaticPrivateAccessor(target=es2022).js │ ├── esDecorators-classDeclaration-fields-nonStaticPrivateAccessor(target=esnext).js │ ├── esDecorators-classDeclaration-fields-static(target=es2015,usedefineforclassfields=false).js │ ├── esDecorators-classDeclaration-fields-static(target=es2015,usedefineforclassfields=true).js │ ├── esDecorators-classDeclaration-fields-static(target=es2022,usedefineforclassfields=false).js │ ├── esDecorators-classDeclaration-fields-static(target=es2022,usedefineforclassfields=true).js │ ├── esDecorators-classDeclaration-fields-static(target=es5,usedefineforclassfields=false).errors.txt │ ├── esDecorators-classDeclaration-fields-static(target=es5,usedefineforclassfields=false).js │ ├── esDecorators-classDeclaration-fields-static(target=es5,usedefineforclassfields=true).errors.txt │ ├── esDecorators-classDeclaration-fields-static(target=es5,usedefineforclassfields=true).js │ ├── esDecorators-classDeclaration-fields-static(target=esnext,usedefineforclassfields=false).js │ ├── esDecorators-classDeclaration-fields-static(target=esnext,usedefineforclassfields=true).js │ ├── esDecorators-classDeclaration-fields-staticAccessor(target=es2015).js │ ├── esDecorators-classDeclaration-fields-staticAccessor(target=es2022).js │ ├── esDecorators-classDeclaration-fields-staticAccessor(target=esnext).js │ ├── esDecorators-classDeclaration-fields-staticAmbient(target=es2015).errors.txt │ ├── esDecorators-classDeclaration-fields-staticAmbient(target=es2015).js │ ├── esDecorators-classDeclaration-fields-staticAmbient(target=es2022).errors.txt │ ├── esDecorators-classDeclaration-fields-staticAmbient(target=es2022).js │ ├── esDecorators-classDeclaration-fields-staticAmbient(target=es5).errors.txt │ ├── esDecorators-classDeclaration-fields-staticAmbient(target=es5).js │ ├── esDecorators-classDeclaration-fields-staticAmbient(target=esnext).errors.txt │ ├── esDecorators-classDeclaration-fields-staticAmbient(target=esnext).js │ ├── esDecorators-classDeclaration-fields-staticPrivate(target=es2015).js │ ├── esDecorators-classDeclaration-fields-staticPrivate(target=es2022).js │ ├── esDecorators-classDeclaration-fields-staticPrivate(target=esnext).js │ ├── esDecorators-classDeclaration-fields-staticPrivateAccessor(target=es2015).js │ ├── esDecorators-classDeclaration-fields-staticPrivateAccessor(target=es2022).js │ ├── esDecorators-classDeclaration-fields-staticPrivateAccessor(target=esnext).js │ ├── esDecorators-classDeclaration-methods-nonStatic(target=es2015).js │ ├── esDecorators-classDeclaration-methods-nonStatic(target=es2022).js │ ├── esDecorators-classDeclaration-methods-nonStatic(target=es5).errors.txt │ ├── esDecorators-classDeclaration-methods-nonStatic(target=es5).js │ ├── esDecorators-classDeclaration-methods-nonStatic(target=esnext).js │ ├── esDecorators-classDeclaration-methods-nonStaticAbstract(target=es2015).errors.txt │ ├── esDecorators-classDeclaration-methods-nonStaticAbstract(target=es2015).js │ ├── esDecorators-classDeclaration-methods-nonStaticAbstract(target=es2022).errors.txt │ ├── esDecorators-classDeclaration-methods-nonStaticAbstract(target=es2022).js │ ├── esDecorators-classDeclaration-methods-nonStaticAbstract(target=es5).errors.txt │ ├── esDecorators-classDeclaration-methods-nonStaticAbstract(target=es5).js │ ├── esDecorators-classDeclaration-methods-nonStaticAbstract(target=esnext).errors.txt │ ├── esDecorators-classDeclaration-methods-nonStaticAbstract(target=esnext).js │ ├── esDecorators-classDeclaration-methods-nonStaticPrivate(target=es2015).js │ ├── esDecorators-classDeclaration-methods-nonStaticPrivate(target=es2022).js │ ├── esDecorators-classDeclaration-methods-nonStaticPrivate(target=esnext).js │ ├── esDecorators-classDeclaration-methods-static(target=es2015).js │ ├── esDecorators-classDeclaration-methods-static(target=es2022).js │ ├── esDecorators-classDeclaration-methods-static(target=es5).errors.txt │ ├── esDecorators-classDeclaration-methods-static(target=es5).js │ ├── esDecorators-classDeclaration-methods-static(target=esnext).js │ ├── esDecorators-classDeclaration-methods-staticPrivate(target=es2015).js │ ├── esDecorators-classDeclaration-methods-staticPrivate(target=es2022).js │ ├── esDecorators-classDeclaration-methods-staticPrivate(target=esnext).js │ ├── esDecorators-classDeclaration-missingEmitHelpers-classDecorator.1.errors.txt │ ├── esDecorators-classDeclaration-missingEmitHelpers-classDecorator.1.js │ ├── esDecorators-classDeclaration-missingEmitHelpers-classDecorator.2.errors.txt │ ├── esDecorators-classDeclaration-missingEmitHelpers-classDecorator.2.js │ ├── esDecorators-classDeclaration-missingEmitHelpers-classDecorator.3.errors.txt │ ├── esDecorators-classDeclaration-missingEmitHelpers-classDecorator.3.js │ ├── esDecorators-classDeclaration-missingEmitHelpers-nonStaticPrivateAutoAccessor.errors.txt │ ├── esDecorators-classDeclaration-missingEmitHelpers-nonStaticPrivateAutoAccessor.js │ ├── esDecorators-classDeclaration-missingEmitHelpers-nonStaticPrivateField.errors.txt │ ├── esDecorators-classDeclaration-missingEmitHelpers-nonStaticPrivateField.js │ ├── esDecorators-classDeclaration-missingEmitHelpers-nonStaticPrivateGetter.errors.txt │ ├── esDecorators-classDeclaration-missingEmitHelpers-nonStaticPrivateGetter.js │ ├── esDecorators-classDeclaration-missingEmitHelpers-nonStaticPrivateMethod.errors.txt │ ├── esDecorators-classDeclaration-missingEmitHelpers-nonStaticPrivateMethod.js │ ├── esDecorators-classDeclaration-missingEmitHelpers-nonStaticPrivateSetter.errors.txt │ ├── esDecorators-classDeclaration-missingEmitHelpers-nonStaticPrivateSetter.js │ ├── esDecorators-classDeclaration-missingEmitHelpers-staticComputedAutoAccessor.errors.txt │ ├── esDecorators-classDeclaration-missingEmitHelpers-staticComputedAutoAccessor.js │ ├── esDecorators-classDeclaration-missingEmitHelpers-staticComputedField.errors.txt │ ├── esDecorators-classDeclaration-missingEmitHelpers-staticComputedField.js │ ├── esDecorators-classDeclaration-missingEmitHelpers-staticComputedGetter.errors.txt │ ├── esDecorators-classDeclaration-missingEmitHelpers-staticComputedGetter.js │ ├── esDecorators-classDeclaration-missingEmitHelpers-staticComputedMethod.errors.txt │ ├── esDecorators-classDeclaration-missingEmitHelpers-staticComputedMethod.js │ ├── esDecorators-classDeclaration-missingEmitHelpers-staticComputedSetter.errors.txt │ ├── esDecorators-classDeclaration-missingEmitHelpers-staticComputedSetter.js │ ├── esDecorators-classDeclaration-missingEmitHelpers-staticPrivateAutoAccessor.errors.txt │ ├── esDecorators-classDeclaration-missingEmitHelpers-staticPrivateAutoAccessor.js │ ├── esDecorators-classDeclaration-missingEmitHelpers-staticPrivateField.errors.txt │ ├── esDecorators-classDeclaration-missingEmitHelpers-staticPrivateField.js │ ├── esDecorators-classDeclaration-missingEmitHelpers-staticPrivateGetter.errors.txt │ ├── esDecorators-classDeclaration-missingEmitHelpers-staticPrivateGetter.js │ ├── esDecorators-classDeclaration-missingEmitHelpers-staticPrivateMethod.errors.txt │ ├── esDecorators-classDeclaration-missingEmitHelpers-staticPrivateMethod.js │ ├── esDecorators-classDeclaration-missingEmitHelpers-staticPrivateSetter.errors.txt │ ├── esDecorators-classDeclaration-missingEmitHelpers-staticPrivateSetter.js │ ├── esDecorators-classDeclaration-multipleDecorators(target=es2015).js │ ├── esDecorators-classDeclaration-multipleDecorators(target=es2022).js │ ├── esDecorators-classDeclaration-multipleDecorators(target=es5).errors.txt │ ├── esDecorators-classDeclaration-multipleDecorators(target=es5).js │ ├── esDecorators-classDeclaration-multipleDecorators(target=esnext).js │ ├── esDecorators-classDeclaration-outerThisReference(target=es2015).js │ ├── esDecorators-classDeclaration-outerThisReference(target=es2015).symbols │ ├── esDecorators-classDeclaration-outerThisReference(target=es2015).types │ ├── esDecorators-classDeclaration-outerThisReference(target=es2021).js │ ├── esDecorators-classDeclaration-outerThisReference(target=es2021).symbols │ ├── esDecorators-classDeclaration-outerThisReference(target=es2021).types │ ├── esDecorators-classDeclaration-outerThisReference(target=es2022).js │ ├── esDecorators-classDeclaration-outerThisReference(target=es2022).symbols │ ├── esDecorators-classDeclaration-outerThisReference(target=es2022).types │ ├── esDecorators-classDeclaration-outerThisReference(target=esnext).js │ ├── esDecorators-classDeclaration-outerThisReference(target=esnext).symbols │ ├── esDecorators-classDeclaration-outerThisReference(target=esnext).types │ ├── esDecorators-classDeclaration-parameterDecorators(target=es2015).errors.txt │ ├── esDecorators-classDeclaration-parameterDecorators(target=es2015).js │ ├── esDecorators-classDeclaration-parameterDecorators(target=es2022).errors.txt │ ├── esDecorators-classDeclaration-parameterDecorators(target=es2022).js │ ├── esDecorators-classDeclaration-parameterDecorators(target=es5).errors.txt │ ├── esDecorators-classDeclaration-parameterDecorators(target=es5).js │ ├── esDecorators-classDeclaration-parameterDecorators(target=esnext).errors.txt │ ├── esDecorators-classDeclaration-parameterDecorators(target=esnext).js │ ├── esDecorators-classDeclaration-parameterProperties(target=es2015,usedefineforclassfields=false).js │ ├── esDecorators-classDeclaration-parameterProperties(target=es2015,usedefineforclassfields=true).js │ ├── esDecorators-classDeclaration-parameterProperties(target=es2022,usedefineforclassfields=false).js │ ├── esDecorators-classDeclaration-parameterProperties(target=es2022,usedefineforclassfields=true).js │ ├── esDecorators-classDeclaration-parameterProperties(target=es5,usedefineforclassfields=false).errors.txt │ ├── esDecorators-classDeclaration-parameterProperties(target=es5,usedefineforclassfields=false).js │ ├── esDecorators-classDeclaration-parameterProperties(target=es5,usedefineforclassfields=true).errors.txt │ ├── esDecorators-classDeclaration-parameterProperties(target=es5,usedefineforclassfields=true).js │ ├── esDecorators-classDeclaration-parameterProperties(target=esnext,usedefineforclassfields=false).js │ ├── esDecorators-classDeclaration-parameterProperties(target=esnext,usedefineforclassfields=true).js │ ├── esDecorators-classDeclaration-setFunctionName(target=es2015).js │ ├── esDecorators-classDeclaration-setFunctionName(target=es2022).js │ ├── esDecorators-classDeclaration-setFunctionName(target=es5).errors.txt │ ├── esDecorators-classDeclaration-setFunctionName(target=es5).js │ ├── esDecorators-classDeclaration-setFunctionName(target=esnext).js │ ├── esDecorators-classDeclaration-simpleTransformation(target=es2015).js │ ├── esDecorators-classDeclaration-simpleTransformation(target=es2022).js │ ├── esDecorators-classDeclaration-simpleTransformation(target=es5).errors.txt │ ├── esDecorators-classDeclaration-simpleTransformation(target=es5).js │ ├── esDecorators-classDeclaration-simpleTransformation(target=esnext).js │ ├── esDecorators-classDeclaration-sourceMap(target=es2015).js │ ├── esDecorators-classDeclaration-sourceMap(target=es2015).sourcemap.txt │ ├── esDecorators-classDeclaration-sourceMap(target=es2015).symbols │ ├── esDecorators-classDeclaration-sourceMap(target=es2015).types │ ├── esDecorators-classDeclaration-sourceMap(target=es2022).js │ ├── esDecorators-classDeclaration-sourceMap(target=es2022).sourcemap.txt │ ├── esDecorators-classDeclaration-sourceMap(target=es2022).symbols │ ├── esDecorators-classDeclaration-sourceMap(target=es2022).types │ ├── esDecorators-classDeclaration-sourceMap(target=esnext).js │ ├── esDecorators-classDeclaration-sourceMap(target=esnext).sourcemap.txt │ ├── esDecorators-classDeclaration-sourceMap(target=esnext).symbols │ ├── esDecorators-classDeclaration-sourceMap(target=esnext).types │ ├── esDecorators-classExpression-classSuper.1.js │ ├── esDecorators-classExpression-classSuper.2.js │ ├── esDecorators-classExpression-classSuper.3.js │ ├── esDecorators-classExpression-classSuper.4.js │ ├── esDecorators-classExpression-classSuper.5.js │ ├── esDecorators-classExpression-classSuper.6.js │ ├── esDecorators-classExpression-commentPreservation(target=es2015).js │ ├── esDecorators-classExpression-commentPreservation(target=es2022).js │ ├── esDecorators-classExpression-commentPreservation(target=esnext).js │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.1.errors.txt │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.1.js │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.10.errors.txt │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.10.js │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.11.errors.txt │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.11.js │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.12.errors.txt │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.12.js │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.13.errors.txt │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.13.js │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.14.errors.txt │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.14.js │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.15.errors.txt │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.15.js │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.16.errors.txt │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.16.js │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.17.errors.txt │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.17.js │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.2.errors.txt │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.2.js │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.3.errors.txt │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.3.js │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.4.errors.txt │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.4.js │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.5.errors.txt │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.5.js │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.6.errors.txt │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.6.js │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.7.errors.txt │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.7.js │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.8.errors.txt │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.8.js │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.9.errors.txt │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.9.js │ ├── esDecorators-classExpression-namedEvaluation.1.js │ ├── esDecorators-classExpression-namedEvaluation.10.js │ ├── esDecorators-classExpression-namedEvaluation.11.js │ ├── esDecorators-classExpression-namedEvaluation.2.js │ ├── esDecorators-classExpression-namedEvaluation.3.js │ ├── esDecorators-classExpression-namedEvaluation.4.js │ ├── esDecorators-classExpression-namedEvaluation.5.js │ ├── esDecorators-classExpression-namedEvaluation.6.js │ ├── esDecorators-classExpression-namedEvaluation.7.js │ ├── esDecorators-classExpression-namedEvaluation.8.js │ ├── esDecorators-classExpression-namedEvaluation.9.js │ ├── esDecorators-contextualTypes.2.js │ ├── esDecorators-contextualTypes.2.symbols │ ├── esDecorators-contextualTypes.2.types │ ├── esDecorators-contextualTypes.js │ ├── esDecorators-contextualTypes.symbols │ ├── esDecorators-contextualTypes.types │ ├── esDecorators-decoratorExpression.1(experimentaldecorators=false).errors.txt │ ├── esDecorators-decoratorExpression.1(experimentaldecorators=false).js │ ├── esDecorators-decoratorExpression.1(experimentaldecorators=true).errors.txt │ ├── esDecorators-decoratorExpression.1(experimentaldecorators=true).js │ ├── esDecorators-decoratorExpression.2(experimentaldecorators=false).js │ ├── esDecorators-decoratorExpression.2(experimentaldecorators=true).js │ ├── esDecorators-decoratorExpression.3(experimentaldecorators=false).errors.txt │ ├── esDecorators-decoratorExpression.3(experimentaldecorators=false).js │ ├── esDecorators-decoratorExpression.3(experimentaldecorators=true).errors.txt │ ├── esDecorators-decoratorExpression.3(experimentaldecorators=true).js │ ├── esDecorators-emitDecoratorMetadata(target=es2015).errors.txt │ ├── esDecorators-emitDecoratorMetadata(target=es2015).js │ ├── esDecorators-emitDecoratorMetadata(target=es2022).errors.txt │ ├── esDecorators-emitDecoratorMetadata(target=es2022).js │ ├── esDecorators-emitDecoratorMetadata(target=es5).errors.txt │ ├── esDecorators-emitDecoratorMetadata(target=es5).js │ ├── esDecorators-emitDecoratorMetadata(target=esnext).errors.txt │ ├── esDecorators-emitDecoratorMetadata(target=esnext).js │ ├── esDecorators-preservesThis.js │ ├── esDecorators-preservesThis.symbols │ ├── esDecorators-preservesThis.types │ ├── esDecorators-privateFieldAccess.errors.txt │ ├── esDecorators-privateFieldAccess.js │ ├── esDecorators-privateFieldAccess.symbols │ ├── esDecorators-privateFieldAccess.types │ ├── esDecoratorsClassFieldsCrash.js │ ├── esDecoratorsMetadata1(target=es2015).js │ ├── esDecoratorsMetadata1(target=es2022).js │ ├── esDecoratorsMetadata2(target=es2015).js │ ├── esDecoratorsMetadata2(target=es2022).js │ ├── esDecoratorsMetadata3(target=es2015).js │ ├── esDecoratorsMetadata3(target=es2022).js │ ├── esDecoratorsMetadata4(target=es2015).js │ ├── esDecoratorsMetadata4(target=es2022).js │ ├── esDecoratorsMetadata5.js │ ├── esModuleInterop.js │ ├── esModuleInterop.symbols │ ├── esModuleInterop.types │ ├── esModuleInteropDefaultImports.errors.txt │ ├── esModuleInteropDefaultImports.js │ ├── esModuleInteropDefaultImports.symbols │ ├── esModuleInteropDefaultImports.types │ ├── esModuleInteropDefaultMemberMustBeSyntacticallyDefaultExport.js │ ├── esModuleInteropDefaultMemberMustBeSyntacticallyDefaultExport.symbols │ ├── esModuleInteropDefaultMemberMustBeSyntacticallyDefaultExport.types │ ├── esModuleInteropEnablesSyntheticDefaultImports.js │ ├── esModuleInteropEnablesSyntheticDefaultImports.symbols │ ├── esModuleInteropEnablesSyntheticDefaultImports.types │ ├── esModuleInteropFindAllReferences.baseline.jsonc │ ├── esModuleInteropFindAllReferences2.baseline.jsonc │ ├── esModuleInteropImportCall.js │ ├── esModuleInteropImportCall.symbols │ ├── esModuleInteropImportCall.types │ ├── esModuleInteropImportDefaultWhenAllNamedAreDefaultAlias.errors.txt │ ├── esModuleInteropImportDefaultWhenAllNamedAreDefaultAlias.js │ ├── esModuleInteropImportDefaultWhenAllNamedAreDefaultAlias.symbols │ ├── esModuleInteropImportDefaultWhenAllNamedAreDefaultAlias.types │ ├── esModuleInteropImportNamespace.js │ ├── esModuleInteropImportNamespace.symbols │ ├── esModuleInteropImportNamespace.types │ ├── esModuleInteropImportTSLibHasImport.js │ ├── esModuleInteropImportTSLibHasImport.symbols │ ├── esModuleInteropImportTSLibHasImport.types │ ├── esModuleInteropNamedDefaultImports.js │ ├── esModuleInteropNamedDefaultImports.symbols │ ├── esModuleInteropNamedDefaultImports.types │ ├── esModuleInteropPrettyErrorRelatedInformation.errors.txt │ ├── esModuleInteropPrettyErrorRelatedInformation.js │ ├── esModuleInteropPrettyErrorRelatedInformation.symbols │ ├── esModuleInteropPrettyErrorRelatedInformation.types │ ├── esModuleInteropTslibHelpers.errors.txt │ ├── esModuleInteropTslibHelpers.js │ ├── esModuleInteropTslibHelpers.symbols │ ├── esModuleInteropTslibHelpers.types │ ├── esModuleInteropUsesExportStarWhenDefaultPlusNames.errors.txt │ ├── esModuleInteropUsesExportStarWhenDefaultPlusNames.js │ ├── esModuleInteropUsesExportStarWhenDefaultPlusNames.symbols │ ├── esModuleInteropUsesExportStarWhenDefaultPlusNames.types │ ├── esModuleInteropWithExportStar(target=es2015).js │ ├── esModuleInteropWithExportStar(target=es2015).symbols │ ├── esModuleInteropWithExportStar(target=es2015).types │ ├── esModuleInteropWithExportStar(target=es5).errors.txt │ ├── esModuleInteropWithExportStar(target=es5).js │ ├── esModuleInteropWithExportStar(target=es5).symbols │ ├── esModuleInteropWithExportStar(target=es5).types │ ├── esModuleIntersectionCrash.js │ ├── esModuleIntersectionCrash.symbols │ ├── esModuleIntersectionCrash.types │ ├── esNextWeakRefs_IterableWeakMap.js │ ├── esNextWeakRefs_IterableWeakMap.symbols │ ├── esNextWeakRefs_IterableWeakMap.types │ ├── escapedIdentifiers.errors.txt │ ├── escapedIdentifiers.js │ ├── escapedIdentifiers.symbols │ ├── escapedIdentifiers.types │ ├── escapedReservedCompilerNamedIdentifier.js │ ├── escapedReservedCompilerNamedIdentifier.symbols │ ├── escapedReservedCompilerNamedIdentifier.types │ ├── esmModeDeclarationFileWithExportAssignment.errors.txt │ ├── esmModeDeclarationFileWithExportAssignment.js │ ├── esmModeDeclarationFileWithExportAssignment.symbols │ ├── esmModeDeclarationFileWithExportAssignment.types │ ├── esmModuleExports1.errors.txt │ ├── esmModuleExports1.symbols │ ├── esmModuleExports1.types │ ├── esmModuleExports2(esmoduleinterop=false).errors.txt │ ├── esmModuleExports2(esmoduleinterop=false).symbols │ ├── esmModuleExports2(esmoduleinterop=false).types │ ├── esmModuleExports2(esmoduleinterop=true).errors.txt │ ├── esmModuleExports2(esmoduleinterop=true).symbols │ ├── esmModuleExports2(esmoduleinterop=true).types │ ├── esmModuleExports3.errors.txt │ ├── esmModuleExports3.symbols │ ├── esmModuleExports3.types │ ├── esmNoSynthesizedDefault(module=esnext).errors.txt │ ├── esmNoSynthesizedDefault(module=esnext).js │ ├── esmNoSynthesizedDefault(module=esnext).symbols │ ├── esmNoSynthesizedDefault(module=esnext).types │ ├── esmNoSynthesizedDefault(module=preserve).errors.txt │ ├── esmNoSynthesizedDefault(module=preserve).js │ ├── esmNoSynthesizedDefault(module=preserve).symbols │ ├── esmNoSynthesizedDefault(module=preserve).types │ ├── esnextSharedMemory.js │ ├── esnextSharedMemory.symbols │ ├── esnextSharedMemory.types │ ├── esnextmodulekind.js │ ├── esnextmodulekind.symbols │ ├── esnextmodulekind.types │ ├── esnextmodulekindWithES2015Target.js │ ├── esnextmodulekindWithES2015Target.symbols │ ├── esnextmodulekindWithES2015Target.types │ ├── esnextmodulekindWithES5Target(target=es2015).js │ ├── esnextmodulekindWithES5Target(target=es2015).symbols │ ├── esnextmodulekindWithES5Target(target=es2015).types │ ├── esnextmodulekindWithES5Target(target=es5).errors.txt │ ├── esnextmodulekindWithES5Target(target=es5).js │ ├── esnextmodulekindWithES5Target(target=es5).symbols │ ├── esnextmodulekindWithES5Target(target=es5).types │ ├── esnextmodulekindWithES5Target10(target=es2015).errors.txt │ ├── esnextmodulekindWithES5Target10(target=es2015).js │ ├── esnextmodulekindWithES5Target10(target=es2015).symbols │ ├── esnextmodulekindWithES5Target10(target=es2015).types │ ├── esnextmodulekindWithES5Target10(target=es5).errors.txt │ ├── esnextmodulekindWithES5Target10(target=es5).js │ ├── esnextmodulekindWithES5Target10(target=es5).symbols │ ├── esnextmodulekindWithES5Target10(target=es5).types │ ├── esnextmodulekindWithES5Target11(target=es2015).js │ ├── esnextmodulekindWithES5Target11(target=es2015).symbols │ ├── esnextmodulekindWithES5Target11(target=es2015).types │ ├── esnextmodulekindWithES5Target11(target=es5).errors.txt │ ├── esnextmodulekindWithES5Target11(target=es5).js │ ├── esnextmodulekindWithES5Target11(target=es5).symbols │ ├── esnextmodulekindWithES5Target11(target=es5).types │ ├── esnextmodulekindWithES5Target12(target=es2015).js │ ├── esnextmodulekindWithES5Target12(target=es2015).symbols │ ├── esnextmodulekindWithES5Target12(target=es2015).types │ ├── esnextmodulekindWithES5Target12(target=es5).errors.txt │ ├── esnextmodulekindWithES5Target12(target=es5).js │ ├── esnextmodulekindWithES5Target12(target=es5).symbols │ ├── esnextmodulekindWithES5Target12(target=es5).types │ ├── esnextmodulekindWithES5Target2(target=es2015).js │ ├── esnextmodulekindWithES5Target2(target=es2015).symbols │ ├── esnextmodulekindWithES5Target2(target=es2015).types │ ├── esnextmodulekindWithES5Target2(target=es5).errors.txt │ ├── esnextmodulekindWithES5Target2(target=es5).js │ ├── esnextmodulekindWithES5Target2(target=es5).symbols │ ├── esnextmodulekindWithES5Target2(target=es5).types │ ├── esnextmodulekindWithES5Target3(target=es2015).js │ ├── esnextmodulekindWithES5Target3(target=es2015).symbols │ ├── esnextmodulekindWithES5Target3(target=es2015).types │ ├── esnextmodulekindWithES5Target3(target=es5).errors.txt │ ├── esnextmodulekindWithES5Target3(target=es5).js │ ├── esnextmodulekindWithES5Target3(target=es5).symbols │ ├── esnextmodulekindWithES5Target3(target=es5).types │ ├── esnextmodulekindWithES5Target4(target=es2015).js │ ├── esnextmodulekindWithES5Target4(target=es2015).symbols │ ├── esnextmodulekindWithES5Target4(target=es2015).types │ ├── esnextmodulekindWithES5Target4(target=es5).errors.txt │ ├── esnextmodulekindWithES5Target4(target=es5).js │ ├── esnextmodulekindWithES5Target4(target=es5).symbols │ ├── esnextmodulekindWithES5Target4(target=es5).types │ ├── esnextmodulekindWithES5Target5(target=es2015).js │ ├── esnextmodulekindWithES5Target5(target=es2015).symbols │ ├── esnextmodulekindWithES5Target5(target=es2015).types │ ├── esnextmodulekindWithES5Target5(target=es5).errors.txt │ ├── esnextmodulekindWithES5Target5(target=es5).js │ ├── esnextmodulekindWithES5Target5(target=es5).symbols │ ├── esnextmodulekindWithES5Target5(target=es5).types │ ├── esnextmodulekindWithES5Target6(target=es2015).js │ ├── esnextmodulekindWithES5Target6(target=es2015).symbols │ ├── esnextmodulekindWithES5Target6(target=es2015).types │ ├── esnextmodulekindWithES5Target6(target=es5).errors.txt │ ├── esnextmodulekindWithES5Target6(target=es5).js │ ├── esnextmodulekindWithES5Target6(target=es5).symbols │ ├── esnextmodulekindWithES5Target6(target=es5).types │ ├── esnextmodulekindWithES5Target7(target=es2015).js │ ├── esnextmodulekindWithES5Target7(target=es2015).symbols │ ├── esnextmodulekindWithES5Target7(target=es2015).types │ ├── esnextmodulekindWithES5Target7(target=es5).errors.txt │ ├── esnextmodulekindWithES5Target7(target=es5).js │ ├── esnextmodulekindWithES5Target7(target=es5).symbols │ ├── esnextmodulekindWithES5Target7(target=es5).types │ ├── esnextmodulekindWithES5Target8(target=es2015).js │ ├── esnextmodulekindWithES5Target8(target=es2015).symbols │ ├── esnextmodulekindWithES5Target8(target=es2015).types │ ├── esnextmodulekindWithES5Target8(target=es5).errors.txt │ ├── esnextmodulekindWithES5Target8(target=es5).js │ ├── esnextmodulekindWithES5Target8(target=es5).symbols │ ├── esnextmodulekindWithES5Target8(target=es5).types │ ├── esnextmodulekindWithES5Target9(target=es2015).errors.txt │ ├── esnextmodulekindWithES5Target9(target=es2015).js │ ├── esnextmodulekindWithES5Target9(target=es2015).symbols │ ├── esnextmodulekindWithES5Target9(target=es2015).types │ ├── esnextmodulekindWithES5Target9(target=es5).errors.txt │ ├── esnextmodulekindWithES5Target9(target=es5).js │ ├── esnextmodulekindWithES5Target9(target=es5).symbols │ ├── esnextmodulekindWithES5Target9(target=es5).types │ ├── evalAfter0.errors.txt │ ├── evalAfter0.js │ ├── evalAfter0.symbols │ ├── evalAfter0.types │ ├── evalOrArgumentsInDeclarationFunctions.symbols │ ├── evalOrArgumentsInDeclarationFunctions.types │ ├── eventEmitterPatternWithRecordOfFunction.js │ ├── eventEmitterPatternWithRecordOfFunction.symbols │ ├── eventEmitterPatternWithRecordOfFunction.types │ ├── everyTypeAssignableToAny.errors.txt │ ├── everyTypeAssignableToAny.js │ ├── everyTypeAssignableToAny.symbols │ ├── everyTypeAssignableToAny.types │ ├── everyTypeWithAnnotationAndInitializer.errors.txt │ ├── everyTypeWithAnnotationAndInitializer.js │ ├── everyTypeWithAnnotationAndInitializer.symbols │ ├── everyTypeWithAnnotationAndInitializer.types │ ├── everyTypeWithAnnotationAndInvalidInitializer.errors.txt │ ├── everyTypeWithAnnotationAndInvalidInitializer.js │ ├── everyTypeWithAnnotationAndInvalidInitializer.symbols │ ├── everyTypeWithAnnotationAndInvalidInitializer.types │ ├── everyTypeWithInitializer.js │ ├── everyTypeWithInitializer.symbols │ ├── everyTypeWithInitializer.types │ ├── evolvingArrayResolvedAssert.errors.txt │ ├── evolvingArrayResolvedAssert.js │ ├── evolvingArrayResolvedAssert.symbols │ ├── evolvingArrayResolvedAssert.types │ ├── evolvingArrayTypeInAssert.js │ ├── evolvingArrayTypeInAssert.symbols │ ├── evolvingArrayTypeInAssert.types │ ├── exactOptionalPropertyTypesIdentical.errors.txt │ ├── exactOptionalPropertyTypesIdentical.js │ ├── exactOptionalPropertyTypesIdentical.symbols │ ├── exactOptionalPropertyTypesIdentical.types │ ├── exactSpellingSuggestion.errors.txt │ ├── exactSpellingSuggestion.js │ ├── exactSpellingSuggestion.symbols │ ├── exactSpellingSuggestion.types │ ├── excessPropertiesInOverloads.errors.txt │ ├── excessPropertiesInOverloads.js │ ├── excessPropertiesInOverloads.symbols │ ├── excessPropertiesInOverloads.types │ ├── excessPropertyCheckIntersectionWithIndexSignature.errors.txt │ ├── excessPropertyCheckIntersectionWithIndexSignature.js │ ├── excessPropertyCheckIntersectionWithIndexSignature.symbols │ ├── excessPropertyCheckIntersectionWithIndexSignature.types │ ├── excessPropertyCheckIntersectionWithRecursiveType.errors.txt │ ├── excessPropertyCheckIntersectionWithRecursiveType.symbols │ ├── excessPropertyCheckIntersectionWithRecursiveType.types │ ├── excessPropertyCheckWithEmptyObject.errors.txt │ ├── excessPropertyCheckWithEmptyObject.js │ ├── excessPropertyCheckWithEmptyObject.symbols │ ├── excessPropertyCheckWithEmptyObject.types │ ├── excessPropertyCheckWithMultipleDiscriminants.errors.txt │ ├── excessPropertyCheckWithMultipleDiscriminants.js │ ├── excessPropertyCheckWithMultipleDiscriminants.symbols │ ├── excessPropertyCheckWithMultipleDiscriminants.types │ ├── excessPropertyCheckWithNestedArrayIntersection.js │ ├── excessPropertyCheckWithNestedArrayIntersection.symbols │ ├── excessPropertyCheckWithNestedArrayIntersection.types │ ├── excessPropertyCheckWithSpread.errors.txt │ ├── excessPropertyCheckWithSpread.js │ ├── excessPropertyCheckWithSpread.symbols │ ├── excessPropertyCheckWithSpread.types │ ├── excessPropertyCheckWithUnions.errors.txt │ ├── excessPropertyCheckWithUnions.js │ ├── excessPropertyCheckWithUnions.symbols │ ├── excessPropertyCheckWithUnions.types │ ├── excessPropertyCheckingIntersectionWithConditional.js │ ├── excessPropertyCheckingIntersectionWithConditional.symbols │ ├── excessPropertyCheckingIntersectionWithConditional.types │ ├── excessPropertyChecksWithNestedIntersections.errors.txt │ ├── excessPropertyChecksWithNestedIntersections.js │ ├── excessPropertyChecksWithNestedIntersections.symbols │ ├── excessPropertyChecksWithNestedIntersections.types │ ├── excessPropertyErrorForFunctionTypes.errors.txt │ ├── excessPropertyErrorForFunctionTypes.js │ ├── excessPropertyErrorForFunctionTypes.symbols │ ├── excessPropertyErrorForFunctionTypes.types │ ├── excessPropertyErrorsSuppressed.errors.txt │ ├── excessPropertyErrorsSuppressed.js │ ├── excessPropertyErrorsSuppressed.symbols │ ├── excessPropertyErrorsSuppressed.types │ ├── excessiveStackDepthFlatArray.errors.txt │ ├── excessiveStackDepthFlatArray.js │ ├── excessiveStackDepthFlatArray.symbols │ ├── excessiveStackDepthFlatArray.types │ ├── excessivelyLargeTupleSpread.errors.txt │ ├── excessivelyLargeTupleSpread.js │ ├── excessivelyLargeTupleSpread.symbols │ ├── excessivelyLargeTupleSpread.types │ ├── exhaustiveCaseCompletions9.baseline │ ├── exhaustiveSwitchCheckCircularity.errors.txt │ ├── exhaustiveSwitchCheckCircularity.js │ ├── exhaustiveSwitchCheckCircularity.symbols │ ├── exhaustiveSwitchCheckCircularity.types │ ├── exhaustiveSwitchImplicitReturn.errors.txt │ ├── exhaustiveSwitchImplicitReturn.js │ ├── exhaustiveSwitchImplicitReturn.symbols │ ├── exhaustiveSwitchImplicitReturn.types │ ├── exhaustiveSwitchStatements1.errors.txt │ ├── exhaustiveSwitchStatements1.js │ ├── exhaustiveSwitchStatements1.symbols │ ├── exhaustiveSwitchStatements1.types │ ├── exhaustiveSwitchWithWideningLiteralTypes.js │ ├── exhaustiveSwitchWithWideningLiteralTypes.symbols │ ├── exhaustiveSwitchWithWideningLiteralTypes.types │ ├── exnextmodulekindExportClassNameWithObject(target=es2015).js │ ├── exnextmodulekindExportClassNameWithObject(target=es2015).symbols │ ├── exnextmodulekindExportClassNameWithObject(target=es2015).types │ ├── exnextmodulekindExportClassNameWithObject(target=es5).errors.txt │ ├── exnextmodulekindExportClassNameWithObject(target=es5).js │ ├── exnextmodulekindExportClassNameWithObject(target=es5).symbols │ ├── exnextmodulekindExportClassNameWithObject(target=es5).types │ ├── expandoFunctionBlockShadowing.js │ ├── expandoFunctionBlockShadowing.symbols │ ├── expandoFunctionBlockShadowing.types │ ├── expandoFunctionContextualTypes.js │ ├── expandoFunctionContextualTypes.symbols │ ├── expandoFunctionContextualTypes.types │ ├── expandoFunctionContextualTypesJSDocInTs.js │ ├── expandoFunctionContextualTypesJSDocInTs.symbols │ ├── expandoFunctionContextualTypesJSDocInTs.types │ ├── expandoFunctionContextualTypesJs.symbols │ ├── expandoFunctionContextualTypesJs.types │ ├── expandoFunctionContextualTypesNoValue.errors.txt │ ├── expandoFunctionContextualTypesNoValue.js │ ├── expandoFunctionContextualTypesNoValue.symbols │ ├── expandoFunctionContextualTypesNoValue.types │ ├── expandoFunctionExpressionsWithDynamicNames.js │ ├── expandoFunctionExpressionsWithDynamicNames.symbols │ ├── expandoFunctionExpressionsWithDynamicNames.types │ ├── expandoFunctionExpressionsWithDynamicNames2.symbols │ ├── expandoFunctionExpressionsWithDynamicNames2.types │ ├── expandoFunctionNestedAssigments.errors.txt │ ├── expandoFunctionNestedAssigments.js │ ├── expandoFunctionNestedAssigments.symbols │ ├── expandoFunctionNestedAssigments.types │ ├── expandoFunctionNestedAssigmentsDeclared.js │ ├── expandoFunctionNestedAssigmentsDeclared.symbols │ ├── expandoFunctionNestedAssigmentsDeclared.types │ ├── expandoFunctionNullishProperty.js │ ├── expandoFunctionNullishProperty.symbols │ ├── expandoFunctionNullishProperty.types │ ├── expandoFunctionSymbolProperty.js │ ├── expandoFunctionSymbolProperty.symbols │ ├── expandoFunctionSymbolProperty.types │ ├── expandoFunctionSymbolPropertyJs.js │ ├── expandoFunctionSymbolPropertyJs.symbols │ ├── expandoFunctionSymbolPropertyJs.types │ ├── expandoOnAlias.errors.txt │ ├── expandoOnAlias.js │ ├── expandoOnAlias.symbols │ ├── expandoOnAlias.types │ ├── experimentalDecoratorMetadataUnresolvedTypeObjectInEmit.errors.txt │ ├── experimentalDecoratorMetadataUnresolvedTypeObjectInEmit.js │ ├── experimentalDecoratorMetadataUnresolvedTypeObjectInEmit.symbols │ ├── experimentalDecoratorMetadataUnresolvedTypeObjectInEmit.types │ ├── explainFilesNodeNextWithTypesReference.baseline.jsonc │ ├── explicitAnyAfterSpreadNoImplicitAnyError.js │ ├── explicitAnyAfterSpreadNoImplicitAnyError.symbols │ ├── explicitAnyAfterSpreadNoImplicitAnyError.types │ ├── exponentiationOperatorInTemplateStringWithSyntaxError1(target=es2015).errors.txt │ ├── exponentiationOperatorInTemplateStringWithSyntaxError1(target=es2015).js │ ├── exponentiationOperatorInTemplateStringWithSyntaxError1(target=es2015).symbols │ ├── exponentiationOperatorInTemplateStringWithSyntaxError1(target=es2015).types │ ├── exponentiationOperatorInTemplateStringWithSyntaxError1(target=es5).errors.txt │ ├── exponentiationOperatorInTemplateStringWithSyntaxError1(target=es5).js │ ├── exponentiationOperatorInTemplateStringWithSyntaxError1(target=es5).symbols │ ├── exponentiationOperatorInTemplateStringWithSyntaxError1(target=es5).types │ ├── exponentiationOperatorInTemplateStringWithSyntaxError2(target=es2015).errors.txt │ ├── exponentiationOperatorInTemplateStringWithSyntaxError2(target=es2015).js │ ├── exponentiationOperatorInTemplateStringWithSyntaxError2(target=es2015).symbols │ ├── exponentiationOperatorInTemplateStringWithSyntaxError2(target=es2015).types │ ├── exponentiationOperatorInTemplateStringWithSyntaxError2(target=es5).errors.txt │ ├── exponentiationOperatorInTemplateStringWithSyntaxError2(target=es5).js │ ├── exponentiationOperatorInTemplateStringWithSyntaxError2(target=es5).symbols │ ├── exponentiationOperatorInTemplateStringWithSyntaxError2(target=es5).types │ ├── exponentiationOperatorInTemplateStringWithSyntaxError3(target=es2015).errors.txt │ ├── exponentiationOperatorInTemplateStringWithSyntaxError3(target=es2015).js │ ├── exponentiationOperatorInTemplateStringWithSyntaxError3(target=es2015).symbols │ ├── exponentiationOperatorInTemplateStringWithSyntaxError3(target=es2015).types │ ├── exponentiationOperatorInTemplateStringWithSyntaxError3(target=es5).errors.txt │ ├── exponentiationOperatorInTemplateStringWithSyntaxError3(target=es5).js │ ├── exponentiationOperatorInTemplateStringWithSyntaxError3(target=es5).symbols │ ├── exponentiationOperatorInTemplateStringWithSyntaxError3(target=es5).types │ ├── exponentiationOperatorSyntaxError1(target=es2015).errors.txt │ ├── exponentiationOperatorSyntaxError1(target=es2015).js │ ├── exponentiationOperatorSyntaxError1(target=es2015).symbols │ ├── exponentiationOperatorSyntaxError1(target=es2015).types │ ├── exponentiationOperatorSyntaxError1(target=es5).errors.txt │ ├── exponentiationOperatorSyntaxError1(target=es5).js │ ├── exponentiationOperatorSyntaxError1(target=es5).symbols │ ├── exponentiationOperatorSyntaxError1(target=es5).types │ ├── exponentiationOperatorSyntaxError2(target=es2015).errors.txt │ ├── exponentiationOperatorSyntaxError2(target=es2015).js │ ├── exponentiationOperatorSyntaxError2(target=es2015).symbols │ ├── exponentiationOperatorSyntaxError2(target=es2015).types │ ├── exponentiationOperatorSyntaxError2(target=es5).errors.txt │ ├── exponentiationOperatorSyntaxError2(target=es5).js │ ├── exponentiationOperatorSyntaxError2(target=es5).symbols │ ├── exponentiationOperatorSyntaxError2(target=es5).types │ ├── exponentiationOperatorWithAnyAndNumber.errors.txt │ ├── exponentiationOperatorWithAnyAndNumber.js │ ├── exponentiationOperatorWithAnyAndNumber.symbols │ ├── exponentiationOperatorWithAnyAndNumber.types │ ├── exponentiationOperatorWithEnum.errors.txt │ ├── exponentiationOperatorWithEnum.js │ ├── exponentiationOperatorWithEnum.symbols │ ├── exponentiationOperatorWithEnum.types │ ├── exponentiationOperatorWithEnumUnion.errors.txt │ ├── exponentiationOperatorWithEnumUnion.js │ ├── exponentiationOperatorWithEnumUnion.symbols │ ├── exponentiationOperatorWithEnumUnion.types │ ├── exponentiationOperatorWithInvalidOperands.errors.txt │ ├── exponentiationOperatorWithInvalidOperands.js │ ├── exponentiationOperatorWithInvalidOperands.symbols │ ├── exponentiationOperatorWithInvalidOperands.types │ ├── exponentiationOperatorWithInvalidSimpleUnaryExpressionOperands.errors.txt │ ├── exponentiationOperatorWithInvalidSimpleUnaryExpressionOperands.js │ ├── exponentiationOperatorWithInvalidSimpleUnaryExpressionOperands.symbols │ ├── exponentiationOperatorWithInvalidSimpleUnaryExpressionOperands.types │ ├── exponentiationOperatorWithNew.errors.txt │ ├── exponentiationOperatorWithNew.js │ ├── exponentiationOperatorWithNew.symbols │ ├── exponentiationOperatorWithNew.types │ ├── exponentiationOperatorWithNullValueAndInvalidOperands.errors.txt │ ├── exponentiationOperatorWithNullValueAndInvalidOperands.js │ ├── exponentiationOperatorWithNullValueAndInvalidOperands.symbols │ ├── exponentiationOperatorWithNullValueAndInvalidOperands.types │ ├── exponentiationOperatorWithNullValueAndValidOperands.errors.txt │ ├── exponentiationOperatorWithNullValueAndValidOperands.js │ ├── exponentiationOperatorWithNullValueAndValidOperands.symbols │ ├── exponentiationOperatorWithNullValueAndValidOperands.types │ ├── exponentiationOperatorWithOnlyNullValueOrUndefinedValue.errors.txt │ ├── exponentiationOperatorWithOnlyNullValueOrUndefinedValue.js │ ├── exponentiationOperatorWithOnlyNullValueOrUndefinedValue.symbols │ ├── exponentiationOperatorWithOnlyNullValueOrUndefinedValue.types │ ├── exponentiationOperatorWithTemplateStringInvalid(target=es2015).errors.txt │ ├── exponentiationOperatorWithTemplateStringInvalid(target=es2015).js │ ├── exponentiationOperatorWithTemplateStringInvalid(target=es2015).symbols │ ├── exponentiationOperatorWithTemplateStringInvalid(target=es2015).types │ ├── exponentiationOperatorWithTemplateStringInvalid(target=es5).errors.txt │ ├── exponentiationOperatorWithTemplateStringInvalid(target=es5).js │ ├── exponentiationOperatorWithTemplateStringInvalid(target=es5).symbols │ ├── exponentiationOperatorWithTemplateStringInvalid(target=es5).types │ ├── exponentiationOperatorWithTemplateStringInvalidES6.errors.txt │ ├── exponentiationOperatorWithTemplateStringInvalidES6.js │ ├── exponentiationOperatorWithTemplateStringInvalidES6.symbols │ ├── exponentiationOperatorWithTemplateStringInvalidES6.types │ ├── exponentiationOperatorWithTypeParameter.errors.txt │ ├── exponentiationOperatorWithTypeParameter.js │ ├── exponentiationOperatorWithTypeParameter.symbols │ ├── exponentiationOperatorWithTypeParameter.types │ ├── exponentiationOperatorWithUndefinedValueAndInvalidOperands.errors.txt │ ├── exponentiationOperatorWithUndefinedValueAndInvalidOperands.js │ ├── exponentiationOperatorWithUndefinedValueAndInvalidOperands.symbols │ ├── exponentiationOperatorWithUndefinedValueAndInvalidOperands.types │ ├── exponentiationOperatorWithUndefinedValueAndValidOperands.errors.txt │ ├── exponentiationOperatorWithUndefinedValueAndValidOperands.js │ ├── exponentiationOperatorWithUndefinedValueAndValidOperands.symbols │ ├── exponentiationOperatorWithUndefinedValueAndValidOperands.types │ ├── exportAlreadySeen.errors.txt │ ├── exportAlreadySeen.js │ ├── exportAlreadySeen.symbols │ ├── exportAlreadySeen.types │ ├── exportAmbientClassNameWithObject(target=es2015).js │ ├── exportAmbientClassNameWithObject(target=es2015).symbols │ ├── exportAmbientClassNameWithObject(target=es2015).types │ ├── exportAmbientClassNameWithObject(target=es5).errors.txt │ ├── exportAmbientClassNameWithObject(target=es5).js │ ├── exportAmbientClassNameWithObject(target=es5).symbols │ ├── exportAmbientClassNameWithObject(target=es5).types │ ├── exportAndImport-es5(target=es2015).js │ ├── exportAndImport-es5(target=es2015).symbols │ ├── exportAndImport-es5(target=es2015).types │ ├── exportAndImport-es5(target=es5).errors.txt │ ├── exportAndImport-es5(target=es5).js │ ├── exportAndImport-es5(target=es5).symbols │ ├── exportAndImport-es5(target=es5).types │ ├── exportAndImport-es5-amd(target=es2015).errors.txt │ ├── exportAndImport-es5-amd(target=es2015).js │ ├── exportAndImport-es5-amd(target=es2015).symbols │ ├── exportAndImport-es5-amd(target=es2015).types │ ├── exportAndImport-es5-amd(target=es5).errors.txt │ ├── exportAndImport-es5-amd(target=es5).js │ ├── exportAndImport-es5-amd(target=es5).symbols │ ├── exportAndImport-es5-amd(target=es5).types │ ├── exportArrayBindingPattern.js │ ├── exportArrayBindingPattern.symbols │ ├── exportArrayBindingPattern.types │ ├── exportAsNamespace.d.symbols │ ├── exportAsNamespace.d.types │ ├── exportAsNamespace1(module=amd).errors.txt │ ├── exportAsNamespace1(module=amd).js │ ├── exportAsNamespace1(module=amd).symbols │ ├── exportAsNamespace1(module=amd).types │ ├── exportAsNamespace1(module=commonjs).errors.txt │ ├── exportAsNamespace1(module=commonjs).js │ ├── exportAsNamespace1(module=commonjs).symbols │ ├── exportAsNamespace1(module=commonjs).types │ ├── exportAsNamespace1(module=es2015).errors.txt │ ├── exportAsNamespace1(module=es2015).js │ ├── exportAsNamespace1(module=es2015).symbols │ ├── exportAsNamespace1(module=es2015).types │ ├── exportAsNamespace1(module=esnext).errors.txt │ ├── exportAsNamespace1(module=esnext).js │ ├── exportAsNamespace1(module=esnext).symbols │ ├── exportAsNamespace1(module=esnext).types │ ├── exportAsNamespace1(module=system).errors.txt │ ├── exportAsNamespace1(module=system).js │ ├── exportAsNamespace1(module=system).symbols │ ├── exportAsNamespace1(module=system).types │ ├── exportAsNamespace1(module=umd).errors.txt │ ├── exportAsNamespace1(module=umd).js │ ├── exportAsNamespace1(module=umd).symbols │ ├── exportAsNamespace1(module=umd).types │ ├── exportAsNamespace2(module=amd).errors.txt │ ├── exportAsNamespace2(module=amd).js │ ├── exportAsNamespace2(module=amd).symbols │ ├── exportAsNamespace2(module=amd).types │ ├── exportAsNamespace2(module=commonjs).errors.txt │ ├── exportAsNamespace2(module=commonjs).js │ ├── exportAsNamespace2(module=commonjs).symbols │ ├── exportAsNamespace2(module=commonjs).types │ ├── exportAsNamespace2(module=es2015).errors.txt │ ├── exportAsNamespace2(module=es2015).js │ ├── exportAsNamespace2(module=es2015).symbols │ ├── exportAsNamespace2(module=es2015).types │ ├── exportAsNamespace2(module=esnext).errors.txt │ ├── exportAsNamespace2(module=esnext).js │ ├── exportAsNamespace2(module=esnext).symbols │ ├── exportAsNamespace2(module=esnext).types │ ├── exportAsNamespace2(module=system).errors.txt │ ├── exportAsNamespace2(module=system).js │ ├── exportAsNamespace2(module=system).symbols │ ├── exportAsNamespace2(module=system).types │ ├── exportAsNamespace2(module=umd).errors.txt │ ├── exportAsNamespace2(module=umd).js │ ├── exportAsNamespace2(module=umd).symbols │ ├── exportAsNamespace2(module=umd).types │ ├── exportAsNamespace3(module=amd).errors.txt │ ├── exportAsNamespace3(module=amd).js │ ├── exportAsNamespace3(module=amd).symbols │ ├── exportAsNamespace3(module=amd).types │ ├── exportAsNamespace3(module=commonjs).errors.txt │ ├── exportAsNamespace3(module=commonjs).js │ ├── exportAsNamespace3(module=commonjs).symbols │ ├── exportAsNamespace3(module=commonjs).types │ ├── exportAsNamespace3(module=es2015).errors.txt │ ├── exportAsNamespace3(module=es2015).js │ ├── exportAsNamespace3(module=es2015).symbols │ ├── exportAsNamespace3(module=es2015).types │ ├── exportAsNamespace3(module=esnext).errors.txt │ ├── exportAsNamespace3(module=esnext).js │ ├── exportAsNamespace3(module=esnext).symbols │ ├── exportAsNamespace3(module=esnext).types │ ├── exportAsNamespace3(module=system).errors.txt │ ├── exportAsNamespace3(module=system).js │ ├── exportAsNamespace3(module=system).symbols │ ├── exportAsNamespace3(module=system).types │ ├── exportAsNamespace3(module=umd).errors.txt │ ├── exportAsNamespace3(module=umd).js │ ├── exportAsNamespace3(module=umd).symbols │ ├── exportAsNamespace3(module=umd).types │ ├── exportAsNamespace4(module=amd).errors.txt │ ├── exportAsNamespace4(module=amd).js │ ├── exportAsNamespace4(module=amd).symbols │ ├── exportAsNamespace4(module=amd).types │ ├── exportAsNamespace4(module=commonjs).js │ ├── exportAsNamespace4(module=commonjs).symbols │ ├── exportAsNamespace4(module=commonjs).types │ ├── exportAsNamespace4(module=es2015).js │ ├── exportAsNamespace4(module=es2015).symbols │ ├── exportAsNamespace4(module=es2015).types │ ├── exportAsNamespace4(module=esnext).js │ ├── exportAsNamespace4(module=esnext).symbols │ ├── exportAsNamespace4(module=esnext).types │ ├── exportAsNamespace4(module=system).errors.txt │ ├── exportAsNamespace4(module=system).js │ ├── exportAsNamespace4(module=system).symbols │ ├── exportAsNamespace4(module=system).types │ ├── exportAsNamespace4(module=umd).errors.txt │ ├── exportAsNamespace4(module=umd).js │ ├── exportAsNamespace4(module=umd).symbols │ ├── exportAsNamespace4(module=umd).types │ ├── exportAsNamespace5.js │ ├── exportAsNamespace5.symbols │ ├── exportAsNamespace5.types │ ├── exportAsNamespaceConflict.errors.txt │ ├── exportAsNamespaceConflict.symbols │ ├── exportAsNamespaceConflict.types │ ├── exportAsNamespace_augment.errors.txt │ ├── exportAsNamespace_augment.js │ ├── exportAsNamespace_augment.symbols │ ├── exportAsNamespace_augment.types │ ├── exportAsNamespace_exportAssignment.errors.txt │ ├── exportAsNamespace_exportAssignment.js │ ├── exportAsNamespace_missingEmitHelpers.errors.txt │ ├── exportAsNamespace_missingEmitHelpers.js │ ├── exportAsNamespace_nonExistent.errors.txt │ ├── exportAsNamespace_nonExistent.js │ ├── exportAssignClassAndModule.errors.txt │ ├── exportAssignClassAndModule.js │ ├── exportAssignClassAndModule.symbols │ ├── exportAssignClassAndModule.types │ ├── exportAssignDottedName.js │ ├── exportAssignDottedName.symbols │ ├── exportAssignDottedName.types │ ├── exportAssignImportedIdentifier.js │ ├── exportAssignImportedIdentifier.symbols │ ├── exportAssignImportedIdentifier.types │ ├── exportAssignNonIdentifier.errors.txt │ ├── exportAssignNonIdentifier.js │ ├── exportAssignNonIdentifier.symbols │ ├── exportAssignNonIdentifier.types │ ├── exportAssignTypes.js │ ├── exportAssignTypes.symbols │ ├── exportAssignTypes.types │ ├── exportAssignValueAndType.js │ ├── exportAssignValueAndType.symbols │ ├── exportAssignValueAndType.types │ ├── exportAssignedNamespaceIsVisibleInDeclarationEmit.js │ ├── exportAssignedNamespaceIsVisibleInDeclarationEmit.symbols │ ├── exportAssignedNamespaceIsVisibleInDeclarationEmit.types │ ├── exportAssignedTypeAsTypeAnnotation.errors.txt │ ├── exportAssignedTypeAsTypeAnnotation.js │ ├── exportAssignedTypeAsTypeAnnotation.symbols │ ├── exportAssignedTypeAsTypeAnnotation.types │ ├── exportAssignmentAndDeclaration.errors.txt │ ├── exportAssignmentAndDeclaration.js │ ├── exportAssignmentAndDeclaration.symbols │ ├── exportAssignmentAndDeclaration.types │ ├── exportAssignmentCircularModules.errors.txt │ ├── exportAssignmentCircularModules.js │ ├── exportAssignmentCircularModules.symbols │ ├── exportAssignmentCircularModules.types │ ├── exportAssignmentClass.errors.txt │ ├── exportAssignmentClass.js │ ├── exportAssignmentClass.symbols │ ├── exportAssignmentClass.types │ ├── exportAssignmentConstrainedGenericType.errors.txt │ ├── exportAssignmentConstrainedGenericType.js │ ├── exportAssignmentConstrainedGenericType.symbols │ ├── exportAssignmentConstrainedGenericType.types │ ├── exportAssignmentEnum.js │ ├── exportAssignmentEnum.symbols │ ├── exportAssignmentEnum.types │ ├── exportAssignmentError.errors.txt │ ├── exportAssignmentError.js │ ├── exportAssignmentError.symbols │ ├── exportAssignmentError.types │ ├── exportAssignmentExpressionIsExpressionNode.errors.txt │ ├── exportAssignmentFunction.errors.txt │ ├── exportAssignmentFunction.js │ ├── exportAssignmentFunction.symbols │ ├── exportAssignmentFunction.types │ ├── exportAssignmentGenericType.errors.txt │ ├── exportAssignmentGenericType.js │ ├── exportAssignmentGenericType.symbols │ ├── exportAssignmentGenericType.types │ ├── exportAssignmentImportMergeNoCrash.errors.txt │ ├── exportAssignmentImportMergeNoCrash.js │ ├── exportAssignmentImportMergeNoCrash.symbols │ ├── exportAssignmentImportMergeNoCrash.types │ ├── exportAssignmentInterface.errors.txt │ ├── exportAssignmentInterface.js │ ├── exportAssignmentInterface.symbols │ ├── exportAssignmentInterface.types │ ├── exportAssignmentInternalModule.errors.txt │ ├── exportAssignmentInternalModule.js │ ├── exportAssignmentInternalModule.symbols │ ├── exportAssignmentInternalModule.types │ ├── exportAssignmentMembersVisibleInAugmentation.js │ ├── exportAssignmentMembersVisibleInAugmentation.symbols │ ├── exportAssignmentMembersVisibleInAugmentation.types │ ├── exportAssignmentMergedInterface.errors.txt │ ├── exportAssignmentMergedInterface.js │ ├── exportAssignmentMergedInterface.symbols │ ├── exportAssignmentMergedInterface.types │ ├── exportAssignmentMergedModule.js │ ├── exportAssignmentMergedModule.symbols │ ├── exportAssignmentMergedModule.types │ ├── exportAssignmentOfDeclaredExternalModule.errors.txt │ ├── exportAssignmentOfDeclaredExternalModule.js │ ├── exportAssignmentOfDeclaredExternalModule.symbols │ ├── exportAssignmentOfDeclaredExternalModule.types │ ├── exportAssignmentOfExportNamespaceWithDefault.js │ ├── exportAssignmentOfExportNamespaceWithDefault.symbols │ ├── exportAssignmentOfExportNamespaceWithDefault.types │ ├── exportAssignmentOfGenericType1.errors.txt │ ├── exportAssignmentOfGenericType1.js │ ├── exportAssignmentOfGenericType1.symbols │ ├── exportAssignmentOfGenericType1.types │ ├── exportAssignmentTopLevelClodule.errors.txt │ ├── exportAssignmentTopLevelClodule.js │ ├── exportAssignmentTopLevelClodule.symbols │ ├── exportAssignmentTopLevelClodule.types │ ├── exportAssignmentTopLevelEnumdule.errors.txt │ ├── exportAssignmentTopLevelEnumdule.js │ ├── exportAssignmentTopLevelEnumdule.symbols │ ├── exportAssignmentTopLevelEnumdule.types │ ├── exportAssignmentTopLevelFundule.errors.txt │ ├── exportAssignmentTopLevelFundule.js │ ├── exportAssignmentTopLevelFundule.symbols │ ├── exportAssignmentTopLevelFundule.types │ ├── exportAssignmentTopLevelIdentifier.errors.txt │ ├── exportAssignmentTopLevelIdentifier.js │ ├── exportAssignmentTopLevelIdentifier.symbols │ ├── exportAssignmentTopLevelIdentifier.types │ ├── exportAssignmentVariable.js │ ├── exportAssignmentVariable.symbols │ ├── exportAssignmentVariable.types │ ├── exportAssignmentWithDeclareAndExportModifiers.errors.txt │ ├── exportAssignmentWithDeclareAndExportModifiers.js │ ├── exportAssignmentWithDeclareAndExportModifiers.symbols │ ├── exportAssignmentWithDeclareAndExportModifiers.types │ ├── exportAssignmentWithDeclareModifier.errors.txt │ ├── exportAssignmentWithDeclareModifier.js │ ├── exportAssignmentWithDeclareModifier.symbols │ ├── exportAssignmentWithDeclareModifier.types │ ├── exportAssignmentWithExportModifier.errors.txt │ ├── exportAssignmentWithExportModifier.js │ ├── exportAssignmentWithExportModifier.symbols │ ├── exportAssignmentWithExportModifier.types │ ├── exportAssignmentWithExports.errors.txt │ ├── exportAssignmentWithExports.js │ ├── exportAssignmentWithExports.symbols │ ├── exportAssignmentWithExports.types │ ├── exportAssignmentWithImportStatementPrivacyError.errors.txt │ ├── exportAssignmentWithImportStatementPrivacyError.js │ ├── exportAssignmentWithImportStatementPrivacyError.symbols │ ├── exportAssignmentWithImportStatementPrivacyError.types │ ├── exportAssignmentWithPrivacyError.errors.txt │ ├── exportAssignmentWithPrivacyError.js │ ├── exportAssignmentWithPrivacyError.symbols │ ├── exportAssignmentWithPrivacyError.types │ ├── exportAssignmentWithoutAllowSyntheticDefaultImportsError.errors.txt │ ├── exportAssignmentWithoutAllowSyntheticDefaultImportsError.js │ ├── exportAssignmentWithoutAllowSyntheticDefaultImportsError.symbols │ ├── exportAssignmentWithoutAllowSyntheticDefaultImportsError.types │ ├── exportAssignmentWithoutIdentifier1.js │ ├── exportAssignmentWithoutIdentifier1.symbols │ ├── exportAssignmentWithoutIdentifier1.types │ ├── exportBinding.errors.txt │ ├── exportBinding.js │ ├── exportBinding.symbols │ ├── exportBinding.types │ ├── exportClassExtendingIntersection.errors.txt │ ├── exportClassExtendingIntersection.js │ ├── exportClassExtendingIntersection.symbols │ ├── exportClassExtendingIntersection.types │ ├── exportClassNameWithObjectAMD(target=es2015).errors.txt │ ├── exportClassNameWithObjectAMD(target=es2015).js │ ├── exportClassNameWithObjectAMD(target=es2015).symbols │ ├── exportClassNameWithObjectAMD(target=es2015).types │ ├── exportClassNameWithObjectAMD(target=es5).errors.txt │ ├── exportClassNameWithObjectAMD(target=es5).js │ ├── exportClassNameWithObjectAMD(target=es5).symbols │ ├── exportClassNameWithObjectAMD(target=es5).types │ ├── exportClassNameWithObjectCommonJS(target=es2015).errors.txt │ ├── exportClassNameWithObjectCommonJS(target=es2015).js │ ├── exportClassNameWithObjectCommonJS(target=es2015).symbols │ ├── exportClassNameWithObjectCommonJS(target=es2015).types │ ├── exportClassNameWithObjectCommonJS(target=es5).errors.txt │ ├── exportClassNameWithObjectCommonJS(target=es5).js │ ├── exportClassNameWithObjectCommonJS(target=es5).symbols │ ├── exportClassNameWithObjectCommonJS(target=es5).types │ ├── exportClassNameWithObjectSystem(target=es2015).errors.txt │ ├── exportClassNameWithObjectSystem(target=es2015).js │ ├── exportClassNameWithObjectSystem(target=es2015).symbols │ ├── exportClassNameWithObjectSystem(target=es2015).types │ ├── exportClassNameWithObjectSystem(target=es5).errors.txt │ ├── exportClassNameWithObjectSystem(target=es5).js │ ├── exportClassNameWithObjectSystem(target=es5).symbols │ ├── exportClassNameWithObjectSystem(target=es5).types │ ├── exportClassNameWithObjectUMD(target=es2015).errors.txt │ ├── exportClassNameWithObjectUMD(target=es2015).js │ ├── exportClassNameWithObjectUMD(target=es2015).symbols │ ├── exportClassNameWithObjectUMD(target=es2015).types │ ├── exportClassNameWithObjectUMD(target=es5).errors.txt │ ├── exportClassNameWithObjectUMD(target=es5).js │ ├── exportClassNameWithObjectUMD(target=es5).symbols │ ├── exportClassNameWithObjectUMD(target=es5).types │ ├── exportClassWithoutName.errors.txt │ ├── exportClassWithoutName.js │ ├── exportClassWithoutName.symbols │ ├── exportClassWithoutName.types │ ├── exportCodeGen.errors.txt │ ├── exportCodeGen.js │ ├── exportCodeGen.symbols │ ├── exportCodeGen.types │ ├── exportDeclaration(isolatedmodules=false).errors.txt │ ├── exportDeclaration(isolatedmodules=false).js │ ├── exportDeclaration(isolatedmodules=false).symbols │ ├── exportDeclaration(isolatedmodules=false).types │ ├── exportDeclaration(isolatedmodules=true).errors.txt │ ├── exportDeclaration(isolatedmodules=true).js │ ├── exportDeclaration(isolatedmodules=true).symbols │ ├── exportDeclaration(isolatedmodules=true).types │ ├── exportDeclarationForModuleOrEnumWithMemberOfSameName(module=commonjs).js │ ├── exportDeclarationForModuleOrEnumWithMemberOfSameName(module=system).errors.txt │ ├── exportDeclarationForModuleOrEnumWithMemberOfSameName(module=system).js │ ├── exportDeclarationInInternalModule(target=es2015).errors.txt │ ├── exportDeclarationInInternalModule(target=es2015).js │ ├── exportDeclarationInInternalModule(target=es2015).symbols │ ├── exportDeclarationInInternalModule(target=es2015).types │ ├── exportDeclarationInInternalModule(target=es5).errors.txt │ ├── exportDeclarationInInternalModule(target=es5).js │ ├── exportDeclarationInInternalModule(target=es5).symbols │ ├── exportDeclarationInInternalModule(target=es5).types │ ├── exportDeclarationWithModuleSpecifierNameOnNextLine1.js │ ├── exportDeclarationWithModuleSpecifierNameOnNextLine1.symbols │ ├── exportDeclarationWithModuleSpecifierNameOnNextLine1.types │ ├── exportDeclaration_missingBraces.errors.txt │ ├── exportDeclaration_moduleSpecifier-isolatedModules.js │ ├── exportDeclaration_moduleSpecifier-isolatedModules.symbols │ ├── exportDeclaration_moduleSpecifier-isolatedModules.types │ ├── exportDeclaration_moduleSpecifier.errors.txt │ ├── exportDeclaration_moduleSpecifier.js │ ├── exportDeclaration_moduleSpecifier.symbols │ ├── exportDeclaration_moduleSpecifier.types │ ├── exportDeclaration_value.js │ ├── exportDeclaration_value.symbols │ ├── exportDeclaration_value.types │ ├── exportDeclarationsInAmbientNamespaces.js │ ├── exportDeclarationsInAmbientNamespaces.symbols │ ├── exportDeclarationsInAmbientNamespaces.types │ ├── exportDeclarationsInAmbientNamespaces2.errors.txt │ ├── exportDeclarationsInAmbientNamespaces2.js │ ├── exportDeclarationsInAmbientNamespaces2.symbols │ ├── exportDeclarationsInAmbientNamespaces2.types │ ├── exportDeclareClass1.errors.txt │ ├── exportDeclareClass1.js │ ├── exportDeclareClass1.symbols │ ├── exportDeclareClass1.types │ ├── exportDeclaredModule.js │ ├── exportDeclaredModule.symbols │ ├── exportDeclaredModule.types │ ├── exportDefault.errors.txt │ ├── exportDefault.js │ ├── exportDefault.symbols │ ├── exportDefault.types │ ├── exportDefaultAbstractClass.errors.txt │ ├── exportDefaultAbstractClass.js │ ├── exportDefaultAbstractClass.symbols │ ├── exportDefaultAbstractClass.types │ ├── exportDefaultAlias_excludesEverything.errors.txt │ ├── exportDefaultAlias_excludesEverything.js │ ├── exportDefaultAlias_excludesEverything.symbols │ ├── exportDefaultAlias_excludesEverything.types │ ├── exportDefaultAsyncFunction.js │ ├── exportDefaultAsyncFunction.symbols │ ├── exportDefaultAsyncFunction.types │ ├── exportDefaultAsyncFunction2.errors.txt │ ├── exportDefaultAsyncFunction2.js │ ├── exportDefaultAsyncFunction2.symbols │ ├── exportDefaultAsyncFunction2.types │ ├── exportDefaultClassAndValue.errors.txt │ ├── exportDefaultClassAndValue.js │ ├── exportDefaultClassAndValue.symbols │ ├── exportDefaultClassAndValue.types │ ├── exportDefaultClassInNamespace.errors.txt │ ├── exportDefaultClassInNamespace.js │ ├── exportDefaultClassInNamespace.symbols │ ├── exportDefaultClassInNamespace.types │ ├── exportDefaultClassNameWithObject(target=es2015).errors.txt │ ├── exportDefaultClassNameWithObject(target=es2015).js │ ├── exportDefaultClassNameWithObject(target=es2015).symbols │ ├── exportDefaultClassNameWithObject(target=es2015).types │ ├── exportDefaultClassNameWithObject(target=es5).errors.txt │ ├── exportDefaultClassNameWithObject(target=es5).js │ ├── exportDefaultClassNameWithObject(target=es5).symbols │ ├── exportDefaultClassNameWithObject(target=es5).types │ ├── exportDefaultClassWithStaticPropertyAssignmentsInES6.js │ ├── exportDefaultClassWithStaticPropertyAssignmentsInES6.symbols │ ├── exportDefaultClassWithStaticPropertyAssignmentsInES6.types │ ├── exportDefaultDuplicateCrash.errors.txt │ ├── exportDefaultDuplicateCrash.js │ ├── exportDefaultExpressionComments.js │ ├── exportDefaultExpressionComments.symbols │ ├── exportDefaultExpressionComments.types │ ├── exportDefaultForNonInstantiatedModule.js │ ├── exportDefaultForNonInstantiatedModule.symbols │ ├── exportDefaultForNonInstantiatedModule.types │ ├── exportDefaultFunctionInNamespace.errors.txt │ ├── exportDefaultFunctionInNamespace.js │ ├── exportDefaultFunctionInNamespace.symbols │ ├── exportDefaultFunctionInNamespace.types │ ├── exportDefaultImportedType.js │ ├── exportDefaultInJsFile01(target=es2015).errors.txt │ ├── exportDefaultInJsFile01(target=es2015).symbols │ ├── exportDefaultInJsFile01(target=es2015).types │ ├── exportDefaultInJsFile01(target=es5).errors.txt │ ├── exportDefaultInJsFile01(target=es5).symbols │ ├── exportDefaultInJsFile01(target=es5).types │ ├── exportDefaultInJsFile02.errors.txt │ ├── exportDefaultInJsFile02.symbols │ ├── exportDefaultInJsFile02.types │ ├── exportDefaultInterface.errors.txt │ ├── exportDefaultInterface.js │ ├── exportDefaultInterface.symbols │ ├── exportDefaultInterface.types │ ├── exportDefaultInterfaceAndFunctionOverloads.js │ ├── exportDefaultInterfaceAndFunctionOverloads.symbols │ ├── exportDefaultInterfaceAndFunctionOverloads.types │ ├── exportDefaultInterfaceAndTwoFunctions.errors.txt │ ├── exportDefaultInterfaceAndTwoFunctions.js │ ├── exportDefaultInterfaceAndTwoFunctions.symbols │ ├── exportDefaultInterfaceAndTwoFunctions.types │ ├── exportDefaultInterfaceAndValue.js │ ├── exportDefaultInterfaceAndValue.symbols │ ├── exportDefaultInterfaceAndValue.types │ ├── exportDefaultInterfaceClassAndFunctionOverloads.errors.txt │ ├── exportDefaultInterfaceClassAndFunctionOverloads.js │ ├── exportDefaultInterfaceClassAndFunctionOverloads.symbols │ ├── exportDefaultInterfaceClassAndFunctionOverloads.types │ ├── exportDefaultInterfaceClassAndValue.errors.txt │ ├── exportDefaultInterfaceClassAndValue.js │ ├── exportDefaultInterfaceClassAndValue.symbols │ ├── exportDefaultInterfaceClassAndValue.types │ ├── exportDefaultMarksIdentifierAsUsed.js │ ├── exportDefaultMarksIdentifierAsUsed.symbols │ ├── exportDefaultMarksIdentifierAsUsed.types │ ├── exportDefaultMissingName.errors.txt │ ├── exportDefaultMissingName.js │ ├── exportDefaultMissingName.symbols │ ├── exportDefaultMissingName.types │ ├── exportDefaultNamespace.js │ ├── exportDefaultNamespace.symbols │ ├── exportDefaultNamespace.types │ ├── exportDefaultParenthesize(target=es2015).js │ ├── exportDefaultParenthesize(target=es2015).symbols │ ├── exportDefaultParenthesize(target=es2015).types │ ├── exportDefaultParenthesize(target=es5).errors.txt │ ├── exportDefaultParenthesize(target=es5).js │ ├── exportDefaultParenthesize(target=es5).symbols │ ├── exportDefaultParenthesize(target=es5).types │ ├── exportDefaultParenthesizeES6.js │ ├── exportDefaultParenthesizeES6.symbols │ ├── exportDefaultParenthesizeES6.types │ ├── exportDefaultProperty.js │ ├── exportDefaultProperty.symbols │ ├── exportDefaultProperty.types │ ├── exportDefaultProperty2.js │ ├── exportDefaultProperty2.symbols │ ├── exportDefaultProperty2.types │ ├── exportDefaultQualifiedNameNoError.js │ ├── exportDefaultQualifiedNameNoError.symbols │ ├── exportDefaultQualifiedNameNoError.types │ ├── exportDefaultStripsFreshness.errors.txt │ ├── exportDefaultStripsFreshness.js │ ├── exportDefaultStripsFreshness.symbols │ ├── exportDefaultStripsFreshness.types │ ├── exportDefaultTypeAndClass.errors.txt │ ├── exportDefaultTypeAndClass.js │ ├── exportDefaultTypeAndClass.symbols │ ├── exportDefaultTypeAndClass.types │ ├── exportDefaultTypeAndFunctionOverloads.errors.txt │ ├── exportDefaultTypeAndFunctionOverloads.js │ ├── exportDefaultTypeAndFunctionOverloads.symbols │ ├── exportDefaultTypeAndFunctionOverloads.types │ ├── exportDefaultTypeClassAndValue.errors.txt │ ├── exportDefaultTypeClassAndValue.js │ ├── exportDefaultTypeClassAndValue.symbols │ ├── exportDefaultTypeClassAndValue.types │ ├── exportDefaultVariable.js │ ├── exportDefaultVariable.symbols │ ├── exportDefaultVariable.types │ ├── exportDefaultWithJSDoc1.symbols │ ├── exportDefaultWithJSDoc1.types │ ├── exportDefaultWithJSDoc2.symbols │ ├── exportDefaultWithJSDoc2.types │ ├── exportDeferInvalid.errors.txt │ ├── exportDeferInvalid.js │ ├── exportDeferInvalid.symbols │ ├── exportDeferInvalid.types │ ├── exportEmptyArrayBindingPattern(module=amd,target=es5).errors.txt │ ├── exportEmptyArrayBindingPattern(module=amd,target=es5).js │ ├── exportEmptyArrayBindingPattern(module=amd,target=esnext).errors.txt │ ├── exportEmptyArrayBindingPattern(module=amd,target=esnext).js │ ├── exportEmptyArrayBindingPattern(module=commonjs,target=es5).errors.txt │ ├── exportEmptyArrayBindingPattern(module=commonjs,target=es5).js │ ├── exportEmptyArrayBindingPattern(module=commonjs,target=esnext).js │ ├── exportEmptyArrayBindingPattern(module=es2015,target=es5).errors.txt │ ├── exportEmptyArrayBindingPattern(module=es2015,target=es5).js │ ├── exportEmptyArrayBindingPattern(module=es2015,target=esnext).js │ ├── exportEmptyArrayBindingPattern(module=esnext,target=es5).errors.txt │ ├── exportEmptyArrayBindingPattern(module=esnext,target=es5).js │ ├── exportEmptyArrayBindingPattern(module=esnext,target=esnext).js │ ├── exportEmptyArrayBindingPattern(module=system,target=es5).errors.txt │ ├── exportEmptyArrayBindingPattern(module=system,target=es5).js │ ├── exportEmptyArrayBindingPattern(module=system,target=esnext).errors.txt │ ├── exportEmptyArrayBindingPattern(module=system,target=esnext).js │ ├── exportEmptyObjectBindingPattern(module=amd,target=es5).errors.txt │ ├── exportEmptyObjectBindingPattern(module=amd,target=es5).js │ ├── exportEmptyObjectBindingPattern(module=amd,target=esnext).errors.txt │ ├── exportEmptyObjectBindingPattern(module=amd,target=esnext).js │ ├── exportEmptyObjectBindingPattern(module=commonjs,target=es5).errors.txt │ ├── exportEmptyObjectBindingPattern(module=commonjs,target=es5).js │ ├── exportEmptyObjectBindingPattern(module=commonjs,target=esnext).js │ ├── exportEmptyObjectBindingPattern(module=es2015,target=es5).errors.txt │ ├── exportEmptyObjectBindingPattern(module=es2015,target=es5).js │ ├── exportEmptyObjectBindingPattern(module=es2015,target=esnext).js │ ├── exportEmptyObjectBindingPattern(module=esnext,target=es5).errors.txt │ ├── exportEmptyObjectBindingPattern(module=esnext,target=es5).js │ ├── exportEmptyObjectBindingPattern(module=esnext,target=esnext).js │ ├── exportEmptyObjectBindingPattern(module=system,target=es5).errors.txt │ ├── exportEmptyObjectBindingPattern(module=system,target=es5).js │ ├── exportEmptyObjectBindingPattern(module=system,target=esnext).errors.txt │ ├── exportEmptyObjectBindingPattern(module=system,target=esnext).js │ ├── exportEqualCallable.errors.txt │ ├── exportEqualCallable.js │ ├── exportEqualCallable.symbols │ ├── exportEqualCallable.types │ ├── exportEqualErrorType.errors.txt │ ├── exportEqualErrorType.js │ ├── exportEqualErrorType.symbols │ ├── exportEqualErrorType.types │ ├── exportEqualMemberMissing.errors.txt │ ├── exportEqualMemberMissing.js │ ├── exportEqualMemberMissing.symbols │ ├── exportEqualMemberMissing.types │ ├── exportEqualNamespaces.errors.txt │ ├── exportEqualNamespaces.js │ ├── exportEqualNamespaces.symbols │ ├── exportEqualNamespaces.types │ ├── exportEqualsAmd.errors.txt │ ├── exportEqualsAmd.js │ ├── exportEqualsAmd.symbols │ ├── exportEqualsAmd.types │ ├── exportEqualsClassNoRedeclarationError.js │ ├── exportEqualsClassNoRedeclarationError.symbols │ ├── exportEqualsClassNoRedeclarationError.types │ ├── exportEqualsClassRedeclarationError.errors.txt │ ├── exportEqualsClassRedeclarationError.js │ ├── exportEqualsClassRedeclarationError.symbols │ ├── exportEqualsClassRedeclarationError.types │ ├── exportEqualsCommonJs.js │ ├── exportEqualsCommonJs.symbols │ ├── exportEqualsCommonJs.types │ ├── exportEqualsDefaultProperty.errors.txt │ ├── exportEqualsDefaultProperty.js │ ├── exportEqualsDefaultProperty.symbols │ ├── exportEqualsDefaultProperty.types │ ├── exportEqualsOfModule.js │ ├── exportEqualsOfModule.symbols │ ├── exportEqualsOfModule.types │ ├── exportEqualsProperty.js │ ├── exportEqualsProperty.symbols │ ├── exportEqualsProperty.types │ ├── exportEqualsProperty2.js │ ├── exportEqualsProperty2.symbols │ ├── exportEqualsProperty2.types │ ├── exportEqualsUmd.errors.txt │ ├── exportEqualsUmd.js │ ├── exportEqualsUmd.symbols │ ├── exportEqualsUmd.types │ ├── exportImport.errors.txt │ ├── exportImport.js │ ├── exportImport.symbols │ ├── exportImport.types │ ├── exportImportAlias.js │ ├── exportImportAlias.symbols │ ├── exportImportAlias.types │ ├── exportImportAndClodule.js │ ├── exportImportAndClodule.symbols │ ├── exportImportAndClodule.types │ ├── exportImportCanSubstituteConstEnumForValue(target=es2015).errors.txt │ ├── exportImportCanSubstituteConstEnumForValue(target=es2015).js │ ├── exportImportCanSubstituteConstEnumForValue(target=es2015).symbols │ ├── exportImportCanSubstituteConstEnumForValue(target=es2015).types │ ├── exportImportCanSubstituteConstEnumForValue(target=es5).errors.txt │ ├── exportImportCanSubstituteConstEnumForValue(target=es5).js │ ├── exportImportCanSubstituteConstEnumForValue(target=es5).symbols │ ├── exportImportCanSubstituteConstEnumForValue(target=es5).types │ ├── exportImportMultipleFiles.errors.txt │ ├── exportImportMultipleFiles.js │ ├── exportImportMultipleFiles.symbols │ ├── exportImportMultipleFiles.types │ ├── exportImportNonInstantiatedModule.js │ ├── exportImportNonInstantiatedModule.symbols │ ├── exportImportNonInstantiatedModule.types │ ├── exportImportNonInstantiatedModule2.errors.txt │ ├── exportImportNonInstantiatedModule2.js │ ├── exportImportNonInstantiatedModule2.symbols │ ├── exportImportNonInstantiatedModule2.types │ ├── exportInFunction.errors.txt │ ├── exportInFunction.js │ ├── exportInFunction.symbols │ ├── exportInFunction.types │ ├── exportInLabeledStatement.baseline.jsonc │ ├── exportInObjectLiteral.baseline.jsonc │ ├── exportInterfaceClassAndValue.errors.txt │ ├── exportInterfaceClassAndValue.js │ ├── exportInterfaceClassAndValue.symbols │ ├── exportInterfaceClassAndValue.types │ ├── exportInterfaceClassAndValueWithDuplicatesInImportList.errors.txt │ ├── exportInterfaceClassAndValueWithDuplicatesInImportList.js │ ├── exportInterfaceClassAndValueWithDuplicatesInImportList.symbols │ ├── exportInterfaceClassAndValueWithDuplicatesInImportList.types │ ├── exportNamespace1.errors.txt │ ├── exportNamespace1.js │ ├── exportNamespace1.symbols │ ├── exportNamespace1.types │ ├── exportNamespace10.errors.txt │ ├── exportNamespace10.js │ ├── exportNamespace10.symbols │ ├── exportNamespace10.types │ ├── exportNamespace11.errors.txt │ ├── exportNamespace11.js │ ├── exportNamespace11.symbols │ ├── exportNamespace11.types │ ├── exportNamespace12.errors.txt │ ├── exportNamespace12.js │ ├── exportNamespace12.symbols │ ├── exportNamespace12.types │ ├── exportNamespace2.errors.txt │ ├── exportNamespace2.js │ ├── exportNamespace2.symbols │ ├── exportNamespace2.types │ ├── exportNamespace3.errors.txt │ ├── exportNamespace3.js │ ├── exportNamespace3.symbols │ ├── exportNamespace3.types │ ├── exportNamespace4.errors.txt │ ├── exportNamespace4.js │ ├── exportNamespace4.symbols │ ├── exportNamespace4.types │ ├── exportNamespace5.errors.txt │ ├── exportNamespace5.js │ ├── exportNamespace5.symbols │ ├── exportNamespace5.types │ ├── exportNamespace6.errors.txt │ ├── exportNamespace6.js │ ├── exportNamespace6.symbols │ ├── exportNamespace6.types │ ├── exportNamespace7.errors.txt │ ├── exportNamespace7.js │ ├── exportNamespace7.symbols │ ├── exportNamespace7.types │ ├── exportNamespace8.errors.txt │ ├── exportNamespace8.js │ ├── exportNamespace8.symbols │ ├── exportNamespace8.types │ ├── exportNamespace9.errors.txt │ ├── exportNamespace9.js │ ├── exportNamespace9.symbols │ ├── exportNamespace9.types │ ├── exportNamespaceDeclarationRetainsVisibility.js │ ├── exportNamespaceDeclarationRetainsVisibility.symbols │ ├── exportNamespaceDeclarationRetainsVisibility.types │ ├── exportNamespace_js.errors.txt │ ├── exportNamespace_js.js │ ├── exportNamespace_js.symbols │ ├── exportNamespace_js.types │ ├── exportNestedNamespaces.symbols │ ├── exportNestedNamespaces.types │ ├── exportNestedNamespaces2.errors.txt │ ├── exportNestedNamespaces2.symbols │ ├── exportNestedNamespaces2.types │ ├── exportNonInitializedVariablesAMD.errors.txt │ ├── exportNonInitializedVariablesAMD.js │ ├── exportNonInitializedVariablesAMD.symbols │ ├── exportNonInitializedVariablesAMD.types │ ├── exportNonInitializedVariablesCommonJS.errors.txt │ ├── exportNonInitializedVariablesCommonJS.js │ ├── exportNonInitializedVariablesCommonJS.symbols │ ├── exportNonInitializedVariablesCommonJS.types │ ├── exportNonInitializedVariablesES6.errors.txt │ ├── exportNonInitializedVariablesES6.js │ ├── exportNonInitializedVariablesES6.symbols │ ├── exportNonInitializedVariablesES6.types │ ├── exportNonInitializedVariablesInIfThenStatementNoCrash1(module=commonjs).errors.txt │ ├── exportNonInitializedVariablesInIfThenStatementNoCrash1(module=commonjs).js │ ├── exportNonInitializedVariablesInIfThenStatementNoCrash1(module=commonjs).symbols │ ├── exportNonInitializedVariablesInIfThenStatementNoCrash1(module=commonjs).types │ ├── exportNonInitializedVariablesInIfThenStatementNoCrash1(module=esnext).errors.txt │ ├── exportNonInitializedVariablesInIfThenStatementNoCrash1(module=esnext).js │ ├── exportNonInitializedVariablesInIfThenStatementNoCrash1(module=esnext).symbols │ ├── exportNonInitializedVariablesInIfThenStatementNoCrash1(module=esnext).types │ ├── exportNonInitializedVariablesInIfThenStatementNoCrash1(module=system).errors.txt │ ├── exportNonInitializedVariablesInIfThenStatementNoCrash1(module=system).js │ ├── exportNonInitializedVariablesInIfThenStatementNoCrash1(module=system).symbols │ ├── exportNonInitializedVariablesInIfThenStatementNoCrash1(module=system).types │ ├── exportNonInitializedVariablesSystem.errors.txt │ ├── exportNonInitializedVariablesSystem.js │ ├── exportNonInitializedVariablesSystem.symbols │ ├── exportNonInitializedVariablesSystem.types │ ├── exportNonInitializedVariablesUMD.errors.txt │ ├── exportNonInitializedVariablesUMD.js │ ├── exportNonInitializedVariablesUMD.symbols │ ├── exportNonInitializedVariablesUMD.types │ ├── exportNonLocalDeclarations.errors.txt │ ├── exportNonLocalDeclarations.js │ ├── exportNonLocalDeclarations.symbols │ ├── exportNonLocalDeclarations.types │ ├── exportNonVisibleType.errors.txt │ ├── exportNonVisibleType.js │ ├── exportNonVisibleType.symbols │ ├── exportNonVisibleType.types │ ├── exportObjectRest(module=amd,target=es5).errors.txt │ ├── exportObjectRest(module=amd,target=es5).js │ ├── exportObjectRest(module=amd,target=esnext).errors.txt │ ├── exportObjectRest(module=amd,target=esnext).js │ ├── exportObjectRest(module=commonjs,target=es5).errors.txt │ ├── exportObjectRest(module=commonjs,target=es5).js │ ├── exportObjectRest(module=commonjs,target=esnext).js │ ├── exportObjectRest(module=es2015,target=es5).errors.txt │ ├── exportObjectRest(module=es2015,target=es5).js │ ├── exportObjectRest(module=es2015,target=esnext).js │ ├── exportObjectRest(module=esnext,target=es5).errors.txt │ ├── exportObjectRest(module=esnext,target=es5).js │ ├── exportObjectRest(module=esnext,target=esnext).js │ ├── exportObjectRest(module=system,target=es5).errors.txt │ ├── exportObjectRest(module=system,target=es5).js │ ├── exportObjectRest(module=system,target=esnext).errors.txt │ ├── exportObjectRest(module=system,target=esnext).js │ ├── exportPrivateType.errors.txt │ ├── exportPrivateType.js │ ├── exportPrivateType.symbols │ ├── exportPrivateType.types │ ├── exportPropertyAssignmentNameResolution.errors.txt │ ├── exportPropertyAssignmentNameResolution.symbols │ ├── exportPropertyAssignmentNameResolution.types │ ├── exportRedeclarationTypeAliases.js │ ├── exportRedeclarationTypeAliases.symbols │ ├── exportRedeclarationTypeAliases.types │ ├── exportSameNameFuncVar.errors.txt │ ├── exportSameNameFuncVar.js │ ├── exportSameNameFuncVar.symbols │ ├── exportSameNameFuncVar.types │ ├── exportSpecifierAndExportedMemberDeclaration.js │ ├── exportSpecifierAndExportedMemberDeclaration.symbols │ ├── exportSpecifierAndExportedMemberDeclaration.types │ ├── exportSpecifierAndLocalMemberDeclaration.errors.txt │ ├── exportSpecifierAndLocalMemberDeclaration.js │ ├── exportSpecifierAndLocalMemberDeclaration.symbols │ ├── exportSpecifierAndLocalMemberDeclaration.types │ ├── exportSpecifierForAGlobal.errors.txt │ ├── exportSpecifierForAGlobal.js │ ├── exportSpecifierForAGlobal.symbols │ ├── exportSpecifierForAGlobal.types │ ├── exportSpecifierReferencingOuterDeclaration1.errors.txt │ ├── exportSpecifierReferencingOuterDeclaration1.js │ ├── exportSpecifierReferencingOuterDeclaration1.symbols │ ├── exportSpecifierReferencingOuterDeclaration1.types │ ├── exportSpecifierReferencingOuterDeclaration2.errors.txt │ ├── exportSpecifierReferencingOuterDeclaration2.js │ ├── exportSpecifierReferencingOuterDeclaration2.symbols │ ├── exportSpecifierReferencingOuterDeclaration2.types │ ├── exportSpecifierReferencingOuterDeclaration3.errors.txt │ ├── exportSpecifierReferencingOuterDeclaration3.js │ ├── exportSpecifierReferencingOuterDeclaration3.symbols │ ├── exportSpecifierReferencingOuterDeclaration3.types │ ├── exportSpecifierReferencingOuterDeclaration4.errors.txt │ ├── exportSpecifierReferencingOuterDeclaration4.js │ ├── exportSpecifierReferencingOuterDeclaration4.symbols │ ├── exportSpecifierReferencingOuterDeclaration4.types │ ├── exportSpecifiers.errors.txt │ ├── exportSpecifiers.js │ ├── exportSpecifiers.symbols │ ├── exportSpecifiers.types │ ├── exportSpecifiers_js.errors.txt │ ├── exportSpecifiers_js.symbols │ ├── exportSpecifiers_js.types │ ├── exportSpellingSuggestion.errors.txt │ ├── exportSpellingSuggestion.js │ ├── exportSpellingSuggestion.symbols │ ├── exportSpellingSuggestion.types │ ├── exportStar(target=es2015).errors.txt │ ├── exportStar(target=es2015).js │ ├── exportStar(target=es2015).symbols │ ├── exportStar(target=es2015).types │ ├── exportStar(target=es5).errors.txt │ ├── exportStar(target=es5).js │ ├── exportStar(target=es5).symbols │ ├── exportStar(target=es5).types │ ├── exportStar-amd(target=es2015).errors.txt │ ├── exportStar-amd(target=es2015).js │ ├── exportStar-amd(target=es2015).symbols │ ├── exportStar-amd(target=es2015).types │ ├── exportStar-amd(target=es5).errors.txt │ ├── exportStar-amd(target=es5).js │ ├── exportStar-amd(target=es5).symbols │ ├── exportStar-amd(target=es5).types │ ├── exportStarForValues.errors.txt │ ├── exportStarForValues.js │ ├── exportStarForValues.symbols │ ├── exportStarForValues.types │ ├── exportStarForValues10.errors.txt │ ├── exportStarForValues10.js │ ├── exportStarForValues10.symbols │ ├── exportStarForValues10.types │ ├── exportStarForValues2.errors.txt │ ├── exportStarForValues2.js │ ├── exportStarForValues2.symbols │ ├── exportStarForValues2.types │ ├── exportStarForValues3.errors.txt │ ├── exportStarForValues3.js │ ├── exportStarForValues3.symbols │ ├── exportStarForValues3.types │ ├── exportStarForValues4.errors.txt │ ├── exportStarForValues4.js │ ├── exportStarForValues4.symbols │ ├── exportStarForValues4.types │ ├── exportStarForValues5.errors.txt │ ├── exportStarForValues5.js │ ├── exportStarForValues5.symbols │ ├── exportStarForValues5.types │ ├── exportStarForValues6.errors.txt │ ├── exportStarForValues6.js │ ├── exportStarForValues6.symbols │ ├── exportStarForValues6.types │ ├── exportStarForValues7.errors.txt │ ├── exportStarForValues7.js │ ├── exportStarForValues7.symbols │ ├── exportStarForValues7.types │ ├── exportStarForValues8.errors.txt │ ├── exportStarForValues8.js │ ├── exportStarForValues8.symbols │ ├── exportStarForValues8.types │ ├── exportStarForValues9.errors.txt │ ├── exportStarForValues9.js │ ├── exportStarForValues9.symbols │ ├── exportStarForValues9.types │ ├── exportStarForValuesInSystem.errors.txt │ ├── exportStarForValuesInSystem.js │ ├── exportStarForValuesInSystem.symbols │ ├── exportStarForValuesInSystem.types │ ├── exportStarFromEmptyModule(target=es2015).errors.txt │ ├── exportStarFromEmptyModule(target=es2015).js │ ├── exportStarFromEmptyModule(target=es2015).symbols │ ├── exportStarFromEmptyModule(target=es2015).types │ ├── exportStarFromEmptyModule(target=es5).errors.txt │ ├── exportStarFromEmptyModule(target=es5).js │ ├── exportStarFromEmptyModule(target=es5).symbols │ ├── exportStarFromEmptyModule(target=es5).types │ ├── exportStarNotElided.js │ ├── exportStarNotElided.symbols │ ├── exportStarNotElided.types │ ├── exportToString.js │ ├── exportToString.symbols │ ├── exportToString.types │ ├── exportTwoInterfacesWithSameName.js │ ├── exportTwoInterfacesWithSameName.symbols │ ├── exportTwoInterfacesWithSameName.types │ ├── exportTypeMergedWithExportStarAsNamespace.js │ ├── exportTypeMergedWithExportStarAsNamespace.symbols │ ├── exportTypeMergedWithExportStarAsNamespace.types │ ├── exportVisibility.js │ ├── exportVisibility.symbols │ ├── exportVisibility.types │ ├── exportedAliasedEnumTag.symbols │ ├── exportedAliasedEnumTag.types │ ├── exportedBlockScopedDeclarations.errors.txt │ ├── exportedBlockScopedDeclarations.js │ ├── exportedBlockScopedDeclarations.symbols │ ├── exportedBlockScopedDeclarations.types │ ├── exportedEnumTypeAndValue.symbols │ ├── exportedEnumTypeAndValue.types │ ├── exportedInterfaceInaccessibleInCallbackInModule.errors.txt │ ├── exportedInterfaceInaccessibleInCallbackInModule.js │ ├── exportedInterfaceInaccessibleInCallbackInModule.symbols │ ├── exportedInterfaceInaccessibleInCallbackInModule.types │ ├── exportedVariable1.errors.txt │ ├── exportedVariable1.js │ ├── exportedVariable1.symbols │ ├── exportedVariable1.types │ ├── exportingContainingVisibleType.errors.txt │ ├── exportingContainingVisibleType.js │ ├── exportingContainingVisibleType.symbols │ ├── exportingContainingVisibleType.types │ ├── exportsAndImports1-amd(target=es2015).errors.txt │ ├── exportsAndImports1-amd(target=es2015).js │ ├── exportsAndImports1-amd(target=es2015).symbols │ ├── exportsAndImports1-amd(target=es2015).types │ ├── exportsAndImports1-amd(target=es5).errors.txt │ ├── exportsAndImports1-amd(target=es5).js │ ├── exportsAndImports1-amd(target=es5).symbols │ ├── exportsAndImports1-amd(target=es5).types │ ├── exportsAndImports1-es6.js │ ├── exportsAndImports1-es6.symbols │ ├── exportsAndImports1-es6.types │ ├── exportsAndImports1.js │ ├── exportsAndImports1.symbols │ ├── exportsAndImports1.types │ ├── exportsAndImports2-amd(target=es2015).errors.txt │ ├── exportsAndImports2-amd(target=es2015).js │ ├── exportsAndImports2-amd(target=es2015).symbols │ ├── exportsAndImports2-amd(target=es2015).types │ ├── exportsAndImports2-amd(target=es5).errors.txt │ ├── exportsAndImports2-amd(target=es5).js │ ├── exportsAndImports2-amd(target=es5).symbols │ ├── exportsAndImports2-amd(target=es5).types │ ├── exportsAndImports2-es6.js │ ├── exportsAndImports2-es6.symbols │ ├── exportsAndImports2-es6.types │ ├── exportsAndImports2.js │ ├── exportsAndImports2.symbols │ ├── exportsAndImports2.types │ ├── exportsAndImports3-amd(target=es2015).errors.txt │ ├── exportsAndImports3-amd(target=es2015).js │ ├── exportsAndImports3-amd(target=es2015).symbols │ ├── exportsAndImports3-amd(target=es2015).types │ ├── exportsAndImports3-amd(target=es5).errors.txt │ ├── exportsAndImports3-amd(target=es5).js │ ├── exportsAndImports3-amd(target=es5).symbols │ ├── exportsAndImports3-amd(target=es5).types │ ├── exportsAndImports3-es6.js │ ├── exportsAndImports3-es6.symbols │ ├── exportsAndImports3-es6.types │ ├── exportsAndImports3.js │ ├── exportsAndImports3.symbols │ ├── exportsAndImports3.types │ ├── exportsAndImports4(target=es2015).js │ ├── exportsAndImports4(target=es2015).symbols │ ├── exportsAndImports4(target=es2015).types │ ├── exportsAndImports4(target=es5).errors.txt │ ├── exportsAndImports4(target=es5).js │ ├── exportsAndImports4(target=es5).symbols │ ├── exportsAndImports4(target=es5).types │ ├── exportsAndImports4-amd(target=es2015).errors.txt │ ├── exportsAndImports4-amd(target=es2015).js │ ├── exportsAndImports4-amd(target=es2015).symbols │ ├── exportsAndImports4-amd(target=es2015).types │ ├── exportsAndImports4-amd(target=es5).errors.txt │ ├── exportsAndImports4-amd(target=es5).js │ ├── exportsAndImports4-amd(target=es5).symbols │ ├── exportsAndImports4-amd(target=es5).types │ ├── exportsAndImports4-es6.js │ ├── exportsAndImports4-es6.symbols │ ├── exportsAndImports4-es6.types │ ├── exportsAndImports5.js │ ├── exportsAndImports5.symbols │ ├── exportsAndImports5.types │ ├── exportsAndImportsWithContextualKeywordNames01(target=es2015).errors.txt │ ├── exportsAndImportsWithContextualKeywordNames01(target=es2015).js │ ├── exportsAndImportsWithContextualKeywordNames01(target=es2015).symbols │ ├── exportsAndImportsWithContextualKeywordNames01(target=es2015).types │ ├── exportsAndImportsWithContextualKeywordNames01(target=es5).errors.txt │ ├── exportsAndImportsWithContextualKeywordNames01(target=es5).js │ ├── exportsAndImportsWithContextualKeywordNames01(target=es5).symbols │ ├── exportsAndImportsWithContextualKeywordNames01(target=es5).types │ ├── exportsAndImportsWithContextualKeywordNames02(target=es2015).js │ ├── exportsAndImportsWithContextualKeywordNames02(target=es2015).symbols │ ├── exportsAndImportsWithContextualKeywordNames02(target=es2015).types │ ├── exportsAndImportsWithContextualKeywordNames02(target=es5).errors.txt │ ├── exportsAndImportsWithContextualKeywordNames02(target=es5).js │ ├── exportsAndImportsWithContextualKeywordNames02(target=es5).symbols │ ├── exportsAndImportsWithContextualKeywordNames02(target=es5).types │ ├── exportsAndImportsWithUnderscores1(target=es2015).errors.txt │ ├── exportsAndImportsWithUnderscores1(target=es2015).js │ ├── exportsAndImportsWithUnderscores1(target=es2015).symbols │ ├── exportsAndImportsWithUnderscores1(target=es2015).types │ ├── exportsAndImportsWithUnderscores1(target=es5).errors.txt │ ├── exportsAndImportsWithUnderscores1(target=es5).js │ ├── exportsAndImportsWithUnderscores1(target=es5).symbols │ ├── exportsAndImportsWithUnderscores1(target=es5).types │ ├── exportsAndImportsWithUnderscores2(target=es2015).js │ ├── exportsAndImportsWithUnderscores2(target=es2015).symbols │ ├── exportsAndImportsWithUnderscores2(target=es2015).types │ ├── exportsAndImportsWithUnderscores2(target=es5).errors.txt │ ├── exportsAndImportsWithUnderscores2(target=es5).js │ ├── exportsAndImportsWithUnderscores2(target=es5).symbols │ ├── exportsAndImportsWithUnderscores2(target=es5).types │ ├── exportsAndImportsWithUnderscores3(target=es2015).js │ ├── exportsAndImportsWithUnderscores3(target=es2015).symbols │ ├── exportsAndImportsWithUnderscores3(target=es2015).types │ ├── exportsAndImportsWithUnderscores3(target=es5).errors.txt │ ├── exportsAndImportsWithUnderscores3(target=es5).js │ ├── exportsAndImportsWithUnderscores3(target=es5).symbols │ ├── exportsAndImportsWithUnderscores3(target=es5).types │ ├── exportsAndImportsWithUnderscores4(target=es2015).js │ ├── exportsAndImportsWithUnderscores4(target=es2015).symbols │ ├── exportsAndImportsWithUnderscores4(target=es2015).types │ ├── exportsAndImportsWithUnderscores4(target=es5).errors.txt │ ├── exportsAndImportsWithUnderscores4(target=es5).js │ ├── exportsAndImportsWithUnderscores4(target=es5).symbols │ ├── exportsAndImportsWithUnderscores4(target=es5).types │ ├── exportsInAmbientModules1.errors.txt │ ├── exportsInAmbientModules1.js │ ├── exportsInAmbientModules1.symbols │ ├── exportsInAmbientModules1.types │ ├── exportsInAmbientModules2.errors.txt │ ├── exportsInAmbientModules2.js │ ├── exportsInAmbientModules2.symbols │ ├── exportsInAmbientModules2.types │ ├── expr.errors.txt │ ├── expr.js │ ├── expr.symbols │ ├── expr.types │ ├── expressionTypeNodeShouldError.errors.txt │ ├── expressionTypeNodeShouldError.js │ ├── expressionTypeNodeShouldError.symbols │ ├── expressionTypeNodeShouldError.types │ ├── expressionWithJSDocTypeArguments.errors.txt │ ├── expressionWithJSDocTypeArguments.js │ ├── expressionWithJSDocTypeArguments.symbols │ ├── expressionWithJSDocTypeArguments.types │ ├── expressionsForbiddenInParameterInitializers.errors.txt │ ├── expressionsForbiddenInParameterInitializers.js │ ├── expressionsForbiddenInParameterInitializers.symbols │ ├── expressionsForbiddenInParameterInitializers.types │ ├── extBaseClass1.js │ ├── extBaseClass1.symbols │ ├── extBaseClass1.types │ ├── extBaseClass2.errors.txt │ ├── extBaseClass2.js │ ├── extBaseClass2.symbols │ ├── extBaseClass2.types │ ├── extendAndImplementTheSameBaseType.errors.txt │ ├── extendAndImplementTheSameBaseType.js │ ├── extendAndImplementTheSameBaseType.symbols │ ├── extendAndImplementTheSameBaseType.types │ ├── extendAndImplementTheSameBaseType2.errors.txt │ ├── extendAndImplementTheSameBaseType2.js │ ├── extendAndImplementTheSameBaseType2.symbols │ ├── extendAndImplementTheSameBaseType2.types │ ├── extendArray.errors.txt │ ├── extendArray.js │ ├── extendArray.symbols │ ├── extendArray.types │ ├── extendBaseClassBeforeItsDeclared.errors.txt │ ├── extendBaseClassBeforeItsDeclared.js │ ├── extendBaseClassBeforeItsDeclared.symbols │ ├── extendBaseClassBeforeItsDeclared.types │ ├── extendBooleanInterface.js │ ├── extendBooleanInterface.symbols │ ├── extendBooleanInterface.types │ ├── extendClassExpressionFromModule.js │ ├── extendClassExpressionFromModule.symbols │ ├── extendClassExpressionFromModule.types │ ├── extendConstructSignatureInInterface.errors.txt │ ├── extendConstructSignatureInInterface.js │ ├── extendConstructSignatureInInterface.symbols │ ├── extendConstructSignatureInInterface.types │ ├── extendFromAny.errors.txt │ ├── extendFromAny.js │ ├── extendFromAny.symbols │ ├── extendFromAny.types │ ├── extendGenericArray.errors.txt │ ├── extendGenericArray.js │ ├── extendGenericArray.symbols │ ├── extendGenericArray.types │ ├── extendGenericArray2.errors.txt │ ├── extendGenericArray2.js │ ├── extendGenericArray2.symbols │ ├── extendGenericArray2.types │ ├── extendGlobalThis.errors.txt │ ├── extendGlobalThis.js │ ├── extendGlobalThis.symbols │ ├── extendGlobalThis.types │ ├── extendGlobalThis2.errors.txt │ ├── extendGlobalThis2.js │ ├── extendGlobalThis2.symbols │ ├── extendGlobalThis2.types │ ├── extendNonClassSymbol1.js │ ├── extendNonClassSymbol1.symbols │ ├── extendNonClassSymbol1.types │ ├── extendNonClassSymbol2.errors.txt │ ├── extendNonClassSymbol2.js │ ├── extendNonClassSymbol2.symbols │ ├── extendNonClassSymbol2.types │ ├── extendNumberInterface.js │ ├── extendNumberInterface.symbols │ ├── extendNumberInterface.types │ ├── extendPrivateConstructorClass.errors.txt │ ├── extendPrivateConstructorClass.js │ ├── extendPrivateConstructorClass.symbols │ ├── extendPrivateConstructorClass.types │ ├── extendStringInterface.js │ ├── extendStringInterface.symbols │ ├── extendStringInterface.types │ ├── extendedInterfaceGenericType.errors.txt │ ├── extendedInterfaceGenericType.js │ ├── extendedInterfaceGenericType.symbols │ ├── extendedInterfaceGenericType.types │ ├── extendedInterfacesWithDuplicateTypeParameters.errors.txt │ ├── extendedInterfacesWithDuplicateTypeParameters.js │ ├── extendedInterfacesWithDuplicateTypeParameters.symbols │ ├── extendedInterfacesWithDuplicateTypeParameters.types │ ├── extendedUnicodeEscapeSequenceIdentifiers.js │ ├── extendedUnicodeEscapeSequenceIdentifiers.symbols │ ├── extendedUnicodeEscapeSequenceIdentifiers.types │ ├── extendedUnicodePlaneIdentifiers.js │ ├── extendedUnicodePlaneIdentifiers.symbols │ ├── extendedUnicodePlaneIdentifiers.types │ ├── extendedUnicodePlaneIdentifiersJSDoc.js │ ├── extendedUnicodePlaneIdentifiersJSDoc.symbols │ ├── extendedUnicodePlaneIdentifiersJSDoc.types │ ├── extendingClassFromAliasAndUsageInIndexer.errors.txt │ ├── extendingClassFromAliasAndUsageInIndexer.js │ ├── extendingClassFromAliasAndUsageInIndexer.symbols │ ├── extendingClassFromAliasAndUsageInIndexer.types │ ├── extendingCollectionsWithCheckJs.symbols │ ├── extendingCollectionsWithCheckJs.types │ ├── extendsClause.errors.txt │ ├── extendsClause.js │ ├── extendsClause.symbols │ ├── extendsClause.types │ ├── extendsClauseAlreadySeen.errors.txt │ ├── extendsClauseAlreadySeen.js │ ├── extendsClauseAlreadySeen.symbols │ ├── extendsClauseAlreadySeen.types │ ├── extendsClauseAlreadySeen2.errors.txt │ ├── extendsClauseAlreadySeen2.js │ ├── extendsClauseAlreadySeen2.symbols │ ├── extendsClauseAlreadySeen2.types │ ├── extendsJavaScript.js │ ├── extendsJavaScript.symbols │ ├── extendsJavaScript.types │ ├── extendsTag1.symbols │ ├── extendsTag1.types │ ├── extendsTag2.errors.txt │ ├── extendsTag2.js │ ├── extendsTag2.symbols │ ├── extendsTag2.types │ ├── extendsTag3.js │ ├── extendsTag3.symbols │ ├── extendsTag3.types │ ├── extendsTag4.errors.txt │ ├── extendsTag4.js │ ├── extendsTag4.symbols │ ├── extendsTag4.types │ ├── extendsTag5.errors.txt │ ├── extendsTag5.symbols │ ├── extendsTag5.types │ ├── extendsTag6.symbols │ ├── extendsTag6.types │ ├── extendsTagEmit.errors.txt │ ├── extendsTagEmit.js │ ├── extendsTagEmit.symbols │ ├── extendsTagEmit.types │ ├── extendsUntypedModule.errors.txt │ ├── extendsUntypedModule.js │ ├── extendsUntypedModule.symbols │ ├── extendsUntypedModule.types │ ├── extension.errors.txt │ ├── extension.js │ ├── extension.symbols │ ├── extension.types │ ├── extensionLoadingPriority(moduleresolution=bundler).symbols │ ├── extensionLoadingPriority(moduleresolution=bundler).types │ ├── extensionLoadingPriority(moduleresolution=classic).errors.txt │ ├── extensionLoadingPriority(moduleresolution=classic).symbols │ ├── extensionLoadingPriority(moduleresolution=classic).types │ ├── extensionLoadingPriority(moduleresolution=node16).errors.txt │ ├── extensionLoadingPriority(moduleresolution=node16).symbols │ ├── extensionLoadingPriority(moduleresolution=node16).types │ ├── extensionLoadingPriority(moduleresolution=nodenext).errors.txt │ ├── extensionLoadingPriority(moduleresolution=nodenext).symbols │ ├── extensionLoadingPriority(moduleresolution=nodenext).types │ ├── externFunc.js │ ├── externFunc.symbols │ ├── externFunc.types │ ├── externModule.errors.txt │ ├── externModule.js │ ├── externModule.symbols │ ├── externModule.types │ ├── externModuleClobber.js │ ├── externModuleClobber.symbols │ ├── externModuleClobber.types │ ├── externSemantics.errors.txt │ ├── externSemantics.js │ ├── externSemantics.symbols │ ├── externSemantics.types │ ├── externSyntax.errors.txt │ ├── externSyntax.js │ ├── externSyntax.symbols │ ├── externSyntax.types │ ├── externalModuleAssignToVar.errors.txt │ ├── externalModuleAssignToVar.js │ ├── externalModuleAssignToVar.symbols │ ├── externalModuleAssignToVar.types │ ├── externalModuleExportingGenericClass.errors.txt │ ├── externalModuleExportingGenericClass.js │ ├── externalModuleExportingGenericClass.symbols │ ├── externalModuleExportingGenericClass.types │ ├── externalModuleImmutableBindings.errors.txt │ ├── externalModuleImmutableBindings.js │ ├── externalModuleImmutableBindings.symbols │ ├── externalModuleImmutableBindings.types │ ├── externalModuleQualification.errors.txt │ ├── externalModuleQualification.js │ ├── externalModuleQualification.symbols │ ├── externalModuleQualification.types │ ├── externalModuleReferenceDoubleUnderscore1.js │ ├── externalModuleReferenceDoubleUnderscore1.symbols │ ├── externalModuleReferenceDoubleUnderscore1.types │ ├── externalModuleReferenceOfImportDeclarationWithExportModifier.errors.txt │ ├── externalModuleReferenceOfImportDeclarationWithExportModifier.js │ ├── externalModuleReferenceOfImportDeclarationWithExportModifier.symbols │ ├── externalModuleReferenceOfImportDeclarationWithExportModifier.types │ ├── externalModuleRefernceResolutionOrderInImportDeclaration.errors.txt │ ├── externalModuleRefernceResolutionOrderInImportDeclaration.js │ ├── externalModuleRefernceResolutionOrderInImportDeclaration.symbols │ ├── externalModuleRefernceResolutionOrderInImportDeclaration.types │ ├── externalModuleResolution.js │ ├── externalModuleResolution.symbols │ ├── externalModuleResolution.types │ ├── externalModuleResolution2.js │ ├── externalModuleResolution2.symbols │ ├── externalModuleResolution2.types │ ├── externalModuleWithoutCompilerFlag1.js │ ├── externalModuleWithoutCompilerFlag1.symbols │ ├── externalModuleWithoutCompilerFlag1.types │ ├── extractConstant/ │ │ ├── extractConstant_ArrowFunction_Block.js │ │ ├── extractConstant_ArrowFunction_Block.ts │ │ ├── extractConstant_ArrowFunction_Expression.js │ │ ├── extractConstant_ArrowFunction_Expression.ts │ │ ├── extractConstant_BlockScopeMismatch.js │ │ ├── extractConstant_BlockScopeMismatch.ts │ │ ├── extractConstant_BlockScopes_NoDependencies.js │ │ ├── extractConstant_BlockScopes_NoDependencies.ts │ │ ├── extractConstant_CaseClauseExpression.js │ │ ├── extractConstant_CaseClauseExpression.ts │ │ ├── extractConstant_Class.js │ │ ├── extractConstant_Class.ts │ │ ├── extractConstant_ClassInsertionPosition1.js │ │ ├── extractConstant_ClassInsertionPosition1.ts │ │ ├── extractConstant_ClassInsertionPosition2.js │ │ ├── extractConstant_ClassInsertionPosition2.ts │ │ ├── extractConstant_ClassInsertionPosition3.js │ │ ├── extractConstant_ClassInsertionPosition3.ts │ │ ├── extractConstant_ContextualType.ts │ │ ├── extractConstant_ContextualType_Lambda.ts │ │ ├── extractConstant_Directive.js │ │ ├── extractConstant_Directive.ts │ │ ├── extractConstant_ExpressionStatement.js │ │ ├── extractConstant_ExpressionStatement.ts │ │ ├── extractConstant_ExpressionStatementConsumesLocal.js │ │ ├── extractConstant_ExpressionStatementConsumesLocal.ts │ │ ├── extractConstant_ExpressionStatementExpression.js │ │ ├── extractConstant_ExpressionStatementExpression.ts │ │ ├── extractConstant_ExpressionStatementInNestedScope.js │ │ ├── extractConstant_ExpressionStatementInNestedScope.ts │ │ ├── extractConstant_Function.js │ │ ├── extractConstant_Function.ts │ │ ├── extractConstant_Method.js │ │ ├── extractConstant_Method.ts │ │ ├── extractConstant_MultipleHeaders.js │ │ ├── extractConstant_MultipleHeaders.ts │ │ ├── extractConstant_Namespace.ts │ │ ├── extractConstant_Parameters.js │ │ ├── extractConstant_Parameters.ts │ │ ├── extractConstant_PinnedComment.js │ │ ├── extractConstant_PinnedComment.ts │ │ ├── extractConstant_PinnedCommentAndDocComment.js │ │ ├── extractConstant_PinnedCommentAndDocComment.ts │ │ ├── extractConstant_PreserveTrivia.js │ │ ├── extractConstant_PreserveTrivia.ts │ │ ├── extractConstant_PropertyName.js │ │ ├── extractConstant_PropertyName.ts │ │ ├── extractConstant_PropertyName_ExistingName.js │ │ ├── extractConstant_PropertyName_ExistingName.ts │ │ ├── extractConstant_PropertyName_Keyword.js │ │ ├── extractConstant_PropertyName_Keyword.ts │ │ ├── extractConstant_PropertyName_PrivateIdentifierKeyword.js │ │ ├── extractConstant_PropertyName_PrivateIdentifierKeyword.ts │ │ ├── extractConstant_RepeatedSubstitution.ts │ │ ├── extractConstant_StatementInsertionPosition1.js │ │ ├── extractConstant_StatementInsertionPosition1.ts │ │ ├── extractConstant_StatementInsertionPosition2.js │ │ ├── extractConstant_StatementInsertionPosition2.ts │ │ ├── extractConstant_StatementInsertionPosition3.js │ │ ├── extractConstant_StatementInsertionPosition3.ts │ │ ├── extractConstant_StatementInsertionPosition4.js │ │ ├── extractConstant_StatementInsertionPosition4.ts │ │ ├── extractConstant_StatementInsertionPosition5.js │ │ ├── extractConstant_StatementInsertionPosition5.ts │ │ ├── extractConstant_StatementInsertionPosition6.js │ │ ├── extractConstant_StatementInsertionPosition6.ts │ │ ├── extractConstant_StatementInsertionPosition7.js │ │ ├── extractConstant_StatementInsertionPosition7.ts │ │ ├── extractConstant_This_Constructor.js │ │ ├── extractConstant_This_Constructor.ts │ │ ├── extractConstant_This_Method.js │ │ ├── extractConstant_This_Method.ts │ │ ├── extractConstant_This_Property.ts │ │ ├── extractConstant_TopLevel.js │ │ ├── extractConstant_TopLevel.ts │ │ ├── extractConstant_TripleSlash.js │ │ ├── extractConstant_TripleSlash.ts │ │ ├── extractConstant_TypeParameters.ts │ │ ├── extractConstant_VariableList_MultipleLines.js │ │ ├── extractConstant_VariableList_MultipleLines.ts │ │ ├── extractConstant_VariableList_const.js │ │ ├── extractConstant_VariableList_const.ts │ │ ├── extractConstant_VariableList_let.js │ │ └── extractConstant_VariableList_let.ts │ ├── extractFunction/ │ │ ├── extractFunction1.ts │ │ ├── extractFunction10.ts │ │ ├── extractFunction11.ts │ │ ├── extractFunction12.ts │ │ ├── extractFunction13.ts │ │ ├── extractFunction14.ts │ │ ├── extractFunction15.ts │ │ ├── extractFunction16.ts │ │ ├── extractFunction17.ts │ │ ├── extractFunction18.ts │ │ ├── extractFunction19.ts │ │ ├── extractFunction2.ts │ │ ├── extractFunction20.js │ │ ├── extractFunction20.ts │ │ ├── extractFunction21.js │ │ ├── extractFunction21.ts │ │ ├── extractFunction22.js │ │ ├── extractFunction22.ts │ │ ├── extractFunction23.ts │ │ ├── extractFunction24.js │ │ ├── extractFunction24.ts │ │ ├── extractFunction25.js │ │ ├── extractFunction25.ts │ │ ├── extractFunction26.js │ │ ├── extractFunction26.ts │ │ ├── extractFunction27.js │ │ ├── extractFunction27.ts │ │ ├── extractFunction28.js │ │ ├── extractFunction28.ts │ │ ├── extractFunction29.ts │ │ ├── extractFunction3.ts │ │ ├── extractFunction30.ts │ │ ├── extractFunction31.ts │ │ ├── extractFunction32.ts │ │ ├── extractFunction33.js │ │ ├── extractFunction33.ts │ │ ├── extractFunction34.js │ │ ├── extractFunction34.ts │ │ ├── extractFunction4.ts │ │ ├── extractFunction5.ts │ │ ├── extractFunction6.ts │ │ ├── extractFunction7.ts │ │ ├── extractFunction9.ts │ │ ├── extractFunction_NamelessClass.js │ │ ├── extractFunction_NamelessClass.ts │ │ ├── extractFunction_NoDeclarations.js │ │ ├── extractFunction_NoDeclarations.ts │ │ ├── extractFunction_PreserveTrivia.js │ │ ├── extractFunction_PreserveTrivia.ts │ │ ├── extractFunction_RepeatedSubstitution.ts │ │ ├── extractFunction_VariableDeclaration_Const_NoType.js │ │ ├── extractFunction_VariableDeclaration_Const_NoType.ts │ │ ├── extractFunction_VariableDeclaration_Const_Type.ts │ │ ├── extractFunction_VariableDeclaration_ConsumedTwice.ts │ │ ├── extractFunction_VariableDeclaration_DeclaredTwice.js │ │ ├── extractFunction_VariableDeclaration_DeclaredTwice.ts │ │ ├── extractFunction_VariableDeclaration_Let_NoType.js │ │ ├── extractFunction_VariableDeclaration_Let_NoType.ts │ │ ├── extractFunction_VariableDeclaration_Let_Type.ts │ │ ├── extractFunction_VariableDeclaration_Multiple1.ts │ │ ├── extractFunction_VariableDeclaration_Multiple2.js │ │ ├── extractFunction_VariableDeclaration_Multiple2.ts │ │ ├── extractFunction_VariableDeclaration_Multiple3.ts │ │ ├── extractFunction_VariableDeclaration_ShorthandProperty.js │ │ ├── extractFunction_VariableDeclaration_ShorthandProperty.ts │ │ ├── extractFunction_VariableDeclaration_Var.js │ │ ├── extractFunction_VariableDeclaration_Var.ts │ │ ├── extractFunction_VariableDeclaration_Writes_Const_NoType.js │ │ ├── extractFunction_VariableDeclaration_Writes_Const_NoType.ts │ │ ├── extractFunction_VariableDeclaration_Writes_Const_Type.ts │ │ ├── extractFunction_VariableDeclaration_Writes_Let_LiteralType1.ts │ │ ├── extractFunction_VariableDeclaration_Writes_Let_LiteralType2.ts │ │ ├── extractFunction_VariableDeclaration_Writes_Let_NoType.js │ │ ├── extractFunction_VariableDeclaration_Writes_Let_NoType.ts │ │ ├── extractFunction_VariableDeclaration_Writes_Let_Type.ts │ │ ├── extractFunction_VariableDeclaration_Writes_Let_TypeWithComments.ts │ │ ├── extractFunction_VariableDeclaration_Writes_Mixed1.js │ │ ├── extractFunction_VariableDeclaration_Writes_Mixed1.ts │ │ ├── extractFunction_VariableDeclaration_Writes_Mixed2.js │ │ ├── extractFunction_VariableDeclaration_Writes_Mixed2.ts │ │ ├── extractFunction_VariableDeclaration_Writes_Mixed3.ts │ │ ├── extractFunction_VariableDeclaration_Writes_UnionUndefined.ts │ │ ├── extractFunction_VariableDeclaration_Writes_Var.js │ │ └── extractFunction_VariableDeclaration_Writes_Var.ts │ ├── extractInferenceImprovement.errors.txt │ ├── extractInferenceImprovement.js │ ├── extractInferenceImprovement.symbols │ ├── extractInferenceImprovement.types │ ├── fakeInfinity1.errors.txt │ ├── fakeInfinity1.js │ ├── fakeInfinity1.symbols │ ├── fakeInfinity1.types │ ├── fakeInfinity2.js │ ├── fakeInfinity2.symbols │ ├── fakeInfinity2.types │ ├── fakeInfinity3.js │ ├── fakeInfinity3.symbols │ ├── fakeInfinity3.types │ ├── fallFromLastCase1.js │ ├── fallFromLastCase1.symbols │ ├── fallFromLastCase1.types │ ├── fallFromLastCase2.errors.txt │ ├── fallFromLastCase2.js │ ├── fallFromLastCase2.symbols │ ├── fallFromLastCase2.types │ ├── fallbackToBindingPatternForTypeInference.errors.txt │ ├── fallbackToBindingPatternForTypeInference.js │ ├── fallbackToBindingPatternForTypeInference.symbols │ ├── fallbackToBindingPatternForTypeInference.types │ ├── fatArrowSelf.js │ ├── fatArrowSelf.symbols │ ├── fatArrowSelf.types │ ├── fatArrowfunctionAsType.js │ ├── fatArrowfunctionAsType.symbols │ ├── fatArrowfunctionAsType.types │ ├── fatarrowfunctions.js │ ├── fatarrowfunctions.symbols │ ├── fatarrowfunctions.types │ ├── fatarrowfunctionsErrors.errors.txt │ ├── fatarrowfunctionsErrors.js │ ├── fatarrowfunctionsErrors.symbols │ ├── fatarrowfunctionsErrors.types │ ├── fatarrowfunctionsInFunctionParameterDefaults.js │ ├── fatarrowfunctionsInFunctionParameterDefaults.symbols │ ├── fatarrowfunctionsInFunctionParameterDefaults.types │ ├── fatarrowfunctionsInFunctions.js │ ├── fatarrowfunctionsInFunctions.symbols │ ├── fatarrowfunctionsInFunctions.types │ ├── fatarrowfunctionsOptionalArgs.errors.txt │ ├── fatarrowfunctionsOptionalArgs.js │ ├── fatarrowfunctionsOptionalArgs.symbols │ ├── fatarrowfunctionsOptionalArgs.types │ ├── fatarrowfunctionsOptionalArgsErrors1.errors.txt │ ├── fatarrowfunctionsOptionalArgsErrors1.js │ ├── fatarrowfunctionsOptionalArgsErrors1.symbols │ ├── fatarrowfunctionsOptionalArgsErrors1.types │ ├── fatarrowfunctionsOptionalArgsErrors2.errors.txt │ ├── fatarrowfunctionsOptionalArgsErrors2.js │ ├── fatarrowfunctionsOptionalArgsErrors2.symbols │ ├── fatarrowfunctionsOptionalArgsErrors2.types │ ├── fatarrowfunctionsOptionalArgsErrors3.errors.txt │ ├── fatarrowfunctionsOptionalArgsErrors3.js │ ├── fatarrowfunctionsOptionalArgsErrors3.symbols │ ├── fatarrowfunctionsOptionalArgsErrors3.types │ ├── fatarrowfunctionsOptionalArgsErrors4.errors.txt │ ├── fatarrowfunctionsOptionalArgsErrors4.js │ ├── fatarrowfunctionsOptionalArgsErrors4.symbols │ ├── fatarrowfunctionsOptionalArgsErrors4.types │ ├── fieldAndGetterWithSameName.errors.txt │ ├── fieldAndGetterWithSameName.js │ ├── fieldAndGetterWithSameName.symbols │ ├── fieldAndGetterWithSameName.types │ ├── fileReferencesWithNoExtensions.js │ ├── fileReferencesWithNoExtensions.symbols │ ├── fileReferencesWithNoExtensions.types │ ├── fileWithNextLine1.js │ ├── fileWithNextLine1.symbols │ ├── fileWithNextLine1.types │ ├── fileWithNextLine2.js │ ├── fileWithNextLine2.symbols │ ├── fileWithNextLine2.types │ ├── fileWithNextLine3.errors.txt │ ├── fileWithNextLine3.js │ ├── fileWithNextLine3.symbols │ ├── fileWithNextLine3.types │ ├── filesEmittingIntoSameOutput.errors.txt │ ├── filesEmittingIntoSameOutput.symbols │ ├── filesEmittingIntoSameOutput.types │ ├── filesEmittingIntoSameOutputWithOutOption.errors.txt │ ├── filesEmittingIntoSameOutputWithOutOption.js │ ├── filesEmittingIntoSameOutputWithOutOption.symbols │ ├── filesEmittingIntoSameOutputWithOutOption.types │ ├── fillInMissingTypeArgsOnConstructCalls.errors.txt │ ├── fillInMissingTypeArgsOnConstructCalls.js │ ├── fillInMissingTypeArgsOnConstructCalls.symbols │ ├── fillInMissingTypeArgsOnConstructCalls.types │ ├── fillInMissingTypeArgsOnJSConstructCalls.errors.txt │ ├── fillInMissingTypeArgsOnJSConstructCalls.symbols │ ├── fillInMissingTypeArgsOnJSConstructCalls.types │ ├── filterNamespace_import.errors.txt │ ├── filterNamespace_import.js │ ├── filterNamespace_import.symbols │ ├── filterNamespace_import.types │ ├── findAllReferPropertyAccessExpressionHeritageClause.baseline.jsonc │ ├── findAllReferencesDynamicImport1.baseline.jsonc │ ├── findAllReferencesDynamicImport2.baseline.jsonc │ ├── findAllReferencesDynamicImport3.baseline.jsonc │ ├── findAllReferencesFilteringMappedTypeProperty.baseline.jsonc │ ├── findAllReferencesFromLinkTagReference1.baseline.jsonc │ ├── findAllReferencesFromLinkTagReference2.baseline.jsonc │ ├── findAllReferencesFromLinkTagReference3.baseline.jsonc │ ├── findAllReferencesFromLinkTagReference4.baseline.jsonc │ ├── findAllReferencesFromLinkTagReference5.baseline.jsonc │ ├── findAllReferencesImportMeta.baseline.jsonc │ ├── findAllReferencesJSDocFunctionNew.baseline.jsonc │ ├── findAllReferencesJSDocFunctionThis.baseline.jsonc │ ├── findAllReferencesJsDocTypeLiteral.baseline.jsonc │ ├── findAllReferencesJsOverloadedFunctionParameter.baseline.jsonc │ ├── findAllReferencesJsRequireDestructuring.baseline.jsonc │ ├── findAllReferencesJsRequireDestructuring1.baseline.jsonc │ ├── findAllReferencesLinkTag1.baseline.jsonc │ ├── findAllReferencesLinkTag2.baseline.jsonc │ ├── findAllReferencesLinkTag3.baseline.jsonc │ ├── findAllReferencesNonExistentExportBinding.baseline.jsonc │ ├── findAllReferencesOfConstructor.baseline.jsonc │ ├── findAllReferencesOfConstructor_badOverload.baseline.jsonc │ ├── findAllReferencesOfJsonModule.baseline.jsonc │ ├── findAllReferencesTripleSlash.baseline.jsonc │ ├── findAllReferencesUmdModuleAsGlobalConst.baseline.jsonc │ ├── findAllReferencesUndefined.baseline.jsonc │ ├── findAllRefsBadImport.baseline.jsonc │ ├── findAllRefsCatchClause.baseline.jsonc │ ├── findAllRefsClassExpression0.baseline.jsonc │ ├── findAllRefsClassExpression1.baseline.jsonc │ ├── findAllRefsClassExpression2.baseline.jsonc │ ├── findAllRefsClassStaticBlocks.baseline.jsonc │ ├── findAllRefsClassWithStaticThisAccess.baseline.jsonc │ ├── findAllRefsCommonJsRequire.baseline.jsonc │ ├── findAllRefsCommonJsRequire2.baseline.jsonc │ ├── findAllRefsCommonJsRequire3.baseline.jsonc │ ├── findAllRefsConstructorFunctions.baseline.jsonc │ ├── findAllRefsDeclareClass.baseline.jsonc │ ├── findAllRefsDefaultImport.baseline.jsonc │ ├── findAllRefsDefaultImportThroughNamespace.baseline.jsonc │ ├── findAllRefsDefinition.baseline.jsonc │ ├── findAllRefsDestructureGeneric.baseline.jsonc │ ├── findAllRefsDestructureGetter.baseline.jsonc │ ├── findAllRefsDestructureGetter2.baseline.jsonc │ ├── findAllRefsEnumAsNamespace.baseline.jsonc │ ├── findAllRefsEnumMember.baseline.jsonc │ ├── findAllRefsExportAsNamespace.baseline.jsonc │ ├── findAllRefsExportConstEqualToClass.baseline.jsonc │ ├── findAllRefsExportDefaultClassConstructor.baseline.jsonc │ ├── findAllRefsExportEquals.baseline.jsonc │ ├── findAllRefsExportNotAtTopLevel.baseline.jsonc │ ├── findAllRefsForComputedProperties.baseline.jsonc │ ├── findAllRefsForComputedProperties2.baseline.jsonc │ ├── findAllRefsForDefaultExport.baseline.jsonc │ ├── findAllRefsForDefaultExport01.baseline.jsonc │ ├── findAllRefsForDefaultExport02.baseline.jsonc │ ├── findAllRefsForDefaultExport03.baseline.jsonc │ ├── findAllRefsForDefaultExport04.baseline.jsonc │ ├── findAllRefsForDefaultExport08.baseline.jsonc │ ├── findAllRefsForDefaultExport09.baseline.jsonc │ ├── findAllRefsForDefaultExportAnonymous.baseline.jsonc │ ├── findAllRefsForDefaultExport_anonymous.baseline.jsonc │ ├── findAllRefsForDefaultExport_reExport.baseline.jsonc │ ├── findAllRefsForDefaultExport_reExport_allowSyntheticDefaultImports.baseline.jsonc │ ├── findAllRefsForDefaultKeyword.baseline.jsonc │ ├── findAllRefsForFunctionExpression01.baseline.jsonc │ ├── findAllRefsForImportCall.baseline.jsonc │ ├── findAllRefsForImportCallType.baseline.jsonc │ ├── findAllRefsForMappedType.baseline.jsonc │ ├── findAllRefsForModule.baseline.jsonc │ ├── findAllRefsForModuleGlobal.baseline.jsonc │ ├── findAllRefsForObjectLiteralProperties.baseline.jsonc │ ├── findAllRefsForObjectSpread.baseline.jsonc │ ├── findAllRefsForRest.baseline.jsonc │ ├── findAllRefsForStaticInstanceMethodInheritance.baseline.jsonc │ ├── findAllRefsForStaticInstancePropertyInheritance.baseline.jsonc │ ├── findAllRefsForStringLiteral.baseline.jsonc │ ├── findAllRefsForStringLiteralTypes.baseline.jsonc │ ├── findAllRefsForUMDModuleAlias1.baseline.jsonc │ ├── findAllRefsForVariableInExtendsClause01.baseline.jsonc │ ├── findAllRefsForVariableInExtendsClause02.baseline.jsonc │ ├── findAllRefsForVariableInImplementsClause01.baseline.jsonc │ ├── findAllRefsFromContextualUnionType1.baseline.jsonc │ ├── findAllRefsGlobalModuleAugmentation.baseline.jsonc │ ├── findAllRefsGlobalThisKeywordInModule.baseline.jsonc │ ├── findAllRefsImportDefault.baseline.jsonc │ ├── findAllRefsImportEquals.baseline.jsonc │ ├── findAllRefsImportEqualsJsonFile.baseline.jsonc │ ├── findAllRefsImportMeta.baseline.jsonc │ ├── findAllRefsImportNamed.baseline.jsonc │ ├── findAllRefsImportStarOfExportEquals.baseline.jsonc │ ├── findAllRefsImportType.baseline.jsonc │ ├── findAllRefsInClassExpression.baseline.jsonc │ ├── findAllRefsIndexedAccessTypes.baseline.jsonc │ ├── findAllRefsInheritedProperties1.baseline.jsonc │ ├── findAllRefsInheritedProperties2.baseline.jsonc │ ├── findAllRefsInheritedProperties3.baseline.jsonc │ ├── findAllRefsInheritedProperties4.baseline.jsonc │ ├── findAllRefsInheritedProperties5.baseline.jsonc │ ├── findAllRefsInsideTemplates1.baseline.jsonc │ ├── findAllRefsInsideTemplates2.baseline.jsonc │ ├── findAllRefsInsideWithBlock.baseline.jsonc │ ├── findAllRefsIsDefinition.baseline.jsonc │ ├── findAllRefsJsDocImportTag.baseline.jsonc │ ├── findAllRefsJsDocImportTag2.baseline.jsonc │ ├── findAllRefsJsDocImportTag3.baseline.jsonc │ ├── findAllRefsJsDocImportTag4.baseline.jsonc │ ├── findAllRefsJsDocImportTag5.baseline.jsonc │ ├── findAllRefsJsDocTemplateTag_class.baseline.jsonc │ ├── findAllRefsJsDocTemplateTag_class_js.baseline.jsonc │ ├── findAllRefsJsDocTemplateTag_function.baseline.jsonc │ ├── findAllRefsJsDocTemplateTag_function_js.baseline.jsonc │ ├── findAllRefsJsDocTypeDef.baseline.jsonc │ ├── findAllRefsJsDocTypeDef_js.baseline.jsonc │ ├── findAllRefsJsThisPropertyAssignment.baseline.jsonc │ ├── findAllRefsJsThisPropertyAssignment2.baseline.jsonc │ ├── findAllRefsMappedType.baseline.jsonc │ ├── findAllRefsMappedType_nonHomomorphic.baseline.jsonc │ ├── findAllRefsMissingModulesOverlappingSpecifiers.baseline.jsonc │ ├── findAllRefsModuleAugmentation.baseline.jsonc │ ├── findAllRefsModuleDotExports.baseline.jsonc │ ├── findAllRefsNoImportClause.baseline.jsonc │ ├── findAllRefsNoSubstitutionTemplateLiteralNoCrash1.baseline.jsonc │ ├── findAllRefsNonModule.baseline.jsonc │ ├── findAllRefsNonexistentPropertyNoCrash1.baseline.jsonc │ ├── findAllRefsObjectBindingElementPropertyName01.baseline.jsonc │ ├── findAllRefsObjectBindingElementPropertyName02.baseline.jsonc │ ├── findAllRefsObjectBindingElementPropertyName03.baseline.jsonc │ ├── findAllRefsObjectBindingElementPropertyName04.baseline.jsonc │ ├── findAllRefsObjectBindingElementPropertyName05.baseline.jsonc │ ├── findAllRefsObjectBindingElementPropertyName06.baseline.jsonc │ ├── findAllRefsObjectBindingElementPropertyName07.baseline.jsonc │ ├── findAllRefsObjectBindingElementPropertyName10.baseline.jsonc │ ├── findAllRefsOfConstructor.baseline.jsonc │ ├── findAllRefsOfConstructor2.baseline.jsonc │ ├── findAllRefsOfConstructor_multipleFiles.baseline.jsonc │ ├── findAllRefsOfConstructor_withModifier.baseline.jsonc │ ├── findAllRefsOnDecorators.baseline.jsonc │ ├── findAllRefsOnDefinition.baseline.jsonc │ ├── findAllRefsOnDefinition2.baseline.jsonc │ ├── findAllRefsOnImportAliases.baseline.jsonc │ ├── findAllRefsOnImportAliases2.baseline.jsonc │ ├── findAllRefsOnPrivateParameterProperty1.baseline.jsonc │ ├── findAllRefsParameterPropertyDeclaration1.baseline.jsonc │ ├── findAllRefsParameterPropertyDeclaration2.baseline.jsonc │ ├── findAllRefsParameterPropertyDeclaration3.baseline.jsonc │ ├── findAllRefsParameterPropertyDeclaration_inheritance.baseline.jsonc │ ├── findAllRefsPrefixSuffixPreference.baseline.jsonc │ ├── findAllRefsPrimitive.baseline.jsonc │ ├── findAllRefsPrimitiveJsDoc.baseline.jsonc │ ├── findAllRefsPrivateNameAccessors.baseline.jsonc │ ├── findAllRefsPrivateNameMethods.baseline.jsonc │ ├── findAllRefsPrivateNameProperties.baseline.jsonc │ ├── findAllRefsPropertyContextuallyTypedByTypeParam01.baseline.jsonc │ ├── findAllRefsReExportLocal.baseline.jsonc │ ├── findAllRefsReExportRightNameWrongSymbol.baseline.jsonc │ ├── findAllRefsReExportStar.baseline.jsonc │ ├── findAllRefsReExportStarAs.baseline.jsonc │ ├── findAllRefsReExport_broken.baseline.jsonc │ ├── findAllRefsReExport_broken2.baseline.jsonc │ ├── findAllRefsReExports.baseline.jsonc │ ├── findAllRefsReExports2.baseline.jsonc │ ├── findAllRefsReExportsUseInImportType.baseline.jsonc │ ├── findAllRefsRedeclaredPropertyInDerivedInterface.baseline.jsonc │ ├── findAllRefsRenameImportWithSameName.baseline.jsonc │ ├── findAllRefsRootSymbols.baseline.jsonc │ ├── findAllRefsThisKeyword.baseline.jsonc │ ├── findAllRefsThisKeywordMultipleFiles.baseline.jsonc │ ├── findAllRefsTypeParameterInMergedInterface.baseline.jsonc │ ├── findAllRefsTypedef.baseline.jsonc │ ├── findAllRefsTypedef_importType.baseline.jsonc │ ├── findAllRefsTypeofImport.baseline.jsonc │ ├── findAllRefsUnionProperty.baseline.jsonc │ ├── findAllRefsUnresolvedSymbols1.baseline.jsonc │ ├── findAllRefsUnresolvedSymbols2.baseline.jsonc │ ├── findAllRefsUnresolvedSymbols3.baseline.jsonc │ ├── findAllRefsWithLeadingUnderscoreNames1.baseline.jsonc │ ├── findAllRefsWithLeadingUnderscoreNames2.baseline.jsonc │ ├── findAllRefsWithLeadingUnderscoreNames3.baseline.jsonc │ ├── findAllRefsWithLeadingUnderscoreNames4.baseline.jsonc │ ├── findAllRefsWithLeadingUnderscoreNames5.baseline.jsonc │ ├── findAllRefsWithLeadingUnderscoreNames6.baseline.jsonc │ ├── findAllRefsWithLeadingUnderscoreNames7.baseline.jsonc │ ├── findAllRefsWithLeadingUnderscoreNames8.baseline.jsonc │ ├── findAllRefsWithLeadingUnderscoreNames9.baseline.jsonc │ ├── findAllRefsWithShorthandPropertyAssignment.baseline.jsonc │ ├── findAllRefsWithShorthandPropertyAssignment2.baseline.jsonc │ ├── findAllRefsWriteAccess.baseline.jsonc │ ├── findAllRefs_importType_exportEquals.baseline.jsonc │ ├── findAllRefs_importType_js.1.baseline.jsonc │ ├── findAllRefs_importType_js.2.baseline.jsonc │ ├── findAllRefs_importType_js.3.baseline.jsonc │ ├── findAllRefs_importType_js.4.baseline.jsonc │ ├── findAllRefs_importType_js.baseline.jsonc │ ├── findAllRefs_importType_meaningAtLocation.baseline.jsonc │ ├── findAllRefs_importType_named.baseline.jsonc │ ├── findAllRefs_importType_typeofImport.baseline.jsonc │ ├── findAllRefs_jsEnum.baseline.jsonc │ ├── findLast(target=es2022).errors.txt │ ├── findLast(target=es2022).js │ ├── findLast(target=es2022).symbols │ ├── findLast(target=es2022).types │ ├── findLast(target=esnext).js │ ├── findLast(target=esnext).symbols │ ├── findLast(target=esnext).types │ ├── findReferencesAcrossMultipleProjects.baseline.jsonc │ ├── findReferencesAfterEdit.baseline.jsonc │ ├── findReferencesBindingPatternInJsdocNoCrash1.baseline.jsonc │ ├── findReferencesBindingPatternInJsdocNoCrash2.baseline.jsonc │ ├── findReferencesDefinitionDisplayParts.baseline.jsonc │ ├── findReferencesJSXTagName.baseline.jsonc │ ├── findReferencesJSXTagName2.baseline.jsonc │ ├── findReferencesJSXTagName3.baseline.jsonc │ ├── findReferencesSeeTagInTs.baseline.jsonc │ ├── firstMatchRegExpMatchArray.errors.txt │ ├── firstMatchRegExpMatchArray.js │ ├── firstMatchRegExpMatchArray.symbols │ ├── firstMatchRegExpMatchArray.types │ ├── fixCrashAliasLookupForDefauledImport.js │ ├── fixCrashAliasLookupForDefauledImport.symbols │ ├── fixCrashAliasLookupForDefauledImport.types │ ├── fixSignatureCaching.errors.txt │ ├── fixSignatureCaching.js │ ├── fixSignatureCaching.symbols │ ├── fixSignatureCaching.types │ ├── fixTypeParameterInSignatureWithRestParameters.errors.txt │ ├── fixTypeParameterInSignatureWithRestParameters.js │ ├── fixTypeParameterInSignatureWithRestParameters.symbols │ ├── fixTypeParameterInSignatureWithRestParameters.types │ ├── fixingTypeParametersRepeatedly1.js │ ├── fixingTypeParametersRepeatedly1.symbols │ ├── fixingTypeParametersRepeatedly1.types │ ├── fixingTypeParametersRepeatedly2.errors.txt │ ├── fixingTypeParametersRepeatedly2.js │ ├── fixingTypeParametersRepeatedly2.symbols │ ├── fixingTypeParametersRepeatedly2.types │ ├── fixingTypeParametersRepeatedly3.js │ ├── fixingTypeParametersRepeatedly3.symbols │ ├── fixingTypeParametersRepeatedly3.types │ ├── flatArrayNoExcessiveStackDepth.errors.txt │ ├── flatArrayNoExcessiveStackDepth.js │ ├── flatArrayNoExcessiveStackDepth.symbols │ ├── flatArrayNoExcessiveStackDepth.types │ ├── float16Array.symbols │ ├── float16Array.types │ ├── flowAfterFinally1.js │ ├── flowAfterFinally1.symbols │ ├── flowAfterFinally1.types │ ├── flowControlTypeGuardThenSwitch.errors.txt │ ├── flowControlTypeGuardThenSwitch.js │ ├── flowControlTypeGuardThenSwitch.symbols │ ├── flowControlTypeGuardThenSwitch.types │ ├── flowInFinally1.js │ ├── flowInFinally1.symbols │ ├── flowInFinally1.types │ ├── fluentClasses.errors.txt │ ├── fluentClasses.js │ ├── fluentClasses.symbols │ ├── fluentClasses.types │ ├── fluentInterfaces.errors.txt │ ├── fluentInterfaces.js │ ├── fluentInterfaces.symbols │ ├── fluentInterfaces.types │ ├── for-inStatements.errors.txt │ ├── for-inStatements.js │ ├── for-inStatements.symbols │ ├── for-inStatements.types │ ├── for-inStatementsArray.js │ ├── for-inStatementsArray.symbols │ ├── for-inStatementsArray.types │ ├── for-inStatementsArrayErrors.errors.txt │ ├── for-inStatementsArrayErrors.js │ ├── for-inStatementsArrayErrors.symbols │ ├── for-inStatementsArrayErrors.types │ ├── for-inStatementsAsyncIdentifier.js │ ├── for-inStatementsAsyncIdentifier.symbols │ ├── for-inStatementsAsyncIdentifier.types │ ├── for-inStatementsDestructuring(target=es2015).errors.txt │ ├── for-inStatementsDestructuring(target=es2015).js │ ├── for-inStatementsDestructuring(target=es2015).symbols │ ├── for-inStatementsDestructuring(target=es2015).types │ ├── for-inStatementsDestructuring(target=es5).errors.txt │ ├── for-inStatementsDestructuring(target=es5).js │ ├── for-inStatementsDestructuring(target=es5).symbols │ ├── for-inStatementsDestructuring(target=es5).types │ ├── for-inStatementsDestructuring2.errors.txt │ ├── for-inStatementsDestructuring2.js │ ├── for-inStatementsDestructuring2.symbols │ ├── for-inStatementsDestructuring2.types │ ├── for-inStatementsDestructuring3.errors.txt │ ├── for-inStatementsDestructuring3.js │ ├── for-inStatementsDestructuring3.symbols │ ├── for-inStatementsDestructuring3.types │ ├── for-inStatementsDestructuring4.errors.txt │ ├── for-inStatementsDestructuring4.js │ ├── for-inStatementsDestructuring4.symbols │ ├── for-inStatementsDestructuring4.types │ ├── for-inStatementsInvalid.errors.txt │ ├── for-inStatementsInvalid.js │ ├── for-inStatementsInvalid.symbols │ ├── for-inStatementsInvalid.types │ ├── for-of-excess-declarations.errors.txt │ ├── for-of-excess-declarations.js │ ├── for-of-excess-declarations.symbols │ ├── for-of-excess-declarations.types │ ├── for-of1.js │ ├── for-of1.symbols │ ├── for-of1.types │ ├── for-of10.errors.txt │ ├── for-of10.js │ ├── for-of10.symbols │ ├── for-of10.types │ ├── for-of11.errors.txt │ ├── for-of11.js │ ├── for-of11.symbols │ ├── for-of11.types │ ├── for-of12.errors.txt │ ├── for-of12.js │ ├── for-of12.symbols │ ├── for-of12.types │ ├── for-of13.js │ ├── for-of13.symbols │ ├── for-of13.types │ ├── for-of14.errors.txt │ ├── for-of14.js │ ├── for-of14.symbols │ ├── for-of14.types │ ├── for-of15.errors.txt │ ├── for-of15.js │ ├── for-of15.symbols │ ├── for-of15.types │ ├── for-of16.errors.txt │ ├── for-of16.js │ ├── for-of16.symbols │ ├── for-of16.types │ ├── for-of17.errors.txt │ ├── for-of17.js │ ├── for-of17.symbols │ ├── for-of17.types │ ├── for-of18.js │ ├── for-of18.symbols │ ├── for-of18.types │ ├── for-of19.js │ ├── for-of19.symbols │ ├── for-of19.types │ ├── for-of2.errors.txt │ ├── for-of2.js │ ├── for-of2.symbols │ ├── for-of2.types │ ├── for-of20.js │ ├── for-of20.symbols │ ├── for-of20.types │ ├── for-of21.js │ ├── for-of21.symbols │ ├── for-of21.types │ ├── for-of22.errors.txt │ ├── for-of22.js │ ├── for-of22.symbols │ ├── for-of22.types │ ├── for-of23.js │ ├── for-of23.symbols │ ├── for-of23.types │ ├── for-of24.js │ ├── for-of24.symbols │ ├── for-of24.types │ ├── for-of25.js │ ├── for-of25.symbols │ ├── for-of25.types │ ├── for-of26.js │ ├── for-of26.symbols │ ├── for-of26.types │ ├── for-of27.js │ ├── for-of27.symbols │ ├── for-of27.types │ ├── for-of28.js │ ├── for-of28.symbols │ ├── for-of28.types │ ├── for-of29.errors.txt │ ├── for-of29.js │ ├── for-of29.symbols │ ├── for-of29.types │ ├── for-of3.errors.txt │ ├── for-of3.js │ ├── for-of3.symbols │ ├── for-of3.types │ ├── for-of30.errors.txt │ ├── for-of30.js │ ├── for-of30.symbols │ ├── for-of30.types │ ├── for-of31.js │ ├── for-of31.symbols │ ├── for-of31.types │ ├── for-of32.errors.txt │ ├── for-of32.js │ ├── for-of32.symbols │ ├── for-of32.types │ ├── for-of33.errors.txt │ ├── for-of33.js │ ├── for-of33.symbols │ ├── for-of33.types │ ├── for-of34.errors.txt │ ├── for-of34.js │ ├── for-of34.symbols │ ├── for-of34.types │ ├── for-of35.errors.txt │ ├── for-of35.js │ ├── for-of35.symbols │ ├── for-of35.types │ ├── for-of36.js │ ├── for-of36.symbols │ ├── for-of36.types │ ├── for-of37.js │ ├── for-of37.symbols │ ├── for-of37.types │ ├── for-of38.js │ ├── for-of38.symbols │ ├── for-of38.types │ ├── for-of39.errors.txt │ ├── for-of39.js │ ├── for-of39.symbols │ ├── for-of39.types │ ├── for-of4.js │ ├── for-of4.symbols │ ├── for-of4.types │ ├── for-of40.js │ ├── for-of40.symbols │ ├── for-of40.types │ ├── for-of41.js │ ├── for-of41.symbols │ ├── for-of41.types │ ├── for-of42.js │ ├── for-of42.symbols │ ├── for-of42.types │ ├── for-of43.js │ ├── for-of43.symbols │ ├── for-of43.types │ ├── for-of44.js │ ├── for-of44.symbols │ ├── for-of44.types │ ├── for-of45.js │ ├── for-of45.symbols │ ├── for-of45.types │ ├── for-of46.errors.txt │ ├── for-of46.js │ ├── for-of46.symbols │ ├── for-of46.types │ ├── for-of47.errors.txt │ ├── for-of47.js │ ├── for-of47.symbols │ ├── for-of47.types │ ├── for-of48.errors.txt │ ├── for-of48.js │ ├── for-of48.symbols │ ├── for-of48.types │ ├── for-of49.js │ ├── for-of49.symbols │ ├── for-of49.types │ ├── for-of5.js │ ├── for-of5.symbols │ ├── for-of5.types │ ├── for-of50.js │ ├── for-of50.symbols │ ├── for-of50.types │ ├── for-of51.errors.txt │ ├── for-of51.js │ ├── for-of51.symbols │ ├── for-of51.types │ ├── for-of52.errors.txt │ ├── for-of52.js │ ├── for-of52.symbols │ ├── for-of52.types │ ├── for-of53.errors.txt │ ├── for-of53.js │ ├── for-of53.symbols │ ├── for-of53.types │ ├── for-of54.errors.txt │ ├── for-of54.js │ ├── for-of54.symbols │ ├── for-of54.types │ ├── for-of55.errors.txt │ ├── for-of55.js │ ├── for-of55.symbols │ ├── for-of55.types │ ├── for-of56(alwaysstrict=false).js │ ├── for-of56(alwaysstrict=false).symbols │ ├── for-of56(alwaysstrict=false).types │ ├── for-of56(alwaysstrict=true).errors.txt │ ├── for-of56(alwaysstrict=true).js │ ├── for-of56(alwaysstrict=true).symbols │ ├── for-of56(alwaysstrict=true).types │ ├── for-of57.errors.txt │ ├── for-of57.js │ ├── for-of57.symbols │ ├── for-of57.types │ ├── for-of58.js │ ├── for-of58.symbols │ ├── for-of58.types │ ├── for-of6.errors.txt │ ├── for-of6.js │ ├── for-of6.symbols │ ├── for-of6.types │ ├── for-of7.errors.txt │ ├── for-of7.js │ ├── for-of7.symbols │ ├── for-of7.types │ ├── for-of8.errors.txt │ ├── for-of8.js │ ├── for-of8.symbols │ ├── for-of8.types │ ├── for-of9.js │ ├── for-of9.symbols │ ├── for-of9.types │ ├── for.errors.txt │ ├── for.js │ ├── for.symbols │ ├── for.types │ ├── forAwaitForIntersection1.symbols │ ├── forAwaitForIntersection1.types │ ├── forAwaitForUnion.js │ ├── forAwaitForUnion.symbols │ ├── forAwaitForUnion.types │ ├── forAwaitPerIterationBindingDownlevel(target=es2015).errors.txt │ ├── forAwaitPerIterationBindingDownlevel(target=es2015).js │ ├── forAwaitPerIterationBindingDownlevel(target=es5).errors.txt │ ├── forAwaitPerIterationBindingDownlevel(target=es5).js │ ├── forBreakStatements.js │ ├── forBreakStatements.symbols │ ├── forBreakStatements.types │ ├── forContinueStatements.js │ ├── forContinueStatements.symbols │ ├── forContinueStatements.types │ ├── forIn.errors.txt │ ├── forIn.js │ ├── forIn.symbols │ ├── forIn.types │ ├── forIn2.errors.txt │ ├── forIn2.js │ ├── forIn2.symbols │ ├── forIn2.types │ ├── forInBreakStatements.js │ ├── forInBreakStatements.symbols │ ├── forInBreakStatements.types │ ├── forInContinueStatements.js │ ├── forInContinueStatements.symbols │ ├── forInContinueStatements.types │ ├── forInModule.js │ ├── forInModule.symbols │ ├── forInModule.types │ ├── forInStatement1.js │ ├── forInStatement1.symbols │ ├── forInStatement1.types │ ├── forInStatement2.errors.txt │ ├── forInStatement2.js │ ├── forInStatement2.symbols │ ├── forInStatement2.types │ ├── forInStatement3.js │ ├── forInStatement3.symbols │ ├── forInStatement3.types │ ├── forInStatement4.errors.txt │ ├── forInStatement4.js │ ├── forInStatement4.symbols │ ├── forInStatement4.types │ ├── forInStatement5.js │ ├── forInStatement5.symbols │ ├── forInStatement5.types │ ├── forInStatement6.js │ ├── forInStatement6.symbols │ ├── forInStatement6.types │ ├── forInStatement7.errors.txt │ ├── forInStatement7.js │ ├── forInStatement7.symbols │ ├── forInStatement7.types │ ├── forInStrictNullChecksNoError.errors.txt │ ├── forInStrictNullChecksNoError.js │ ├── forInStrictNullChecksNoError.symbols │ ├── forInStrictNullChecksNoError.types │ ├── forLoopEndingMultilineComments.js │ ├── forLoopEndingMultilineComments.symbols │ ├── forLoopEndingMultilineComments.types │ ├── forLoopWithDestructuringDoesNotElideFollowingStatement.js │ ├── forLoopWithDestructuringDoesNotElideFollowingStatement.symbols │ ├── forLoopWithDestructuringDoesNotElideFollowingStatement.types │ ├── forOfStringConstituents.js │ ├── forOfStringConstituents.symbols │ ├── forOfStringConstituents.types │ ├── forOfTransformsExpression.js │ ├── forOfTransformsExpression.symbols │ ├── forOfTransformsExpression.types │ ├── forStatementInnerComments.js │ ├── forStatementInnerComments.symbols │ ├── forStatementInnerComments.types │ ├── forStatements.errors.txt │ ├── forStatements.js │ ├── forStatements.symbols │ ├── forStatements.types │ ├── forStatementsMultipleInvalidDecl.errors.txt │ ├── forStatementsMultipleInvalidDecl.js │ ├── forStatementsMultipleInvalidDecl.symbols │ ├── forStatementsMultipleInvalidDecl.types │ ├── forStatementsMultipleValidDecl.errors.txt │ ├── forStatementsMultipleValidDecl.js │ ├── forStatementsMultipleValidDecl.symbols │ ├── forStatementsMultipleValidDecl.types │ ├── forgottenNew.errors.txt │ ├── forgottenNew.js │ ├── forgottenNew.symbols │ ├── forgottenNew.types │ ├── formatToPartsFractionalSecond.js │ ├── formatToPartsFractionalSecond.symbols │ ├── formatToPartsFractionalSecond.types │ ├── forwardDeclaredCommonTypes01(target=es2015).errors.txt │ ├── forwardDeclaredCommonTypes01(target=es2015).js │ ├── forwardDeclaredCommonTypes01(target=es2015).symbols │ ├── forwardDeclaredCommonTypes01(target=es2015).types │ ├── forwardDeclaredCommonTypes01(target=es5).errors.txt │ ├── forwardDeclaredCommonTypes01(target=es5).js │ ├── forwardDeclaredCommonTypes01(target=es5).symbols │ ├── forwardDeclaredCommonTypes01(target=es5).types │ ├── forwardRefInClassProperties.errors.txt │ ├── forwardRefInClassProperties.js │ ├── forwardRefInClassProperties.symbols │ ├── forwardRefInClassProperties.types │ ├── forwardRefInEnum.errors.txt │ ├── forwardRefInEnum.js │ ├── forwardRefInEnum.symbols │ ├── forwardRefInEnum.types │ ├── forwardRefInTypeDeclaration(strict=false).js │ ├── forwardRefInTypeDeclaration(strict=false).symbols │ ├── forwardRefInTypeDeclaration(strict=false).types │ ├── forwardRefInTypeDeclaration(strict=true).js │ ├── forwardRefInTypeDeclaration(strict=true).symbols │ ├── forwardRefInTypeDeclaration(strict=true).types │ ├── freshLiteralInference.js │ ├── freshLiteralInference.symbols │ ├── freshLiteralInference.types │ ├── freshLiteralTypesInIntersections.js │ ├── freshLiteralTypesInIntersections.symbols │ ├── freshLiteralTypesInIntersections.types │ ├── fromAsIdentifier1.js │ ├── fromAsIdentifier1.symbols │ ├── fromAsIdentifier1.types │ ├── fromAsIdentifier2.js │ ├── fromAsIdentifier2.symbols │ ├── fromAsIdentifier2.types │ ├── funClodule.errors.txt │ ├── funClodule.js │ ├── funClodule.symbols │ ├── funClodule.types │ ├── funcdecl.js │ ├── funcdecl.symbols │ ├── funcdecl.types │ ├── functionAndImportNameConflict.errors.txt │ ├── functionAndImportNameConflict.js │ ├── functionAndImportNameConflict.symbols │ ├── functionAndImportNameConflict.types │ ├── functionAndInterfaceWithSeparateErrors.errors.txt │ ├── functionAndInterfaceWithSeparateErrors.js │ ├── functionAndInterfaceWithSeparateErrors.symbols │ ├── functionAndInterfaceWithSeparateErrors.types │ ├── functionAndPropertyNameConflict.errors.txt │ ├── functionAndPropertyNameConflict.js │ ├── functionAndPropertyNameConflict.symbols │ ├── functionAndPropertyNameConflict.types │ ├── functionArgShadowing.errors.txt │ ├── functionArgShadowing.js │ ├── functionArgShadowing.symbols │ ├── functionArgShadowing.types │ ├── functionAssignabilityWithArrayLike01(strict=false).errors.txt │ ├── functionAssignabilityWithArrayLike01(strict=false).js │ ├── functionAssignabilityWithArrayLike01(strict=false).symbols │ ├── functionAssignabilityWithArrayLike01(strict=false).types │ ├── functionAssignabilityWithArrayLike01(strict=true).errors.txt │ ├── functionAssignabilityWithArrayLike01(strict=true).js │ ├── functionAssignabilityWithArrayLike01(strict=true).symbols │ ├── functionAssignabilityWithArrayLike01(strict=true).types │ ├── functionAssignment.errors.txt │ ├── functionAssignment.js │ ├── functionAssignment.symbols │ ├── functionAssignment.types │ ├── functionAssignmentError.js │ ├── functionAssignmentError.symbols │ ├── functionAssignmentError.types │ ├── functionCall1.js │ ├── functionCall1.symbols │ ├── functionCall1.types │ ├── functionCall10.errors.txt │ ├── functionCall10.js │ ├── functionCall10.symbols │ ├── functionCall10.types │ ├── functionCall11.errors.txt │ ├── functionCall11.js │ ├── functionCall11.symbols │ ├── functionCall11.types │ ├── functionCall12.errors.txt │ ├── functionCall12.js │ ├── functionCall12.symbols │ ├── functionCall12.types │ ├── functionCall13.errors.txt │ ├── functionCall13.js │ ├── functionCall13.symbols │ ├── functionCall13.types │ ├── functionCall14.errors.txt │ ├── functionCall14.js │ ├── functionCall14.symbols │ ├── functionCall14.types │ ├── functionCall15.errors.txt │ ├── functionCall15.js │ ├── functionCall15.symbols │ ├── functionCall15.types │ ├── functionCall16.errors.txt │ ├── functionCall16.js │ ├── functionCall16.symbols │ ├── functionCall16.types │ ├── functionCall17.errors.txt │ ├── functionCall17.js │ ├── functionCall17.symbols │ ├── functionCall17.types │ ├── functionCall18.errors.txt │ ├── functionCall18.js │ ├── functionCall18.symbols │ ├── functionCall18.types │ ├── functionCall2.js │ ├── functionCall2.symbols │ ├── functionCall2.types │ ├── functionCall3.js │ ├── functionCall3.symbols │ ├── functionCall3.types │ ├── functionCall4.js │ ├── functionCall4.symbols │ ├── functionCall4.types │ ├── functionCall5.js │ ├── functionCall5.symbols │ ├── functionCall5.types │ ├── functionCall6.errors.txt │ ├── functionCall6.js │ ├── functionCall6.symbols │ ├── functionCall6.types │ ├── functionCall7.errors.txt │ ├── functionCall7.js │ ├── functionCall7.symbols │ ├── functionCall7.types │ ├── functionCall8.errors.txt │ ├── functionCall8.js │ ├── functionCall8.symbols │ ├── functionCall8.types │ ├── functionCall9.errors.txt │ ├── functionCall9.js │ ├── functionCall9.symbols │ ├── functionCall9.types │ ├── functionCallOnConstrainedTypeVariable.errors.txt │ ├── functionCallOnConstrainedTypeVariable.js │ ├── functionCallOnConstrainedTypeVariable.symbols │ ├── functionCallOnConstrainedTypeVariable.types │ ├── functionCalls.errors.txt │ ├── functionCalls.js │ ├── functionCalls.symbols │ ├── functionCalls.types │ ├── functionConstraintSatisfaction.js │ ├── functionConstraintSatisfaction.symbols │ ├── functionConstraintSatisfaction.types │ ├── functionConstraintSatisfaction2.errors.txt │ ├── functionConstraintSatisfaction2.js │ ├── functionConstraintSatisfaction2.symbols │ ├── functionConstraintSatisfaction2.types │ ├── functionConstraintSatisfaction3.js │ ├── functionConstraintSatisfaction3.symbols │ ├── functionConstraintSatisfaction3.types │ ├── functionDeclarationWithArgumentOfTypeFunctionTypeArray.js │ ├── functionDeclarationWithArgumentOfTypeFunctionTypeArray.symbols │ ├── functionDeclarationWithArgumentOfTypeFunctionTypeArray.types │ ├── functionDeclarationWithResolutionOfTypeNamedArguments01.js │ ├── functionDeclarationWithResolutionOfTypeNamedArguments01.symbols │ ├── functionDeclarationWithResolutionOfTypeNamedArguments01.types │ ├── functionDeclarationWithResolutionOfTypeOfSameName01.js │ ├── functionDeclarationWithResolutionOfTypeOfSameName01.symbols │ ├── functionDeclarationWithResolutionOfTypeOfSameName01.types │ ├── functionExpressionAndLambdaMatchesFunction.js │ ├── functionExpressionAndLambdaMatchesFunction.symbols │ ├── functionExpressionAndLambdaMatchesFunction.types │ ├── functionExpressionContextualTyping1.js │ ├── functionExpressionContextualTyping1.symbols │ ├── functionExpressionContextualTyping1.types │ ├── functionExpressionContextualTyping2.errors.txt │ ├── functionExpressionContextualTyping2.js │ ├── functionExpressionContextualTyping2.symbols │ ├── functionExpressionContextualTyping2.types │ ├── functionExpressionContextualTyping3.js │ ├── functionExpressionContextualTyping3.symbols │ ├── functionExpressionContextualTyping3.types │ ├── functionExpressionInWithBlock.errors.txt │ ├── functionExpressionInWithBlock.js │ ├── functionExpressionInWithBlock.symbols │ ├── functionExpressionInWithBlock.types │ ├── functionExpressionNames.symbols │ ├── functionExpressionNames.types │ ├── functionExpressionReturningItself.js │ ├── functionExpressionReturningItself.symbols │ ├── functionExpressionReturningItself.types │ ├── functionExpressionShadowedByParams.errors.txt │ ├── functionExpressionShadowedByParams.js │ ├── functionExpressionShadowedByParams.symbols │ ├── functionExpressionShadowedByParams.types │ ├── functionExpressionWithResolutionOfTypeNamedArguments01.js │ ├── functionExpressionWithResolutionOfTypeNamedArguments01.symbols │ ├── functionExpressionWithResolutionOfTypeNamedArguments01.types │ ├── functionExpressionWithResolutionOfTypeOfSameName01.js │ ├── functionExpressionWithResolutionOfTypeOfSameName01.symbols │ ├── functionExpressionWithResolutionOfTypeOfSameName01.types │ ├── functionExpressionWithResolutionOfTypeOfSameName02.js │ ├── functionExpressionWithResolutionOfTypeOfSameName02.symbols │ ├── functionExpressionWithResolutionOfTypeOfSameName02.types │ ├── functionImplementationErrors(target=es2015).errors.txt │ ├── functionImplementationErrors(target=es2015).js │ ├── functionImplementationErrors(target=es2015).symbols │ ├── functionImplementationErrors(target=es2015).types │ ├── functionImplementationErrors(target=es5).errors.txt │ ├── functionImplementationErrors(target=es5).js │ ├── functionImplementationErrors(target=es5).symbols │ ├── functionImplementationErrors(target=es5).types │ ├── functionImplementations.errors.txt │ ├── functionImplementations.js │ ├── functionImplementations.symbols │ ├── functionImplementations.types │ ├── functionInIfStatementInModule.js │ ├── functionInIfStatementInModule.symbols │ ├── functionInIfStatementInModule.types │ ├── functionLikeInParameterInitializer(target=es2015).errors.txt │ ├── functionLikeInParameterInitializer(target=es2015).js │ ├── functionLikeInParameterInitializer(target=es2015).symbols │ ├── functionLikeInParameterInitializer(target=es2015).types │ ├── functionLikeInParameterInitializer(target=es5).errors.txt │ ├── functionLikeInParameterInitializer(target=es5).js │ ├── functionLikeInParameterInitializer(target=es5).symbols │ ├── functionLikeInParameterInitializer(target=es5).types │ ├── functionLiteral.js │ ├── functionLiteral.symbols │ ├── functionLiteral.types │ ├── functionLiteralForOverloads.js │ ├── functionLiteralForOverloads.symbols │ ├── functionLiteralForOverloads.types │ ├── functionLiteralForOverloads2.js │ ├── functionLiteralForOverloads2.symbols │ ├── functionLiteralForOverloads2.types │ ├── functionLiterals.errors.txt │ ├── functionLiterals.js │ ├── functionLiterals.symbols │ ├── functionLiterals.types │ ├── functionMergedWithModule.js │ ├── functionMergedWithModule.symbols │ ├── functionMergedWithModule.types │ ├── functionNameConflicts.errors.txt │ ├── functionNameConflicts.js │ ├── functionNameConflicts.symbols │ ├── functionNameConflicts.types │ ├── functionOnlyHasThrow.js │ ├── functionOnlyHasThrow.symbols │ ├── functionOnlyHasThrow.types │ ├── functionOverloadAmbiguity1.errors.txt │ ├── functionOverloadAmbiguity1.js │ ├── functionOverloadAmbiguity1.symbols │ ├── functionOverloadAmbiguity1.types │ ├── functionOverloadCompatibilityWithVoid01.errors.txt │ ├── functionOverloadCompatibilityWithVoid01.js │ ├── functionOverloadCompatibilityWithVoid01.symbols │ ├── functionOverloadCompatibilityWithVoid01.types │ ├── functionOverloadCompatibilityWithVoid02.js │ ├── functionOverloadCompatibilityWithVoid02.symbols │ ├── functionOverloadCompatibilityWithVoid02.types │ ├── functionOverloadCompatibilityWithVoid03.js │ ├── functionOverloadCompatibilityWithVoid03.symbols │ ├── functionOverloadCompatibilityWithVoid03.types │ ├── functionOverloadErrors.errors.txt │ ├── functionOverloadErrors.js │ ├── functionOverloadErrors.symbols │ ├── functionOverloadErrors.types │ ├── functionOverloadErrorsSyntax.errors.txt │ ├── functionOverloadErrorsSyntax.js │ ├── functionOverloadErrorsSyntax.symbols │ ├── functionOverloadErrorsSyntax.types │ ├── functionOverloadImplementationOfWrongName.errors.txt │ ├── functionOverloadImplementationOfWrongName.js │ ├── functionOverloadImplementationOfWrongName.symbols │ ├── functionOverloadImplementationOfWrongName.types │ ├── functionOverloadImplementationOfWrongName2.errors.txt │ ├── functionOverloadImplementationOfWrongName2.js │ ├── functionOverloadImplementationOfWrongName2.symbols │ ├── functionOverloadImplementationOfWrongName2.types │ ├── functionOverloads.errors.txt │ ├── functionOverloads.js │ ├── functionOverloads.symbols │ ├── functionOverloads.types │ ├── functionOverloads1.errors.txt │ ├── functionOverloads1.js │ ├── functionOverloads1.symbols │ ├── functionOverloads1.types │ ├── functionOverloads10.js │ ├── functionOverloads10.symbols │ ├── functionOverloads10.types │ ├── functionOverloads11.errors.txt │ ├── functionOverloads11.js │ ├── functionOverloads11.symbols │ ├── functionOverloads11.types │ ├── functionOverloads12.js │ ├── functionOverloads12.symbols │ ├── functionOverloads12.types │ ├── functionOverloads13.js │ ├── functionOverloads13.symbols │ ├── functionOverloads13.types │ ├── functionOverloads14.js │ ├── functionOverloads14.symbols │ ├── functionOverloads14.types │ ├── functionOverloads15.js │ ├── functionOverloads15.symbols │ ├── functionOverloads15.types │ ├── functionOverloads16.js │ ├── functionOverloads16.symbols │ ├── functionOverloads16.types │ ├── functionOverloads17.errors.txt │ ├── functionOverloads17.js │ ├── functionOverloads17.symbols │ ├── functionOverloads17.types │ ├── functionOverloads18.errors.txt │ ├── functionOverloads18.js │ ├── functionOverloads18.symbols │ ├── functionOverloads18.types │ ├── functionOverloads19.errors.txt │ ├── functionOverloads19.js │ ├── functionOverloads19.symbols │ ├── functionOverloads19.types │ ├── functionOverloads2.errors.txt │ ├── functionOverloads2.js │ ├── functionOverloads2.symbols │ ├── functionOverloads2.types │ ├── functionOverloads20.errors.txt │ ├── functionOverloads20.js │ ├── functionOverloads20.symbols │ ├── functionOverloads20.types │ ├── functionOverloads21.js │ ├── functionOverloads21.symbols │ ├── functionOverloads21.types │ ├── functionOverloads22.js │ ├── functionOverloads22.symbols │ ├── functionOverloads22.types │ ├── functionOverloads23.js │ ├── functionOverloads23.symbols │ ├── functionOverloads23.types │ ├── functionOverloads24.js │ ├── functionOverloads24.symbols │ ├── functionOverloads24.types │ ├── functionOverloads25.js │ ├── functionOverloads25.symbols │ ├── functionOverloads25.types │ ├── functionOverloads26.js │ ├── functionOverloads26.symbols │ ├── functionOverloads26.types │ ├── functionOverloads27.errors.txt │ ├── functionOverloads27.js │ ├── functionOverloads27.symbols │ ├── functionOverloads27.types │ ├── functionOverloads28.js │ ├── functionOverloads28.symbols │ ├── functionOverloads28.types │ ├── functionOverloads29.errors.txt │ ├── functionOverloads29.js │ ├── functionOverloads29.symbols │ ├── functionOverloads29.types │ ├── functionOverloads3.errors.txt │ ├── functionOverloads3.js │ ├── functionOverloads3.symbols │ ├── functionOverloads3.types │ ├── functionOverloads30.js │ ├── functionOverloads30.symbols │ ├── functionOverloads30.types │ ├── functionOverloads31.js │ ├── functionOverloads31.symbols │ ├── functionOverloads31.types │ ├── functionOverloads32.errors.txt │ ├── functionOverloads32.js │ ├── functionOverloads32.symbols │ ├── functionOverloads32.types │ ├── functionOverloads33.js │ ├── functionOverloads33.symbols │ ├── functionOverloads33.types │ ├── functionOverloads34.errors.txt │ ├── functionOverloads34.js │ ├── functionOverloads34.symbols │ ├── functionOverloads34.types │ ├── functionOverloads35.js │ ├── functionOverloads35.symbols │ ├── functionOverloads35.types │ ├── functionOverloads36.js │ ├── functionOverloads36.symbols │ ├── functionOverloads36.types │ ├── functionOverloads37.errors.txt │ ├── functionOverloads37.js │ ├── functionOverloads37.symbols │ ├── functionOverloads37.types │ ├── functionOverloads38.js │ ├── functionOverloads38.symbols │ ├── functionOverloads38.types │ ├── functionOverloads39.js │ ├── functionOverloads39.symbols │ ├── functionOverloads39.types │ ├── functionOverloads4.errors.txt │ ├── functionOverloads4.js │ ├── functionOverloads4.symbols │ ├── functionOverloads4.types │ ├── functionOverloads40.errors.txt │ ├── functionOverloads40.js │ ├── functionOverloads40.symbols │ ├── functionOverloads40.types │ ├── functionOverloads41.errors.txt │ ├── functionOverloads41.js │ ├── functionOverloads41.symbols │ ├── functionOverloads41.types │ ├── functionOverloads42.js │ ├── functionOverloads42.symbols │ ├── functionOverloads42.types │ ├── functionOverloads43.errors.txt │ ├── functionOverloads43.js │ ├── functionOverloads43.symbols │ ├── functionOverloads43.types │ ├── functionOverloads44.js │ ├── functionOverloads44.symbols │ ├── functionOverloads44.types │ ├── functionOverloads45.js │ ├── functionOverloads45.symbols │ ├── functionOverloads45.types │ ├── functionOverloads5.errors.txt │ ├── functionOverloads5.js │ ├── functionOverloads5.symbols │ ├── functionOverloads5.types │ ├── functionOverloads6.js │ ├── functionOverloads6.symbols │ ├── functionOverloads6.types │ ├── functionOverloads7.js │ ├── functionOverloads7.symbols │ ├── functionOverloads7.types │ ├── functionOverloads8.js │ ├── functionOverloads8.symbols │ ├── functionOverloads8.types │ ├── functionOverloads9.js │ ├── functionOverloads9.symbols │ ├── functionOverloads9.types │ ├── functionOverloadsOnGenericArity1.js │ ├── functionOverloadsOnGenericArity1.symbols │ ├── functionOverloadsOnGenericArity1.types │ ├── functionOverloadsOnGenericArity2.js │ ├── functionOverloadsOnGenericArity2.symbols │ ├── functionOverloadsOnGenericArity2.types │ ├── functionOverloadsOutOfOrder.errors.txt │ ├── functionOverloadsOutOfOrder.js │ ├── functionOverloadsOutOfOrder.symbols │ ├── functionOverloadsOutOfOrder.types │ ├── functionOverloadsRecursiveGenericReturnType.errors.txt │ ├── functionOverloadsRecursiveGenericReturnType.js │ ├── functionOverloadsRecursiveGenericReturnType.symbols │ ├── functionOverloadsRecursiveGenericReturnType.types │ ├── functionParameterArityMismatch.errors.txt │ ├── functionParameterArityMismatch.js │ ├── functionParameterArityMismatch.symbols │ ├── functionParameterArityMismatch.types │ ├── functionParameterObjectRestAndInitializers.js │ ├── functionReturn.errors.txt │ ├── functionReturn.js │ ├── functionReturn.symbols │ ├── functionReturn.types │ ├── functionReturnTypeQuery.js │ ├── functionReturnTypeQuery.symbols │ ├── functionReturnTypeQuery.types │ ├── functionReturningItself.js │ ├── functionReturningItself.symbols │ ├── functionReturningItself.types │ ├── functionSignatureAssignmentCompat1.errors.txt │ ├── functionSignatureAssignmentCompat1.js │ ├── functionSignatureAssignmentCompat1.symbols │ ├── functionSignatureAssignmentCompat1.types │ ├── functionSubtypingOfVarArgs.js │ ├── functionSubtypingOfVarArgs.symbols │ ├── functionSubtypingOfVarArgs.types │ ├── functionSubtypingOfVarArgs2.js │ ├── functionSubtypingOfVarArgs2.symbols │ ├── functionSubtypingOfVarArgs2.types │ ├── functionToFunctionWithPropError.errors.txt │ ├── functionToFunctionWithPropError.js │ ├── functionToFunctionWithPropError.symbols │ ├── functionToFunctionWithPropError.types │ ├── functionType.js │ ├── functionType.symbols │ ├── functionType.types │ ├── functionTypeArgumentArityErrors.errors.txt │ ├── functionTypeArgumentArityErrors.js │ ├── functionTypeArgumentArityErrors.symbols │ ├── functionTypeArgumentArityErrors.types │ ├── functionTypeArgumentArrayAssignment.js │ ├── functionTypeArgumentArrayAssignment.symbols │ ├── functionTypeArgumentArrayAssignment.types │ ├── functionTypeArgumentAssignmentCompat.errors.txt │ ├── functionTypeArgumentAssignmentCompat.js │ ├── functionTypeArgumentAssignmentCompat.symbols │ ├── functionTypeArgumentAssignmentCompat.types │ ├── functionTypesLackingReturnTypes.errors.txt │ ├── functionTypesLackingReturnTypes.js │ ├── functionTypesLackingReturnTypes.symbols │ ├── functionTypesLackingReturnTypes.types │ ├── functionVariableInReturnTypeAnnotation.errors.txt │ ├── functionVariableInReturnTypeAnnotation.js │ ├── functionVariableInReturnTypeAnnotation.symbols │ ├── functionVariableInReturnTypeAnnotation.types │ ├── functionWithAnyReturnTypeAndNoReturnExpression.js │ ├── functionWithAnyReturnTypeAndNoReturnExpression.symbols │ ├── functionWithAnyReturnTypeAndNoReturnExpression.types │ ├── functionWithDefaultParameterWithNoStatements1.js │ ├── functionWithDefaultParameterWithNoStatements1.symbols │ ├── functionWithDefaultParameterWithNoStatements1.types │ ├── functionWithDefaultParameterWithNoStatements10.js │ ├── functionWithDefaultParameterWithNoStatements10.symbols │ ├── functionWithDefaultParameterWithNoStatements10.types │ ├── functionWithDefaultParameterWithNoStatements11.js │ ├── functionWithDefaultParameterWithNoStatements11.symbols │ ├── functionWithDefaultParameterWithNoStatements11.types │ ├── functionWithDefaultParameterWithNoStatements12.js │ ├── functionWithDefaultParameterWithNoStatements12.symbols │ ├── functionWithDefaultParameterWithNoStatements12.types │ ├── functionWithDefaultParameterWithNoStatements13.js │ ├── functionWithDefaultParameterWithNoStatements13.symbols │ ├── functionWithDefaultParameterWithNoStatements13.types │ ├── functionWithDefaultParameterWithNoStatements14.js │ ├── functionWithDefaultParameterWithNoStatements14.symbols │ ├── functionWithDefaultParameterWithNoStatements14.types │ ├── functionWithDefaultParameterWithNoStatements15.js │ ├── functionWithDefaultParameterWithNoStatements15.symbols │ ├── functionWithDefaultParameterWithNoStatements15.types │ ├── functionWithDefaultParameterWithNoStatements16.js │ ├── functionWithDefaultParameterWithNoStatements16.symbols │ ├── functionWithDefaultParameterWithNoStatements16.types │ ├── functionWithDefaultParameterWithNoStatements2.js │ ├── functionWithDefaultParameterWithNoStatements2.symbols │ ├── functionWithDefaultParameterWithNoStatements2.types │ ├── functionWithDefaultParameterWithNoStatements3.js │ ├── functionWithDefaultParameterWithNoStatements3.symbols │ ├── functionWithDefaultParameterWithNoStatements3.types │ ├── functionWithDefaultParameterWithNoStatements4.js │ ├── functionWithDefaultParameterWithNoStatements4.symbols │ ├── functionWithDefaultParameterWithNoStatements4.types │ ├── functionWithDefaultParameterWithNoStatements5.js │ ├── functionWithDefaultParameterWithNoStatements5.symbols │ ├── functionWithDefaultParameterWithNoStatements5.types │ ├── functionWithDefaultParameterWithNoStatements6.js │ ├── functionWithDefaultParameterWithNoStatements6.symbols │ ├── functionWithDefaultParameterWithNoStatements6.types │ ├── functionWithDefaultParameterWithNoStatements7.js │ ├── functionWithDefaultParameterWithNoStatements7.symbols │ ├── functionWithDefaultParameterWithNoStatements7.types │ ├── functionWithDefaultParameterWithNoStatements8.js │ ├── functionWithDefaultParameterWithNoStatements8.symbols │ ├── functionWithDefaultParameterWithNoStatements8.types │ ├── functionWithDefaultParameterWithNoStatements9.js │ ├── functionWithDefaultParameterWithNoStatements9.symbols │ ├── functionWithDefaultParameterWithNoStatements9.types │ ├── functionWithMultipleReturnStatements.js │ ├── functionWithMultipleReturnStatements.symbols │ ├── functionWithMultipleReturnStatements.types │ ├── functionWithMultipleReturnStatements2.js │ ├── functionWithMultipleReturnStatements2.symbols │ ├── functionWithMultipleReturnStatements2.types │ ├── functionWithNoBestCommonType1.js │ ├── functionWithNoBestCommonType1.symbols │ ├── functionWithNoBestCommonType1.types │ ├── functionWithNoBestCommonType2.js │ ├── functionWithNoBestCommonType2.symbols │ ├── functionWithNoBestCommonType2.types │ ├── functionWithSameNameAsField.errors.txt │ ├── functionWithSameNameAsField.js │ ├── functionWithSameNameAsField.symbols │ ├── functionWithSameNameAsField.types │ ├── functionWithThrowButNoReturn1.js │ ├── functionWithThrowButNoReturn1.symbols │ ├── functionWithThrowButNoReturn1.types │ ├── functionWithUseStrictAndSimpleParameterList.js │ ├── functionWithUseStrictAndSimpleParameterList.symbols │ ├── functionWithUseStrictAndSimpleParameterList.types │ ├── functionWithUseStrictAndSimpleParameterList_es2016.errors.txt │ ├── functionWithUseStrictAndSimpleParameterList_es2016.js │ ├── functionWithUseStrictAndSimpleParameterList_es2016.symbols │ ├── functionWithUseStrictAndSimpleParameterList_es2016.types │ ├── functionsInClassExpressions.js │ ├── functionsInClassExpressions.symbols │ ├── functionsInClassExpressions.types │ ├── functionsMissingReturnStatementsAndExpressions(target=es2015).errors.txt │ ├── functionsMissingReturnStatementsAndExpressions(target=es2015).js │ ├── functionsMissingReturnStatementsAndExpressions(target=es2015).symbols │ ├── functionsMissingReturnStatementsAndExpressions(target=es2015).types │ ├── functionsMissingReturnStatementsAndExpressions(target=es5).errors.txt │ ├── functionsMissingReturnStatementsAndExpressions(target=es5).js │ ├── functionsMissingReturnStatementsAndExpressions(target=es5).symbols │ ├── functionsMissingReturnStatementsAndExpressions(target=es5).types │ ├── functionsMissingReturnStatementsAndExpressionsStrictNullChecks.errors.txt │ ├── functionsMissingReturnStatementsAndExpressionsStrictNullChecks.js │ ├── functionsMissingReturnStatementsAndExpressionsStrictNullChecks.symbols │ ├── functionsMissingReturnStatementsAndExpressionsStrictNullChecks.types │ ├── functionsWithImplicitReturnTypeAssignableToUndefined(strictnullchecks=false).js │ ├── functionsWithImplicitReturnTypeAssignableToUndefined(strictnullchecks=false).symbols │ ├── functionsWithImplicitReturnTypeAssignableToUndefined(strictnullchecks=false).types │ ├── functionsWithImplicitReturnTypeAssignableToUndefined(strictnullchecks=true).errors.txt │ ├── functionsWithImplicitReturnTypeAssignableToUndefined(strictnullchecks=true).js │ ├── functionsWithImplicitReturnTypeAssignableToUndefined(strictnullchecks=true).symbols │ ├── functionsWithImplicitReturnTypeAssignableToUndefined(strictnullchecks=true).types │ ├── functionsWithModifiersInBlocks1.errors.txt │ ├── functionsWithModifiersInBlocks1.js │ ├── functionsWithModifiersInBlocks1.symbols │ ├── functionsWithModifiersInBlocks1.types │ ├── funduleExportedClassIsUsedBeforeDeclaration.js │ ├── funduleExportedClassIsUsedBeforeDeclaration.symbols │ ├── funduleExportedClassIsUsedBeforeDeclaration.types │ ├── funduleOfFunctionWithoutReturnTypeAnnotation.js │ ├── funduleOfFunctionWithoutReturnTypeAnnotation.symbols │ ├── funduleOfFunctionWithoutReturnTypeAnnotation.types │ ├── funduleSplitAcrossFiles.errors.txt │ ├── funduleSplitAcrossFiles.js │ ├── funduleSplitAcrossFiles.symbols │ ├── funduleSplitAcrossFiles.types │ ├── funduleUsedAcrossFileBoundary.js │ ├── funduleUsedAcrossFileBoundary.symbols │ ├── funduleUsedAcrossFileBoundary.types │ ├── fuzzy.errors.txt │ ├── fuzzy.js │ ├── fuzzy.symbols │ ├── fuzzy.types │ ├── generatedContextualTyping.errors.txt │ ├── generatedContextualTyping.js │ ├── generatedContextualTyping.symbols │ ├── generatedContextualTyping.types │ ├── generativeRecursionWithTypeOf.errors.txt │ ├── generativeRecursionWithTypeOf.js │ ├── generativeRecursionWithTypeOf.symbols │ ├── generativeRecursionWithTypeOf.types │ ├── generatorAssignability.errors.txt │ ├── generatorAssignability.symbols │ ├── generatorAssignability.types │ ├── generatorES6InAMDModule.errors.txt │ ├── generatorES6InAMDModule.js │ ├── generatorES6InAMDModule.symbols │ ├── generatorES6InAMDModule.types │ ├── generatorES6_1.js │ ├── generatorES6_1.symbols │ ├── generatorES6_1.types │ ├── generatorES6_2.js │ ├── generatorES6_2.symbols │ ├── generatorES6_2.types │ ├── generatorES6_3.js │ ├── generatorES6_3.symbols │ ├── generatorES6_3.types │ ├── generatorES6_4.js │ ├── generatorES6_4.symbols │ ├── generatorES6_4.types │ ├── generatorES6_5.errors.txt │ ├── generatorES6_5.js │ ├── generatorES6_5.symbols │ ├── generatorES6_5.types │ ├── generatorES6_6.js │ ├── generatorES6_6.symbols │ ├── generatorES6_6.types │ ├── generatorExplicitReturnType.errors.txt │ ├── generatorExplicitReturnType.js │ ├── generatorExplicitReturnType.symbols │ ├── generatorExplicitReturnType.types │ ├── generatorImplicitAny.errors.txt │ ├── generatorImplicitAny.js │ ├── generatorImplicitAny.symbols │ ├── generatorImplicitAny.types │ ├── generatorInAmbientContext1.errors.txt │ ├── generatorInAmbientContext1.js │ ├── generatorInAmbientContext1.symbols │ ├── generatorInAmbientContext1.types │ ├── generatorInAmbientContext2.errors.txt │ ├── generatorInAmbientContext2.js │ ├── generatorInAmbientContext2.symbols │ ├── generatorInAmbientContext2.types │ ├── generatorInAmbientContext3.d.errors.txt │ ├── generatorInAmbientContext3.d.symbols │ ├── generatorInAmbientContext3.d.types │ ├── generatorInAmbientContext4.d.errors.txt │ ├── generatorInAmbientContext4.d.symbols │ ├── generatorInAmbientContext4.d.types │ ├── generatorInAmbientContext5.js │ ├── generatorInAmbientContext5.symbols │ ├── generatorInAmbientContext5.types │ ├── generatorInAmbientContext6.js │ ├── generatorInAmbientContext6.symbols │ ├── generatorInAmbientContext6.types │ ├── generatorNoImplicitReturns.js │ ├── generatorNoImplicitReturns.symbols │ ├── generatorNoImplicitReturns.types │ ├── generatorOverloads1.errors.txt │ ├── generatorOverloads1.js │ ├── generatorOverloads1.symbols │ ├── generatorOverloads1.types │ ├── generatorOverloads2.errors.txt │ ├── generatorOverloads2.js │ ├── generatorOverloads2.symbols │ ├── generatorOverloads2.types │ ├── generatorOverloads3.errors.txt │ ├── generatorOverloads3.js │ ├── generatorOverloads3.symbols │ ├── generatorOverloads3.types │ ├── generatorOverloads4.js │ ├── generatorOverloads4.symbols │ ├── generatorOverloads4.types │ ├── generatorOverloads5.js │ ├── generatorOverloads5.symbols │ ├── generatorOverloads5.types │ ├── generatorReturnContextualType.errors.txt │ ├── generatorReturnContextualType.js │ ├── generatorReturnContextualType.symbols │ ├── generatorReturnContextualType.types │ ├── generatorReturnExpressionIsChecked.errors.txt │ ├── generatorReturnExpressionIsChecked.js │ ├── generatorReturnExpressionIsChecked.symbols │ ├── generatorReturnExpressionIsChecked.types │ ├── generatorReturnTypeFallback.1.symbols │ ├── generatorReturnTypeFallback.1.types │ ├── generatorReturnTypeFallback.2.errors.txt │ ├── generatorReturnTypeFallback.2.symbols │ ├── generatorReturnTypeFallback.2.types │ ├── generatorReturnTypeFallback.3.symbols │ ├── generatorReturnTypeFallback.3.types │ ├── generatorReturnTypeFallback.4.symbols │ ├── generatorReturnTypeFallback.4.types │ ├── generatorReturnTypeFallback.5.symbols │ ├── generatorReturnTypeFallback.5.types │ ├── generatorReturnTypeIndirectReferenceToGlobalType.js │ ├── generatorReturnTypeIndirectReferenceToGlobalType.symbols │ ├── generatorReturnTypeIndirectReferenceToGlobalType.types │ ├── generatorReturnTypeInference.errors.txt │ ├── generatorReturnTypeInference.js │ ├── generatorReturnTypeInference.symbols │ ├── generatorReturnTypeInference.types │ ├── generatorReturnTypeInferenceNonStrict.errors.txt │ ├── generatorReturnTypeInferenceNonStrict.js │ ├── generatorReturnTypeInferenceNonStrict.symbols │ ├── generatorReturnTypeInferenceNonStrict.types │ ├── generatorTransformFinalLabel(target=es2015).js │ ├── generatorTransformFinalLabel(target=es2015).symbols │ ├── generatorTransformFinalLabel(target=es2015).types │ ├── generatorTransformFinalLabel(target=es5).errors.txt │ ├── generatorTransformFinalLabel(target=es5).js │ ├── generatorTransformFinalLabel(target=es5).symbols │ ├── generatorTransformFinalLabel(target=es5).types │ ├── generatorTypeCheck1.js │ ├── generatorTypeCheck1.symbols │ ├── generatorTypeCheck1.types │ ├── generatorTypeCheck10.js │ ├── generatorTypeCheck10.symbols │ ├── generatorTypeCheck10.types │ ├── generatorTypeCheck11.js │ ├── generatorTypeCheck11.symbols │ ├── generatorTypeCheck11.types │ ├── generatorTypeCheck12.js │ ├── generatorTypeCheck12.symbols │ ├── generatorTypeCheck12.types │ ├── generatorTypeCheck13.js │ ├── generatorTypeCheck13.symbols │ ├── generatorTypeCheck13.types │ ├── generatorTypeCheck14.js │ ├── generatorTypeCheck14.symbols │ ├── generatorTypeCheck14.types │ ├── generatorTypeCheck15.js │ ├── generatorTypeCheck15.symbols │ ├── generatorTypeCheck15.types │ ├── generatorTypeCheck16.js │ ├── generatorTypeCheck16.symbols │ ├── generatorTypeCheck16.types │ ├── generatorTypeCheck17.errors.txt │ ├── generatorTypeCheck17.js │ ├── generatorTypeCheck17.symbols │ ├── generatorTypeCheck17.types │ ├── generatorTypeCheck18.errors.txt │ ├── generatorTypeCheck18.js │ ├── generatorTypeCheck18.symbols │ ├── generatorTypeCheck18.types │ ├── generatorTypeCheck19.errors.txt │ ├── generatorTypeCheck19.js │ ├── generatorTypeCheck19.symbols │ ├── generatorTypeCheck19.types │ ├── generatorTypeCheck2.js │ ├── generatorTypeCheck2.symbols │ ├── generatorTypeCheck2.types │ ├── generatorTypeCheck20.errors.txt │ ├── generatorTypeCheck20.js │ ├── generatorTypeCheck20.symbols │ ├── generatorTypeCheck20.types │ ├── generatorTypeCheck21.errors.txt │ ├── generatorTypeCheck21.js │ ├── generatorTypeCheck21.symbols │ ├── generatorTypeCheck21.types │ ├── generatorTypeCheck22.errors.txt │ ├── generatorTypeCheck22.js │ ├── generatorTypeCheck22.symbols │ ├── generatorTypeCheck22.types │ ├── generatorTypeCheck23.errors.txt │ ├── generatorTypeCheck23.js │ ├── generatorTypeCheck23.symbols │ ├── generatorTypeCheck23.types │ ├── generatorTypeCheck24.errors.txt │ ├── generatorTypeCheck24.js │ ├── generatorTypeCheck24.symbols │ ├── generatorTypeCheck24.types │ ├── generatorTypeCheck25.errors.txt │ ├── generatorTypeCheck25.js │ ├── generatorTypeCheck25.symbols │ ├── generatorTypeCheck25.types │ ├── generatorTypeCheck26.js │ ├── generatorTypeCheck26.symbols │ ├── generatorTypeCheck26.types │ ├── generatorTypeCheck27.js │ ├── generatorTypeCheck27.symbols │ ├── generatorTypeCheck27.types │ ├── generatorTypeCheck28.js │ ├── generatorTypeCheck28.symbols │ ├── generatorTypeCheck28.types │ ├── generatorTypeCheck29.js │ ├── generatorTypeCheck29.symbols │ ├── generatorTypeCheck29.types │ ├── generatorTypeCheck3.js │ ├── generatorTypeCheck3.symbols │ ├── generatorTypeCheck3.types │ ├── generatorTypeCheck30.js │ ├── generatorTypeCheck30.symbols │ ├── generatorTypeCheck30.types │ ├── generatorTypeCheck31.errors.txt │ ├── generatorTypeCheck31.js │ ├── generatorTypeCheck31.symbols │ ├── generatorTypeCheck31.types │ ├── generatorTypeCheck32.errors.txt │ ├── generatorTypeCheck32.js │ ├── generatorTypeCheck32.symbols │ ├── generatorTypeCheck32.types │ ├── generatorTypeCheck33.js │ ├── generatorTypeCheck33.symbols │ ├── generatorTypeCheck33.types │ ├── generatorTypeCheck34.js │ ├── generatorTypeCheck34.symbols │ ├── generatorTypeCheck34.types │ ├── generatorTypeCheck35.js │ ├── generatorTypeCheck35.symbols │ ├── generatorTypeCheck35.types │ ├── generatorTypeCheck36.js │ ├── generatorTypeCheck36.symbols │ ├── generatorTypeCheck36.types │ ├── generatorTypeCheck37.js │ ├── generatorTypeCheck37.symbols │ ├── generatorTypeCheck37.types │ ├── generatorTypeCheck38(alwaysstrict=false).js │ ├── generatorTypeCheck38(alwaysstrict=false).symbols │ ├── generatorTypeCheck38(alwaysstrict=false).types │ ├── generatorTypeCheck38(alwaysstrict=true).errors.txt │ ├── generatorTypeCheck38(alwaysstrict=true).js │ ├── generatorTypeCheck38(alwaysstrict=true).symbols │ ├── generatorTypeCheck38(alwaysstrict=true).types │ ├── generatorTypeCheck39.errors.txt │ ├── generatorTypeCheck39.js │ ├── generatorTypeCheck39.symbols │ ├── generatorTypeCheck39.types │ ├── generatorTypeCheck4.js │ ├── generatorTypeCheck4.symbols │ ├── generatorTypeCheck4.types │ ├── generatorTypeCheck40.js │ ├── generatorTypeCheck40.symbols │ ├── generatorTypeCheck40.types │ ├── generatorTypeCheck41.js │ ├── generatorTypeCheck41.symbols │ ├── generatorTypeCheck41.types │ ├── generatorTypeCheck42.js │ ├── generatorTypeCheck42.symbols │ ├── generatorTypeCheck42.types │ ├── generatorTypeCheck43.js │ ├── generatorTypeCheck43.symbols │ ├── generatorTypeCheck43.types │ ├── generatorTypeCheck44.js │ ├── generatorTypeCheck44.symbols │ ├── generatorTypeCheck44.types │ ├── generatorTypeCheck45.js │ ├── generatorTypeCheck45.symbols │ ├── generatorTypeCheck45.types │ ├── generatorTypeCheck46.js │ ├── generatorTypeCheck46.symbols │ ├── generatorTypeCheck46.types │ ├── generatorTypeCheck47.js │ ├── generatorTypeCheck47.symbols │ ├── generatorTypeCheck47.types │ ├── generatorTypeCheck48.js │ ├── generatorTypeCheck48.symbols │ ├── generatorTypeCheck48.types │ ├── generatorTypeCheck49.js │ ├── generatorTypeCheck49.symbols │ ├── generatorTypeCheck49.types │ ├── generatorTypeCheck5.js │ ├── generatorTypeCheck5.symbols │ ├── generatorTypeCheck5.types │ ├── generatorTypeCheck50.errors.txt │ ├── generatorTypeCheck50.js │ ├── generatorTypeCheck50.symbols │ ├── generatorTypeCheck50.types │ ├── generatorTypeCheck51.js │ ├── generatorTypeCheck51.symbols │ ├── generatorTypeCheck51.types │ ├── generatorTypeCheck52.errors.txt │ ├── generatorTypeCheck52.js │ ├── generatorTypeCheck52.symbols │ ├── generatorTypeCheck52.types │ ├── generatorTypeCheck53.errors.txt │ ├── generatorTypeCheck53.js │ ├── generatorTypeCheck53.symbols │ ├── generatorTypeCheck53.types │ ├── generatorTypeCheck54.errors.txt │ ├── generatorTypeCheck54.js │ ├── generatorTypeCheck54.symbols │ ├── generatorTypeCheck54.types │ ├── generatorTypeCheck55.js │ ├── generatorTypeCheck55.symbols │ ├── generatorTypeCheck55.types │ ├── generatorTypeCheck56.js │ ├── generatorTypeCheck56.symbols │ ├── generatorTypeCheck56.types │ ├── generatorTypeCheck57.errors.txt │ ├── generatorTypeCheck57.js │ ├── generatorTypeCheck57.symbols │ ├── generatorTypeCheck57.types │ ├── generatorTypeCheck58.errors.txt │ ├── generatorTypeCheck58.js │ ├── generatorTypeCheck58.symbols │ ├── generatorTypeCheck58.types │ ├── generatorTypeCheck59.js │ ├── generatorTypeCheck59.symbols │ ├── generatorTypeCheck59.types │ ├── generatorTypeCheck6.errors.txt │ ├── generatorTypeCheck6.js │ ├── generatorTypeCheck6.symbols │ ├── generatorTypeCheck6.types │ ├── generatorTypeCheck60.js │ ├── generatorTypeCheck60.symbols │ ├── generatorTypeCheck60.types │ ├── generatorTypeCheck61.js │ ├── generatorTypeCheck61.symbols │ ├── generatorTypeCheck61.types │ ├── generatorTypeCheck62.errors.txt │ ├── generatorTypeCheck62.js │ ├── generatorTypeCheck62.symbols │ ├── generatorTypeCheck62.types │ ├── generatorTypeCheck63.errors.txt │ ├── generatorTypeCheck63.js │ ├── generatorTypeCheck63.symbols │ ├── generatorTypeCheck63.types │ ├── generatorTypeCheck64.symbols │ ├── generatorTypeCheck64.types │ ├── generatorTypeCheck7.errors.txt │ ├── generatorTypeCheck7.js │ ├── generatorTypeCheck7.symbols │ ├── generatorTypeCheck7.types │ ├── generatorTypeCheck8.errors.txt │ ├── generatorTypeCheck8.js │ ├── generatorTypeCheck8.symbols │ ├── generatorTypeCheck8.types │ ├── generatorTypeCheck9.errors.txt │ ├── generatorTypeCheck9.js │ ├── generatorTypeCheck9.symbols │ ├── generatorTypeCheck9.types │ ├── generatorYieldContextualType.symbols │ ├── generatorYieldContextualType.types │ ├── generic.errors.txt │ ├── generic.js │ ├── generic.symbols │ ├── generic.types │ ├── genericAndNonGenericInheritedSignature1.errors.txt │ ├── genericAndNonGenericInheritedSignature1.js │ ├── genericAndNonGenericInheritedSignature1.symbols │ ├── genericAndNonGenericInheritedSignature1.types │ ├── genericAndNonGenericInheritedSignature2.errors.txt │ ├── genericAndNonGenericInheritedSignature2.js │ ├── genericAndNonGenericInheritedSignature2.symbols │ ├── genericAndNonGenericInheritedSignature2.types │ ├── genericAndNonGenericInterfaceWithTheSameName.errors.txt │ ├── genericAndNonGenericInterfaceWithTheSameName.js │ ├── genericAndNonGenericInterfaceWithTheSameName.symbols │ ├── genericAndNonGenericInterfaceWithTheSameName.types │ ├── genericAndNonGenericInterfaceWithTheSameName2.js │ ├── genericAndNonGenericInterfaceWithTheSameName2.symbols │ ├── genericAndNonGenericInterfaceWithTheSameName2.types │ ├── genericAndNonGenericOverload1.errors.txt │ ├── genericAndNonGenericOverload1.js │ ├── genericAndNonGenericOverload1.symbols │ ├── genericAndNonGenericOverload1.types │ ├── genericArgumentCallSigAssignmentCompat.errors.txt │ ├── genericArgumentCallSigAssignmentCompat.js │ ├── genericArgumentCallSigAssignmentCompat.symbols │ ├── genericArgumentCallSigAssignmentCompat.types │ ├── genericArray0.errors.txt │ ├── genericArray0.js │ ├── genericArray0.symbols │ ├── genericArray0.types │ ├── genericArray1.js │ ├── genericArray1.symbols │ ├── genericArray1.types │ ├── genericArrayAssignment1.errors.txt │ ├── genericArrayAssignment1.js │ ├── genericArrayAssignment1.symbols │ ├── genericArrayAssignment1.types │ ├── genericArrayAssignmentCompatErrors.errors.txt │ ├── genericArrayAssignmentCompatErrors.js │ ├── genericArrayAssignmentCompatErrors.symbols │ ├── genericArrayAssignmentCompatErrors.types │ ├── genericArrayExtenstions.errors.txt │ ├── genericArrayExtenstions.js │ ├── genericArrayExtenstions.symbols │ ├── genericArrayExtenstions.types │ ├── genericArrayMethods1.errors.txt │ ├── genericArrayMethods1.js │ ├── genericArrayMethods1.symbols │ ├── genericArrayMethods1.types │ ├── genericArrayPropertyAssignment.js │ ├── genericArrayPropertyAssignment.symbols │ ├── genericArrayPropertyAssignment.types │ ├── genericArrayWithoutTypeAnnotation.errors.txt │ ├── genericArrayWithoutTypeAnnotation.js │ ├── genericArrayWithoutTypeAnnotation.symbols │ ├── genericArrayWithoutTypeAnnotation.types │ ├── genericAssignmentCompatOfFunctionSignatures1.errors.txt │ ├── genericAssignmentCompatOfFunctionSignatures1.js │ ├── genericAssignmentCompatOfFunctionSignatures1.symbols │ ├── genericAssignmentCompatOfFunctionSignatures1.types │ ├── genericAssignmentCompatWithInterfaces1.errors.txt │ ├── genericAssignmentCompatWithInterfaces1.js │ ├── genericAssignmentCompatWithInterfaces1.symbols │ ├── genericAssignmentCompatWithInterfaces1.types │ ├── genericBaseClassLiteralProperty.errors.txt │ ├── genericBaseClassLiteralProperty.js │ ├── genericBaseClassLiteralProperty.symbols │ ├── genericBaseClassLiteralProperty.types │ ├── genericBaseClassLiteralProperty2.js │ ├── genericBaseClassLiteralProperty2.symbols │ ├── genericBaseClassLiteralProperty2.types │ ├── genericCallAtYieldExpressionInGenericCall1.errors.txt │ ├── genericCallAtYieldExpressionInGenericCall1.symbols │ ├── genericCallAtYieldExpressionInGenericCall1.types │ ├── genericCallAtYieldExpressionInGenericCall2.symbols │ ├── genericCallAtYieldExpressionInGenericCall2.types │ ├── genericCallAtYieldExpressionInGenericCall3.symbols │ ├── genericCallAtYieldExpressionInGenericCall3.types │ ├── genericCallInferenceConditionalType1.symbols │ ├── genericCallInferenceConditionalType1.types │ ├── genericCallInferenceConditionalType2.symbols │ ├── genericCallInferenceConditionalType2.types │ ├── genericCallInferenceInConditionalTypes1.symbols │ ├── genericCallInferenceInConditionalTypes1.types │ ├── genericCallInferenceUsingThisTypeNoInvalidCacheReuseAfterMappedTypeApplication1.symbols │ ├── genericCallInferenceUsingThisTypeNoInvalidCacheReuseAfterMappedTypeApplication1.types │ ├── genericCallInferenceWithGenericLocalFunction.symbols │ ├── genericCallInferenceWithGenericLocalFunction.types │ ├── genericCallOnMemberReturningClosedOverObject.symbols │ ├── genericCallOnMemberReturningClosedOverObject.types │ ├── genericCallSpecializedToTypeArg.errors.txt │ ├── genericCallSpecializedToTypeArg.js │ ├── genericCallSpecializedToTypeArg.symbols │ ├── genericCallSpecializedToTypeArg.types │ ├── genericCallToOverloadedMethodWithOverloadedArguments.errors.txt │ ├── genericCallToOverloadedMethodWithOverloadedArguments.js │ ├── genericCallToOverloadedMethodWithOverloadedArguments.symbols │ ├── genericCallToOverloadedMethodWithOverloadedArguments.types │ ├── genericCallTypeArgumentInference.js │ ├── genericCallTypeArgumentInference.symbols │ ├── genericCallTypeArgumentInference.types │ ├── genericCallWithArrayLiteralArgs.js │ ├── genericCallWithArrayLiteralArgs.symbols │ ├── genericCallWithArrayLiteralArgs.types │ ├── genericCallWithConstraintsTypeArgumentInference.js │ ├── genericCallWithConstraintsTypeArgumentInference.symbols │ ├── genericCallWithConstraintsTypeArgumentInference.types │ ├── genericCallWithConstraintsTypeArgumentInference2.errors.txt │ ├── genericCallWithConstraintsTypeArgumentInference2.js │ ├── genericCallWithConstraintsTypeArgumentInference2.symbols │ ├── genericCallWithConstraintsTypeArgumentInference2.types │ ├── genericCallWithConstructorTypedArguments5.errors.txt │ ├── genericCallWithConstructorTypedArguments5.js │ ├── genericCallWithConstructorTypedArguments5.symbols │ ├── genericCallWithConstructorTypedArguments5.types │ ├── genericCallWithFixedArguments.js │ ├── genericCallWithFixedArguments.symbols │ ├── genericCallWithFixedArguments.types │ ├── genericCallWithFunctionTypedArguments.errors.txt │ ├── genericCallWithFunctionTypedArguments.js │ ├── genericCallWithFunctionTypedArguments.symbols │ ├── genericCallWithFunctionTypedArguments.types │ ├── genericCallWithFunctionTypedArguments2.errors.txt │ ├── genericCallWithFunctionTypedArguments2.js │ ├── genericCallWithFunctionTypedArguments2.symbols │ ├── genericCallWithFunctionTypedArguments2.types │ ├── genericCallWithFunctionTypedArguments3.errors.txt │ ├── genericCallWithFunctionTypedArguments3.js │ ├── genericCallWithFunctionTypedArguments3.symbols │ ├── genericCallWithFunctionTypedArguments3.types │ ├── genericCallWithFunctionTypedArguments4.errors.txt │ ├── genericCallWithFunctionTypedArguments4.js │ ├── genericCallWithFunctionTypedArguments4.symbols │ ├── genericCallWithFunctionTypedArguments4.types │ ├── genericCallWithFunctionTypedArguments5.errors.txt │ ├── genericCallWithFunctionTypedArguments5.js │ ├── genericCallWithFunctionTypedArguments5.symbols │ ├── genericCallWithFunctionTypedArguments5.types │ ├── genericCallWithGenericSignatureArguments.js │ ├── genericCallWithGenericSignatureArguments.symbols │ ├── genericCallWithGenericSignatureArguments.types │ ├── genericCallWithGenericSignatureArguments2.errors.txt │ ├── genericCallWithGenericSignatureArguments2.js │ ├── genericCallWithGenericSignatureArguments2.symbols │ ├── genericCallWithGenericSignatureArguments2.types │ ├── genericCallWithGenericSignatureArguments3.errors.txt │ ├── genericCallWithGenericSignatureArguments3.js │ ├── genericCallWithGenericSignatureArguments3.symbols │ ├── genericCallWithGenericSignatureArguments3.types │ ├── genericCallWithNonGenericArgs1.js │ ├── genericCallWithNonGenericArgs1.symbols │ ├── genericCallWithNonGenericArgs1.types │ ├── genericCallWithNonSymmetricSubtypes.errors.txt │ ├── genericCallWithNonSymmetricSubtypes.js │ ├── genericCallWithNonSymmetricSubtypes.symbols │ ├── genericCallWithNonSymmetricSubtypes.types │ ├── genericCallWithObjectLiteralArgs.errors.txt │ ├── genericCallWithObjectLiteralArgs.js │ ├── genericCallWithObjectLiteralArgs.symbols │ ├── genericCallWithObjectLiteralArgs.types │ ├── genericCallWithObjectLiteralArguments1.errors.txt │ ├── genericCallWithObjectLiteralArguments1.js │ ├── genericCallWithObjectLiteralArguments1.symbols │ ├── genericCallWithObjectLiteralArguments1.types │ ├── genericCallWithObjectTypeArgs.errors.txt │ ├── genericCallWithObjectTypeArgs.js │ ├── genericCallWithObjectTypeArgs.symbols │ ├── genericCallWithObjectTypeArgs.types │ ├── genericCallWithObjectTypeArgs2.errors.txt │ ├── genericCallWithObjectTypeArgs2.js │ ├── genericCallWithObjectTypeArgs2.symbols │ ├── genericCallWithObjectTypeArgs2.types │ ├── genericCallWithObjectTypeArgsAndConstraints.errors.txt │ ├── genericCallWithObjectTypeArgsAndConstraints.js │ ├── genericCallWithObjectTypeArgsAndConstraints.symbols │ ├── genericCallWithObjectTypeArgsAndConstraints.types │ ├── genericCallWithObjectTypeArgsAndConstraints2.errors.txt │ ├── genericCallWithObjectTypeArgsAndConstraints2.js │ ├── genericCallWithObjectTypeArgsAndConstraints2.symbols │ ├── genericCallWithObjectTypeArgsAndConstraints2.types │ ├── genericCallWithObjectTypeArgsAndConstraints3.errors.txt │ ├── genericCallWithObjectTypeArgsAndConstraints3.js │ ├── genericCallWithObjectTypeArgsAndConstraints3.symbols │ ├── genericCallWithObjectTypeArgsAndConstraints3.types │ ├── genericCallWithObjectTypeArgsAndConstraints4.errors.txt │ ├── genericCallWithObjectTypeArgsAndConstraints4.js │ ├── genericCallWithObjectTypeArgsAndConstraints4.symbols │ ├── genericCallWithObjectTypeArgsAndConstraints4.types │ ├── genericCallWithObjectTypeArgsAndConstraints5.errors.txt │ ├── genericCallWithObjectTypeArgsAndConstraints5.js │ ├── genericCallWithObjectTypeArgsAndConstraints5.symbols │ ├── genericCallWithObjectTypeArgsAndConstraints5.types │ ├── genericCallWithObjectTypeArgsAndIndexers.errors.txt │ ├── genericCallWithObjectTypeArgsAndIndexers.js │ ├── genericCallWithObjectTypeArgsAndIndexers.symbols │ ├── genericCallWithObjectTypeArgsAndIndexers.types │ ├── genericCallWithObjectTypeArgsAndIndexersErrors.errors.txt │ ├── genericCallWithObjectTypeArgsAndIndexersErrors.js │ ├── genericCallWithObjectTypeArgsAndIndexersErrors.symbols │ ├── genericCallWithObjectTypeArgsAndIndexersErrors.types │ ├── genericCallWithObjectTypeArgsAndInitializers.errors.txt │ ├── genericCallWithObjectTypeArgsAndInitializers.js │ ├── genericCallWithObjectTypeArgsAndInitializers.symbols │ ├── genericCallWithObjectTypeArgsAndInitializers.types │ ├── genericCallWithObjectTypeArgsAndNumericIndexer.errors.txt │ ├── genericCallWithObjectTypeArgsAndNumericIndexer.js │ ├── genericCallWithObjectTypeArgsAndNumericIndexer.symbols │ ├── genericCallWithObjectTypeArgsAndNumericIndexer.types │ ├── genericCallWithObjectTypeArgsAndStringIndexer.errors.txt │ ├── genericCallWithObjectTypeArgsAndStringIndexer.js │ ├── genericCallWithObjectTypeArgsAndStringIndexer.symbols │ ├── genericCallWithObjectTypeArgsAndStringIndexer.types │ ├── genericCallWithOverloadedConstructorTypedArguments.errors.txt │ ├── genericCallWithOverloadedConstructorTypedArguments.js │ ├── genericCallWithOverloadedConstructorTypedArguments.symbols │ ├── genericCallWithOverloadedConstructorTypedArguments.types │ ├── genericCallWithOverloadedConstructorTypedArguments2.errors.txt │ ├── genericCallWithOverloadedConstructorTypedArguments2.js │ ├── genericCallWithOverloadedConstructorTypedArguments2.symbols │ ├── genericCallWithOverloadedConstructorTypedArguments2.types │ ├── genericCallWithOverloadedFunctionTypedArguments.js │ ├── genericCallWithOverloadedFunctionTypedArguments.symbols │ ├── genericCallWithOverloadedFunctionTypedArguments.types │ ├── genericCallWithOverloadedFunctionTypedArguments2.errors.txt │ ├── genericCallWithOverloadedFunctionTypedArguments2.js │ ├── genericCallWithOverloadedFunctionTypedArguments2.symbols │ ├── genericCallWithOverloadedFunctionTypedArguments2.types │ ├── genericCallWithTupleType.errors.txt │ ├── genericCallWithTupleType.js │ ├── genericCallWithTupleType.symbols │ ├── genericCallWithTupleType.types │ ├── genericCallWithinOwnBodyCastTypeParameterIdentity.js │ ├── genericCallWithinOwnBodyCastTypeParameterIdentity.symbols │ ├── genericCallWithinOwnBodyCastTypeParameterIdentity.types │ ├── genericCallWithoutArgs.errors.txt │ ├── genericCallWithoutArgs.js │ ├── genericCallWithoutArgs.symbols │ ├── genericCallWithoutArgs.types │ ├── genericCallbackInvokedInsideItsContainingFunction1.errors.txt │ ├── genericCallbackInvokedInsideItsContainingFunction1.js │ ├── genericCallbackInvokedInsideItsContainingFunction1.symbols │ ├── genericCallbackInvokedInsideItsContainingFunction1.types │ ├── genericCallbacksAndClassHierarchy.errors.txt │ ├── genericCallbacksAndClassHierarchy.js │ ├── genericCallbacksAndClassHierarchy.symbols │ ├── genericCallbacksAndClassHierarchy.types │ ├── genericCapturingFunctionNarrowing.js │ ├── genericCapturingFunctionNarrowing.symbols │ ├── genericCapturingFunctionNarrowing.types │ ├── genericChainedCalls.errors.txt │ ├── genericChainedCalls.js │ ├── genericChainedCalls.symbols │ ├── genericChainedCalls.types │ ├── genericClassExpressionInFunction.errors.txt │ ├── genericClassExpressionInFunction.js │ ├── genericClassExpressionInFunction.symbols │ ├── genericClassExpressionInFunction.types │ ├── genericClassImplementingGenericInterfaceFromAnotherModule.js │ ├── genericClassImplementingGenericInterfaceFromAnotherModule.symbols │ ├── genericClassImplementingGenericInterfaceFromAnotherModule.types │ ├── genericClassInheritsConstructorFromNonGenericClass.errors.txt │ ├── genericClassInheritsConstructorFromNonGenericClass.js │ ├── genericClassInheritsConstructorFromNonGenericClass.symbols │ ├── genericClassInheritsConstructorFromNonGenericClass.types │ ├── genericClassPropertyInheritanceSpecialization.js │ ├── genericClassPropertyInheritanceSpecialization.symbols │ ├── genericClassPropertyInheritanceSpecialization.types │ ├── genericClassStaticMethod.js │ ├── genericClassStaticMethod.symbols │ ├── genericClassStaticMethod.types │ ├── genericClassWithFunctionTypedMemberArguments.errors.txt │ ├── genericClassWithFunctionTypedMemberArguments.js │ ├── genericClassWithFunctionTypedMemberArguments.symbols │ ├── genericClassWithFunctionTypedMemberArguments.types │ ├── genericClassWithObjectTypeArgsAndConstraints.errors.txt │ ├── genericClassWithObjectTypeArgsAndConstraints.js │ ├── genericClassWithObjectTypeArgsAndConstraints.symbols │ ├── genericClassWithObjectTypeArgsAndConstraints.types │ ├── genericClassWithStaticFactory.errors.txt │ ├── genericClassWithStaticFactory.js │ ├── genericClassWithStaticFactory.symbols │ ├── genericClassWithStaticFactory.types │ ├── genericClassWithStaticsUsingTypeArguments.errors.txt │ ├── genericClassWithStaticsUsingTypeArguments.js │ ├── genericClassWithStaticsUsingTypeArguments.symbols │ ├── genericClassWithStaticsUsingTypeArguments.types │ ├── genericClasses0.errors.txt │ ├── genericClasses0.js │ ├── genericClasses0.symbols │ ├── genericClasses0.types │ ├── genericClasses1.errors.txt │ ├── genericClasses1.js │ ├── genericClasses1.symbols │ ├── genericClasses1.types │ ├── genericClasses2.errors.txt │ ├── genericClasses2.js │ ├── genericClasses2.symbols │ ├── genericClasses2.types │ ├── genericClasses3.errors.txt │ ├── genericClasses3.js │ ├── genericClasses3.symbols │ ├── genericClasses3.types │ ├── genericClasses4.js │ ├── genericClasses4.symbols │ ├── genericClasses4.types │ ├── genericClassesInModule.js │ ├── genericClassesInModule.symbols │ ├── genericClassesInModule.types │ ├── genericClassesInModule2.errors.txt │ ├── genericClassesInModule2.js │ ├── genericClassesInModule2.symbols │ ├── genericClassesInModule2.types │ ├── genericClassesRedeclaration.errors.txt │ ├── genericClassesRedeclaration.js │ ├── genericClassesRedeclaration.symbols │ ├── genericClassesRedeclaration.types │ ├── genericCloduleInModule.errors.txt │ ├── genericCloduleInModule.js │ ├── genericCloduleInModule.symbols │ ├── genericCloduleInModule.types │ ├── genericCloduleInModule2.errors.txt │ ├── genericCloduleInModule2.js │ ├── genericCloduleInModule2.symbols │ ├── genericCloduleInModule2.types │ ├── genericCloneReturnTypes.errors.txt │ ├── genericCloneReturnTypes.js │ ├── genericCloneReturnTypes.symbols │ ├── genericCloneReturnTypes.types │ ├── genericCloneReturnTypes2.errors.txt │ ├── genericCloneReturnTypes2.js │ ├── genericCloneReturnTypes2.symbols │ ├── genericCloneReturnTypes2.types │ ├── genericCombinators2.errors.txt │ ├── genericCombinators2.js │ ├── genericCombinators2.symbols │ ├── genericCombinators2.types │ ├── genericConditionalConstrainedToUnknownNotAssignableToConcreteObject.errors.txt │ ├── genericConditionalConstrainedToUnknownNotAssignableToConcreteObject.js │ ├── genericConditionalConstrainedToUnknownNotAssignableToConcreteObject.symbols │ ├── genericConditionalConstrainedToUnknownNotAssignableToConcreteObject.types │ ├── genericConstraint1.errors.txt │ ├── genericConstraint1.js │ ├── genericConstraint1.symbols │ ├── genericConstraint1.types │ ├── genericConstraint2.errors.txt │ ├── genericConstraint2.js │ ├── genericConstraint2.symbols │ ├── genericConstraint2.types │ ├── genericConstraint3.js │ ├── genericConstraint3.symbols │ ├── genericConstraint3.types │ ├── genericConstraintDeclaration.errors.txt │ ├── genericConstraintDeclaration.js │ ├── genericConstraintDeclaration.symbols │ ├── genericConstraintDeclaration.types │ ├── genericConstraintOnExtendedBuiltinTypes.js │ ├── genericConstraintOnExtendedBuiltinTypes.symbols │ ├── genericConstraintOnExtendedBuiltinTypes.types │ ├── genericConstraintOnExtendedBuiltinTypes2.js │ ├── genericConstraintOnExtendedBuiltinTypes2.symbols │ ├── genericConstraintOnExtendedBuiltinTypes2.types │ ├── genericConstraintSatisfaction1.errors.txt │ ├── genericConstraintSatisfaction1.js │ ├── genericConstraintSatisfaction1.symbols │ ├── genericConstraintSatisfaction1.types │ ├── genericConstructInvocationWithNoTypeArg.errors.txt │ ├── genericConstructInvocationWithNoTypeArg.js │ ├── genericConstructInvocationWithNoTypeArg.symbols │ ├── genericConstructInvocationWithNoTypeArg.types │ ├── genericConstructSignatureInInterface.js │ ├── genericConstructSignatureInInterface.symbols │ ├── genericConstructSignatureInInterface.types │ ├── genericConstructorFunction1.errors.txt │ ├── genericConstructorFunction1.js │ ├── genericConstructorFunction1.symbols │ ├── genericConstructorFunction1.types │ ├── genericContextualTypes1.js │ ├── genericContextualTypes1.symbols │ ├── genericContextualTypes1.types │ ├── genericContextualTypes2.symbols │ ├── genericContextualTypes2.types │ ├── genericContextualTypes3.symbols │ ├── genericContextualTypes3.types │ ├── genericContextualTypingSpecialization.errors.txt │ ├── genericContextualTypingSpecialization.js │ ├── genericContextualTypingSpecialization.symbols │ ├── genericContextualTypingSpecialization.types │ ├── genericDefaults.errors.txt │ ├── genericDefaults.js │ ├── genericDefaults.symbols │ ├── genericDefaults.types │ ├── genericDefaultsErrors.errors.txt │ ├── genericDefaultsErrors.js │ ├── genericDefaultsErrors.symbols │ ├── genericDefaultsErrors.types │ ├── genericDefaultsJs.symbols │ ├── genericDefaultsJs.types │ ├── genericDerivedTypeWithSpecializedBase.errors.txt │ ├── genericDerivedTypeWithSpecializedBase.js │ ├── genericDerivedTypeWithSpecializedBase.symbols │ ├── genericDerivedTypeWithSpecializedBase.types │ ├── genericDerivedTypeWithSpecializedBase2.errors.txt │ ├── genericDerivedTypeWithSpecializedBase2.js │ ├── genericDerivedTypeWithSpecializedBase2.symbols │ ├── genericDerivedTypeWithSpecializedBase2.types │ ├── genericFunctionCallSignatureReturnTypeMismatch.errors.txt │ ├── genericFunctionCallSignatureReturnTypeMismatch.js │ ├── genericFunctionCallSignatureReturnTypeMismatch.symbols │ ├── genericFunctionCallSignatureReturnTypeMismatch.types │ ├── genericFunctionHasFreshTypeArgs.js │ ├── genericFunctionHasFreshTypeArgs.symbols │ ├── genericFunctionHasFreshTypeArgs.types │ ├── genericFunctionInference1.errors.txt │ ├── genericFunctionInference1.js │ ├── genericFunctionInference1.symbols │ ├── genericFunctionInference1.types │ ├── genericFunctionInference2.js │ ├── genericFunctionInference2.symbols │ ├── genericFunctionInference2.types │ ├── genericFunctionParameters.js │ ├── genericFunctionParameters.symbols │ ├── genericFunctionParameters.types │ ├── genericFunctionSpecializations1.js │ ├── genericFunctionSpecializations1.symbols │ ├── genericFunctionSpecializations1.types │ ├── genericFunctionTypedArgumentsAreFixed.errors.txt │ ├── genericFunctionTypedArgumentsAreFixed.js │ ├── genericFunctionTypedArgumentsAreFixed.symbols │ ├── genericFunctionTypedArgumentsAreFixed.types │ ├── genericFunctions0.js │ ├── genericFunctions0.symbols │ ├── genericFunctions0.types │ ├── genericFunctions1.js │ ├── genericFunctions1.symbols │ ├── genericFunctions1.types │ ├── genericFunctions2.errors.txt │ ├── genericFunctions2.js │ ├── genericFunctions2.symbols │ ├── genericFunctions2.types │ ├── genericFunctions3.errors.txt │ ├── genericFunctions3.js │ ├── genericFunctions3.symbols │ ├── genericFunctions3.types │ ├── genericFunctionsAndConditionalInference.js │ ├── genericFunctionsAndConditionalInference.symbols │ ├── genericFunctionsAndConditionalInference.types │ ├── genericFunctionsNotContextSensitive.js │ ├── genericFunctionsNotContextSensitive.symbols │ ├── genericFunctionsNotContextSensitive.types │ ├── genericFunctionsWithOptionalParameters1.errors.txt │ ├── genericFunctionsWithOptionalParameters1.js │ ├── genericFunctionsWithOptionalParameters1.symbols │ ├── genericFunctionsWithOptionalParameters1.types │ ├── genericFunctionsWithOptionalParameters2.errors.txt │ ├── genericFunctionsWithOptionalParameters2.js │ ├── genericFunctionsWithOptionalParameters2.symbols │ ├── genericFunctionsWithOptionalParameters2.types │ ├── genericFunctionsWithOptionalParameters3.errors.txt │ ├── genericFunctionsWithOptionalParameters3.js │ ├── genericFunctionsWithOptionalParameters3.symbols │ ├── genericFunctionsWithOptionalParameters3.types │ ├── genericFunduleInModule.errors.txt │ ├── genericFunduleInModule.js │ ├── genericFunduleInModule.symbols │ ├── genericFunduleInModule.types │ ├── genericFunduleInModule2.errors.txt │ ├── genericFunduleInModule2.js │ ├── genericFunduleInModule2.symbols │ ├── genericFunduleInModule2.types │ ├── genericGetter.errors.txt │ ├── genericGetter.js │ ├── genericGetter.symbols │ ├── genericGetter.types │ ├── genericGetter2.errors.txt │ ├── genericGetter2.js │ ├── genericGetter2.symbols │ ├── genericGetter2.types │ ├── genericGetter3.errors.txt │ ├── genericGetter3.js │ ├── genericGetter3.symbols │ ├── genericGetter3.types │ ├── genericImplements.errors.txt │ ├── genericImplements.js │ ├── genericImplements.symbols │ ├── genericImplements.types │ ├── genericIndexTypeHasSensibleErrorMessage.errors.txt │ ├── genericIndexTypeHasSensibleErrorMessage.js │ ├── genericIndexTypeHasSensibleErrorMessage.symbols │ ├── genericIndexTypeHasSensibleErrorMessage.types │ ├── genericIndexedAccessMethodIntersectionCanBeAccessed.js │ ├── genericIndexedAccessMethodIntersectionCanBeAccessed.symbols │ ├── genericIndexedAccessMethodIntersectionCanBeAccessed.types │ ├── genericIndexedAccessVarianceComparisonResultCorrect.errors.txt │ ├── genericIndexedAccessVarianceComparisonResultCorrect.js │ ├── genericIndexedAccessVarianceComparisonResultCorrect.symbols │ ├── genericIndexedAccessVarianceComparisonResultCorrect.types │ ├── genericInference1.js │ ├── genericInference1.symbols │ ├── genericInference1.types │ ├── genericInference2.js │ ├── genericInference2.symbols │ ├── genericInference2.types │ ├── genericInferenceDefaultTypeParameter.js │ ├── genericInferenceDefaultTypeParameter.symbols │ ├── genericInferenceDefaultTypeParameter.types │ ├── genericInferenceDefaultTypeParameterJsxReact.js │ ├── genericInferenceDefaultTypeParameterJsxReact.symbols │ ├── genericInferenceDefaultTypeParameterJsxReact.types │ ├── genericInheritedDefaultConstructors.errors.txt │ ├── genericInheritedDefaultConstructors.js │ ├── genericInheritedDefaultConstructors.symbols │ ├── genericInheritedDefaultConstructors.types │ ├── genericInstanceOf.js │ ├── genericInstanceOf.symbols │ ├── genericInstanceOf.types │ ├── genericInstantiationEquivalentToObjectLiteral.js │ ├── genericInstantiationEquivalentToObjectLiteral.symbols │ ├── genericInstantiationEquivalentToObjectLiteral.types │ ├── genericInterfaceFunctionTypeParameter.errors.txt │ ├── genericInterfaceFunctionTypeParameter.js │ ├── genericInterfaceFunctionTypeParameter.symbols │ ├── genericInterfaceFunctionTypeParameter.types │ ├── genericInterfaceImplementation.js │ ├── genericInterfaceImplementation.symbols │ ├── genericInterfaceImplementation.types │ ├── genericInterfaceTypeCall.errors.txt │ ├── genericInterfaceTypeCall.js │ ├── genericInterfaceTypeCall.symbols │ ├── genericInterfaceTypeCall.types │ ├── genericInterfacesWithoutTypeArguments.errors.txt │ ├── genericInterfacesWithoutTypeArguments.js │ ├── genericInterfacesWithoutTypeArguments.symbols │ ├── genericInterfacesWithoutTypeArguments.types │ ├── genericIsNeverEmptyObject.js │ ├── genericIsNeverEmptyObject.symbols │ ├── genericIsNeverEmptyObject.types │ ├── genericLambaArgWithoutTypeArguments.errors.txt │ ├── genericLambaArgWithoutTypeArguments.js │ ├── genericLambaArgWithoutTypeArguments.symbols │ ├── genericLambaArgWithoutTypeArguments.types │ ├── genericMappedTypeAsClause.errors.txt │ ├── genericMappedTypeAsClause.js │ ├── genericMappedTypeAsClause.symbols │ ├── genericMappedTypeAsClause.types │ ├── genericMemberFunction.errors.txt │ ├── genericMemberFunction.js │ ├── genericMemberFunction.symbols │ ├── genericMemberFunction.types │ ├── genericMergedDeclarationUsingTypeParameter.errors.txt │ ├── genericMergedDeclarationUsingTypeParameter.js │ ├── genericMergedDeclarationUsingTypeParameter.symbols │ ├── genericMergedDeclarationUsingTypeParameter.types │ ├── genericMergedDeclarationUsingTypeParameter2.errors.txt │ ├── genericMergedDeclarationUsingTypeParameter2.js │ ├── genericMergedDeclarationUsingTypeParameter2.symbols │ ├── genericMergedDeclarationUsingTypeParameter2.types │ ├── genericMethodOverspecialization.js │ ├── genericMethodOverspecialization.symbols │ ├── genericMethodOverspecialization.types │ ├── genericNewInterface.errors.txt │ ├── genericNewInterface.js │ ├── genericNewInterface.symbols │ ├── genericNewInterface.types │ ├── genericNumberIndex.js │ ├── genericNumberIndex.symbols │ ├── genericNumberIndex.types │ ├── genericObjectCreationWithoutTypeArgs.js │ ├── genericObjectCreationWithoutTypeArgs.symbols │ ├── genericObjectCreationWithoutTypeArgs.types │ ├── genericObjectLitReturnType.errors.txt │ ├── genericObjectLitReturnType.js │ ├── genericObjectLitReturnType.symbols │ ├── genericObjectLitReturnType.types │ ├── genericObjectRest.js │ ├── genericObjectRest.symbols │ ├── genericObjectRest.types │ ├── genericObjectSpreadResultInSwitch.js │ ├── genericObjectSpreadResultInSwitch.symbols │ ├── genericObjectSpreadResultInSwitch.types │ ├── genericOfACloduleType1.errors.txt │ ├── genericOfACloduleType1.js │ ├── genericOfACloduleType1.symbols │ ├── genericOfACloduleType1.types │ ├── genericOfACloduleType2.errors.txt │ ├── genericOfACloduleType2.js │ ├── genericOfACloduleType2.symbols │ ├── genericOfACloduleType2.types │ ├── genericOverloadSignatures.js │ ├── genericOverloadSignatures.symbols │ ├── genericOverloadSignatures.types │ ├── genericParameterAssignability1.errors.txt │ ├── genericParameterAssignability1.js │ ├── genericParameterAssignability1.symbols │ ├── genericParameterAssignability1.types │ ├── genericPrototypeProperty.errors.txt │ ├── genericPrototypeProperty.js │ ├── genericPrototypeProperty.symbols │ ├── genericPrototypeProperty.types │ ├── genericPrototypeProperty2.js │ ├── genericPrototypeProperty2.symbols │ ├── genericPrototypeProperty2.types │ ├── genericPrototypeProperty3.errors.txt │ ├── genericPrototypeProperty3.js │ ├── genericPrototypeProperty3.symbols │ ├── genericPrototypeProperty3.types │ ├── genericRecursiveImplicitConstructorErrors1.errors.txt │ ├── genericRecursiveImplicitConstructorErrors1.js │ ├── genericRecursiveImplicitConstructorErrors1.symbols │ ├── genericRecursiveImplicitConstructorErrors1.types │ ├── genericRecursiveImplicitConstructorErrors2.errors.txt │ ├── genericRecursiveImplicitConstructorErrors2.js │ ├── genericRecursiveImplicitConstructorErrors2.symbols │ ├── genericRecursiveImplicitConstructorErrors2.types │ ├── genericRecursiveImplicitConstructorErrors3.errors.txt │ ├── genericRecursiveImplicitConstructorErrors3.js │ ├── genericRecursiveImplicitConstructorErrors3.symbols │ ├── genericRecursiveImplicitConstructorErrors3.types │ ├── genericReduce.errors.txt │ ├── genericReduce.js │ ├── genericReduce.symbols │ ├── genericReduce.types │ ├── genericRestArgs.errors.txt │ ├── genericRestArgs.js │ ├── genericRestArgs.symbols │ ├── genericRestArgs.types │ ├── genericRestArity.errors.txt │ ├── genericRestArity.js │ ├── genericRestArity.symbols │ ├── genericRestArity.types │ ├── genericRestArityStrict.errors.txt │ ├── genericRestArityStrict.js │ ├── genericRestArityStrict.symbols │ ├── genericRestArityStrict.types │ ├── genericRestParameters1.errors.txt │ ├── genericRestParameters1.js │ ├── genericRestParameters1.symbols │ ├── genericRestParameters1.types │ ├── genericRestParameters2.js │ ├── genericRestParameters2.symbols │ ├── genericRestParameters2.types │ ├── genericRestParameters3.errors.txt │ ├── genericRestParameters3.js │ ├── genericRestParameters3.symbols │ ├── genericRestParameters3.types │ ├── genericRestTypes.errors.txt │ ├── genericRestTypes.js │ ├── genericRestTypes.symbols │ ├── genericRestTypes.types │ ├── genericReturnTypeFromGetter1.errors.txt │ ├── genericReturnTypeFromGetter1.js │ ├── genericReturnTypeFromGetter1.symbols │ ├── genericReturnTypeFromGetter1.types │ ├── genericReversingTypeParameters.errors.txt │ ├── genericReversingTypeParameters.js │ ├── genericReversingTypeParameters.symbols │ ├── genericReversingTypeParameters.types │ ├── genericReversingTypeParameters2.errors.txt │ ├── genericReversingTypeParameters2.js │ ├── genericReversingTypeParameters2.symbols │ ├── genericReversingTypeParameters2.types │ ├── genericSetterInClassType.js │ ├── genericSetterInClassType.symbols │ ├── genericSetterInClassType.types │ ├── genericSetterInClassTypeJsDoc.errors.txt │ ├── genericSetterInClassTypeJsDoc.js │ ├── genericSetterInClassTypeJsDoc.symbols │ ├── genericSetterInClassTypeJsDoc.types │ ├── genericSignatureIdentity.errors.txt │ ├── genericSignatureIdentity.js │ ├── genericSignatureIdentity.symbols │ ├── genericSignatureIdentity.types │ ├── genericSignatureInheritance.js │ ├── genericSignatureInheritance.symbols │ ├── genericSignatureInheritance.types │ ├── genericSignatureInheritance2.js │ ├── genericSignatureInheritance2.symbols │ ├── genericSignatureInheritance2.types │ ├── genericSpecializationToTypeLiteral1.js │ ├── genericSpecializationToTypeLiteral1.symbols │ ├── genericSpecializationToTypeLiteral1.types │ ├── genericSpecializations1.errors.txt │ ├── genericSpecializations1.js │ ├── genericSpecializations1.symbols │ ├── genericSpecializations1.types │ ├── genericSpecializations2.errors.txt │ ├── genericSpecializations2.js │ ├── genericSpecializations2.symbols │ ├── genericSpecializations2.types │ ├── genericSpecializations3.errors.txt │ ├── genericSpecializations3.js │ ├── genericSpecializations3.symbols │ ├── genericSpecializations3.types │ ├── genericStaticAnyTypeFunction.js │ ├── genericStaticAnyTypeFunction.symbols │ ├── genericStaticAnyTypeFunction.types │ ├── genericTemplateOverloadResolution.js │ ├── genericTemplateOverloadResolution.symbols │ ├── genericTemplateOverloadResolution.types │ ├── genericTupleWithSimplifiableElements.symbols │ ├── genericTupleWithSimplifiableElements.types │ ├── genericTypeAliases.errors.txt │ ├── genericTypeAliases.js │ ├── genericTypeAliases.symbols │ ├── genericTypeAliases.types │ ├── genericTypeArgumentInference1.errors.txt │ ├── genericTypeArgumentInference1.js │ ├── genericTypeArgumentInference1.symbols │ ├── genericTypeArgumentInference1.types │ ├── genericTypeAssertions1.errors.txt │ ├── genericTypeAssertions1.js │ ├── genericTypeAssertions1.symbols │ ├── genericTypeAssertions1.types │ ├── genericTypeAssertions2.errors.txt │ ├── genericTypeAssertions2.js │ ├── genericTypeAssertions2.symbols │ ├── genericTypeAssertions2.types │ ├── genericTypeAssertions3.js │ ├── genericTypeAssertions3.symbols │ ├── genericTypeAssertions3.types │ ├── genericTypeAssertions4.errors.txt │ ├── genericTypeAssertions4.js │ ├── genericTypeAssertions4.symbols │ ├── genericTypeAssertions4.types │ ├── genericTypeAssertions5.errors.txt │ ├── genericTypeAssertions5.js │ ├── genericTypeAssertions5.symbols │ ├── genericTypeAssertions5.types │ ├── genericTypeAssertions6.errors.txt │ ├── genericTypeAssertions6.js │ ├── genericTypeAssertions6.symbols │ ├── genericTypeAssertions6.types │ ├── genericTypeConstraints.errors.txt │ ├── genericTypeConstraints.js │ ├── genericTypeConstraints.symbols │ ├── genericTypeConstraints.types │ ├── genericTypeParameterEquivalence2.js │ ├── genericTypeParameterEquivalence2.symbols │ ├── genericTypeParameterEquivalence2.types │ ├── genericTypeReferenceWithoutTypeArgument.d.errors.txt │ ├── genericTypeReferenceWithoutTypeArgument.d.symbols │ ├── genericTypeReferenceWithoutTypeArgument.d.types │ ├── genericTypeReferenceWithoutTypeArgument.errors.txt │ ├── genericTypeReferenceWithoutTypeArgument.js │ ├── genericTypeReferenceWithoutTypeArgument.symbols │ ├── genericTypeReferenceWithoutTypeArgument.types │ ├── genericTypeReferenceWithoutTypeArgument2.errors.txt │ ├── genericTypeReferenceWithoutTypeArgument2.js │ ├── genericTypeReferenceWithoutTypeArgument2.symbols │ ├── genericTypeReferenceWithoutTypeArgument2.types │ ├── genericTypeReferenceWithoutTypeArgument3.errors.txt │ ├── genericTypeReferenceWithoutTypeArgument3.js │ ├── genericTypeReferenceWithoutTypeArgument3.symbols │ ├── genericTypeReferenceWithoutTypeArgument3.types │ ├── genericTypeReferencesRequireTypeArgs.errors.txt │ ├── genericTypeReferencesRequireTypeArgs.js │ ├── genericTypeReferencesRequireTypeArgs.symbols │ ├── genericTypeReferencesRequireTypeArgs.types │ ├── genericTypeUsedWithoutTypeArguments1.errors.txt │ ├── genericTypeUsedWithoutTypeArguments1.js │ ├── genericTypeUsedWithoutTypeArguments1.symbols │ ├── genericTypeUsedWithoutTypeArguments1.types │ ├── genericTypeUsedWithoutTypeArguments3.errors.txt │ ├── genericTypeUsedWithoutTypeArguments3.js │ ├── genericTypeUsedWithoutTypeArguments3.symbols │ ├── genericTypeUsedWithoutTypeArguments3.types │ ├── genericTypeWithCallableMembers.js │ ├── genericTypeWithCallableMembers.symbols │ ├── genericTypeWithCallableMembers.types │ ├── genericTypeWithCallableMembers2.js │ ├── genericTypeWithCallableMembers2.symbols │ ├── genericTypeWithCallableMembers2.types │ ├── genericTypeWithMultipleBases1.errors.txt │ ├── genericTypeWithMultipleBases1.js │ ├── genericTypeWithMultipleBases1.symbols │ ├── genericTypeWithMultipleBases1.types │ ├── genericTypeWithMultipleBases2.errors.txt │ ├── genericTypeWithMultipleBases2.js │ ├── genericTypeWithMultipleBases2.symbols │ ├── genericTypeWithMultipleBases2.types │ ├── genericTypeWithMultipleBases3.errors.txt │ ├── genericTypeWithMultipleBases3.js │ ├── genericTypeWithMultipleBases3.symbols │ ├── genericTypeWithMultipleBases3.types │ ├── genericTypeWithNonGenericBaseMisMatch.errors.txt │ ├── genericTypeWithNonGenericBaseMisMatch.js │ ├── genericTypeWithNonGenericBaseMisMatch.symbols │ ├── genericTypeWithNonGenericBaseMisMatch.types │ ├── genericUnboundedTypeParamAssignability.errors.txt │ ├── genericUnboundedTypeParamAssignability.js │ ├── genericUnboundedTypeParamAssignability.symbols │ ├── genericUnboundedTypeParamAssignability.types │ ├── genericWithCallSignatureReturningSpecialization.errors.txt │ ├── genericWithCallSignatureReturningSpecialization.js │ ├── genericWithCallSignatureReturningSpecialization.symbols │ ├── genericWithCallSignatureReturningSpecialization.types │ ├── genericWithCallSignatures1.errors.txt │ ├── genericWithCallSignatures1.js │ ├── genericWithCallSignatures1.symbols │ ├── genericWithCallSignatures1.types │ ├── genericWithIndexerOfTypeParameterType1.js │ ├── genericWithIndexerOfTypeParameterType1.symbols │ ├── genericWithIndexerOfTypeParameterType1.types │ ├── genericWithIndexerOfTypeParameterType2.errors.txt │ ├── genericWithIndexerOfTypeParameterType2.js │ ├── genericWithIndexerOfTypeParameterType2.symbols │ ├── genericWithIndexerOfTypeParameterType2.types │ ├── genericWithNoConstraintComparableWithCurlyCurly.errors.txt │ ├── genericWithNoConstraintComparableWithCurlyCurly.js │ ├── genericWithNoConstraintComparableWithCurlyCurly.symbols │ ├── genericWithNoConstraintComparableWithCurlyCurly.types │ ├── genericWithOpenTypeParameters1.errors.txt │ ├── genericWithOpenTypeParameters1.js │ ├── genericWithOpenTypeParameters1.symbols │ ├── genericWithOpenTypeParameters1.types │ ├── generics0.errors.txt │ ├── generics0.js │ ├── generics0.symbols │ ├── generics0.types │ ├── generics1.errors.txt │ ├── generics1.js │ ├── generics1.symbols │ ├── generics1.types │ ├── generics1NoError.js │ ├── generics1NoError.symbols │ ├── generics1NoError.types │ ├── generics2.errors.txt │ ├── generics2.js │ ├── generics2.symbols │ ├── generics2.types │ ├── generics2NoError.js │ ├── generics2NoError.symbols │ ├── generics2NoError.types │ ├── generics3.errors.txt │ ├── generics3.js │ ├── generics3.symbols │ ├── generics3.types │ ├── generics4.errors.txt │ ├── generics4.js │ ├── generics4.symbols │ ├── generics4.types │ ├── generics4NoError.errors.txt │ ├── generics4NoError.js │ ├── generics4NoError.symbols │ ├── generics4NoError.types │ ├── generics5.errors.txt │ ├── generics5.js │ ├── generics5.symbols │ ├── generics5.types │ ├── genericsAndHigherOrderFunctions.js │ ├── genericsAndHigherOrderFunctions.symbols │ ├── genericsAndHigherOrderFunctions.types │ ├── genericsManyTypeParameters.js │ ├── genericsManyTypeParameters.symbols │ ├── genericsManyTypeParameters.types │ ├── genericsWithDuplicateTypeParameters1.errors.txt │ ├── genericsWithDuplicateTypeParameters1.js │ ├── genericsWithDuplicateTypeParameters1.symbols │ ├── genericsWithDuplicateTypeParameters1.types │ ├── genericsWithoutTypeParameters1.errors.txt │ ├── genericsWithoutTypeParameters1.js │ ├── genericsWithoutTypeParameters1.symbols │ ├── genericsWithoutTypeParameters1.types │ ├── getAccessorWithImpliedReturnTypeAndFunctionClassMerge.js │ ├── getAccessorWithImpliedReturnTypeAndFunctionClassMerge.symbols │ ├── getAccessorWithImpliedReturnTypeAndFunctionClassMerge.types │ ├── getAndSetAsMemberNames.js │ ├── getAndSetAsMemberNames.symbols │ ├── getAndSetAsMemberNames.types │ ├── getAndSetNotIdenticalType.js │ ├── getAndSetNotIdenticalType.symbols │ ├── getAndSetNotIdenticalType.types │ ├── getAndSetNotIdenticalType2.errors.txt │ ├── getAndSetNotIdenticalType2.js │ ├── getAndSetNotIdenticalType2.symbols │ ├── getAndSetNotIdenticalType2.types │ ├── getAndSetNotIdenticalType3.errors.txt │ ├── getAndSetNotIdenticalType3.js │ ├── getAndSetNotIdenticalType3.symbols │ ├── getAndSetNotIdenticalType3.types │ ├── getEmitOutputDeclarationMultiFiles.baseline │ ├── getEmitOutputDeclarationSingleFile.baseline │ ├── getEmitOutputExternalModule.baseline │ ├── getEmitOutputExternalModule2.baseline │ ├── getEmitOutputMapRoots.baseline │ ├── getEmitOutputNoErrors.baseline │ ├── getEmitOutputOnlyOneFile.baseline │ ├── getEmitOutputOut.baseline │ ├── getEmitOutputOutFile.baseline │ ├── getEmitOutputSingleFile.baseline │ ├── getEmitOutputSingleFile2.baseline │ ├── getEmitOutputSourceMap.baseline │ ├── getEmitOutputSourceMap2.baseline │ ├── getEmitOutputSourceRoot.baseline │ ├── getEmitOutputSourceRootMultiFiles.baseline │ ├── getEmitOutputTsxFile_Preserve.baseline │ ├── getEmitOutputTsxFile_React.baseline │ ├── getEmitOutputWithDeclarationFile.baseline │ ├── getEmitOutputWithDeclarationFile2.baseline │ ├── getEmitOutputWithDeclarationFile3.baseline │ ├── getEmitOutputWithEarlySyntacticErrors.baseline │ ├── getEmitOutputWithEmitterErrors.baseline │ ├── getEmitOutputWithEmitterErrors2.baseline │ ├── getEmitOutputWithSemanticErrors.baseline │ ├── getEmitOutputWithSemanticErrors2.baseline │ ├── getEmitOutputWithSemanticErrorsForMultipleFiles.baseline │ ├── getEmitOutputWithSemanticErrorsForMultipleFiles2.baseline │ ├── getEmitOutputWithSyntacticErrorsForMultipleFiles.baseline │ ├── getEmitOutputWithSyntacticErrorsForMultipleFiles2.baseline │ ├── getEmitOutputWithSyntaxErrors.baseline │ ├── getFileReferences1.baseline.jsonc │ ├── getFileReferences2.baseline.jsonc │ ├── getFileReferences_deduplicate.baseline.jsonc │ ├── getFileReferences_server1.baseline.jsonc │ ├── getFileReferences_server2.baseline.jsonc │ ├── getJavaScriptSyntacticDiagnostics01.baseline │ ├── getJavaScriptSyntacticDiagnostics02.baseline │ ├── getJavaScriptSyntacticDiagnostics1.baseline │ ├── getJavaScriptSyntacticDiagnostics10.baseline │ ├── getJavaScriptSyntacticDiagnostics11.baseline │ ├── getJavaScriptSyntacticDiagnostics12.baseline │ ├── getJavaScriptSyntacticDiagnostics13.baseline │ ├── getJavaScriptSyntacticDiagnostics14.baseline │ ├── getJavaScriptSyntacticDiagnostics15.baseline │ ├── getJavaScriptSyntacticDiagnostics16.baseline │ ├── getJavaScriptSyntacticDiagnostics17.baseline │ ├── getJavaScriptSyntacticDiagnostics18.baseline │ ├── getJavaScriptSyntacticDiagnostics19.baseline │ ├── getJavaScriptSyntacticDiagnostics2.baseline │ ├── getJavaScriptSyntacticDiagnostics3.baseline │ ├── getJavaScriptSyntacticDiagnostics4.baseline │ ├── getJavaScriptSyntacticDiagnostics5.baseline │ ├── getJavaScriptSyntacticDiagnostics6.baseline │ ├── getJavaScriptSyntacticDiagnostics7.baseline │ ├── getJavaScriptSyntacticDiagnostics8.baseline │ ├── getJavaScriptSyntacticDiagnostics9.baseline │ ├── getOccurrencesAbstract01.baseline.jsonc │ ├── getOccurrencesAbstract02.baseline.jsonc │ ├── getOccurrencesAbstract03.baseline.jsonc │ ├── getOccurrencesAfterEdit.baseline.jsonc │ ├── getOccurrencesAsyncAwait.baseline.jsonc │ ├── getOccurrencesAsyncAwait2.baseline.jsonc │ ├── getOccurrencesAsyncAwait3.baseline.jsonc │ ├── getOccurrencesClassExpressionConstructor.baseline.jsonc │ ├── getOccurrencesClassExpressionPrivate.baseline.jsonc │ ├── getOccurrencesClassExpressionPublic.baseline.jsonc │ ├── getOccurrencesClassExpressionStatic.baseline.jsonc │ ├── getOccurrencesClassExpressionStaticThis.baseline.jsonc │ ├── getOccurrencesClassExpressionThis.baseline.jsonc │ ├── getOccurrencesConst01.baseline.jsonc │ ├── getOccurrencesConst02.baseline.jsonc │ ├── getOccurrencesConst03.baseline.jsonc │ ├── getOccurrencesConst04.baseline.jsonc │ ├── getOccurrencesConstructor.baseline.jsonc │ ├── getOccurrencesConstructor2.baseline.jsonc │ ├── getOccurrencesDeclare1.baseline.jsonc │ ├── getOccurrencesDeclare2.baseline.jsonc │ ├── getOccurrencesDeclare3.baseline.jsonc │ ├── getOccurrencesExport1.baseline.jsonc │ ├── getOccurrencesExport2.baseline.jsonc │ ├── getOccurrencesExport3.baseline.jsonc │ ├── getOccurrencesIfElse.baseline.jsonc │ ├── getOccurrencesIfElse2.baseline.jsonc │ ├── getOccurrencesIfElse3.baseline.jsonc │ ├── getOccurrencesIfElse4.baseline.jsonc │ ├── getOccurrencesIfElse5.baseline.jsonc │ ├── getOccurrencesIfElseBroken.baseline.jsonc │ ├── getOccurrencesIsDefinitionOfArrowFunction.baseline.jsonc │ ├── getOccurrencesIsDefinitionOfBindingPattern.baseline.jsonc │ ├── getOccurrencesIsDefinitionOfClass.baseline.jsonc │ ├── getOccurrencesIsDefinitionOfComputedProperty.baseline.jsonc │ ├── getOccurrencesIsDefinitionOfEnum.baseline.jsonc │ ├── getOccurrencesIsDefinitionOfExport.baseline.jsonc │ ├── getOccurrencesIsDefinitionOfFunction.baseline.jsonc │ ├── getOccurrencesIsDefinitionOfInterface.baseline.jsonc │ ├── getOccurrencesIsDefinitionOfInterfaceClassMerge.baseline.jsonc │ ├── getOccurrencesIsDefinitionOfNamespace.baseline.jsonc │ ├── getOccurrencesIsDefinitionOfNumberNamedProperty.baseline.jsonc │ ├── getOccurrencesIsDefinitionOfParameter.baseline.jsonc │ ├── getOccurrencesIsDefinitionOfStringNamedProperty.baseline.jsonc │ ├── getOccurrencesIsDefinitionOfTypeAlias.baseline.jsonc │ ├── getOccurrencesIsDefinitionOfVariable.baseline.jsonc │ ├── getOccurrencesIsWriteAccess.baseline.jsonc │ ├── getOccurrencesLoopBreakContinue.baseline.jsonc │ ├── getOccurrencesLoopBreakContinue2.baseline.jsonc │ ├── getOccurrencesLoopBreakContinue3.baseline.jsonc │ ├── getOccurrencesLoopBreakContinue4.baseline.jsonc │ ├── getOccurrencesLoopBreakContinue5.baseline.jsonc │ ├── getOccurrencesLoopBreakContinue6.baseline.jsonc │ ├── getOccurrencesLoopBreakContinueNegatives.baseline.jsonc │ ├── getOccurrencesModifiersNegatives1.baseline.jsonc │ ├── getOccurrencesNonStringImportAssertion.baseline.jsonc │ ├── getOccurrencesNonStringImportAttributes.baseline.jsonc │ ├── getOccurrencesOfAnonymousFunction.baseline.jsonc │ ├── getOccurrencesOfAnonymousFunction2.baseline.jsonc │ ├── getOccurrencesOfDecorators.baseline.jsonc │ ├── getOccurrencesOfUndefinedSymbol.baseline.jsonc │ ├── getOccurrencesPrivate1.baseline.jsonc │ ├── getOccurrencesPrivate2.baseline.jsonc │ ├── getOccurrencesPropertyInAliasedInterface.baseline.jsonc │ ├── getOccurrencesProtected1.baseline.jsonc │ ├── getOccurrencesProtected2.baseline.jsonc │ ├── getOccurrencesPublic1.baseline.jsonc │ ├── getOccurrencesPublic2.baseline.jsonc │ ├── getOccurrencesReadonly1.baseline.jsonc │ ├── getOccurrencesReadonly2.baseline.jsonc │ ├── getOccurrencesReadonly3.baseline.jsonc │ ├── getOccurrencesReturn.baseline.jsonc │ ├── getOccurrencesReturn2.baseline.jsonc │ ├── getOccurrencesReturn3.baseline.jsonc │ ├── getOccurrencesReturn4.baseline.jsonc │ ├── getOccurrencesReturnBroken.baseline.jsonc │ ├── getOccurrencesSetAndGet.baseline.jsonc │ ├── getOccurrencesSetAndGet2.baseline.jsonc │ ├── getOccurrencesSetAndGet3.baseline.jsonc │ ├── getOccurrencesStatic1.baseline.jsonc │ ├── getOccurrencesStringLiteralTypes.baseline.jsonc │ ├── getOccurrencesStringLiterals.baseline.jsonc │ ├── getOccurrencesSuper.baseline.jsonc │ ├── getOccurrencesSuper2.baseline.jsonc │ ├── getOccurrencesSuper3.baseline.jsonc │ ├── getOccurrencesSuperNegatives.baseline.jsonc │ ├── getOccurrencesSwitchCaseDefault.baseline.jsonc │ ├── getOccurrencesSwitchCaseDefault2.baseline.jsonc │ ├── getOccurrencesSwitchCaseDefault3.baseline.jsonc │ ├── getOccurrencesSwitchCaseDefault4.baseline.jsonc │ ├── getOccurrencesSwitchCaseDefault5.baseline.jsonc │ ├── getOccurrencesSwitchCaseDefaultBroken.baseline.jsonc │ ├── getOccurrencesThis.baseline.jsonc │ ├── getOccurrencesThis2.baseline.jsonc │ ├── getOccurrencesThis3.baseline.jsonc │ ├── getOccurrencesThis4.baseline.jsonc │ ├── getOccurrencesThis5.baseline.jsonc │ ├── getOccurrencesThis6.baseline.jsonc │ ├── getOccurrencesThisNegatives2.baseline.jsonc │ ├── getOccurrencesThrow.baseline.jsonc │ ├── getOccurrencesThrow2.baseline.jsonc │ ├── getOccurrencesThrow3.baseline.jsonc │ ├── getOccurrencesThrow4.baseline.jsonc │ ├── getOccurrencesThrow5.baseline.jsonc │ ├── getOccurrencesThrow6.baseline.jsonc │ ├── getOccurrencesThrow7.baseline.jsonc │ ├── getOccurrencesThrow8.baseline.jsonc │ ├── getOccurrencesTryCatchFinally.baseline.jsonc │ ├── getOccurrencesTryCatchFinally2.baseline.jsonc │ ├── getOccurrencesTryCatchFinally3.baseline.jsonc │ ├── getOccurrencesTryCatchFinally4.baseline.jsonc │ ├── getOccurrencesTryCatchFinallyBroken.baseline.jsonc │ ├── getOccurrencesYield.baseline.jsonc │ ├── getParameterNameAtPosition.js │ ├── getParameterNameAtPosition.symbols │ ├── getParameterNameAtPosition.types │ ├── getPropertySymbolsFromBaseTypesDoesntCrash.baseline.jsonc │ ├── getSetAccessorContextualTyping(target=es2015).errors.txt │ ├── getSetAccessorContextualTyping(target=es2015).js │ ├── getSetAccessorContextualTyping(target=es2015).symbols │ ├── getSetAccessorContextualTyping(target=es2015).types │ ├── getSetAccessorContextualTyping(target=es5).errors.txt │ ├── getSetAccessorContextualTyping(target=es5).js │ ├── getSetAccessorContextualTyping(target=es5).symbols │ ├── getSetAccessorContextualTyping(target=es5).types │ ├── getSetEnumerable(target=es2015).js │ ├── getSetEnumerable(target=es2015).symbols │ ├── getSetEnumerable(target=es2015).types │ ├── getSetEnumerable(target=es5).errors.txt │ ├── getSetEnumerable(target=es5).js │ ├── getSetEnumerable(target=es5).symbols │ ├── getSetEnumerable(target=es5).types │ ├── getsetReturnTypes.js │ ├── getsetReturnTypes.symbols │ ├── getsetReturnTypes.types │ ├── getterControlFlowStrictNull(target=es2015).errors.txt │ ├── getterControlFlowStrictNull(target=es2015).js │ ├── getterControlFlowStrictNull(target=es2015).symbols │ ├── getterControlFlowStrictNull(target=es2015).types │ ├── getterControlFlowStrictNull(target=es5).errors.txt │ ├── getterControlFlowStrictNull(target=es5).js │ ├── getterControlFlowStrictNull(target=es5).symbols │ ├── getterControlFlowStrictNull(target=es5).types │ ├── getterErrorMessageNotDuplicated.js │ ├── getterErrorMessageNotDuplicated.symbols │ ├── getterErrorMessageNotDuplicated.types │ ├── getterMissingReturnError.errors.txt │ ├── getterMissingReturnError.js │ ├── getterMissingReturnError.symbols │ ├── getterMissingReturnError.types │ ├── getterSetterNonAccessor.js │ ├── getterSetterNonAccessor.symbols │ ├── getterSetterNonAccessor.types │ ├── getterSetterSubtypeAssignment.js │ ├── getterSetterSubtypeAssignment.symbols │ ├── getterSetterSubtypeAssignment.types │ ├── getterThatThrowsShouldNotNeedReturn.js │ ├── getterThatThrowsShouldNotNeedReturn.symbols │ ├── getterThatThrowsShouldNotNeedReturn.types │ ├── gettersAndSetters.errors.txt │ ├── gettersAndSetters.js │ ├── gettersAndSetters.symbols │ ├── gettersAndSetters.types │ ├── gettersAndSettersAccessibility.errors.txt │ ├── gettersAndSettersAccessibility.js │ ├── gettersAndSettersAccessibility.symbols │ ├── gettersAndSettersAccessibility.types │ ├── gettersAndSettersErrors.errors.txt │ ├── gettersAndSettersErrors.js │ ├── gettersAndSettersErrors.symbols │ ├── gettersAndSettersErrors.types │ ├── gettersAndSettersTypesAgree.js │ ├── gettersAndSettersTypesAgree.symbols │ ├── gettersAndSettersTypesAgree.types │ ├── giant.errors.txt │ ├── giant.js │ ├── giant.symbols │ ├── giant.types │ ├── global.js │ ├── global.symbols │ ├── global.types │ ├── globalAugmentationModuleResolution.js │ ├── globalAugmentationModuleResolution.symbols │ ├── globalAugmentationModuleResolution.trace.json │ ├── globalAugmentationModuleResolution.types │ ├── globalFunctionAugmentationOverload.js │ ├── globalFunctionAugmentationOverload.symbols │ ├── globalFunctionAugmentationOverload.types │ ├── globalIsContextualKeyword.js │ ├── globalIsContextualKeyword.symbols │ ├── globalIsContextualKeyword.types │ ├── globalMergeWithCommonJSAssignmentDeclaration.errors.txt │ ├── globalMergeWithCommonJSAssignmentDeclaration.symbols │ ├── globalMergeWithCommonJSAssignmentDeclaration.types │ ├── globalThis.js │ ├── globalThis.symbols │ ├── globalThis.types │ ├── globalThisAmbientModules.errors.txt │ ├── globalThisAmbientModules.js │ ├── globalThisAmbientModules.symbols │ ├── globalThisAmbientModules.types │ ├── globalThisBlockscopedProperties.errors.txt │ ├── globalThisBlockscopedProperties.js │ ├── globalThisBlockscopedProperties.symbols │ ├── globalThisBlockscopedProperties.types │ ├── globalThisCapture.js │ ├── globalThisCapture.symbols │ ├── globalThisCapture.types │ ├── globalThisCollision.errors.txt │ ├── globalThisCollision.symbols │ ├── globalThisCollision.types │ ├── globalThisDeclarationEmit.errors.txt │ ├── globalThisDeclarationEmit.js │ ├── globalThisDeclarationEmit.symbols │ ├── globalThisDeclarationEmit.types │ ├── globalThisDeclarationEmit2.js │ ├── globalThisDeclarationEmit2.symbols │ ├── globalThisDeclarationEmit2.types │ ├── globalThisDeclarationEmit3.js │ ├── globalThisDeclarationEmit3.symbols │ ├── globalThisDeclarationEmit3.types │ ├── globalThisGlobalExportAsGlobal.errors.txt │ ├── globalThisGlobalExportAsGlobal.js │ ├── globalThisGlobalExportAsGlobal.symbols │ ├── globalThisGlobalExportAsGlobal.types │ ├── globalThisPropertyAssignment.errors.txt │ ├── globalThisPropertyAssignment.symbols │ ├── globalThisPropertyAssignment.types │ ├── globalThisReadonlyProperties.errors.txt │ ├── globalThisReadonlyProperties.js │ ├── globalThisReadonlyProperties.symbols │ ├── globalThisReadonlyProperties.types │ ├── globalThisTypeIndexAccess.js │ ├── globalThisTypeIndexAccess.symbols │ ├── globalThisTypeIndexAccess.types │ ├── globalThisUnknown.errors.txt │ ├── globalThisUnknown.js │ ├── globalThisUnknown.symbols │ ├── globalThisUnknown.types │ ├── globalThisUnknownNoImplicitAny.errors.txt │ ├── globalThisUnknownNoImplicitAny.js │ ├── globalThisUnknownNoImplicitAny.symbols │ ├── globalThisUnknownNoImplicitAny.types │ ├── globalThisVarDeclaration.errors.txt │ ├── globalThisVarDeclaration.js │ ├── globalThisVarDeclaration.symbols │ ├── globalThisVarDeclaration.types │ ├── goToDefinitionAcrossMultipleProjects.baseline.jsonc │ ├── goToDefinitionAlias.baseline.jsonc │ ├── goToDefinitionAmbiants.baseline.jsonc │ ├── goToDefinitionApparentTypeProperties.baseline.jsonc │ ├── goToDefinitionAwait1.baseline.jsonc │ ├── goToDefinitionAwait2.baseline.jsonc │ ├── goToDefinitionAwait3.baseline.jsonc │ ├── goToDefinitionAwait4.baseline.jsonc │ ├── goToDefinitionBuiltInTypes.baseline.jsonc │ ├── goToDefinitionBuiltInValues.baseline.jsonc │ ├── goToDefinitionCSSPatternAmbientModule.baseline.jsonc │ ├── goToDefinitionClassConstructors.baseline.jsonc │ ├── goToDefinitionClassStaticBlocks.baseline.jsonc │ ├── goToDefinitionConstructorOfClassExpression01.baseline.jsonc │ ├── goToDefinitionConstructorOfClassWhenClassIsPrecededByNamespace01.baseline.jsonc │ ├── goToDefinitionConstructorOverloads.baseline.jsonc │ ├── goToDefinitionDecorator.baseline.jsonc │ ├── goToDefinitionDecoratorOverloads.baseline.jsonc │ ├── goToDefinitionDestructuredRequire1.baseline.jsonc │ ├── goToDefinitionDestructuredRequire2.baseline.jsonc │ ├── goToDefinitionDifferentFile.baseline.jsonc │ ├── goToDefinitionDifferentFileIndirectly.baseline.jsonc │ ├── goToDefinitionDynamicImport1.baseline.jsonc │ ├── goToDefinitionDynamicImport2.baseline.jsonc │ ├── goToDefinitionDynamicImport3.baseline.jsonc │ ├── goToDefinitionDynamicImport4.baseline.jsonc │ ├── goToDefinitionExpandoClass1.baseline.jsonc │ ├── goToDefinitionExpandoClass2.baseline.jsonc │ ├── goToDefinitionExpandoElementAccess.baseline.jsonc │ ├── goToDefinitionExternalModuleName.baseline.jsonc │ ├── goToDefinitionExternalModuleName2.baseline.jsonc │ ├── goToDefinitionExternalModuleName3.baseline.jsonc │ ├── goToDefinitionExternalModuleName4.baseline.jsonc │ ├── goToDefinitionExternalModuleName5.baseline.jsonc │ ├── goToDefinitionExternalModuleName6.baseline.jsonc │ ├── goToDefinitionExternalModuleName7.baseline.jsonc │ ├── goToDefinitionExternalModuleName8.baseline.jsonc │ ├── goToDefinitionExternalModuleName9.baseline.jsonc │ ├── goToDefinitionFunctionOverloads.baseline.jsonc │ ├── goToDefinitionFunctionOverloadsInClass.baseline.jsonc │ ├── goToDefinitionFunctionType.baseline.jsonc │ ├── goToDefinitionImplicitConstructor.baseline.jsonc │ ├── goToDefinitionImport1.baseline.jsonc │ ├── goToDefinitionImport2.baseline.jsonc │ ├── goToDefinitionImport3.baseline.jsonc │ ├── goToDefinitionImportMeta.baseline.jsonc │ ├── goToDefinitionImportedNames.baseline.jsonc │ ├── goToDefinitionImportedNames10.baseline.jsonc │ ├── goToDefinitionImportedNames11.baseline.jsonc │ ├── goToDefinitionImportedNames2.baseline.jsonc │ ├── goToDefinitionImportedNames3.baseline.jsonc │ ├── goToDefinitionImportedNames4.baseline.jsonc │ ├── goToDefinitionImportedNames5.baseline.jsonc │ ├── goToDefinitionImportedNames6.baseline.jsonc │ ├── goToDefinitionImportedNames7.baseline.jsonc │ ├── goToDefinitionImportedNames8.baseline.jsonc │ ├── goToDefinitionImportedNames9.baseline.jsonc │ ├── goToDefinitionImports.baseline.jsonc │ ├── goToDefinitionInMemberDeclaration.baseline.jsonc │ ├── goToDefinitionInTypeArgument.baseline.jsonc │ ├── goToDefinitionIndexSignature.baseline.jsonc │ ├── goToDefinitionIndexSignature2.baseline.jsonc │ ├── goToDefinitionInstanceof1.baseline.jsonc │ ├── goToDefinitionInstanceof2.baseline.jsonc │ ├── goToDefinitionInterfaceAfterImplement.baseline.jsonc │ ├── goToDefinitionJsDocImportTag1.baseline.jsonc │ ├── goToDefinitionJsDocImportTag2.baseline.jsonc │ ├── goToDefinitionJsDocImportTag3.baseline.jsonc │ ├── goToDefinitionJsDocImportTag4.baseline.jsonc │ ├── goToDefinitionJsDocImportTag5.baseline.jsonc │ ├── goToDefinitionJsModuleExports.baseline.jsonc │ ├── goToDefinitionJsModuleName.baseline.jsonc │ ├── goToDefinitionJsModuleNameAtImportName.baseline.jsonc │ ├── goToDefinitionJsxCall.baseline.jsonc │ ├── goToDefinitionJsxNotSet.baseline.jsonc │ ├── goToDefinitionLabels.baseline.jsonc │ ├── goToDefinitionMember.baseline.jsonc │ ├── goToDefinitionMetaProperty.baseline.jsonc │ ├── goToDefinitionMethodOverloads.baseline.jsonc │ ├── goToDefinitionModifiers.baseline.jsonc │ ├── goToDefinitionMultipleDefinitions.baseline.jsonc │ ├── goToDefinitionNewExpressionTargetNotClass.baseline.jsonc │ ├── goToDefinitionObjectBindingElementPropertyName01.baseline.jsonc │ ├── goToDefinitionObjectLiteralProperties.baseline.jsonc │ ├── goToDefinitionObjectLiteralProperties1.baseline.jsonc │ ├── goToDefinitionObjectLiteralProperties2.baseline.jsonc │ ├── goToDefinitionObjectLiteralProperties3.baseline.jsonc │ ├── goToDefinitionObjectSpread.baseline.jsonc │ ├── goToDefinitionOverloadsInMultiplePropertyAccesses.baseline.jsonc │ ├── goToDefinitionOverriddenMember1.baseline.jsonc │ ├── goToDefinitionOverriddenMember10.baseline.jsonc │ ├── goToDefinitionOverriddenMember11.baseline.jsonc │ ├── goToDefinitionOverriddenMember12.baseline.jsonc │ ├── goToDefinitionOverriddenMember13.baseline.jsonc │ ├── goToDefinitionOverriddenMember14.baseline.jsonc │ ├── goToDefinitionOverriddenMember15.baseline.jsonc │ ├── goToDefinitionOverriddenMember16.baseline.jsonc │ ├── goToDefinitionOverriddenMember17.baseline.jsonc │ ├── goToDefinitionOverriddenMember18.baseline.jsonc │ ├── goToDefinitionOverriddenMember19.baseline.jsonc │ ├── goToDefinitionOverriddenMember2.baseline.jsonc │ ├── goToDefinitionOverriddenMember20.baseline.jsonc │ ├── goToDefinitionOverriddenMember21.baseline.jsonc │ ├── goToDefinitionOverriddenMember22.baseline.jsonc │ ├── goToDefinitionOverriddenMember23.baseline.jsonc │ ├── goToDefinitionOverriddenMember24.baseline.jsonc │ ├── goToDefinitionOverriddenMember25.baseline.jsonc │ ├── goToDefinitionOverriddenMember26.baseline.jsonc │ ├── goToDefinitionOverriddenMember3.baseline.jsonc │ ├── goToDefinitionOverriddenMember4.baseline.jsonc │ ├── goToDefinitionOverriddenMember5.baseline.jsonc │ ├── goToDefinitionOverriddenMember6.baseline.jsonc │ ├── goToDefinitionOverriddenMember7.baseline.jsonc │ ├── goToDefinitionOverriddenMember8.baseline.jsonc │ ├── goToDefinitionOverriddenMember9.baseline.jsonc │ ├── goToDefinitionPartialImplementation.baseline.jsonc │ ├── goToDefinitionPrimitives.baseline.jsonc │ ├── goToDefinitionPrivateName.baseline.jsonc │ ├── goToDefinitionPropertyAssignment.baseline.jsonc │ ├── goToDefinitionRest.baseline.jsonc │ ├── goToDefinitionReturn1.baseline.jsonc │ ├── goToDefinitionReturn2.baseline.jsonc │ ├── goToDefinitionReturn3.baseline.jsonc │ ├── goToDefinitionReturn4.baseline.jsonc │ ├── goToDefinitionReturn5.baseline.jsonc │ ├── goToDefinitionReturn6.baseline.jsonc │ ├── goToDefinitionReturn7.baseline.jsonc │ ├── goToDefinitionSameFile.baseline.jsonc │ ├── goToDefinitionSatisfiesExpression1.baseline.jsonc │ ├── goToDefinitionScriptImport.baseline.jsonc │ ├── goToDefinitionScriptImportServer.baseline.jsonc │ ├── goToDefinitionShadowVariable.baseline.jsonc │ ├── goToDefinitionShadowVariableInsideModule.baseline.jsonc │ ├── goToDefinitionShorthandProperty01.baseline.jsonc │ ├── goToDefinitionShorthandProperty02.baseline.jsonc │ ├── goToDefinitionShorthandProperty03.baseline.jsonc │ ├── goToDefinitionShorthandProperty04.baseline.jsonc │ ├── goToDefinitionShorthandProperty05.baseline.jsonc │ ├── goToDefinitionShorthandProperty06.baseline.jsonc │ ├── goToDefinitionSignatureAlias.baseline.jsonc │ ├── goToDefinitionSignatureAlias_require.baseline.jsonc │ ├── goToDefinitionSimple.baseline.jsonc │ ├── goToDefinitionSourceUnit.baseline.jsonc │ ├── goToDefinitionSwitchCase1.baseline.jsonc │ ├── goToDefinitionSwitchCase2.baseline.jsonc │ ├── goToDefinitionSwitchCase3.baseline.jsonc │ ├── goToDefinitionSwitchCase4.baseline.jsonc │ ├── goToDefinitionSwitchCase5.baseline.jsonc │ ├── goToDefinitionSwitchCase6.baseline.jsonc │ ├── goToDefinitionSwitchCase7.baseline.jsonc │ ├── goToDefinitionTaggedTemplateOverloads.baseline.jsonc │ ├── goToDefinitionThis.baseline.jsonc │ ├── goToDefinitionTypeOnlyImport.baseline.jsonc │ ├── goToDefinitionTypePredicate.baseline.jsonc │ ├── goToDefinitionTypeReferenceDirective.baseline.jsonc │ ├── goToDefinitionTypeofThis.baseline.jsonc │ ├── goToDefinitionUndefinedSymbols.baseline.jsonc │ ├── goToDefinitionUnionTypeProperty1.baseline.jsonc │ ├── goToDefinitionUnionTypeProperty2.baseline.jsonc │ ├── goToDefinitionUnionTypeProperty3.baseline.jsonc │ ├── goToDefinitionUnionTypeProperty4.baseline.jsonc │ ├── goToDefinitionUnionTypeProperty_discriminated.baseline.jsonc │ ├── goToDefinitionVariableAssignment.baseline.jsonc │ ├── goToDefinitionVariableAssignment1.baseline.jsonc │ ├── goToDefinitionVariableAssignment2.baseline.jsonc │ ├── goToDefinitionVariableAssignment3.baseline.jsonc │ ├── goToDefinitionYield1.baseline.jsonc │ ├── goToDefinitionYield2.baseline.jsonc │ ├── goToDefinitionYield3.baseline.jsonc │ ├── goToDefinitionYield4.baseline.jsonc │ ├── goToDefinition_filteringGenericMappedType.baseline.jsonc │ ├── goToDefinition_filteringMappedType.baseline.jsonc │ ├── goToDefinition_mappedType.baseline.jsonc │ ├── goToDefinition_super.baseline.jsonc │ ├── goToDefinition_untypedModule.baseline.jsonc │ ├── goToImplementationClassMethod_00.baseline.jsonc │ ├── goToImplementationClassMethod_01.baseline.jsonc │ ├── goToImplementationEnum_00.baseline.jsonc │ ├── goToImplementationEnum_01.baseline.jsonc │ ├── goToImplementationInterfaceMethod_00.baseline.jsonc │ ├── goToImplementationInterfaceMethod_01.baseline.jsonc │ ├── goToImplementationInterfaceMethod_02.baseline.jsonc │ ├── goToImplementationInterfaceMethod_03.baseline.jsonc │ ├── goToImplementationInterfaceMethod_04.baseline.jsonc │ ├── goToImplementationInterfaceMethod_05.baseline.jsonc │ ├── goToImplementationInterfaceMethod_06.baseline.jsonc │ ├── goToImplementationInterfaceMethod_08.baseline.jsonc │ ├── goToImplementationInterfaceMethod_09.baseline.jsonc │ ├── goToImplementationInterfaceMethod_10.baseline.jsonc │ ├── goToImplementationInterfaceMethod_11.baseline.jsonc │ ├── goToImplementationInterfaceProperty_00.baseline.jsonc │ ├── goToImplementationInterfaceProperty_01.baseline.jsonc │ ├── goToImplementationInterface_00.baseline.jsonc │ ├── goToImplementationInterface_01.baseline.jsonc │ ├── goToImplementationInterface_02.baseline.jsonc │ ├── goToImplementationInterface_03.baseline.jsonc │ ├── goToImplementationInterface_04.baseline.jsonc │ ├── goToImplementationInterface_05.baseline.jsonc │ ├── goToImplementationInterface_06.baseline.jsonc │ ├── goToImplementationInterface_07.baseline.jsonc │ ├── goToImplementationInterface_08.baseline.jsonc │ ├── goToImplementationInterface_09.baseline.jsonc │ ├── goToImplementationInterface_10.baseline.jsonc │ ├── goToImplementationInvalid.baseline.jsonc │ ├── goToImplementationLocal_00.baseline.jsonc │ ├── goToImplementationLocal_01.baseline.jsonc │ ├── goToImplementationLocal_02.baseline.jsonc │ ├── goToImplementationLocal_03.baseline.jsonc │ ├── goToImplementationLocal_04.baseline.jsonc │ ├── goToImplementationLocal_05.baseline.jsonc │ ├── goToImplementationLocal_06.baseline.jsonc │ ├── goToImplementationLocal_07.baseline.jsonc │ ├── goToImplementationLocal_08.baseline.jsonc │ ├── goToImplementationNamespace_00.baseline.jsonc │ ├── goToImplementationNamespace_01.baseline.jsonc │ ├── goToImplementationNamespace_02.baseline.jsonc │ ├── goToImplementationNamespace_03.baseline.jsonc │ ├── goToImplementationNamespace_04.baseline.jsonc │ ├── goToImplementationNamespace_05.baseline.jsonc │ ├── goToImplementationNamespace_06.baseline.jsonc │ ├── goToImplementationShorthandPropertyAssignment_00.baseline.jsonc │ ├── goToImplementationShorthandPropertyAssignment_01.baseline.jsonc │ ├── goToImplementationShorthandPropertyAssignment_02.baseline.jsonc │ ├── goToImplementationSuper_00.baseline.jsonc │ ├── goToImplementationSuper_01.baseline.jsonc │ ├── goToImplementationThis_00.baseline.jsonc │ ├── goToImplementationThis_01.baseline.jsonc │ ├── goToImplementationTypeAlias_00.baseline.jsonc │ ├── goToImplementation_inDifferentFiles.baseline.jsonc │ ├── goToImplementation_satisfies.baseline.jsonc │ ├── goToModuleAliasDefinition.baseline.jsonc │ ├── goToSource10_mapFromAtTypes3.baseline.jsonc │ ├── goToSource11_propertyOfAlias.baseline.jsonc │ ├── goToSource12_callbackParam.baseline.jsonc │ ├── goToSource13_nodenext.baseline.jsonc │ ├── goToSource14_unresolvedRequireDestructuring.baseline.jsonc │ ├── goToSource15_bundler.baseline.jsonc │ ├── goToSource16_callbackParamDifferentFile.baseline.jsonc │ ├── goToSource17_AddsFileToProject.baseline.jsonc │ ├── goToSource18_reusedFromDifferentFolder.baseline.jsonc │ ├── goToSource1_localJsBesideDts.baseline.jsonc │ ├── goToSource2_nodeModulesWithTypes.baseline.jsonc │ ├── goToSource3_nodeModulesAtTypes.baseline.jsonc │ ├── goToSource5_sameAsGoToDef1.baseline.jsonc │ ├── goToSource6_sameAsGoToDef2.baseline.jsonc │ ├── goToSource7_conditionallyMinified.baseline.jsonc │ ├── goToSource8_mapFromAtTypes.baseline.jsonc │ ├── goToSource9_mapFromAtTypes2.baseline.jsonc │ ├── goToTypeDefinition.baseline.jsonc │ ├── goToTypeDefinition2.baseline.jsonc │ ├── goToTypeDefinition3.baseline.jsonc │ ├── goToTypeDefinition4.baseline.jsonc │ ├── goToTypeDefinition5.baseline.jsonc │ ├── goToTypeDefinitionAliases.baseline.jsonc │ ├── goToTypeDefinitionEnumMembers.baseline.jsonc │ ├── goToTypeDefinitionImportMeta.baseline.jsonc │ ├── goToTypeDefinitionModifiers.baseline.jsonc │ ├── goToTypeDefinitionModule.baseline.jsonc │ ├── goToTypeDefinitionPrimitives.baseline.jsonc │ ├── goToTypeDefinitionUnionType.baseline.jsonc │ ├── goToTypeDefinition_Pick.baseline.jsonc │ ├── goToTypeDefinition_arrayType.baseline.jsonc │ ├── goToTypeDefinition_promiseType.baseline.jsonc │ ├── goToTypeDefinition_returnType.baseline.jsonc │ ├── goToTypeDefinition_typeReference.baseline.jsonc │ ├── goToTypeDefinition_typedef.baseline.jsonc │ ├── gotoDefinitionConstructorFunction.baseline.jsonc │ ├── gotoDefinitionInObjectBindingPattern1.baseline.jsonc │ ├── gotoDefinitionInObjectBindingPattern2.baseline.jsonc │ ├── gotoDefinitionLinkTag1.baseline.jsonc │ ├── gotoDefinitionLinkTag2.baseline.jsonc │ ├── gotoDefinitionLinkTag3.baseline.jsonc │ ├── gotoDefinitionLinkTag4.baseline.jsonc │ ├── gotoDefinitionLinkTag5.baseline.jsonc │ ├── gotoDefinitionLinkTag6.baseline.jsonc │ ├── gotoDefinitionPropertyAccessExpressionHeritageClause.baseline.jsonc │ ├── gotoDefinitionSatisfiesTag.baseline.jsonc │ ├── gotoDefinitionThrowsTag.baseline.jsonc │ ├── grammarAmbiguities.errors.txt │ ├── grammarAmbiguities.js │ ├── grammarAmbiguities.symbols │ ├── grammarAmbiguities.types │ ├── grammarAmbiguities1.errors.txt │ ├── grammarAmbiguities1.js │ ├── grammarAmbiguities1.symbols │ ├── grammarAmbiguities1.types │ ├── grammarErrors.errors.txt │ ├── grammarErrors.js │ ├── heterogeneousArrayAndOverloads.errors.txt │ ├── heterogeneousArrayAndOverloads.js │ ├── heterogeneousArrayAndOverloads.symbols │ ├── heterogeneousArrayAndOverloads.types │ ├── heterogeneousArrayLiterals.js │ ├── heterogeneousArrayLiterals.symbols │ ├── heterogeneousArrayLiterals.types │ ├── hidingCallSignatures.errors.txt │ ├── hidingCallSignatures.js │ ├── hidingCallSignatures.symbols │ ├── hidingCallSignatures.types │ ├── hidingConstructSignatures.errors.txt │ ├── hidingConstructSignatures.js │ ├── hidingConstructSignatures.symbols │ ├── hidingConstructSignatures.types │ ├── hidingIndexSignatures.errors.txt │ ├── hidingIndexSignatures.js │ ├── hidingIndexSignatures.symbols │ ├── hidingIndexSignatures.types │ ├── higherOrderMappedIndexLookupInference.js │ ├── higherOrderMappedIndexLookupInference.symbols │ ├── higherOrderMappedIndexLookupInference.types │ ├── highlightsForExportFromUnfoundModule.baseline.jsonc │ ├── homomorphicMappedTypeIntersectionAssignability.js │ ├── homomorphicMappedTypeIntersectionAssignability.symbols │ ├── homomorphicMappedTypeIntersectionAssignability.types │ ├── homomorphicMappedTypeNesting.symbols │ ├── homomorphicMappedTypeNesting.types │ ├── homomorphicMappedTypeWithNonHomomorphicInstantiationSpreadable1.symbols │ ├── homomorphicMappedTypeWithNonHomomorphicInstantiationSpreadable1.types │ ├── hoverOverComment.baseline.jsonc │ ├── hugeDeclarationOutputGetsTruncatedWithError.errors.txt │ ├── hugeDeclarationOutputGetsTruncatedWithError.js │ ├── hugeDeclarationOutputGetsTruncatedWithError.symbols │ ├── hugeDeclarationOutputGetsTruncatedWithError.types │ ├── i3.errors.txt │ ├── i3.js │ ├── i3.symbols │ ├── i3.types │ ├── icomparable.js │ ├── icomparable.symbols │ ├── icomparable.types │ ├── idInProp.js │ ├── idInProp.symbols │ ├── idInProp.types │ ├── identicalCallSignatures.js │ ├── identicalCallSignatures.symbols │ ├── identicalCallSignatures.types │ ├── identicalCallSignatures2.js │ ├── identicalCallSignatures2.symbols │ ├── identicalCallSignatures2.types │ ├── identicalCallSignatures3.js │ ├── identicalCallSignatures3.symbols │ ├── identicalCallSignatures3.types │ ├── identicalGenericConditionalsWithInferRelated.js │ ├── identicalGenericConditionalsWithInferRelated.symbols │ ├── identicalGenericConditionalsWithInferRelated.types │ ├── identicalTypesNoDifferByCheckOrder.errors.txt │ ├── identicalTypesNoDifferByCheckOrder.js │ ├── identicalTypesNoDifferByCheckOrder.symbols │ ├── identicalTypesNoDifferByCheckOrder.types │ ├── identifierStartAfterNumericLiteral.errors.txt │ ├── identifierStartAfterNumericLiteral.js │ ├── identifierStartAfterNumericLiteral.symbols │ ├── identifierStartAfterNumericLiteral.types │ ├── identityAndDivergentNormalizedTypes.symbols │ ├── identityAndDivergentNormalizedTypes.types │ ├── identityForSignaturesWithTypeParametersAndAny.errors.txt │ ├── identityForSignaturesWithTypeParametersAndAny.js │ ├── identityForSignaturesWithTypeParametersAndAny.symbols │ ├── identityForSignaturesWithTypeParametersAndAny.types │ ├── identityForSignaturesWithTypeParametersSwitched.errors.txt │ ├── identityForSignaturesWithTypeParametersSwitched.js │ ├── identityForSignaturesWithTypeParametersSwitched.symbols │ ├── identityForSignaturesWithTypeParametersSwitched.types │ ├── identityRelationNeverTypes.js │ ├── identityRelationNeverTypes.symbols │ ├── identityRelationNeverTypes.types │ ├── ifDoWhileStatements.errors.txt │ ├── ifDoWhileStatements.js │ ├── ifDoWhileStatements.symbols │ ├── ifDoWhileStatements.types │ ├── ifElseWithStatements1.errors.txt │ ├── ifElseWithStatements1.js │ ├── ifElseWithStatements1.symbols │ ├── ifElseWithStatements1.types │ ├── ifStatementInternalComments.js │ ├── ifStatementInternalComments.symbols │ ├── ifStatementInternalComments.types │ ├── ignoredJsxAttributes.errors.txt │ ├── ignoredJsxAttributes.js │ ├── ignoredJsxAttributes.symbols │ ├── ignoredJsxAttributes.types │ ├── illegalGenericWrapping1.js │ ├── illegalGenericWrapping1.symbols │ ├── illegalGenericWrapping1.types │ ├── illegalModifiersOnClassElements.errors.txt │ ├── illegalModifiersOnClassElements.js │ ├── illegalModifiersOnClassElements.symbols │ ├── illegalModifiersOnClassElements.types │ ├── illegalSuperCallsInConstructor.errors.txt │ ├── illegalSuperCallsInConstructor.js │ ├── illegalSuperCallsInConstructor.symbols │ ├── illegalSuperCallsInConstructor.types │ ├── implementArrayInterface.errors.txt │ ├── implementArrayInterface.js │ ├── implementArrayInterface.symbols │ ├── implementArrayInterface.types │ ├── implementClausePrecedingExtends.errors.txt │ ├── implementClausePrecedingExtends.js │ ├── implementClausePrecedingExtends.symbols │ ├── implementClausePrecedingExtends.types │ ├── implementGenericWithMismatchedTypes.errors.txt │ ├── implementGenericWithMismatchedTypes.js │ ├── implementGenericWithMismatchedTypes.symbols │ ├── implementGenericWithMismatchedTypes.types │ ├── implementInterfaceAnyMemberWithVoid.js │ ├── implementInterfaceAnyMemberWithVoid.symbols │ ├── implementInterfaceAnyMemberWithVoid.types │ ├── implementPublicPropertyAsPrivate.errors.txt │ ├── implementPublicPropertyAsPrivate.js │ ├── implementPublicPropertyAsPrivate.symbols │ ├── implementPublicPropertyAsPrivate.types │ ├── implementation01.baseline.jsonc │ ├── implementingAnInterfaceExtendingClassWithPrivates.errors.txt │ ├── implementingAnInterfaceExtendingClassWithPrivates.js │ ├── implementingAnInterfaceExtendingClassWithPrivates.symbols │ ├── implementingAnInterfaceExtendingClassWithPrivates.types │ ├── implementingAnInterfaceExtendingClassWithPrivates2.errors.txt │ ├── implementingAnInterfaceExtendingClassWithPrivates2.js │ ├── implementingAnInterfaceExtendingClassWithPrivates2.symbols │ ├── implementingAnInterfaceExtendingClassWithPrivates2.types │ ├── implementingAnInterfaceExtendingClassWithProtecteds.errors.txt │ ├── implementingAnInterfaceExtendingClassWithProtecteds.js │ ├── implementingAnInterfaceExtendingClassWithProtecteds.symbols │ ├── implementingAnInterfaceExtendingClassWithProtecteds.types │ ├── implementsClause.js │ ├── implementsClause.symbols │ ├── implementsClause.types │ ├── implementsClauseAlreadySeen.errors.txt │ ├── implementsClauseAlreadySeen.js │ ├── implementsClauseAlreadySeen.symbols │ ├── implementsClauseAlreadySeen.types │ ├── implementsInClassExpression.js │ ├── implementsInClassExpression.symbols │ ├── implementsInClassExpression.types │ ├── implementsIncorrectlyNoAssertion.errors.txt │ ├── implementsIncorrectlyNoAssertion.js │ ├── implementsIncorrectlyNoAssertion.symbols │ ├── implementsIncorrectlyNoAssertion.types │ ├── implicitAnyAmbients.errors.txt │ ├── implicitAnyAmbients.js │ ├── implicitAnyAmbients.symbols │ ├── implicitAnyAmbients.types │ ├── implicitAnyAnyReturningFunction.js │ ├── implicitAnyAnyReturningFunction.symbols │ ├── implicitAnyAnyReturningFunction.types │ ├── implicitAnyCastedValue.errors.txt │ ├── implicitAnyCastedValue.js │ ├── implicitAnyCastedValue.symbols │ ├── implicitAnyCastedValue.types │ ├── implicitAnyDeclareFunctionExprWithoutFormalType.errors.txt │ ├── implicitAnyDeclareFunctionExprWithoutFormalType.js │ ├── implicitAnyDeclareFunctionExprWithoutFormalType.symbols │ ├── implicitAnyDeclareFunctionExprWithoutFormalType.types │ ├── implicitAnyDeclareFunctionWithoutFormalType.errors.txt │ ├── implicitAnyDeclareFunctionWithoutFormalType.js │ ├── implicitAnyDeclareFunctionWithoutFormalType.symbols │ ├── implicitAnyDeclareFunctionWithoutFormalType.types │ ├── implicitAnyDeclareFunctionWithoutFormalType2.errors.txt │ ├── implicitAnyDeclareFunctionWithoutFormalType2.js │ ├── implicitAnyDeclareFunctionWithoutFormalType2.symbols │ ├── implicitAnyDeclareFunctionWithoutFormalType2.types │ ├── implicitAnyDeclareMemberWithoutType.errors.txt │ ├── implicitAnyDeclareMemberWithoutType.js │ ├── implicitAnyDeclareMemberWithoutType.symbols │ ├── implicitAnyDeclareMemberWithoutType.types │ ├── implicitAnyDeclareMemberWithoutType2.errors.txt │ ├── implicitAnyDeclareMemberWithoutType2.js │ ├── implicitAnyDeclareMemberWithoutType2.symbols │ ├── implicitAnyDeclareMemberWithoutType2.types │ ├── implicitAnyDeclareTypePropertyWithoutType.errors.txt │ ├── implicitAnyDeclareTypePropertyWithoutType.js │ ├── implicitAnyDeclareTypePropertyWithoutType.symbols │ ├── implicitAnyDeclareTypePropertyWithoutType.types │ ├── implicitAnyDeclareVariablesWithoutTypeAndInit.errors.txt │ ├── implicitAnyDeclareVariablesWithoutTypeAndInit.js │ ├── implicitAnyDeclareVariablesWithoutTypeAndInit.symbols │ ├── implicitAnyDeclareVariablesWithoutTypeAndInit.types │ ├── implicitAnyFromCircularInference(target=es2015).errors.txt │ ├── implicitAnyFromCircularInference(target=es2015).js │ ├── implicitAnyFromCircularInference(target=es2015).symbols │ ├── implicitAnyFromCircularInference(target=es2015).types │ ├── implicitAnyFromCircularInference(target=es5).errors.txt │ ├── implicitAnyFromCircularInference(target=es5).js │ ├── implicitAnyFromCircularInference(target=es5).symbols │ ├── implicitAnyFromCircularInference(target=es5).types │ ├── implicitAnyFunctionInvocationWithAnyArguements.errors.txt │ ├── implicitAnyFunctionInvocationWithAnyArguements.js │ ├── implicitAnyFunctionInvocationWithAnyArguements.symbols │ ├── implicitAnyFunctionInvocationWithAnyArguements.types │ ├── implicitAnyFunctionOverloadWithImplicitAnyReturnType.errors.txt │ ├── implicitAnyFunctionOverloadWithImplicitAnyReturnType.js │ ├── implicitAnyFunctionOverloadWithImplicitAnyReturnType.symbols │ ├── implicitAnyFunctionOverloadWithImplicitAnyReturnType.types │ ├── implicitAnyFunctionReturnNullOrUndefined.js │ ├── implicitAnyFunctionReturnNullOrUndefined.symbols │ ├── implicitAnyFunctionReturnNullOrUndefined.types │ ├── implicitAnyGenericTypeInference.js │ ├── implicitAnyGenericTypeInference.symbols │ ├── implicitAnyGenericTypeInference.types │ ├── implicitAnyGenerics.errors.txt │ ├── implicitAnyGenerics.js │ ├── implicitAnyGenerics.symbols │ ├── implicitAnyGenerics.types │ ├── implicitAnyGetAndSetAccessorWithAnyReturnType.errors.txt │ ├── implicitAnyGetAndSetAccessorWithAnyReturnType.js │ ├── implicitAnyGetAndSetAccessorWithAnyReturnType.symbols │ ├── implicitAnyGetAndSetAccessorWithAnyReturnType.types │ ├── implicitAnyInAmbientDeclaration.errors.txt │ ├── implicitAnyInAmbientDeclaration.js │ ├── implicitAnyInAmbientDeclaration.symbols │ ├── implicitAnyInAmbientDeclaration.types │ ├── implicitAnyInAmbientDeclaration2.d.errors.txt │ ├── implicitAnyInAmbientDeclaration2.d.symbols │ ├── implicitAnyInAmbientDeclaration2.d.types │ ├── implicitAnyInCatch.js │ ├── implicitAnyInCatch.symbols │ ├── implicitAnyInCatch.types │ ├── implicitAnyNewExprLackConstructorSignature.errors.txt │ ├── implicitAnyNewExprLackConstructorSignature.js │ ├── implicitAnyNewExprLackConstructorSignature.symbols │ ├── implicitAnyNewExprLackConstructorSignature.types │ ├── implicitAnyWidenToAny.errors.txt │ ├── implicitAnyWidenToAny.js │ ├── implicitAnyWidenToAny.symbols │ ├── implicitAnyWidenToAny.types │ ├── implicitConstParameters.errors.txt │ ├── implicitConstParameters.js │ ├── implicitConstParameters.symbols │ ├── implicitConstParameters.types │ ├── implicitIndexSignatures.errors.txt │ ├── implicitIndexSignatures.js │ ├── implicitIndexSignatures.symbols │ ├── implicitIndexSignatures.types │ ├── impliedNodeFormatEmit1(module=amd).errors.txt │ ├── impliedNodeFormatEmit1(module=amd).js │ ├── impliedNodeFormatEmit1(module=commonjs).js │ ├── impliedNodeFormatEmit1(module=esnext).errors.txt │ ├── impliedNodeFormatEmit1(module=esnext).js │ ├── impliedNodeFormatEmit1(module=preserve).js │ ├── impliedNodeFormatEmit1(module=system).errors.txt │ ├── impliedNodeFormatEmit1(module=system).js │ ├── impliedNodeFormatEmit1(module=umd).errors.txt │ ├── impliedNodeFormatEmit1(module=umd).js │ ├── impliedNodeFormatEmit2(module=commonjs).js │ ├── impliedNodeFormatEmit2(module=esnext).errors.txt │ ├── impliedNodeFormatEmit2(module=esnext).js │ ├── impliedNodeFormatEmit2(module=preserve).js │ ├── impliedNodeFormatEmit3(module=commonjs).js │ ├── impliedNodeFormatEmit3(module=esnext).errors.txt │ ├── impliedNodeFormatEmit3(module=esnext).js │ ├── impliedNodeFormatEmit3(module=preserve).js │ ├── impliedNodeFormatEmit4(module=commonjs).js │ ├── impliedNodeFormatEmit4(module=esnext).errors.txt │ ├── impliedNodeFormatEmit4(module=esnext).js │ ├── impliedNodeFormatEmit4(module=preserve).js │ ├── impliedNodeFormatInterop1.js │ ├── impliedNodeFormatInterop1.symbols │ ├── impliedNodeFormatInterop1.types │ ├── importAliasAnExternalModuleInsideAnInternalModule.js │ ├── importAliasAnExternalModuleInsideAnInternalModule.symbols │ ├── importAliasAnExternalModuleInsideAnInternalModule.types │ ├── importAliasFromNamespace.errors.txt │ ├── importAliasFromNamespace.js │ ├── importAliasFromNamespace.symbols │ ├── importAliasFromNamespace.types │ ├── importAliasIdentifiers.errors.txt │ ├── importAliasIdentifiers.js │ ├── importAliasIdentifiers.symbols │ ├── importAliasIdentifiers.types │ ├── importAliasInModuleAugmentation.errors.txt │ ├── importAliasInModuleAugmentation.js │ ├── importAliasInModuleAugmentation.symbols │ ├── importAliasInModuleAugmentation.types │ ├── importAliasModuleExports.errors.txt │ ├── importAliasModuleExports.symbols │ ├── importAliasModuleExports.types │ ├── importAliasWithDottedName.js │ ├── importAliasWithDottedName.symbols │ ├── importAliasWithDottedName.types │ ├── importAnImport.errors.txt │ ├── importAnImport.js │ ├── importAnImport.symbols │ ├── importAnImport.types │ ├── importAndVariableDeclarationConflict1.errors.txt │ ├── importAndVariableDeclarationConflict1.js │ ├── importAndVariableDeclarationConflict1.symbols │ ├── importAndVariableDeclarationConflict1.types │ ├── importAndVariableDeclarationConflict2.js │ ├── importAndVariableDeclarationConflict2.symbols │ ├── importAndVariableDeclarationConflict2.types │ ├── importAndVariableDeclarationConflict3.errors.txt │ ├── importAndVariableDeclarationConflict3.js │ ├── importAndVariableDeclarationConflict3.symbols │ ├── importAndVariableDeclarationConflict3.types │ ├── importAndVariableDeclarationConflict4.errors.txt │ ├── importAndVariableDeclarationConflict4.js │ ├── importAndVariableDeclarationConflict4.symbols │ ├── importAndVariableDeclarationConflict4.types │ ├── importAsBaseClass.errors.txt │ ├── importAsBaseClass.js │ ├── importAsBaseClass.symbols │ ├── importAsBaseClass.types │ ├── importAssertion1(module=commonjs).errors.txt │ ├── importAssertion1(module=commonjs).js │ ├── importAssertion1(module=commonjs).symbols │ ├── importAssertion1(module=commonjs).types │ ├── importAssertion1(module=es2015).errors.txt │ ├── importAssertion1(module=es2015).js │ ├── importAssertion1(module=es2015).symbols │ ├── importAssertion1(module=es2015).types │ ├── importAssertion1(module=esnext).errors.txt │ ├── importAssertion1(module=esnext).js │ ├── importAssertion1(module=esnext).symbols │ ├── importAssertion1(module=esnext).types │ ├── importAssertion2(module=commonjs).errors.txt │ ├── importAssertion2(module=commonjs).js │ ├── importAssertion2(module=commonjs).symbols │ ├── importAssertion2(module=commonjs).types │ ├── importAssertion2(module=es2015).errors.txt │ ├── importAssertion2(module=es2015).js │ ├── importAssertion2(module=es2015).symbols │ ├── importAssertion2(module=es2015).types │ ├── importAssertion2(module=esnext).js │ ├── importAssertion2(module=esnext).symbols │ ├── importAssertion2(module=esnext).types │ ├── importAssertion3(module=es2015).errors.txt │ ├── importAssertion3(module=es2015).js │ ├── importAssertion3(module=es2015).symbols │ ├── importAssertion3(module=es2015).types │ ├── importAssertion3(module=esnext).errors.txt │ ├── importAssertion3(module=esnext).js │ ├── importAssertion3(module=esnext).symbols │ ├── importAssertion3(module=esnext).types │ ├── importAssertion4.errors.txt │ ├── importAssertion4.js │ ├── importAssertion4.symbols │ ├── importAssertion4.types │ ├── importAssertion5.errors.txt │ ├── importAssertion5.js │ ├── importAssertion5.symbols │ ├── importAssertion5.types │ ├── importAssertionNonstring.errors.txt │ ├── importAssertionNonstring.js │ ├── importAssertionNonstring.symbols │ ├── importAssertionNonstring.types │ ├── importAssertionsDeprecated.errors.txt │ ├── importAssertionsDeprecated.js │ ├── importAssertionsDeprecatedIgnored.js │ ├── importAttributes1(module=commonjs).errors.txt │ ├── importAttributes1(module=commonjs).js │ ├── importAttributes1(module=commonjs).symbols │ ├── importAttributes1(module=commonjs).types │ ├── importAttributes1(module=es2015).errors.txt │ ├── importAttributes1(module=es2015).js │ ├── importAttributes1(module=es2015).symbols │ ├── importAttributes1(module=es2015).types │ ├── importAttributes1(module=esnext).errors.txt │ ├── importAttributes1(module=esnext).js │ ├── importAttributes1(module=esnext).symbols │ ├── importAttributes1(module=esnext).types │ ├── importAttributes10.errors.txt │ ├── importAttributes10.js │ ├── importAttributes10.symbols │ ├── importAttributes10.types │ ├── importAttributes11.symbols │ ├── importAttributes11.types │ ├── importAttributes2(module=commonjs).errors.txt │ ├── importAttributes2(module=commonjs).js │ ├── importAttributes2(module=commonjs).symbols │ ├── importAttributes2(module=commonjs).types │ ├── importAttributes2(module=es2015).errors.txt │ ├── importAttributes2(module=es2015).js │ ├── importAttributes2(module=es2015).symbols │ ├── importAttributes2(module=es2015).types │ ├── importAttributes2(module=esnext).js │ ├── importAttributes2(module=esnext).symbols │ ├── importAttributes2(module=esnext).types │ ├── importAttributes3(module=es2015).errors.txt │ ├── importAttributes3(module=es2015).js │ ├── importAttributes3(module=es2015).symbols │ ├── importAttributes3(module=es2015).types │ ├── importAttributes3(module=esnext).errors.txt │ ├── importAttributes3(module=esnext).js │ ├── importAttributes3(module=esnext).symbols │ ├── importAttributes3(module=esnext).types │ ├── importAttributes4.errors.txt │ ├── importAttributes4.js │ ├── importAttributes4.symbols │ ├── importAttributes4.types │ ├── importAttributes5.errors.txt │ ├── importAttributes5.js │ ├── importAttributes5.symbols │ ├── importAttributes5.types │ ├── importAttributes6(module=node18).errors.txt │ ├── importAttributes6(module=node18).js │ ├── importAttributes6(module=node18).symbols │ ├── importAttributes6(module=node18).types │ ├── importAttributes6(module=node20).errors.txt │ ├── importAttributes6(module=node20).js │ ├── importAttributes6(module=node20).symbols │ ├── importAttributes6(module=node20).types │ ├── importAttributes6(module=nodenext).errors.txt │ ├── importAttributes6(module=nodenext).js │ ├── importAttributes6(module=nodenext).symbols │ ├── importAttributes6(module=nodenext).types │ ├── importAttributes7.js │ ├── importAttributes7.symbols │ ├── importAttributes7.types │ ├── importAttributes8.js │ ├── importAttributes8.symbols │ ├── importAttributes8.types │ ├── importAttributes9.errors.txt │ ├── importAttributes9.js │ ├── importAttributes9.symbols │ ├── importAttributes9.types │ ├── importBindingDefer.js │ ├── importBindingDefer.symbols │ ├── importBindingDefer.types │ ├── importBindingDefer2.js │ ├── importBindingDefer2.symbols │ ├── importBindingDefer2.types │ ├── importCallExpression1ES2020.js │ ├── importCallExpression1ES2020.symbols │ ├── importCallExpression1ES2020.types │ ├── importCallExpression2ES2020.js │ ├── importCallExpression2ES2020.symbols │ ├── importCallExpression2ES2020.types │ ├── importCallExpression3ES2020.js │ ├── importCallExpression3ES2020.symbols │ ├── importCallExpression3ES2020.types │ ├── importCallExpression4ES2020.js │ ├── importCallExpression4ES2020.symbols │ ├── importCallExpression4ES2020.types │ ├── importCallExpression5ES2020.errors.txt │ ├── importCallExpression5ES2020.js │ ├── importCallExpression5ES2020.symbols │ ├── importCallExpression5ES2020.types │ ├── importCallExpression6ES2020.errors.txt │ ├── importCallExpression6ES2020.js │ ├── importCallExpression6ES2020.symbols │ ├── importCallExpression6ES2020.types │ ├── importCallExpressionAsyncES2020.js │ ├── importCallExpressionAsyncES2020.symbols │ ├── importCallExpressionAsyncES2020.types │ ├── importCallExpressionAsyncES5AMD(target=es2015).errors.txt │ ├── importCallExpressionAsyncES5AMD(target=es2015).js │ ├── importCallExpressionAsyncES5AMD(target=es2015).symbols │ ├── importCallExpressionAsyncES5AMD(target=es2015).types │ ├── importCallExpressionAsyncES5AMD(target=es5).errors.txt │ ├── importCallExpressionAsyncES5AMD(target=es5).js │ ├── importCallExpressionAsyncES5AMD(target=es5).symbols │ ├── importCallExpressionAsyncES5AMD(target=es5).types │ ├── importCallExpressionAsyncES5CJS(target=es2015).js │ ├── importCallExpressionAsyncES5CJS(target=es2015).symbols │ ├── importCallExpressionAsyncES5CJS(target=es2015).types │ ├── importCallExpressionAsyncES5CJS(target=es5).errors.txt │ ├── importCallExpressionAsyncES5CJS(target=es5).js │ ├── importCallExpressionAsyncES5CJS(target=es5).symbols │ ├── importCallExpressionAsyncES5CJS(target=es5).types │ ├── importCallExpressionAsyncES5System(target=es2015).errors.txt │ ├── importCallExpressionAsyncES5System(target=es2015).js │ ├── importCallExpressionAsyncES5System(target=es2015).symbols │ ├── importCallExpressionAsyncES5System(target=es2015).types │ ├── importCallExpressionAsyncES5System(target=es5).errors.txt │ ├── importCallExpressionAsyncES5System(target=es5).js │ ├── importCallExpressionAsyncES5System(target=es5).symbols │ ├── importCallExpressionAsyncES5System(target=es5).types │ ├── importCallExpressionAsyncES5UMD(target=es2015).errors.txt │ ├── importCallExpressionAsyncES5UMD(target=es2015).js │ ├── importCallExpressionAsyncES5UMD(target=es2015).symbols │ ├── importCallExpressionAsyncES5UMD(target=es2015).types │ ├── importCallExpressionAsyncES5UMD(target=es5).errors.txt │ ├── importCallExpressionAsyncES5UMD(target=es5).js │ ├── importCallExpressionAsyncES5UMD(target=es5).symbols │ ├── importCallExpressionAsyncES5UMD(target=es5).types │ ├── importCallExpressionAsyncES6AMD.errors.txt │ ├── importCallExpressionAsyncES6AMD.js │ ├── importCallExpressionAsyncES6AMD.symbols │ ├── importCallExpressionAsyncES6AMD.types │ ├── importCallExpressionAsyncES6CJS.js │ ├── importCallExpressionAsyncES6CJS.symbols │ ├── importCallExpressionAsyncES6CJS.types │ ├── importCallExpressionAsyncES6System.errors.txt │ ├── importCallExpressionAsyncES6System.js │ ├── importCallExpressionAsyncES6System.symbols │ ├── importCallExpressionAsyncES6System.types │ ├── importCallExpressionAsyncES6UMD.errors.txt │ ├── importCallExpressionAsyncES6UMD.js │ ├── importCallExpressionAsyncES6UMD.symbols │ ├── importCallExpressionAsyncES6UMD.types │ ├── importCallExpressionCheckReturntype1.errors.txt │ ├── importCallExpressionCheckReturntype1.js │ ├── importCallExpressionCheckReturntype1.symbols │ ├── importCallExpressionCheckReturntype1.types │ ├── importCallExpressionDeclarationEmit1.js │ ├── importCallExpressionDeclarationEmit1.symbols │ ├── importCallExpressionDeclarationEmit1.types │ ├── importCallExpressionDeclarationEmit2.js │ ├── importCallExpressionDeclarationEmit2.symbols │ ├── importCallExpressionDeclarationEmit2.types │ ├── importCallExpressionDeclarationEmit3.js │ ├── importCallExpressionDeclarationEmit3.symbols │ ├── importCallExpressionDeclarationEmit3.types │ ├── importCallExpressionES5AMD(target=es2015).errors.txt │ ├── importCallExpressionES5AMD(target=es2015).js │ ├── importCallExpressionES5AMD(target=es2015).symbols │ ├── importCallExpressionES5AMD(target=es2015).types │ ├── importCallExpressionES5AMD(target=es5).errors.txt │ ├── importCallExpressionES5AMD(target=es5).js │ ├── importCallExpressionES5AMD(target=es5).symbols │ ├── importCallExpressionES5AMD(target=es5).types │ ├── importCallExpressionES5CJS(target=es2015).js │ ├── importCallExpressionES5CJS(target=es2015).symbols │ ├── importCallExpressionES5CJS(target=es2015).types │ ├── importCallExpressionES5CJS(target=es5).errors.txt │ ├── importCallExpressionES5CJS(target=es5).js │ ├── importCallExpressionES5CJS(target=es5).symbols │ ├── importCallExpressionES5CJS(target=es5).types │ ├── importCallExpressionES5System(target=es2015).errors.txt │ ├── importCallExpressionES5System(target=es2015).js │ ├── importCallExpressionES5System(target=es2015).symbols │ ├── importCallExpressionES5System(target=es2015).types │ ├── importCallExpressionES5System(target=es5).errors.txt │ ├── importCallExpressionES5System(target=es5).js │ ├── importCallExpressionES5System(target=es5).symbols │ ├── importCallExpressionES5System(target=es5).types │ ├── importCallExpressionES5UMD(target=es2015).errors.txt │ ├── importCallExpressionES5UMD(target=es2015).js │ ├── importCallExpressionES5UMD(target=es2015).symbols │ ├── importCallExpressionES5UMD(target=es2015).types │ ├── importCallExpressionES5UMD(target=es5).errors.txt │ ├── importCallExpressionES5UMD(target=es5).js │ ├── importCallExpressionES5UMD(target=es5).symbols │ ├── importCallExpressionES5UMD(target=es5).types │ ├── importCallExpressionES6AMD.errors.txt │ ├── importCallExpressionES6AMD.js │ ├── importCallExpressionES6AMD.symbols │ ├── importCallExpressionES6AMD.types │ ├── importCallExpressionES6CJS.js │ ├── importCallExpressionES6CJS.symbols │ ├── importCallExpressionES6CJS.types │ ├── importCallExpressionES6System.errors.txt │ ├── importCallExpressionES6System.js │ ├── importCallExpressionES6System.symbols │ ├── importCallExpressionES6System.types │ ├── importCallExpressionES6UMD.errors.txt │ ├── importCallExpressionES6UMD.js │ ├── importCallExpressionES6UMD.symbols │ ├── importCallExpressionES6UMD.types │ ├── importCallExpressionErrorInES2015.errors.txt │ ├── importCallExpressionErrorInES2015.js │ ├── importCallExpressionErrorInES2015.symbols │ ├── importCallExpressionErrorInES2015.types │ ├── importCallExpressionGrammarError.errors.txt │ ├── importCallExpressionGrammarError.js │ ├── importCallExpressionGrammarError.symbols │ ├── importCallExpressionGrammarError.types │ ├── importCallExpressionInAMD1.errors.txt │ ├── importCallExpressionInAMD1.js │ ├── importCallExpressionInAMD1.symbols │ ├── importCallExpressionInAMD1.types │ ├── importCallExpressionInAMD2.errors.txt │ ├── importCallExpressionInAMD2.js │ ├── importCallExpressionInAMD2.symbols │ ├── importCallExpressionInAMD2.types │ ├── importCallExpressionInAMD3.errors.txt │ ├── importCallExpressionInAMD3.js │ ├── importCallExpressionInAMD3.symbols │ ├── importCallExpressionInAMD3.types │ ├── importCallExpressionInAMD4.errors.txt │ ├── importCallExpressionInAMD4.js │ ├── importCallExpressionInAMD4.symbols │ ├── importCallExpressionInAMD4.types │ ├── importCallExpressionInCJS1.js │ ├── importCallExpressionInCJS1.symbols │ ├── importCallExpressionInCJS1.types │ ├── importCallExpressionInCJS2.js │ ├── importCallExpressionInCJS2.symbols │ ├── importCallExpressionInCJS2.types │ ├── importCallExpressionInCJS3.js │ ├── importCallExpressionInCJS3.symbols │ ├── importCallExpressionInCJS3.types │ ├── importCallExpressionInCJS4.js │ ├── importCallExpressionInCJS4.symbols │ ├── importCallExpressionInCJS4.types │ ├── importCallExpressionInCJS5.js │ ├── importCallExpressionInCJS5.symbols │ ├── importCallExpressionInCJS5.types │ ├── importCallExpressionInExportEqualsAMD.errors.txt │ ├── importCallExpressionInExportEqualsAMD.js │ ├── importCallExpressionInExportEqualsAMD.symbols │ ├── importCallExpressionInExportEqualsAMD.types │ ├── importCallExpressionInExportEqualsCJS.js │ ├── importCallExpressionInExportEqualsCJS.symbols │ ├── importCallExpressionInExportEqualsCJS.types │ ├── importCallExpressionInExportEqualsUMD.errors.txt │ ├── importCallExpressionInExportEqualsUMD.js │ ├── importCallExpressionInExportEqualsUMD.symbols │ ├── importCallExpressionInExportEqualsUMD.types │ ├── importCallExpressionInScriptContext1.errors.txt │ ├── importCallExpressionInScriptContext1.js │ ├── importCallExpressionInScriptContext1.symbols │ ├── importCallExpressionInScriptContext1.types │ ├── importCallExpressionInScriptContext2.errors.txt │ ├── importCallExpressionInScriptContext2.js │ ├── importCallExpressionInScriptContext2.symbols │ ├── importCallExpressionInScriptContext2.types │ ├── importCallExpressionInSystem1.errors.txt │ ├── importCallExpressionInSystem1.js │ ├── importCallExpressionInSystem1.symbols │ ├── importCallExpressionInSystem1.types │ ├── importCallExpressionInSystem2.errors.txt │ ├── importCallExpressionInSystem2.js │ ├── importCallExpressionInSystem2.symbols │ ├── importCallExpressionInSystem2.types │ ├── importCallExpressionInSystem3.errors.txt │ ├── importCallExpressionInSystem3.js │ ├── importCallExpressionInSystem3.symbols │ ├── importCallExpressionInSystem3.types │ ├── importCallExpressionInSystem4.errors.txt │ ├── importCallExpressionInSystem4.js │ ├── importCallExpressionInSystem4.symbols │ ├── importCallExpressionInSystem4.types │ ├── importCallExpressionInUMD1.errors.txt │ ├── importCallExpressionInUMD1.js │ ├── importCallExpressionInUMD1.symbols │ ├── importCallExpressionInUMD1.types │ ├── importCallExpressionInUMD2.errors.txt │ ├── importCallExpressionInUMD2.js │ ├── importCallExpressionInUMD2.symbols │ ├── importCallExpressionInUMD2.types │ ├── importCallExpressionInUMD3.errors.txt │ ├── importCallExpressionInUMD3.js │ ├── importCallExpressionInUMD3.symbols │ ├── importCallExpressionInUMD3.types │ ├── importCallExpressionInUMD4.errors.txt │ ├── importCallExpressionInUMD4.js │ ├── importCallExpressionInUMD4.symbols │ ├── importCallExpressionInUMD4.types │ ├── importCallExpressionInUMD5.errors.txt │ ├── importCallExpressionInUMD5.js │ ├── importCallExpressionInUMD5.symbols │ ├── importCallExpressionInUMD5.types │ ├── importCallExpressionIncorrect1.errors.txt │ ├── importCallExpressionIncorrect1.js │ ├── importCallExpressionIncorrect1.symbols │ ├── importCallExpressionIncorrect1.types │ ├── importCallExpressionIncorrect2.errors.txt │ ├── importCallExpressionIncorrect2.js │ ├── importCallExpressionIncorrect2.symbols │ ├── importCallExpressionIncorrect2.types │ ├── importCallExpressionNestedAMD.errors.txt │ ├── importCallExpressionNestedAMD.js │ ├── importCallExpressionNestedAMD.symbols │ ├── importCallExpressionNestedAMD.types │ ├── importCallExpressionNestedAMD2(target=es2015).errors.txt │ ├── importCallExpressionNestedAMD2(target=es2015).js │ ├── importCallExpressionNestedAMD2(target=es2015).symbols │ ├── importCallExpressionNestedAMD2(target=es2015).types │ ├── importCallExpressionNestedAMD2(target=es5).errors.txt │ ├── importCallExpressionNestedAMD2(target=es5).js │ ├── importCallExpressionNestedAMD2(target=es5).symbols │ ├── importCallExpressionNestedAMD2(target=es5).types │ ├── importCallExpressionNestedCJS.js │ ├── importCallExpressionNestedCJS.symbols │ ├── importCallExpressionNestedCJS.types │ ├── importCallExpressionNestedCJS2(target=es2015).js │ ├── importCallExpressionNestedCJS2(target=es2015).symbols │ ├── importCallExpressionNestedCJS2(target=es2015).types │ ├── importCallExpressionNestedCJS2(target=es5).errors.txt │ ├── importCallExpressionNestedCJS2(target=es5).js │ ├── importCallExpressionNestedCJS2(target=es5).symbols │ ├── importCallExpressionNestedCJS2(target=es5).types │ ├── importCallExpressionNestedES2015.errors.txt │ ├── importCallExpressionNestedES2015.js │ ├── importCallExpressionNestedES2015.symbols │ ├── importCallExpressionNestedES2015.types │ ├── importCallExpressionNestedES20152(target=es2015).errors.txt │ ├── importCallExpressionNestedES20152(target=es2015).js │ ├── importCallExpressionNestedES20152(target=es2015).symbols │ ├── importCallExpressionNestedES20152(target=es2015).types │ ├── importCallExpressionNestedES20152(target=es5).errors.txt │ ├── importCallExpressionNestedES20152(target=es5).js │ ├── importCallExpressionNestedES20152(target=es5).symbols │ ├── importCallExpressionNestedES20152(target=es5).types │ ├── importCallExpressionNestedES2020.js │ ├── importCallExpressionNestedES2020.symbols │ ├── importCallExpressionNestedES2020.types │ ├── importCallExpressionNestedES20202(target=es2015).js │ ├── importCallExpressionNestedES20202(target=es2015).symbols │ ├── importCallExpressionNestedES20202(target=es2015).types │ ├── importCallExpressionNestedES20202(target=es5).errors.txt │ ├── importCallExpressionNestedES20202(target=es5).js │ ├── importCallExpressionNestedES20202(target=es5).symbols │ ├── importCallExpressionNestedES20202(target=es5).types │ ├── importCallExpressionNestedSystem.errors.txt │ ├── importCallExpressionNestedSystem.js │ ├── importCallExpressionNestedSystem.symbols │ ├── importCallExpressionNestedSystem.types │ ├── importCallExpressionNestedSystem2(target=es2015).errors.txt │ ├── importCallExpressionNestedSystem2(target=es2015).js │ ├── importCallExpressionNestedSystem2(target=es2015).symbols │ ├── importCallExpressionNestedSystem2(target=es2015).types │ ├── importCallExpressionNestedSystem2(target=es5).errors.txt │ ├── importCallExpressionNestedSystem2(target=es5).js │ ├── importCallExpressionNestedSystem2(target=es5).symbols │ ├── importCallExpressionNestedSystem2(target=es5).types │ ├── importCallExpressionNestedUMD.errors.txt │ ├── importCallExpressionNestedUMD.js │ ├── importCallExpressionNestedUMD.symbols │ ├── importCallExpressionNestedUMD.types │ ├── importCallExpressionNestedUMD2(target=es2015).errors.txt │ ├── importCallExpressionNestedUMD2(target=es2015).js │ ├── importCallExpressionNestedUMD2(target=es2015).symbols │ ├── importCallExpressionNestedUMD2(target=es2015).types │ ├── importCallExpressionNestedUMD2(target=es5).errors.txt │ ├── importCallExpressionNestedUMD2(target=es5).js │ ├── importCallExpressionNestedUMD2(target=es5).symbols │ ├── importCallExpressionNestedUMD2(target=es5).types │ ├── importCallExpressionNoModuleKindSpecified.errors.txt │ ├── importCallExpressionNoModuleKindSpecified.js │ ├── importCallExpressionNoModuleKindSpecified.symbols │ ├── importCallExpressionNoModuleKindSpecified.types │ ├── importCallExpressionReturnPromiseOfAny.js │ ├── importCallExpressionReturnPromiseOfAny.symbols │ ├── importCallExpressionReturnPromiseOfAny.types │ ├── importCallExpressionShouldNotGetParen.js │ ├── importCallExpressionShouldNotGetParen.symbols │ ├── importCallExpressionShouldNotGetParen.types │ ├── importCallExpressionSpecifierNotStringTypeError.errors.txt │ ├── importCallExpressionSpecifierNotStringTypeError.js │ ├── importCallExpressionSpecifierNotStringTypeError.symbols │ ├── importCallExpressionSpecifierNotStringTypeError.types │ ├── importCallExpressionWithTypeArgument.errors.txt │ ├── importCallExpressionWithTypeArgument.js │ ├── importCallExpressionWithTypeArgument.symbols │ ├── importCallExpressionWithTypeArgument.types │ ├── importClause_default.errors.txt │ ├── importClause_default.js │ ├── importClause_default.symbols │ ├── importClause_default.types │ ├── importClause_namedImports.errors.txt │ ├── importClause_namedImports.js │ ├── importClause_namedImports.symbols │ ├── importClause_namedImports.types │ ├── importClause_namespaceImport.errors.txt │ ├── importClause_namespaceImport.js │ ├── importClause_namespaceImport.symbols │ ├── importClause_namespaceImport.types │ ├── importDecl.errors.txt │ ├── importDecl.js │ ├── importDecl.symbols │ ├── importDecl.types │ ├── importDeclFromTypeNodeInJsSource.js │ ├── importDeclFromTypeNodeInJsSource.symbols │ ├── importDeclFromTypeNodeInJsSource.types │ ├── importDeclRefereingExternalModuleWithNoResolve.errors.txt │ ├── importDeclRefereingExternalModuleWithNoResolve.js │ ├── importDeclRefereingExternalModuleWithNoResolve.symbols │ ├── importDeclRefereingExternalModuleWithNoResolve.types │ ├── importDeclTypes.errors.txt │ ├── importDeclTypes.js │ ├── importDeclTypes.symbols │ ├── importDeclTypes.types │ ├── importDeclWithClassModifiers.errors.txt │ ├── importDeclWithClassModifiers.js │ ├── importDeclWithClassModifiers.symbols │ ├── importDeclWithClassModifiers.types │ ├── importDeclWithDeclareModifier.errors.txt │ ├── importDeclWithDeclareModifier.js │ ├── importDeclWithDeclareModifier.symbols │ ├── importDeclWithDeclareModifier.types │ ├── importDeclWithDeclareModifierInAmbientContext.errors.txt │ ├── importDeclWithDeclareModifierInAmbientContext.js │ ├── importDeclWithDeclareModifierInAmbientContext.symbols │ ├── importDeclWithDeclareModifierInAmbientContext.types │ ├── importDeclWithExportModifier.errors.txt │ ├── importDeclWithExportModifier.js │ ├── importDeclWithExportModifier.symbols │ ├── importDeclWithExportModifier.types │ ├── importDeclWithExportModifierAndExportAssignment.errors.txt │ ├── importDeclWithExportModifierAndExportAssignment.js │ ├── importDeclWithExportModifierAndExportAssignment.symbols │ ├── importDeclWithExportModifierAndExportAssignment.types │ ├── importDeclWithExportModifierAndExportAssignmentInAmbientContext.errors.txt │ ├── importDeclWithExportModifierAndExportAssignmentInAmbientContext.js │ ├── importDeclWithExportModifierAndExportAssignmentInAmbientContext.symbols │ ├── importDeclWithExportModifierAndExportAssignmentInAmbientContext.types │ ├── importDeclWithExportModifierInAmbientContext.js │ ├── importDeclWithExportModifierInAmbientContext.symbols │ ├── importDeclWithExportModifierInAmbientContext.types │ ├── importDeclarationInModuleDeclaration1.errors.txt │ ├── importDeclarationInModuleDeclaration1.js │ ├── importDeclarationInModuleDeclaration1.symbols │ ├── importDeclarationInModuleDeclaration1.types │ ├── importDeclarationInModuleDeclaration2.errors.txt │ ├── importDeclarationInModuleDeclaration2.symbols │ ├── importDeclarationInModuleDeclaration2.types │ ├── importDeclarationNotCheckedAsValueWhenTargetNonValue.symbols │ ├── importDeclarationNotCheckedAsValueWhenTargetNonValue.types │ ├── importDeclarationUsedAsTypeQuery.errors.txt │ ├── importDeclarationUsedAsTypeQuery.js │ ├── importDeclarationUsedAsTypeQuery.symbols │ ├── importDeclarationUsedAsTypeQuery.types │ ├── importDefaultBindingDefer.errors.txt │ ├── importDefaultBindingDefer.js │ ├── importDefaultBindingDefer.symbols │ ├── importDefaultBindingDefer.types │ ├── importDefaultNamedType.js │ ├── importDefaultNamedType.symbols │ ├── importDefaultNamedType.types │ ├── importDefaultNamedType2.js │ ├── importDefaultNamedType2.symbols │ ├── importDefaultNamedType2.types │ ├── importDefaultNamedType3.js │ ├── importDefaultNamedType3.symbols │ ├── importDefaultNamedType3.types │ ├── importDeferComments.errors.txt │ ├── importDeferComments.js │ ├── importDeferComments.symbols │ ├── importDeferComments.types │ ├── importDeferDeclaration.js │ ├── importDeferDeclaration.symbols │ ├── importDeferDeclaration.types │ ├── importDeferFromInvalid.errors.txt │ ├── importDeferFromInvalid.js │ ├── importDeferFromInvalid.symbols │ ├── importDeferFromInvalid.types │ ├── importDeferInvalidDefault.errors.txt │ ├── importDeferInvalidDefault.js │ ├── importDeferInvalidDefault.symbols │ ├── importDeferInvalidDefault.types │ ├── importDeferInvalidNamed.errors.txt │ ├── importDeferInvalidNamed.js │ ├── importDeferInvalidNamed.symbols │ ├── importDeferInvalidNamed.types │ ├── importDeferJsdoc.errors.txt │ ├── importDeferJsdoc.js │ ├── importDeferJsdoc.symbols │ ├── importDeferJsdoc.types │ ├── importDeferNamespace(module=commonjs).errors.txt │ ├── importDeferNamespace(module=commonjs).js │ ├── importDeferNamespace(module=commonjs).symbols │ ├── importDeferNamespace(module=commonjs).types │ ├── importDeferNamespace(module=es2015).errors.txt │ ├── importDeferNamespace(module=es2015).js │ ├── importDeferNamespace(module=es2015).symbols │ ├── importDeferNamespace(module=es2015).types │ ├── importDeferNamespace(module=es2020).errors.txt │ ├── importDeferNamespace(module=es2020).js │ ├── importDeferNamespace(module=es2020).symbols │ ├── importDeferNamespace(module=es2020).types │ ├── importDeferNamespace(module=esnext).js │ ├── importDeferNamespace(module=esnext).symbols │ ├── importDeferNamespace(module=esnext).types │ ├── importDeferNamespace(module=nodenext).errors.txt │ ├── importDeferNamespace(module=nodenext).js │ ├── importDeferNamespace(module=nodenext).symbols │ ├── importDeferNamespace(module=nodenext).types │ ├── importDeferNamespace(module=preserve).js │ ├── importDeferNamespace(module=preserve).symbols │ ├── importDeferNamespace(module=preserve).types │ ├── importDeferTypeConflict1.errors.txt │ ├── importDeferTypeConflict1.js │ ├── importDeferTypeConflict1.symbols │ ├── importDeferTypeConflict1.types │ ├── importDeferTypeConflict2.errors.txt │ ├── importDeferTypeConflict2.js │ ├── importDeferTypeConflict2.symbols │ ├── importDeferTypeConflict2.types │ ├── importElisionConstEnumMerge1.errors.txt │ ├── importElisionConstEnumMerge1.js │ ├── importElisionConstEnumMerge1.symbols │ ├── importElisionConstEnumMerge1.types │ ├── importElisionEnum.js │ ├── importElisionEnum.symbols │ ├── importElisionEnum.types │ ├── importElisionExportNonExportAndDefault.js │ ├── importElisionExportNonExportAndDefault.symbols │ ├── importElisionExportNonExportAndDefault.types │ ├── importEmptyFromModuleNotExisted.errors.txt │ ├── importEmptyFromModuleNotExisted.js │ ├── importEmptyFromModuleNotExisted.symbols │ ├── importEmptyFromModuleNotExisted.types │ ├── importEquals1.errors.txt │ ├── importEquals1.js │ ├── importEquals1.symbols │ ├── importEquals1.types │ ├── importEquals2.errors.txt │ ├── importEquals2.js │ ├── importEquals2.symbols │ ├── importEquals2.types │ ├── importEquals3.errors.txt │ ├── importEquals3.js │ ├── importEquals3.symbols │ ├── importEquals3.types │ ├── importEqualsBindingDefer.js │ ├── importEqualsBindingDefer.symbols │ ├── importEqualsBindingDefer.types │ ├── importEqualsDeclaration.errors.txt │ ├── importEqualsDeclaration.js │ ├── importEqualsError45874.errors.txt │ ├── importEqualsError45874.js │ ├── importEqualsError45874.symbols │ ├── importEqualsError45874.types │ ├── importExportInternalComments.js │ ├── importExportInternalComments.symbols │ ├── importExportInternalComments.types │ ├── importFromDot.errors.txt │ ├── importFromDot.js │ ├── importFromDot.symbols │ ├── importFromDot.types │ ├── importHelpers(target=es2015).js │ ├── importHelpers(target=es2015).symbols │ ├── importHelpers(target=es2015).types │ ├── importHelpers(target=es5).errors.txt │ ├── importHelpers(target=es5).js │ ├── importHelpers(target=es5).symbols │ ├── importHelpers(target=es5).types │ ├── importHelpersAmd(target=es2015).errors.txt │ ├── importHelpersAmd(target=es2015).js │ ├── importHelpersAmd(target=es2015).symbols │ ├── importHelpersAmd(target=es2015).types │ ├── importHelpersAmd(target=es5).errors.txt │ ├── importHelpersAmd(target=es5).js │ ├── importHelpersAmd(target=es5).symbols │ ├── importHelpersAmd(target=es5).types │ ├── importHelpersBundler.js │ ├── importHelpersBundler.symbols │ ├── importHelpersBundler.types │ ├── importHelpersCommonJSJavaScript(verbatimmodulesyntax=false).js │ ├── importHelpersCommonJSJavaScript(verbatimmodulesyntax=false).symbols │ ├── importHelpersCommonJSJavaScript(verbatimmodulesyntax=false).types │ ├── importHelpersCommonJSJavaScript(verbatimmodulesyntax=true).js │ ├── importHelpersCommonJSJavaScript(verbatimmodulesyntax=true).symbols │ ├── importHelpersCommonJSJavaScript(verbatimmodulesyntax=true).types │ ├── importHelpersDeclarations(target=es2015).symbols │ ├── importHelpersDeclarations(target=es2015).types │ ├── importHelpersDeclarations(target=es5).errors.txt │ ├── importHelpersDeclarations(target=es5).symbols │ ├── importHelpersDeclarations(target=es5).types │ ├── importHelpersES6.errors.txt │ ├── importHelpersES6.js │ ├── importHelpersES6.symbols │ ├── importHelpersES6.types │ ├── importHelpersInAmbientContext(target=es2015).js │ ├── importHelpersInAmbientContext(target=es2015).symbols │ ├── importHelpersInAmbientContext(target=es2015).types │ ├── importHelpersInAmbientContext(target=es5).errors.txt │ ├── importHelpersInAmbientContext(target=es5).js │ ├── importHelpersInAmbientContext(target=es5).symbols │ ├── importHelpersInAmbientContext(target=es5).types │ ├── importHelpersInIsolatedModules(target=es2015).js │ ├── importHelpersInIsolatedModules(target=es2015).symbols │ ├── importHelpersInIsolatedModules(target=es2015).types │ ├── importHelpersInIsolatedModules(target=es5).errors.txt │ ├── importHelpersInIsolatedModules(target=es5).js │ ├── importHelpersInIsolatedModules(target=es5).symbols │ ├── importHelpersInIsolatedModules(target=es5).types │ ├── importHelpersInTsx(target=es2015).errors.txt │ ├── importHelpersInTsx(target=es2015).js │ ├── importHelpersInTsx(target=es2015).symbols │ ├── importHelpersInTsx(target=es2015).types │ ├── importHelpersInTsx(target=es5).errors.txt │ ├── importHelpersInTsx(target=es5).js │ ├── importHelpersInTsx(target=es5).symbols │ ├── importHelpersInTsx(target=es5).types │ ├── importHelpersNoEmitHelpersExportDefault(target=es2015).js │ ├── importHelpersNoEmitHelpersExportDefault(target=es5).errors.txt │ ├── importHelpersNoEmitHelpersExportDefault(target=es5).js │ ├── importHelpersNoHelpers(target=es2015).errors.txt │ ├── importHelpersNoHelpers(target=es2015).js │ ├── importHelpersNoHelpers(target=es2015).symbols │ ├── importHelpersNoHelpers(target=es2015).types │ ├── importHelpersNoHelpers(target=es5).errors.txt │ ├── importHelpersNoHelpers(target=es5).js │ ├── importHelpersNoHelpers(target=es5).symbols │ ├── importHelpersNoHelpers(target=es5).types │ ├── importHelpersNoHelpersForAsyncGenerators(target=es2015).errors.txt │ ├── importHelpersNoHelpersForAsyncGenerators(target=es2015).js │ ├── importHelpersNoHelpersForAsyncGenerators(target=es2015).symbols │ ├── importHelpersNoHelpersForAsyncGenerators(target=es2015).types │ ├── importHelpersNoHelpersForAsyncGenerators(target=es5).errors.txt │ ├── importHelpersNoHelpersForAsyncGenerators(target=es5).js │ ├── importHelpersNoHelpersForAsyncGenerators(target=es5).symbols │ ├── importHelpersNoHelpersForAsyncGenerators(target=es5).types │ ├── importHelpersNoHelpersForPrivateFields.errors.txt │ ├── importHelpersNoHelpersForPrivateFields.js │ ├── importHelpersNoHelpersForPrivateFields.symbols │ ├── importHelpersNoHelpersForPrivateFields.types │ ├── importHelpersNoModule(target=es2015).errors.txt │ ├── importHelpersNoModule(target=es2015).js │ ├── importHelpersNoModule(target=es2015).symbols │ ├── importHelpersNoModule(target=es2015).types │ ├── importHelpersNoModule(target=es5).errors.txt │ ├── importHelpersNoModule(target=es5).js │ ├── importHelpersNoModule(target=es5).symbols │ ├── importHelpersNoModule(target=es5).types │ ├── importHelpersOutFile(target=es2015).errors.txt │ ├── importHelpersOutFile(target=es2015).js │ ├── importHelpersOutFile(target=es2015).symbols │ ├── importHelpersOutFile(target=es2015).types │ ├── importHelpersOutFile(target=es5).errors.txt │ ├── importHelpersOutFile(target=es5).js │ ├── importHelpersOutFile(target=es5).symbols │ ├── importHelpersOutFile(target=es5).types │ ├── importHelpersSystem(target=es2015).errors.txt │ ├── importHelpersSystem(target=es2015).js │ ├── importHelpersSystem(target=es2015).symbols │ ├── importHelpersSystem(target=es2015).types │ ├── importHelpersSystem(target=es5).errors.txt │ ├── importHelpersSystem(target=es5).js │ ├── importHelpersSystem(target=es5).symbols │ ├── importHelpersSystem(target=es5).types │ ├── importHelpersVerbatimModuleSyntax.js │ ├── importHelpersVerbatimModuleSyntax.symbols │ ├── importHelpersVerbatimModuleSyntax.types │ ├── importHelpersWithExportStarAs(esmoduleinterop=false,module=amd).errors.txt │ ├── importHelpersWithExportStarAs(esmoduleinterop=false,module=amd).js │ ├── importHelpersWithExportStarAs(esmoduleinterop=false,module=amd).symbols │ ├── importHelpersWithExportStarAs(esmoduleinterop=false,module=amd).types │ ├── importHelpersWithExportStarAs(esmoduleinterop=false,module=commonjs).errors.txt │ ├── importHelpersWithExportStarAs(esmoduleinterop=false,module=commonjs).js │ ├── importHelpersWithExportStarAs(esmoduleinterop=false,module=commonjs).symbols │ ├── importHelpersWithExportStarAs(esmoduleinterop=false,module=commonjs).types │ ├── importHelpersWithExportStarAs(esmoduleinterop=false,module=es2015).errors.txt │ ├── importHelpersWithExportStarAs(esmoduleinterop=false,module=es2015).js │ ├── importHelpersWithExportStarAs(esmoduleinterop=false,module=es2015).symbols │ ├── importHelpersWithExportStarAs(esmoduleinterop=false,module=es2015).types │ ├── importHelpersWithExportStarAs(esmoduleinterop=false,module=es2020).errors.txt │ ├── importHelpersWithExportStarAs(esmoduleinterop=false,module=es2020).js │ ├── importHelpersWithExportStarAs(esmoduleinterop=false,module=es2020).symbols │ ├── importHelpersWithExportStarAs(esmoduleinterop=false,module=es2020).types │ ├── importHelpersWithExportStarAs(esmoduleinterop=false,module=system).errors.txt │ ├── importHelpersWithExportStarAs(esmoduleinterop=false,module=system).js │ ├── importHelpersWithExportStarAs(esmoduleinterop=false,module=system).symbols │ ├── importHelpersWithExportStarAs(esmoduleinterop=false,module=system).types │ ├── importHelpersWithExportStarAs(esmoduleinterop=true,module=amd).errors.txt │ ├── importHelpersWithExportStarAs(esmoduleinterop=true,module=amd).js │ ├── importHelpersWithExportStarAs(esmoduleinterop=true,module=amd).symbols │ ├── importHelpersWithExportStarAs(esmoduleinterop=true,module=amd).types │ ├── importHelpersWithExportStarAs(esmoduleinterop=true,module=commonjs).js │ ├── importHelpersWithExportStarAs(esmoduleinterop=true,module=commonjs).symbols │ ├── importHelpersWithExportStarAs(esmoduleinterop=true,module=commonjs).types │ ├── importHelpersWithExportStarAs(esmoduleinterop=true,module=es2015).js │ ├── importHelpersWithExportStarAs(esmoduleinterop=true,module=es2015).symbols │ ├── importHelpersWithExportStarAs(esmoduleinterop=true,module=es2015).types │ ├── importHelpersWithExportStarAs(esmoduleinterop=true,module=es2020).js │ ├── importHelpersWithExportStarAs(esmoduleinterop=true,module=es2020).symbols │ ├── importHelpersWithExportStarAs(esmoduleinterop=true,module=es2020).types │ ├── importHelpersWithExportStarAs(esmoduleinterop=true,module=system).errors.txt │ ├── importHelpersWithExportStarAs(esmoduleinterop=true,module=system).js │ ├── importHelpersWithExportStarAs(esmoduleinterop=true,module=system).symbols │ ├── importHelpersWithExportStarAs(esmoduleinterop=true,module=system).types │ ├── importHelpersWithImportOrExportDefault(esmoduleinterop=false,module=amd).errors.txt │ ├── importHelpersWithImportOrExportDefault(esmoduleinterop=false,module=amd).js │ ├── importHelpersWithImportOrExportDefault(esmoduleinterop=false,module=amd).symbols │ ├── importHelpersWithImportOrExportDefault(esmoduleinterop=false,module=amd).types │ ├── importHelpersWithImportOrExportDefault(esmoduleinterop=false,module=commonjs).errors.txt │ ├── importHelpersWithImportOrExportDefault(esmoduleinterop=false,module=commonjs).js │ ├── importHelpersWithImportOrExportDefault(esmoduleinterop=false,module=commonjs).symbols │ ├── importHelpersWithImportOrExportDefault(esmoduleinterop=false,module=commonjs).types │ ├── importHelpersWithImportOrExportDefault(esmoduleinterop=false,module=es2015).errors.txt │ ├── importHelpersWithImportOrExportDefault(esmoduleinterop=false,module=es2015).js │ ├── importHelpersWithImportOrExportDefault(esmoduleinterop=false,module=es2015).symbols │ ├── importHelpersWithImportOrExportDefault(esmoduleinterop=false,module=es2015).types │ ├── importHelpersWithImportOrExportDefault(esmoduleinterop=false,module=es2020).errors.txt │ ├── importHelpersWithImportOrExportDefault(esmoduleinterop=false,module=es2020).js │ ├── importHelpersWithImportOrExportDefault(esmoduleinterop=false,module=es2020).symbols │ ├── importHelpersWithImportOrExportDefault(esmoduleinterop=false,module=es2020).types │ ├── importHelpersWithImportOrExportDefault(esmoduleinterop=false,module=system).errors.txt │ ├── importHelpersWithImportOrExportDefault(esmoduleinterop=false,module=system).js │ ├── importHelpersWithImportOrExportDefault(esmoduleinterop=false,module=system).symbols │ ├── importHelpersWithImportOrExportDefault(esmoduleinterop=false,module=system).types │ ├── importHelpersWithImportOrExportDefault(esmoduleinterop=true,module=amd).errors.txt │ ├── importHelpersWithImportOrExportDefault(esmoduleinterop=true,module=amd).js │ ├── importHelpersWithImportOrExportDefault(esmoduleinterop=true,module=amd).symbols │ ├── importHelpersWithImportOrExportDefault(esmoduleinterop=true,module=amd).types │ ├── importHelpersWithImportOrExportDefault(esmoduleinterop=true,module=commonjs).js │ ├── importHelpersWithImportOrExportDefault(esmoduleinterop=true,module=commonjs).symbols │ ├── importHelpersWithImportOrExportDefault(esmoduleinterop=true,module=commonjs).types │ ├── importHelpersWithImportOrExportDefault(esmoduleinterop=true,module=es2015).js │ ├── importHelpersWithImportOrExportDefault(esmoduleinterop=true,module=es2015).symbols │ ├── importHelpersWithImportOrExportDefault(esmoduleinterop=true,module=es2015).types │ ├── importHelpersWithImportOrExportDefault(esmoduleinterop=true,module=es2020).js │ ├── importHelpersWithImportOrExportDefault(esmoduleinterop=true,module=es2020).symbols │ ├── importHelpersWithImportOrExportDefault(esmoduleinterop=true,module=es2020).types │ ├── importHelpersWithImportOrExportDefault(esmoduleinterop=true,module=system).errors.txt │ ├── importHelpersWithImportOrExportDefault(esmoduleinterop=true,module=system).js │ ├── importHelpersWithImportOrExportDefault(esmoduleinterop=true,module=system).symbols │ ├── importHelpersWithImportOrExportDefault(esmoduleinterop=true,module=system).types │ ├── importHelpersWithImportOrExportDefaultNoTslib.1(esmoduleinterop=false,module=amd).errors.txt │ ├── importHelpersWithImportOrExportDefaultNoTslib.1(esmoduleinterop=false,module=commonjs).errors.txt │ ├── importHelpersWithImportOrExportDefaultNoTslib.1(esmoduleinterop=false,module=es2015).errors.txt │ ├── importHelpersWithImportOrExportDefaultNoTslib.1(esmoduleinterop=false,module=es2020).errors.txt │ ├── importHelpersWithImportOrExportDefaultNoTslib.1(esmoduleinterop=false,module=system).errors.txt │ ├── importHelpersWithImportOrExportDefaultNoTslib.1(esmoduleinterop=true,module=amd).errors.txt │ ├── importHelpersWithImportOrExportDefaultNoTslib.1(esmoduleinterop=true,module=commonjs).errors.txt │ ├── importHelpersWithImportOrExportDefaultNoTslib.1(esmoduleinterop=true,module=system).errors.txt │ ├── importHelpersWithImportOrExportDefaultNoTslib.2(esmoduleinterop=false,module=amd).errors.txt │ ├── importHelpersWithImportOrExportDefaultNoTslib.2(esmoduleinterop=false,module=commonjs).errors.txt │ ├── importHelpersWithImportOrExportDefaultNoTslib.2(esmoduleinterop=false,module=es2015).errors.txt │ ├── importHelpersWithImportOrExportDefaultNoTslib.2(esmoduleinterop=false,module=es2020).errors.txt │ ├── importHelpersWithImportOrExportDefaultNoTslib.2(esmoduleinterop=false,module=system).errors.txt │ ├── importHelpersWithImportOrExportDefaultNoTslib.2(esmoduleinterop=true,module=amd).errors.txt │ ├── importHelpersWithImportOrExportDefaultNoTslib.2(esmoduleinterop=true,module=commonjs).errors.txt │ ├── importHelpersWithImportOrExportDefaultNoTslib.2(esmoduleinterop=true,module=system).errors.txt │ ├── importHelpersWithImportOrExportDefaultNoTslib.3(esmoduleinterop=false,module=amd).errors.txt │ ├── importHelpersWithImportOrExportDefaultNoTslib.3(esmoduleinterop=false,module=commonjs).errors.txt │ ├── importHelpersWithImportOrExportDefaultNoTslib.3(esmoduleinterop=false,module=es2015).errors.txt │ ├── importHelpersWithImportOrExportDefaultNoTslib.3(esmoduleinterop=false,module=es2020).errors.txt │ ├── importHelpersWithImportOrExportDefaultNoTslib.3(esmoduleinterop=false,module=system).errors.txt │ ├── importHelpersWithImportOrExportDefaultNoTslib.3(esmoduleinterop=true,module=amd).errors.txt │ ├── importHelpersWithImportOrExportDefaultNoTslib.3(esmoduleinterop=true,module=commonjs).errors.txt │ ├── importHelpersWithImportOrExportDefaultNoTslib.3(esmoduleinterop=true,module=system).errors.txt │ ├── importHelpersWithImportStarAs(esmoduleinterop=false,module=amd).errors.txt │ ├── importHelpersWithImportStarAs(esmoduleinterop=false,module=amd).js │ ├── importHelpersWithImportStarAs(esmoduleinterop=false,module=amd).symbols │ ├── importHelpersWithImportStarAs(esmoduleinterop=false,module=amd).types │ ├── importHelpersWithImportStarAs(esmoduleinterop=false,module=commonjs).errors.txt │ ├── importHelpersWithImportStarAs(esmoduleinterop=false,module=commonjs).js │ ├── importHelpersWithImportStarAs(esmoduleinterop=false,module=commonjs).symbols │ ├── importHelpersWithImportStarAs(esmoduleinterop=false,module=commonjs).types │ ├── importHelpersWithImportStarAs(esmoduleinterop=false,module=es2015).errors.txt │ ├── importHelpersWithImportStarAs(esmoduleinterop=false,module=es2015).js │ ├── importHelpersWithImportStarAs(esmoduleinterop=false,module=es2015).symbols │ ├── importHelpersWithImportStarAs(esmoduleinterop=false,module=es2015).types │ ├── importHelpersWithImportStarAs(esmoduleinterop=false,module=es2020).errors.txt │ ├── importHelpersWithImportStarAs(esmoduleinterop=false,module=es2020).js │ ├── importHelpersWithImportStarAs(esmoduleinterop=false,module=es2020).symbols │ ├── importHelpersWithImportStarAs(esmoduleinterop=false,module=es2020).types │ ├── importHelpersWithImportStarAs(esmoduleinterop=false,module=system).errors.txt │ ├── importHelpersWithImportStarAs(esmoduleinterop=false,module=system).js │ ├── importHelpersWithImportStarAs(esmoduleinterop=false,module=system).symbols │ ├── importHelpersWithImportStarAs(esmoduleinterop=false,module=system).types │ ├── importHelpersWithImportStarAs(esmoduleinterop=true,module=amd).errors.txt │ ├── importHelpersWithImportStarAs(esmoduleinterop=true,module=amd).js │ ├── importHelpersWithImportStarAs(esmoduleinterop=true,module=amd).symbols │ ├── importHelpersWithImportStarAs(esmoduleinterop=true,module=amd).types │ ├── importHelpersWithImportStarAs(esmoduleinterop=true,module=commonjs).js │ ├── importHelpersWithImportStarAs(esmoduleinterop=true,module=commonjs).symbols │ ├── importHelpersWithImportStarAs(esmoduleinterop=true,module=commonjs).types │ ├── importHelpersWithImportStarAs(esmoduleinterop=true,module=es2015).js │ ├── importHelpersWithImportStarAs(esmoduleinterop=true,module=es2015).symbols │ ├── importHelpersWithImportStarAs(esmoduleinterop=true,module=es2015).types │ ├── importHelpersWithImportStarAs(esmoduleinterop=true,module=es2020).js │ ├── importHelpersWithImportStarAs(esmoduleinterop=true,module=es2020).symbols │ ├── importHelpersWithImportStarAs(esmoduleinterop=true,module=es2020).types │ ├── importHelpersWithImportStarAs(esmoduleinterop=true,module=system).errors.txt │ ├── importHelpersWithImportStarAs(esmoduleinterop=true,module=system).js │ ├── importHelpersWithImportStarAs(esmoduleinterop=true,module=system).symbols │ ├── importHelpersWithImportStarAs(esmoduleinterop=true,module=system).types │ ├── importHelpersWithLocalCollisions(module=amd).errors.txt │ ├── importHelpersWithLocalCollisions(module=amd).js │ ├── importHelpersWithLocalCollisions(module=commonjs).js │ ├── importHelpersWithLocalCollisions(module=es2015).js │ ├── importHelpersWithLocalCollisions(module=system).errors.txt │ ├── importHelpersWithLocalCollisions(module=system).js │ ├── importImportOnlyModule.errors.txt │ ├── importImportOnlyModule.js │ ├── importImportOnlyModule.symbols │ ├── importImportOnlyModule.types │ ├── importInTypePosition.js │ ├── importInTypePosition.symbols │ ├── importInTypePosition.types │ ├── importInsideModule.errors.txt │ ├── importInsideModule.js │ ├── importInsideModule.symbols │ ├── importInsideModule.types │ ├── importMeta(module=commonjs,target=es5).errors.txt │ ├── importMeta(module=commonjs,target=es5).js │ ├── importMeta(module=commonjs,target=es5).symbols │ ├── importMeta(module=commonjs,target=es5).types │ ├── importMeta(module=commonjs,target=esnext).errors.txt │ ├── importMeta(module=commonjs,target=esnext).js │ ├── importMeta(module=commonjs,target=esnext).symbols │ ├── importMeta(module=commonjs,target=esnext).types │ ├── importMeta(module=es2020,target=es5).errors.txt │ ├── importMeta(module=es2020,target=es5).js │ ├── importMeta(module=es2020,target=es5).symbols │ ├── importMeta(module=es2020,target=es5).types │ ├── importMeta(module=es2020,target=esnext).errors.txt │ ├── importMeta(module=es2020,target=esnext).js │ ├── importMeta(module=es2020,target=esnext).symbols │ ├── importMeta(module=es2020,target=esnext).types │ ├── importMeta(module=esnext,target=es5).errors.txt │ ├── importMeta(module=esnext,target=es5).js │ ├── importMeta(module=esnext,target=es5).symbols │ ├── importMeta(module=esnext,target=es5).types │ ├── importMeta(module=esnext,target=esnext).errors.txt │ ├── importMeta(module=esnext,target=esnext).js │ ├── importMeta(module=esnext,target=esnext).symbols │ ├── importMeta(module=esnext,target=esnext).types │ ├── importMeta(module=system,target=es5).errors.txt │ ├── importMeta(module=system,target=es5).js │ ├── importMeta(module=system,target=es5).symbols │ ├── importMeta(module=system,target=es5).types │ ├── importMeta(module=system,target=esnext).errors.txt │ ├── importMeta(module=system,target=esnext).js │ ├── importMeta(module=system,target=esnext).symbols │ ├── importMeta(module=system,target=esnext).types │ ├── importMetaNarrowing(module=es2020).js │ ├── importMetaNarrowing(module=es2020).symbols │ ├── importMetaNarrowing(module=es2020).types │ ├── importMetaNarrowing(module=esnext).js │ ├── importMetaNarrowing(module=esnext).symbols │ ├── importMetaNarrowing(module=esnext).types │ ├── importMetaNarrowing(module=system).errors.txt │ ├── importMetaNarrowing(module=system).js │ ├── importMetaNarrowing(module=system).symbols │ ├── importMetaNarrowing(module=system).types │ ├── importMetaPropertyInvalidInCall.errors.txt │ ├── importMetaPropertyInvalidInCall.js │ ├── importMetaPropertyInvalidInCall.symbols │ ├── importMetaPropertyInvalidInCall.types │ ├── importNonExportedMember.errors.txt │ ├── importNonExportedMember.js │ ├── importNonExportedMember.symbols │ ├── importNonExportedMember.types │ ├── importNonExportedMember1.errors.txt │ ├── importNonExportedMember1.js │ ├── importNonExportedMember1.symbols │ ├── importNonExportedMember1.types │ ├── importNonExportedMember10.errors.txt │ ├── importNonExportedMember10.symbols │ ├── importNonExportedMember10.types │ ├── importNonExportedMember11.errors.txt │ ├── importNonExportedMember11.symbols │ ├── importNonExportedMember11.types │ ├── importNonExportedMember12.symbols │ ├── importNonExportedMember12.types │ ├── importNonExportedMember2.errors.txt │ ├── importNonExportedMember2.js │ ├── importNonExportedMember2.symbols │ ├── importNonExportedMember2.types │ ├── importNonExportedMember3.errors.txt │ ├── importNonExportedMember3.js │ ├── importNonExportedMember3.symbols │ ├── importNonExportedMember3.types │ ├── importNonExportedMember4.errors.txt │ ├── importNonExportedMember4.js │ ├── importNonExportedMember4.symbols │ ├── importNonExportedMember4.types │ ├── importNonExportedMember5.errors.txt │ ├── importNonExportedMember5.js │ ├── importNonExportedMember5.symbols │ ├── importNonExportedMember5.types │ ├── importNonExportedMember6.errors.txt │ ├── importNonExportedMember6.js │ ├── importNonExportedMember6.symbols │ ├── importNonExportedMember6.types │ ├── importNonExportedMember7.errors.txt │ ├── importNonExportedMember7.js │ ├── importNonExportedMember7.symbols │ ├── importNonExportedMember7.types │ ├── importNonExportedMember8.errors.txt │ ├── importNonExportedMember8.symbols │ ├── importNonExportedMember8.types │ ├── importNonExportedMember9.errors.txt │ ├── importNonExportedMember9.symbols │ ├── importNonExportedMember9.types │ ├── importNonExternalModule.errors.txt │ ├── importNonExternalModule.js │ ├── importNonExternalModule.symbols │ ├── importNonExternalModule.types │ ├── importNonStringLiteral.errors.txt │ ├── importNonStringLiteral.js │ ├── importNonStringLiteral.symbols │ ├── importNonStringLiteral.types │ ├── importNotElidedWhenNotFound.errors.txt │ ├── importNotElidedWhenNotFound.js │ ├── importNotElidedWhenNotFound.symbols │ ├── importNotElidedWhenNotFound.types │ ├── importOnAliasedIdentifiers.js │ ├── importOnAliasedIdentifiers.symbols │ ├── importOnAliasedIdentifiers.types │ ├── importPropertyFromMappedType.js │ ├── importPropertyFromMappedType.symbols │ ├── importPropertyFromMappedType.types │ ├── importShadowsGlobalName.errors.txt │ ├── importShadowsGlobalName.js │ ├── importShadowsGlobalName.symbols │ ├── importShadowsGlobalName.types │ ├── importShouldNotBeElidedInDeclarationEmit.js │ ├── importShouldNotBeElidedInDeclarationEmit.symbols │ ├── importShouldNotBeElidedInDeclarationEmit.types │ ├── importSpecifiers1.errors.txt │ ├── importSpecifiers1.js │ ├── importSpecifiers1.symbols │ ├── importSpecifiers1.types │ ├── importSpecifiers_js.errors.txt │ ├── importSpecifiers_js.symbols │ ├── importSpecifiers_js.types │ ├── importStatementCompletions3.baseline │ ├── importStatements.js │ ├── importStatements.symbols │ ├── importStatements.types │ ├── importStatementsInterfaces.errors.txt │ ├── importStatementsInterfaces.js │ ├── importStatementsInterfaces.symbols │ ├── importStatementsInterfaces.types │ ├── importTag1.symbols │ ├── importTag1.types │ ├── importTag10.errors.txt │ ├── importTag10.symbols │ ├── importTag10.types │ ├── importTag11.errors.txt │ ├── importTag11.symbols │ ├── importTag11.types │ ├── importTag12.errors.txt │ ├── importTag12.symbols │ ├── importTag12.types │ ├── importTag13.errors.txt │ ├── importTag13.symbols │ ├── importTag13.types │ ├── importTag14.errors.txt │ ├── importTag14.symbols │ ├── importTag14.types │ ├── importTag15(module=es2015).errors.txt │ ├── importTag15(module=es2015).js │ ├── importTag15(module=es2015).symbols │ ├── importTag15(module=es2015).types │ ├── importTag15(module=esnext).errors.txt │ ├── importTag15(module=esnext).js │ ├── importTag15(module=esnext).symbols │ ├── importTag15(module=esnext).types │ ├── importTag16.js │ ├── importTag16.symbols │ ├── importTag16.types │ ├── importTag17.errors.txt │ ├── importTag17.symbols │ ├── importTag17.types │ ├── importTag18.js │ ├── importTag18.symbols │ ├── importTag18.types │ ├── importTag19.js │ ├── importTag19.symbols │ ├── importTag19.types │ ├── importTag2.symbols │ ├── importTag2.types │ ├── importTag20.js │ ├── importTag20.symbols │ ├── importTag20.types │ ├── importTag22.errors.txt │ ├── importTag23.errors.txt │ ├── importTag23.symbols │ ├── importTag23.types │ ├── importTag24.errors.txt │ ├── importTag24.symbols │ ├── importTag24.types │ ├── importTag25.symbols │ ├── importTag25.types │ ├── importTag3.symbols │ ├── importTag3.types │ ├── importTag4.errors.txt │ ├── importTag4.symbols │ ├── importTag4.types │ ├── importTag5.js │ ├── importTag5.symbols │ ├── importTag5.types │ ├── importTag6.symbols │ ├── importTag6.types │ ├── importTag7.symbols │ ├── importTag7.types │ ├── importTag8.symbols │ ├── importTag8.types │ ├── importTag9.symbols │ ├── importTag9.types │ ├── importTsBeforeDTs.errors.txt │ ├── importTsBeforeDTs.js │ ├── importTsBeforeDTs.symbols │ ├── importTsBeforeDTs.types │ ├── importTypeAmbient.errors.txt │ ├── importTypeAmbient.js │ ├── importTypeAmbient.symbols │ ├── importTypeAmbient.types │ ├── importTypeAmbientMissing.errors.txt │ ├── importTypeAmbientMissing.js │ ├── importTypeAmbientMissing.symbols │ ├── importTypeAmbientMissing.types │ ├── importTypeAmdBundleRewrite.errors.txt │ ├── importTypeAmdBundleRewrite.js │ ├── importTypeAmdBundleRewrite.symbols │ ├── importTypeAmdBundleRewrite.types │ ├── importTypeAssertionDeprecation.errors.txt │ ├── importTypeGeneric.errors.txt │ ├── importTypeGeneric.js │ ├── importTypeGeneric.symbols │ ├── importTypeGeneric.types │ ├── importTypeGenericArrowTypeParenthesized.js │ ├── importTypeGenericArrowTypeParenthesized.symbols │ ├── importTypeGenericArrowTypeParenthesized.types │ ├── importTypeGenericTypes.errors.txt │ ├── importTypeGenericTypes.js │ ├── importTypeGenericTypes.symbols │ ├── importTypeGenericTypes.types │ ├── importTypeInJSDoc.js │ ├── importTypeInJSDoc.symbols │ ├── importTypeInJSDoc.types │ ├── importTypeLocal.errors.txt │ ├── importTypeLocal.js │ ├── importTypeLocal.symbols │ ├── importTypeLocal.types │ ├── importTypeLocalMissing.errors.txt │ ├── importTypeLocalMissing.js │ ├── importTypeLocalMissing.symbols │ ├── importTypeLocalMissing.types │ ├── importTypeNested.errors.txt │ ├── importTypeNested.js │ ├── importTypeNested.symbols │ ├── importTypeNested.types │ ├── importTypeNestedNoRef.errors.txt │ ├── importTypeNestedNoRef.js │ ├── importTypeNestedNoRef.symbols │ ├── importTypeNestedNoRef.types │ ├── importTypeNodeGoToDefinition.baseline.jsonc │ ├── importTypeNonString.errors.txt │ ├── importTypeNonString.js │ ├── importTypeNonString.symbols │ ├── importTypeNonString.types │ ├── importTypeResolutionJSDocEOF.symbols │ ├── importTypeResolutionJSDocEOF.types │ ├── importTypeTypeofClassStaticLookup.symbols │ ├── importTypeTypeofClassStaticLookup.types │ ├── importTypeWithUnparenthesizedGenericFunctionParsed.errors.txt │ ├── importTypeWithUnparenthesizedGenericFunctionParsed.js │ ├── importTypeWithUnparenthesizedGenericFunctionParsed.symbols │ ├── importTypeWithUnparenthesizedGenericFunctionParsed.types │ ├── importUsedAsTypeWithErrors.errors.txt │ ├── importUsedAsTypeWithErrors.js │ ├── importUsedAsTypeWithErrors.symbols │ ├── importUsedAsTypeWithErrors.types │ ├── importUsedInExtendsList1.errors.txt │ ├── importUsedInExtendsList1.js │ ├── importUsedInExtendsList1.symbols │ ├── importUsedInExtendsList1.types │ ├── importUsedInGenericImportResolves.js │ ├── importUsedInGenericImportResolves.symbols │ ├── importUsedInGenericImportResolves.types │ ├── importWithTrailingSlash.errors.txt │ ├── importWithTrailingSlash.js │ ├── importWithTrailingSlash.symbols │ ├── importWithTrailingSlash.trace.json │ ├── importWithTrailingSlash.types │ ├── importWithTrailingSlash_noResolve.errors.txt │ ├── importWithTrailingSlash_noResolve.js │ ├── importWithTrailingSlash_noResolve.symbols │ ├── importWithTrailingSlash_noResolve.trace.json │ ├── importWithTrailingSlash_noResolve.types │ ├── importWithTypeArguments.errors.txt │ ├── importWithTypeArguments.js │ ├── importWithTypeArguments.symbols │ ├── importWithTypeArguments.types │ ├── import_reference-exported-alias.errors.txt │ ├── import_reference-exported-alias.js │ ├── import_reference-exported-alias.symbols │ ├── import_reference-exported-alias.types │ ├── import_reference-to-type-alias.errors.txt │ ├── import_reference-to-type-alias.js │ ├── import_reference-to-type-alias.symbols │ ├── import_reference-to-type-alias.types │ ├── import_unneeded-require-when-referenecing-aliased-type-throug-array.errors.txt │ ├── import_unneeded-require-when-referenecing-aliased-type-throug-array.js │ ├── import_unneeded-require-when-referenecing-aliased-type-throug-array.symbols │ ├── import_unneeded-require-when-referenecing-aliased-type-throug-array.types │ ├── import_var-referencing-an-imported-module-alias.errors.txt │ ├── import_var-referencing-an-imported-module-alias.js │ ├── import_var-referencing-an-imported-module-alias.symbols │ ├── import_var-referencing-an-imported-module-alias.types │ ├── importedAliasedConditionalTypeInstantiation.js │ ├── importedAliasedConditionalTypeInstantiation.symbols │ ├── importedAliasedConditionalTypeInstantiation.types │ ├── importedAliasesInTypePositions.errors.txt │ ├── importedAliasesInTypePositions.js │ ├── importedAliasesInTypePositions.symbols │ ├── importedAliasesInTypePositions.types │ ├── importedEnumMemberMergedWithExportedAliasIsError.errors.txt │ ├── importedEnumMemberMergedWithExportedAliasIsError.js │ ├── importedEnumMemberMergedWithExportedAliasIsError.symbols │ ├── importedEnumMemberMergedWithExportedAliasIsError.types │ ├── importedModuleAddToGlobal.errors.txt │ ├── importedModuleAddToGlobal.js │ ├── importedModuleAddToGlobal.symbols │ ├── importedModuleAddToGlobal.types │ ├── importedModuleClassNameClash.errors.txt │ ├── importedModuleClassNameClash.js │ ├── importedModuleClassNameClash.symbols │ ├── importedModuleClassNameClash.types │ ├── importingExportingTypes.errors.txt │ ├── importingExportingTypes.symbols │ ├── importingExportingTypes.types │ ├── importsImplicitlyReadonly.errors.txt │ ├── importsImplicitlyReadonly.js │ ├── importsImplicitlyReadonly.symbols │ ├── importsImplicitlyReadonly.types │ ├── importsInAmbientModules1.errors.txt │ ├── importsInAmbientModules1.js │ ├── importsInAmbientModules1.symbols │ ├── importsInAmbientModules1.types │ ├── importsInAmbientModules2.errors.txt │ ├── importsInAmbientModules2.js │ ├── importsInAmbientModules2.symbols │ ├── importsInAmbientModules2.types │ ├── importsInAmbientModules3.errors.txt │ ├── importsInAmbientModules3.js │ ├── importsInAmbientModules3.symbols │ ├── importsInAmbientModules3.types │ ├── importsNotUsedAsValues_error.errors.txt │ ├── importsNotUsedAsValues_error.js │ ├── importsNotUsedAsValues_error.symbols │ ├── importsNotUsedAsValues_error.types │ ├── inDoesNotOperateOnPrimitiveTypes.errors.txt │ ├── inDoesNotOperateOnPrimitiveTypes.js │ ├── inDoesNotOperateOnPrimitiveTypes.symbols │ ├── inDoesNotOperateOnPrimitiveTypes.types │ ├── inKeywordAndIntersection.js │ ├── inKeywordAndIntersection.symbols │ ├── inKeywordAndIntersection.types │ ├── inKeywordAndUnknown.errors.txt │ ├── inKeywordAndUnknown.js │ ├── inKeywordAndUnknown.symbols │ ├── inKeywordAndUnknown.types │ ├── inKeywordNarrowingWithNoUncheckedIndexedAccess.symbols │ ├── inKeywordNarrowingWithNoUncheckedIndexedAccess.types │ ├── inKeywordTypeguard(strict=false).errors.txt │ ├── inKeywordTypeguard(strict=false).js │ ├── inKeywordTypeguard(strict=false).symbols │ ├── inKeywordTypeguard(strict=false).types │ ├── inKeywordTypeguard(strict=true).errors.txt │ ├── inKeywordTypeguard(strict=true).js │ ├── inKeywordTypeguard(strict=true).symbols │ ├── inKeywordTypeguard(strict=true).types │ ├── inOperator.errors.txt │ ├── inOperator.js │ ├── inOperator.symbols │ ├── inOperator.types │ ├── inOperatorWithFunction.js │ ├── inOperatorWithFunction.symbols │ ├── inOperatorWithFunction.types │ ├── inOperatorWithGeneric.js │ ├── inOperatorWithGeneric.symbols │ ├── inOperatorWithGeneric.types │ ├── inOperatorWithInvalidOperands.errors.txt │ ├── inOperatorWithInvalidOperands.js │ ├── inOperatorWithInvalidOperands.symbols │ ├── inOperatorWithInvalidOperands.types │ ├── inOperatorWithValidOperands.errors.txt │ ├── inOperatorWithValidOperands.js │ ├── inOperatorWithValidOperands.symbols │ ├── inOperatorWithValidOperands.types │ ├── incompatibleAssignmentOfIdenticallyNamedTypes.errors.txt │ ├── incompatibleAssignmentOfIdenticallyNamedTypes.js │ ├── incompatibleAssignmentOfIdenticallyNamedTypes.symbols │ ├── incompatibleAssignmentOfIdenticallyNamedTypes.types │ ├── incompatibleExports1.errors.txt │ ├── incompatibleExports1.js │ ├── incompatibleExports1.symbols │ ├── incompatibleExports1.types │ ├── incompatibleExports2.errors.txt │ ├── incompatibleExports2.js │ ├── incompatibleExports2.symbols │ ├── incompatibleExports2.types │ ├── incompatibleGenericTypes.errors.txt │ ├── incompatibleGenericTypes.js │ ├── incompatibleGenericTypes.symbols │ ├── incompatibleGenericTypes.types │ ├── incompatibleTypes.errors.txt │ ├── incompatibleTypes.js │ ├── incompatibleTypes.symbols │ ├── incompatibleTypes.types │ ├── incompleteDottedExpressionAtEOF.errors.txt │ ├── incompleteDottedExpressionAtEOF.js │ ├── incompleteDottedExpressionAtEOF.symbols │ ├── incompleteDottedExpressionAtEOF.types │ ├── incompleteObjectLiteral1.errors.txt │ ├── incompleteObjectLiteral1.js │ ├── incompleteObjectLiteral1.symbols │ ├── incompleteObjectLiteral1.types │ ├── incorrectClassOverloadChain.errors.txt │ ├── incorrectClassOverloadChain.js │ ├── incorrectClassOverloadChain.symbols │ ├── incorrectClassOverloadChain.types │ ├── incorrectNumberOfTypeArgumentsDuringErrorReporting.errors.txt │ ├── incorrectNumberOfTypeArgumentsDuringErrorReporting.js │ ├── incorrectNumberOfTypeArgumentsDuringErrorReporting.symbols │ ├── incorrectNumberOfTypeArgumentsDuringErrorReporting.types │ ├── incorrectRecursiveMappedTypeConstraint.errors.txt │ ├── incorrectRecursiveMappedTypeConstraint.js │ ├── incorrectRecursiveMappedTypeConstraint.symbols │ ├── incorrectRecursiveMappedTypeConstraint.types │ ├── incrementAndDecrement.errors.txt │ ├── incrementAndDecrement.js │ ├── incrementAndDecrement.symbols │ ├── incrementAndDecrement.types │ ├── incrementOnNullAssertion.js │ ├── incrementOnNullAssertion.symbols │ ├── incrementOnNullAssertion.types │ ├── incrementOnTypeParameter.errors.txt │ ├── incrementOnTypeParameter.js │ ├── incrementOnTypeParameter.symbols │ ├── incrementOnTypeParameter.types │ ├── incrementOperatorWithAnyOtherType.js │ ├── incrementOperatorWithAnyOtherType.symbols │ ├── incrementOperatorWithAnyOtherType.types │ ├── incrementOperatorWithAnyOtherTypeInvalidOperations.errors.txt │ ├── incrementOperatorWithAnyOtherTypeInvalidOperations.js │ ├── incrementOperatorWithAnyOtherTypeInvalidOperations.symbols │ ├── incrementOperatorWithAnyOtherTypeInvalidOperations.types │ ├── incrementOperatorWithEnumType.errors.txt │ ├── incrementOperatorWithEnumType.js │ ├── incrementOperatorWithEnumType.symbols │ ├── incrementOperatorWithEnumType.types │ ├── incrementOperatorWithEnumTypeInvalidOperations.errors.txt │ ├── incrementOperatorWithEnumTypeInvalidOperations.js │ ├── incrementOperatorWithEnumTypeInvalidOperations.symbols │ ├── incrementOperatorWithEnumTypeInvalidOperations.types │ ├── incrementOperatorWithNumberType.errors.txt │ ├── incrementOperatorWithNumberType.js │ ├── incrementOperatorWithNumberType.symbols │ ├── incrementOperatorWithNumberType.types │ ├── incrementOperatorWithNumberTypeInvalidOperations.errors.txt │ ├── incrementOperatorWithNumberTypeInvalidOperations.js │ ├── incrementOperatorWithNumberTypeInvalidOperations.symbols │ ├── incrementOperatorWithNumberTypeInvalidOperations.types │ ├── incrementOperatorWithUnsupportedBooleanType.errors.txt │ ├── incrementOperatorWithUnsupportedBooleanType.js │ ├── incrementOperatorWithUnsupportedBooleanType.symbols │ ├── incrementOperatorWithUnsupportedBooleanType.types │ ├── incrementOperatorWithUnsupportedStringType.errors.txt │ ├── incrementOperatorWithUnsupportedStringType.js │ ├── incrementOperatorWithUnsupportedStringType.symbols │ ├── incrementOperatorWithUnsupportedStringType.types │ ├── incrementalConfig.js │ ├── incrementalConfig.symbols │ ├── incrementalConfig.types │ ├── incrementalInvalid.errors.txt │ ├── incrementalInvalid.js │ ├── incrementalInvalid.symbols │ ├── incrementalInvalid.types │ ├── incrementalOut.errors.txt │ ├── incrementalOut.js │ ├── incrementalOut.symbols │ ├── incrementalOut.types │ ├── incrementalTsBuildInfoFile.js │ ├── incrementalTsBuildInfoFile.symbols │ ├── incrementalTsBuildInfoFile.types │ ├── independentPropertyVariance.js │ ├── independentPropertyVariance.symbols │ ├── independentPropertyVariance.types │ ├── indexAt(target=es2021).errors.txt │ ├── indexAt(target=es2021).js │ ├── indexAt(target=es2021).symbols │ ├── indexAt(target=es2021).types │ ├── indexAt(target=es2022).js │ ├── indexAt(target=es2022).symbols │ ├── indexAt(target=es2022).types │ ├── indexAt(target=esnext).js │ ├── indexAt(target=esnext).symbols │ ├── indexAt(target=esnext).types │ ├── indexClassByNumber.js │ ├── indexClassByNumber.symbols │ ├── indexClassByNumber.types │ ├── indexIntoArraySubclass.errors.txt │ ├── indexIntoArraySubclass.js │ ├── indexIntoArraySubclass.symbols │ ├── indexIntoArraySubclass.types │ ├── indexIntoEnum.js │ ├── indexIntoEnum.symbols │ ├── indexIntoEnum.types │ ├── indexSignatureAndMappedType.errors.txt │ ├── indexSignatureAndMappedType.js │ ├── indexSignatureAndMappedType.symbols │ ├── indexSignatureAndMappedType.types │ ├── indexSignatureInOtherFile.errors.txt │ ├── indexSignatureInOtherFile.js │ ├── indexSignatureInOtherFile.symbols │ ├── indexSignatureInOtherFile.types │ ├── indexSignatureInOtherFile1.errors.txt │ ├── indexSignatureInOtherFile1.js │ ├── indexSignatureInOtherFile1.symbols │ ├── indexSignatureInOtherFile1.types │ ├── indexSignatureMustHaveTypeAnnotation.errors.txt │ ├── indexSignatureMustHaveTypeAnnotation.js │ ├── indexSignatureMustHaveTypeAnnotation.symbols │ ├── indexSignatureMustHaveTypeAnnotation.types │ ├── indexSignatureOfTypeUnknownStillRequiresIndexSignature.errors.txt │ ├── indexSignatureOfTypeUnknownStillRequiresIndexSignature.js │ ├── indexSignatureOfTypeUnknownStillRequiresIndexSignature.symbols │ ├── indexSignatureOfTypeUnknownStillRequiresIndexSignature.types │ ├── indexSignatureTypeCheck.errors.txt │ ├── indexSignatureTypeCheck.js │ ├── indexSignatureTypeCheck.symbols │ ├── indexSignatureTypeCheck.types │ ├── indexSignatureTypeCheck2.errors.txt │ ├── indexSignatureTypeCheck2.js │ ├── indexSignatureTypeCheck2.symbols │ ├── indexSignatureTypeCheck2.types │ ├── indexSignatureTypeInference.errors.txt │ ├── indexSignatureTypeInference.js │ ├── indexSignatureTypeInference.symbols │ ├── indexSignatureTypeInference.types │ ├── indexSignatureWithAccessibilityModifier.errors.txt │ ├── indexSignatureWithAccessibilityModifier.js │ ├── indexSignatureWithAccessibilityModifier.symbols │ ├── indexSignatureWithAccessibilityModifier.types │ ├── indexSignatureWithInitializer.errors.txt │ ├── indexSignatureWithInitializer.js │ ├── indexSignatureWithInitializer.symbols │ ├── indexSignatureWithInitializer.types │ ├── indexSignatureWithInitializer1.errors.txt │ ├── indexSignatureWithInitializer1.js │ ├── indexSignatureWithInitializer1.symbols │ ├── indexSignatureWithInitializer1.types │ ├── indexSignatureWithTrailingComma.errors.txt │ ├── indexSignatureWithTrailingComma.js │ ├── indexSignatureWithTrailingComma.symbols │ ├── indexSignatureWithTrailingComma.types │ ├── indexSignatureWithoutTypeAnnotation1..js │ ├── indexSignatureWithoutTypeAnnotation1..symbols │ ├── indexSignatureWithoutTypeAnnotation1..types │ ├── indexSignatureWithoutTypeAnnotation1.errors.txt │ ├── indexSignatureWithoutTypeAnnotation1.js │ ├── indexSignatureWithoutTypeAnnotation1.symbols │ ├── indexSignatureWithoutTypeAnnotation1.types │ ├── indexSignatures1.errors.txt │ ├── indexSignatures1.js │ ├── indexSignatures1.symbols │ ├── indexSignatures1.types │ ├── indexSignaturesInferentialTyping.errors.txt │ ├── indexSignaturesInferentialTyping.js │ ├── indexSignaturesInferentialTyping.symbols │ ├── indexSignaturesInferentialTyping.types │ ├── indexTypeCheck.errors.txt │ ├── indexTypeCheck.js │ ├── indexTypeCheck.symbols │ ├── indexTypeCheck.types │ ├── indexTypeNoSubstitutionTemplateLiteral.js │ ├── indexTypeNoSubstitutionTemplateLiteral.symbols │ ├── indexTypeNoSubstitutionTemplateLiteral.types │ ├── indexWithUndefinedAndNull.errors.txt │ ├── indexWithUndefinedAndNull.js │ ├── indexWithUndefinedAndNull.symbols │ ├── indexWithUndefinedAndNull.types │ ├── indexWithUndefinedAndNullStrictNullChecks.errors.txt │ ├── indexWithUndefinedAndNullStrictNullChecks.js │ ├── indexWithUndefinedAndNullStrictNullChecks.symbols │ ├── indexWithUndefinedAndNullStrictNullChecks.types │ ├── indexWithoutParamType.errors.txt │ ├── indexWithoutParamType.js │ ├── indexWithoutParamType.symbols │ ├── indexWithoutParamType.types │ ├── indexWithoutParamType2.errors.txt │ ├── indexWithoutParamType2.js │ ├── indexWithoutParamType2.symbols │ ├── indexWithoutParamType2.types │ ├── indexedAccessAndNullableNarrowing.symbols │ ├── indexedAccessAndNullableNarrowing.types │ ├── indexedAccessCanBeHighOrder.js │ ├── indexedAccessCanBeHighOrder.symbols │ ├── indexedAccessCanBeHighOrder.types │ ├── indexedAccessConstraints.errors.txt │ ├── indexedAccessConstraints.symbols │ ├── indexedAccessConstraints.types │ ├── indexedAccessImplicitlyAny.errors.txt │ ├── indexedAccessImplicitlyAny.js │ ├── indexedAccessImplicitlyAny.symbols │ ├── indexedAccessImplicitlyAny.types │ ├── indexedAccessKeyofNestedSimplifiedSubstituteUnwrapped.errors.txt │ ├── indexedAccessKeyofNestedSimplifiedSubstituteUnwrapped.js │ ├── indexedAccessKeyofNestedSimplifiedSubstituteUnwrapped.symbols │ ├── indexedAccessKeyofNestedSimplifiedSubstituteUnwrapped.types │ ├── indexedAccessNormalization.js │ ├── indexedAccessNormalization.symbols │ ├── indexedAccessNormalization.types │ ├── indexedAccessPrivateMemberOfGenericConstraint.errors.txt │ ├── indexedAccessPrivateMemberOfGenericConstraint.js │ ├── indexedAccessPrivateMemberOfGenericConstraint.symbols │ ├── indexedAccessPrivateMemberOfGenericConstraint.types │ ├── indexedAccessRelation.errors.txt │ ├── indexedAccessRelation.js │ ├── indexedAccessRelation.symbols │ ├── indexedAccessRelation.types │ ├── indexedAccessRetainsIndexSignature.js │ ├── indexedAccessRetainsIndexSignature.symbols │ ├── indexedAccessRetainsIndexSignature.types │ ├── indexedAccessToThisTypeOnIntersection01.js │ ├── indexedAccessToThisTypeOnIntersection01.symbols │ ├── indexedAccessToThisTypeOnIntersection01.types │ ├── indexedAccessTypeConstraints.js │ ├── indexedAccessTypeConstraints.symbols │ ├── indexedAccessTypeConstraints.types │ ├── indexedAccessWithFreshObjectLiteral.errors.txt │ ├── indexedAccessWithFreshObjectLiteral.js │ ├── indexedAccessWithFreshObjectLiteral.symbols │ ├── indexedAccessWithFreshObjectLiteral.types │ ├── indexedAccessWithVariableElement.errors.txt │ ├── indexedAccessWithVariableElement.symbols │ ├── indexedAccessWithVariableElement.types │ ├── indexer.js │ ├── indexer.symbols │ ├── indexer.types │ ├── indexer2.js │ ├── indexer2.symbols │ ├── indexer2.types │ ├── indexer2A.errors.txt │ ├── indexer2A.js │ ├── indexer2A.symbols │ ├── indexer2A.types │ ├── indexer3.js │ ├── indexer3.symbols │ ├── indexer3.types │ ├── indexerA.errors.txt │ ├── indexerA.js │ ├── indexerA.symbols │ ├── indexerA.types │ ├── indexerAsOptional.errors.txt │ ├── indexerAsOptional.js │ ├── indexerAsOptional.symbols │ ├── indexerAsOptional.types │ ├── indexerAssignability.errors.txt │ ├── indexerAssignability.js │ ├── indexerAssignability.symbols │ ├── indexerAssignability.types │ ├── indexerConstraints.errors.txt │ ├── indexerConstraints.js │ ├── indexerConstraints.symbols │ ├── indexerConstraints.types │ ├── indexerConstraints2.errors.txt │ ├── indexerConstraints2.js │ ├── indexerConstraints2.symbols │ ├── indexerConstraints2.types │ ├── indexerReturningTypeParameter1.errors.txt │ ├── indexerReturningTypeParameter1.js │ ├── indexerReturningTypeParameter1.symbols │ ├── indexerReturningTypeParameter1.types │ ├── indexerSignatureWithRestParam.errors.txt │ ├── indexerSignatureWithRestParam.js │ ├── indexerSignatureWithRestParam.symbols │ ├── indexerSignatureWithRestParam.types │ ├── indexerWithTuple.errors.txt │ ├── indexerWithTuple.js │ ├── indexerWithTuple.symbols │ ├── indexerWithTuple.types │ ├── indexersInClassType.js │ ├── indexersInClassType.symbols │ ├── indexersInClassType.types │ ├── indexingTypesWithNever.js │ ├── indexingTypesWithNever.symbols │ ├── indexingTypesWithNever.types │ ├── indirectDiscriminantAndExcessProperty.errors.txt │ ├── indirectDiscriminantAndExcessProperty.js │ ├── indirectDiscriminantAndExcessProperty.symbols │ ├── indirectDiscriminantAndExcessProperty.types │ ├── indirectGlobalSymbolPartOfObjectType.js │ ├── indirectGlobalSymbolPartOfObjectType.symbols │ ├── indirectGlobalSymbolPartOfObjectType.types │ ├── indirectJsRequireRename.baseline.jsonc │ ├── indirectSelfReference.errors.txt │ ├── indirectSelfReference.js │ ├── indirectSelfReference.symbols │ ├── indirectSelfReference.types │ ├── indirectSelfReferenceGeneric.errors.txt │ ├── indirectSelfReferenceGeneric.js │ ├── indirectSelfReferenceGeneric.symbols │ ├── indirectSelfReferenceGeneric.types │ ├── indirectTypeParameterReferences.js │ ├── indirectTypeParameterReferences.symbols │ ├── indirectTypeParameterReferences.types │ ├── indirectUniqueSymbolDeclarationEmit.js │ ├── indirectUniqueSymbolDeclarationEmit.symbols │ ├── indirectUniqueSymbolDeclarationEmit.types │ ├── inexistentPropertyInsideToStringType.errors.txt │ ├── inexistentPropertyInsideToStringType.symbols │ ├── inexistentPropertyInsideToStringType.types │ ├── inferConditionalConstraintMappedMember.js │ ├── inferConditionalConstraintMappedMember.symbols │ ├── inferConditionalConstraintMappedMember.types │ ├── inferFromAnnotatedReturn1.errors.txt │ ├── inferFromAnnotatedReturn1.symbols │ ├── inferFromAnnotatedReturn1.types │ ├── inferFromBindingPattern.js │ ├── inferFromBindingPattern.symbols │ ├── inferFromBindingPattern.types │ ├── inferFromGenericFunctionReturnTypes1.errors.txt │ ├── inferFromGenericFunctionReturnTypes1.js │ ├── inferFromGenericFunctionReturnTypes1.symbols │ ├── inferFromGenericFunctionReturnTypes1.types │ ├── inferFromGenericFunctionReturnTypes2.errors.txt │ ├── inferFromGenericFunctionReturnTypes2.js │ ├── inferFromGenericFunctionReturnTypes2.symbols │ ├── inferFromGenericFunctionReturnTypes2.types │ ├── inferFromGenericFunctionReturnTypes3.errors.txt │ ├── inferFromGenericFunctionReturnTypes3.js │ ├── inferFromGenericFunctionReturnTypes3.symbols │ ├── inferFromGenericFunctionReturnTypes3.types │ ├── inferFromNestedSameShapeTuple.errors.txt │ ├── inferFromNestedSameShapeTuple.symbols │ ├── inferFromNestedSameShapeTuple.types │ ├── inferObjectTypeFromStringLiteralToKeyof.js │ ├── inferObjectTypeFromStringLiteralToKeyof.symbols │ ├── inferObjectTypeFromStringLiteralToKeyof.types │ ├── inferParameterWithMethodCallInitializer.js │ ├── inferParameterWithMethodCallInitializer.symbols │ ├── inferParameterWithMethodCallInitializer.types │ ├── inferPropertyWithContextSensitiveReturnStatement.symbols │ ├── inferPropertyWithContextSensitiveReturnStatement.types │ ├── inferRestArgumentsMappedTuple.js │ ├── inferRestArgumentsMappedTuple.symbols │ ├── inferRestArgumentsMappedTuple.types │ ├── inferSecondaryParameter.js │ ├── inferSecondaryParameter.symbols │ ├── inferSecondaryParameter.types │ ├── inferSetterParamType.errors.txt │ ├── inferSetterParamType.js │ ├── inferSetterParamType.symbols │ ├── inferSetterParamType.types │ ├── inferStringLiteralUnionForBindingElement.js │ ├── inferStringLiteralUnionForBindingElement.symbols │ ├── inferStringLiteralUnionForBindingElement.types │ ├── inferTInParentheses.js │ ├── inferTInParentheses.symbols │ ├── inferTInParentheses.types │ ├── inferThis.symbols │ ├── inferThis.types │ ├── inferThisType.js │ ├── inferThisType.symbols │ ├── inferThisType.types │ ├── inferTupleFromBindingPattern.js │ ├── inferTupleFromBindingPattern.symbols │ ├── inferTupleFromBindingPattern.types │ ├── inferTypeArgumentsInSignatureWithRestParameters.js │ ├── inferTypeArgumentsInSignatureWithRestParameters.symbols │ ├── inferTypeArgumentsInSignatureWithRestParameters.types │ ├── inferTypeConstraintInstantiationCircularity.js │ ├── inferTypeConstraintInstantiationCircularity.symbols │ ├── inferTypeConstraintInstantiationCircularity.types │ ├── inferTypeParameterConstraints.js │ ├── inferTypeParameterConstraints.symbols │ ├── inferTypeParameterConstraints.types │ ├── inferTypePredicates.errors.txt │ ├── inferTypePredicates.js │ ├── inferTypePredicates.symbols │ ├── inferTypePredicates.types │ ├── inferTypes1.errors.txt │ ├── inferTypes1.js │ ├── inferTypes1.symbols │ ├── inferTypes1.types │ ├── inferTypes2.js │ ├── inferTypes2.symbols │ ├── inferTypes2.types │ ├── inferTypesInvalidExtendsDeclaration.errors.txt │ ├── inferTypesInvalidExtendsDeclaration.js │ ├── inferTypesInvalidExtendsDeclaration.symbols │ ├── inferTypesInvalidExtendsDeclaration.types │ ├── inferTypesWithExtends1.js │ ├── inferTypesWithExtends1.symbols │ ├── inferTypesWithExtends1.types │ ├── inferTypesWithExtends2.errors.txt │ ├── inferTypesWithExtends2.js │ ├── inferTypesWithExtends2.symbols │ ├── inferTypesWithExtends2.types │ ├── inferTypesWithExtendsDependingOnTypeVariables.symbols │ ├── inferTypesWithExtendsDependingOnTypeVariables.types │ ├── inferTypesWithFixedTupleExtendsAtVariadicPosition.symbols │ ├── inferTypesWithFixedTupleExtendsAtVariadicPosition.types │ ├── inferenceAndHKTs.symbols │ ├── inferenceAndHKTs.types │ ├── inferenceAndSelfReferentialConstraint.js │ ├── inferenceAndSelfReferentialConstraint.symbols │ ├── inferenceAndSelfReferentialConstraint.types │ ├── inferenceContextualReturnTypeUnion1.symbols │ ├── inferenceContextualReturnTypeUnion1.types │ ├── inferenceContextualReturnTypeUnion2.symbols │ ├── inferenceContextualReturnTypeUnion2.types │ ├── inferenceContextualReturnTypeUnion3.symbols │ ├── inferenceContextualReturnTypeUnion3.types │ ├── inferenceContextualReturnTypeUnion4.symbols │ ├── inferenceContextualReturnTypeUnion4.types │ ├── inferenceDoesNotAddUndefinedOrNull.js │ ├── inferenceDoesNotAddUndefinedOrNull.symbols │ ├── inferenceDoesNotAddUndefinedOrNull.types │ ├── inferenceDoesntCompareAgainstUninstantiatedTypeParameter.js │ ├── inferenceDoesntCompareAgainstUninstantiatedTypeParameter.symbols │ ├── inferenceDoesntCompareAgainstUninstantiatedTypeParameter.types │ ├── inferenceErasedSignatures.js │ ├── inferenceErasedSignatures.symbols │ ├── inferenceErasedSignatures.types │ ├── inferenceExactOptionalProperties1.symbols │ ├── inferenceExactOptionalProperties1.types │ ├── inferenceExactOptionalProperties2.errors.txt │ ├── inferenceExactOptionalProperties2.symbols │ ├── inferenceExactOptionalProperties2.types │ ├── inferenceFromGenericClassNoCrash1.errors.txt │ ├── inferenceFromGenericClassNoCrash1.symbols │ ├── inferenceFromGenericClassNoCrash1.types │ ├── inferenceFromIncompleteSource.errors.txt │ ├── inferenceFromIncompleteSource.js │ ├── inferenceFromIncompleteSource.symbols │ ├── inferenceFromIncompleteSource.types │ ├── inferenceFromParameterlessLambda.js │ ├── inferenceFromParameterlessLambda.symbols │ ├── inferenceFromParameterlessLambda.types │ ├── inferenceLimit.js │ ├── inferenceLimit.symbols │ ├── inferenceLimit.types │ ├── inferenceOfNullableObjectTypesWithCommonBase.js │ ├── inferenceOfNullableObjectTypesWithCommonBase.symbols │ ├── inferenceOfNullableObjectTypesWithCommonBase.types │ ├── inferenceOptionalProperties.js │ ├── inferenceOptionalProperties.symbols │ ├── inferenceOptionalProperties.types │ ├── inferenceOptionalPropertiesStrict.js │ ├── inferenceOptionalPropertiesStrict.symbols │ ├── inferenceOptionalPropertiesStrict.types │ ├── inferenceOptionalPropertiesToIndexSignatures.js │ ├── inferenceOptionalPropertiesToIndexSignatures.symbols │ ├── inferenceOptionalPropertiesToIndexSignatures.types │ ├── inferenceOuterResultNotIncorrectlyInstantiatedWithInnerResult.errors.txt │ ├── inferenceOuterResultNotIncorrectlyInstantiatedWithInnerResult.js │ ├── inferenceOuterResultNotIncorrectlyInstantiatedWithInnerResult.symbols │ ├── inferenceOuterResultNotIncorrectlyInstantiatedWithInnerResult.types │ ├── inferenceShouldFailOnEvolvingArrays.errors.txt │ ├── inferenceShouldFailOnEvolvingArrays.js │ ├── inferenceShouldFailOnEvolvingArrays.symbols │ ├── inferenceShouldFailOnEvolvingArrays.types │ ├── inferenceUnionOfObjectsMappedContextualType.js │ ├── inferenceUnionOfObjectsMappedContextualType.symbols │ ├── inferenceUnionOfObjectsMappedContextualType.types │ ├── inferentialTypingObjectLiteralMethod1.js │ ├── inferentialTypingObjectLiteralMethod1.symbols │ ├── inferentialTypingObjectLiteralMethod1.types │ ├── inferentialTypingObjectLiteralMethod2.js │ ├── inferentialTypingObjectLiteralMethod2.symbols │ ├── inferentialTypingObjectLiteralMethod2.types │ ├── inferentialTypingUsingApparentType1.errors.txt │ ├── inferentialTypingUsingApparentType1.js │ ├── inferentialTypingUsingApparentType1.symbols │ ├── inferentialTypingUsingApparentType1.types │ ├── inferentialTypingUsingApparentType2.errors.txt │ ├── inferentialTypingUsingApparentType2.js │ ├── inferentialTypingUsingApparentType2.symbols │ ├── inferentialTypingUsingApparentType2.types │ ├── inferentialTypingUsingApparentType3.js │ ├── inferentialTypingUsingApparentType3.symbols │ ├── inferentialTypingUsingApparentType3.types │ ├── inferentialTypingWithFunctionType.js │ ├── inferentialTypingWithFunctionType.symbols │ ├── inferentialTypingWithFunctionType.types │ ├── inferentialTypingWithFunctionType2.js │ ├── inferentialTypingWithFunctionType2.symbols │ ├── inferentialTypingWithFunctionType2.types │ ├── inferentialTypingWithFunctionTypeNested.js │ ├── inferentialTypingWithFunctionTypeNested.symbols │ ├── inferentialTypingWithFunctionTypeNested.types │ ├── inferentialTypingWithFunctionTypeSyntacticScenarios.errors.txt │ ├── inferentialTypingWithFunctionTypeSyntacticScenarios.js │ ├── inferentialTypingWithFunctionTypeSyntacticScenarios.symbols │ ├── inferentialTypingWithFunctionTypeSyntacticScenarios.types │ ├── inferentialTypingWithFunctionTypeZip.errors.txt │ ├── inferentialTypingWithFunctionTypeZip.js │ ├── inferentialTypingWithFunctionTypeZip.symbols │ ├── inferentialTypingWithFunctionTypeZip.types │ ├── inferentialTypingWithObjectLiteralProperties.errors.txt │ ├── inferentialTypingWithObjectLiteralProperties.js │ ├── inferentialTypingWithObjectLiteralProperties.symbols │ ├── inferentialTypingWithObjectLiteralProperties.types │ ├── inferentiallyTypingAnEmptyArray.errors.txt │ ├── inferentiallyTypingAnEmptyArray.js │ ├── inferentiallyTypingAnEmptyArray.symbols │ ├── inferentiallyTypingAnEmptyArray.types │ ├── inferingFromAny.symbols │ ├── inferingFromAny.types │ ├── inferredFunctionReturnTypeIsEmptyType.js │ ├── inferredFunctionReturnTypeIsEmptyType.symbols │ ├── inferredFunctionReturnTypeIsEmptyType.types │ ├── inferredIndexerOnNamespaceImport.js │ ├── inferredIndexerOnNamespaceImport.symbols │ ├── inferredIndexerOnNamespaceImport.types │ ├── inferredNonidentifierTypesGetQuotes.js │ ├── inferredNonidentifierTypesGetQuotes.symbols │ ├── inferredNonidentifierTypesGetQuotes.types │ ├── inferredRestTypeFixedOnce.js │ ├── inferredRestTypeFixedOnce.symbols │ ├── inferredRestTypeFixedOnce.types │ ├── inferredReturnTypeIncorrectReuse1.js │ ├── inferredReturnTypeIncorrectReuse1.symbols │ ├── inferredReturnTypeIncorrectReuse1.types │ ├── inferrenceInfiniteLoopWithSubtyping.js │ ├── inferrenceInfiniteLoopWithSubtyping.symbols │ ├── inferrenceInfiniteLoopWithSubtyping.types │ ├── inferringAnyFunctionType1.js │ ├── inferringAnyFunctionType1.symbols │ ├── inferringAnyFunctionType1.types │ ├── inferringAnyFunctionType2.js │ ├── inferringAnyFunctionType2.symbols │ ├── inferringAnyFunctionType2.types │ ├── inferringAnyFunctionType3.js │ ├── inferringAnyFunctionType3.symbols │ ├── inferringAnyFunctionType3.types │ ├── inferringAnyFunctionType4.js │ ├── inferringAnyFunctionType4.symbols │ ├── inferringAnyFunctionType4.types │ ├── inferringAnyFunctionType5.js │ ├── inferringAnyFunctionType5.symbols │ ├── inferringAnyFunctionType5.types │ ├── inferringClassMembersFromAssignments.errors.txt │ ├── inferringClassMembersFromAssignments.js │ ├── inferringClassMembersFromAssignments.symbols │ ├── inferringClassMembersFromAssignments.types │ ├── inferringClassMembersFromAssignments2.symbols │ ├── inferringClassMembersFromAssignments2.types │ ├── inferringClassMembersFromAssignments3.symbols │ ├── inferringClassMembersFromAssignments3.types │ ├── inferringClassMembersFromAssignments4.symbols │ ├── inferringClassMembersFromAssignments4.types │ ├── inferringClassMembersFromAssignments5.symbols │ ├── inferringClassMembersFromAssignments5.types │ ├── inferringClassMembersFromAssignments6.symbols │ ├── inferringClassMembersFromAssignments6.types │ ├── inferringClassMembersFromAssignments7.symbols │ ├── inferringClassMembersFromAssignments7.types │ ├── inferringClassMembersFromAssignments8.js │ ├── inferringClassMembersFromAssignments8.symbols │ ├── inferringClassMembersFromAssignments8.types │ ├── inferringClassStaticMembersFromAssignments.symbols │ ├── inferringClassStaticMembersFromAssignments.types │ ├── inferringReturnTypeFromConstructSignatureGeneric.js │ ├── inferringReturnTypeFromConstructSignatureGeneric.symbols │ ├── inferringReturnTypeFromConstructSignatureGeneric.types │ ├── infiniteConstraints.errors.txt │ ├── infiniteConstraints.js │ ├── infiniteConstraints.symbols │ ├── infiniteConstraints.types │ ├── infiniteExpandingTypeThroughInheritanceInstantiation.js │ ├── infiniteExpandingTypeThroughInheritanceInstantiation.symbols │ ├── infiniteExpandingTypeThroughInheritanceInstantiation.types │ ├── infiniteExpansionThroughInstantiation.errors.txt │ ├── infiniteExpansionThroughInstantiation.js │ ├── infiniteExpansionThroughInstantiation.symbols │ ├── infiniteExpansionThroughInstantiation.types │ ├── infiniteExpansionThroughInstantiation2.js │ ├── infiniteExpansionThroughInstantiation2.symbols │ ├── infiniteExpansionThroughInstantiation2.types │ ├── infiniteExpansionThroughTypeInference.js │ ├── infiniteExpansionThroughTypeInference.symbols │ ├── infiniteExpansionThroughTypeInference.types │ ├── infinitelyExpandingBaseTypes1.js │ ├── infinitelyExpandingBaseTypes1.symbols │ ├── infinitelyExpandingBaseTypes1.types │ ├── infinitelyExpandingBaseTypes2.errors.txt │ ├── infinitelyExpandingBaseTypes2.js │ ├── infinitelyExpandingBaseTypes2.symbols │ ├── infinitelyExpandingBaseTypes2.types │ ├── infinitelyExpandingOverloads.errors.txt │ ├── infinitelyExpandingOverloads.js │ ├── infinitelyExpandingOverloads.symbols │ ├── infinitelyExpandingOverloads.types │ ├── infinitelyExpandingTypeAssignability.errors.txt │ ├── infinitelyExpandingTypeAssignability.js │ ├── infinitelyExpandingTypeAssignability.symbols │ ├── infinitelyExpandingTypeAssignability.types │ ├── infinitelyExpandingTypes1.errors.txt │ ├── infinitelyExpandingTypes1.js │ ├── infinitelyExpandingTypes1.symbols │ ├── infinitelyExpandingTypes1.types │ ├── infinitelyExpandingTypes2.errors.txt │ ├── infinitelyExpandingTypes2.js │ ├── infinitelyExpandingTypes2.symbols │ ├── infinitelyExpandingTypes2.types │ ├── infinitelyExpandingTypes3.errors.txt │ ├── infinitelyExpandingTypes3.js │ ├── infinitelyExpandingTypes3.symbols │ ├── infinitelyExpandingTypes3.types │ ├── infinitelyExpandingTypes4.errors.txt │ ├── infinitelyExpandingTypes4.js │ ├── infinitelyExpandingTypes4.symbols │ ├── infinitelyExpandingTypes4.types │ ├── infinitelyExpandingTypes5.js │ ├── infinitelyExpandingTypes5.symbols │ ├── infinitelyExpandingTypes5.types │ ├── infinitelyExpandingTypesNonGenericBase.errors.txt │ ├── infinitelyExpandingTypesNonGenericBase.js │ ├── infinitelyExpandingTypesNonGenericBase.symbols │ ├── infinitelyExpandingTypesNonGenericBase.types │ ├── infinitelyGenerativeInheritance1.js │ ├── infinitelyGenerativeInheritance1.symbols │ ├── infinitelyGenerativeInheritance1.types │ ├── inheritFromGenericTypeParameter.errors.txt │ ├── inheritFromGenericTypeParameter.js │ ├── inheritFromGenericTypeParameter.symbols │ ├── inheritFromGenericTypeParameter.types │ ├── inheritSameNamePrivatePropertiesFromDifferentOrigins.errors.txt │ ├── inheritSameNamePrivatePropertiesFromDifferentOrigins.js │ ├── inheritSameNamePrivatePropertiesFromDifferentOrigins.symbols │ ├── inheritSameNamePrivatePropertiesFromDifferentOrigins.types │ ├── inheritSameNamePrivatePropertiesFromSameOrigin.errors.txt │ ├── inheritSameNamePrivatePropertiesFromSameOrigin.js │ ├── inheritSameNamePrivatePropertiesFromSameOrigin.symbols │ ├── inheritSameNamePrivatePropertiesFromSameOrigin.types │ ├── inheritSameNamePropertiesWithDifferentOptionality.errors.txt │ ├── inheritSameNamePropertiesWithDifferentOptionality.js │ ├── inheritSameNamePropertiesWithDifferentOptionality.symbols │ ├── inheritSameNamePropertiesWithDifferentOptionality.types │ ├── inheritSameNamePropertiesWithDifferentVisibility.errors.txt │ ├── inheritSameNamePropertiesWithDifferentVisibility.js │ ├── inheritSameNamePropertiesWithDifferentVisibility.symbols │ ├── inheritSameNamePropertiesWithDifferentVisibility.types │ ├── inheritance.errors.txt │ ├── inheritance.js │ ├── inheritance.symbols │ ├── inheritance.types │ ├── inheritance1.errors.txt │ ├── inheritance1.js │ ├── inheritance1.symbols │ ├── inheritance1.types │ ├── inheritanceGrandParentPrivateMemberCollision.errors.txt │ ├── inheritanceGrandParentPrivateMemberCollision.js │ ├── inheritanceGrandParentPrivateMemberCollision.symbols │ ├── inheritanceGrandParentPrivateMemberCollision.types │ ├── inheritanceGrandParentPrivateMemberCollisionWithPublicMember.errors.txt │ ├── inheritanceGrandParentPrivateMemberCollisionWithPublicMember.js │ ├── inheritanceGrandParentPrivateMemberCollisionWithPublicMember.symbols │ ├── inheritanceGrandParentPrivateMemberCollisionWithPublicMember.types │ ├── inheritanceGrandParentPublicMemberCollisionWithPrivateMember.errors.txt │ ├── inheritanceGrandParentPublicMemberCollisionWithPrivateMember.js │ ├── inheritanceGrandParentPublicMemberCollisionWithPrivateMember.symbols │ ├── inheritanceGrandParentPublicMemberCollisionWithPrivateMember.types │ ├── inheritanceMemberAccessorOverridingAccessor.js │ ├── inheritanceMemberAccessorOverridingAccessor.symbols │ ├── inheritanceMemberAccessorOverridingAccessor.types │ ├── inheritanceMemberAccessorOverridingMethod(target=es2015).errors.txt │ ├── inheritanceMemberAccessorOverridingMethod(target=es2015).js │ ├── inheritanceMemberAccessorOverridingMethod(target=es2015).symbols │ ├── inheritanceMemberAccessorOverridingMethod(target=es2015).types │ ├── inheritanceMemberAccessorOverridingMethod(target=es5).errors.txt │ ├── inheritanceMemberAccessorOverridingMethod(target=es5).js │ ├── inheritanceMemberAccessorOverridingMethod(target=es5).symbols │ ├── inheritanceMemberAccessorOverridingMethod(target=es5).types │ ├── inheritanceMemberAccessorOverridingProperty.errors.txt │ ├── inheritanceMemberAccessorOverridingProperty.js │ ├── inheritanceMemberAccessorOverridingProperty.symbols │ ├── inheritanceMemberAccessorOverridingProperty.types │ ├── inheritanceMemberFuncOverridingAccessor.errors.txt │ ├── inheritanceMemberFuncOverridingAccessor.js │ ├── inheritanceMemberFuncOverridingAccessor.symbols │ ├── inheritanceMemberFuncOverridingAccessor.types │ ├── inheritanceMemberFuncOverridingMethod.js │ ├── inheritanceMemberFuncOverridingMethod.symbols │ ├── inheritanceMemberFuncOverridingMethod.types │ ├── inheritanceMemberFuncOverridingProperty.errors.txt │ ├── inheritanceMemberFuncOverridingProperty.js │ ├── inheritanceMemberFuncOverridingProperty.symbols │ ├── inheritanceMemberFuncOverridingProperty.types │ ├── inheritanceMemberPropertyOverridingAccessor.errors.txt │ ├── inheritanceMemberPropertyOverridingAccessor.js │ ├── inheritanceMemberPropertyOverridingAccessor.symbols │ ├── inheritanceMemberPropertyOverridingAccessor.types │ ├── inheritanceMemberPropertyOverridingMethod.js │ ├── inheritanceMemberPropertyOverridingMethod.symbols │ ├── inheritanceMemberPropertyOverridingMethod.types │ ├── inheritanceMemberPropertyOverridingProperty.js │ ├── inheritanceMemberPropertyOverridingProperty.symbols │ ├── inheritanceMemberPropertyOverridingProperty.types │ ├── inheritanceOfGenericConstructorMethod1.js │ ├── inheritanceOfGenericConstructorMethod1.symbols │ ├── inheritanceOfGenericConstructorMethod1.types │ ├── inheritanceOfGenericConstructorMethod2.js │ ├── inheritanceOfGenericConstructorMethod2.symbols │ ├── inheritanceOfGenericConstructorMethod2.types │ ├── inheritanceStaticAccessorOverridingAccessor.js │ ├── inheritanceStaticAccessorOverridingAccessor.symbols │ ├── inheritanceStaticAccessorOverridingAccessor.types │ ├── inheritanceStaticAccessorOverridingMethod.errors.txt │ ├── inheritanceStaticAccessorOverridingMethod.js │ ├── inheritanceStaticAccessorOverridingMethod.symbols │ ├── inheritanceStaticAccessorOverridingMethod.types │ ├── inheritanceStaticAccessorOverridingProperty.js │ ├── inheritanceStaticAccessorOverridingProperty.symbols │ ├── inheritanceStaticAccessorOverridingProperty.types │ ├── inheritanceStaticFuncOverridingAccessor.errors.txt │ ├── inheritanceStaticFuncOverridingAccessor.js │ ├── inheritanceStaticFuncOverridingAccessor.symbols │ ├── inheritanceStaticFuncOverridingAccessor.types │ ├── inheritanceStaticFuncOverridingAccessorOfFuncType.js │ ├── inheritanceStaticFuncOverridingAccessorOfFuncType.symbols │ ├── inheritanceStaticFuncOverridingAccessorOfFuncType.types │ ├── inheritanceStaticFuncOverridingMethod.js │ ├── inheritanceStaticFuncOverridingMethod.symbols │ ├── inheritanceStaticFuncOverridingMethod.types │ ├── inheritanceStaticFuncOverridingProperty.errors.txt │ ├── inheritanceStaticFuncOverridingProperty.js │ ├── inheritanceStaticFuncOverridingProperty.symbols │ ├── inheritanceStaticFuncOverridingProperty.types │ ├── inheritanceStaticFuncOverridingPropertyOfFuncType.js │ ├── inheritanceStaticFuncOverridingPropertyOfFuncType.symbols │ ├── inheritanceStaticFuncOverridingPropertyOfFuncType.types │ ├── inheritanceStaticFunctionOverridingInstanceProperty.js │ ├── inheritanceStaticFunctionOverridingInstanceProperty.symbols │ ├── inheritanceStaticFunctionOverridingInstanceProperty.types │ ├── inheritanceStaticMembersCompatible.js │ ├── inheritanceStaticMembersCompatible.symbols │ ├── inheritanceStaticMembersCompatible.types │ ├── inheritanceStaticMembersIncompatible.errors.txt │ ├── inheritanceStaticMembersIncompatible.js │ ├── inheritanceStaticMembersIncompatible.symbols │ ├── inheritanceStaticMembersIncompatible.types │ ├── inheritanceStaticPropertyOverridingAccessor.js │ ├── inheritanceStaticPropertyOverridingAccessor.symbols │ ├── inheritanceStaticPropertyOverridingAccessor.types │ ├── inheritanceStaticPropertyOverridingMethod.errors.txt │ ├── inheritanceStaticPropertyOverridingMethod.js │ ├── inheritanceStaticPropertyOverridingMethod.symbols │ ├── inheritanceStaticPropertyOverridingMethod.types │ ├── inheritanceStaticPropertyOverridingProperty.js │ ├── inheritanceStaticPropertyOverridingProperty.symbols │ ├── inheritanceStaticPropertyOverridingProperty.types │ ├── inheritedConstructorPropertyContextualType.js │ ├── inheritedConstructorPropertyContextualType.symbols │ ├── inheritedConstructorPropertyContextualType.types │ ├── inheritedConstructorWithRestParams.errors.txt │ ├── inheritedConstructorWithRestParams.js │ ├── inheritedConstructorWithRestParams.symbols │ ├── inheritedConstructorWithRestParams.types │ ├── inheritedConstructorWithRestParams2.errors.txt │ ├── inheritedConstructorWithRestParams2.js │ ├── inheritedConstructorWithRestParams2.symbols │ ├── inheritedConstructorWithRestParams2.types │ ├── inheritedFunctionAssignmentCompatibility.js │ ├── inheritedFunctionAssignmentCompatibility.symbols │ ├── inheritedFunctionAssignmentCompatibility.types │ ├── inheritedGenericCallSignature.errors.txt │ ├── inheritedGenericCallSignature.js │ ├── inheritedGenericCallSignature.symbols │ ├── inheritedGenericCallSignature.types │ ├── inheritedMembersAndIndexSignaturesFromDifferentBases.errors.txt │ ├── inheritedMembersAndIndexSignaturesFromDifferentBases.js │ ├── inheritedMembersAndIndexSignaturesFromDifferentBases.symbols │ ├── inheritedMembersAndIndexSignaturesFromDifferentBases.types │ ├── inheritedMembersAndIndexSignaturesFromDifferentBases2.js │ ├── inheritedMembersAndIndexSignaturesFromDifferentBases2.symbols │ ├── inheritedMembersAndIndexSignaturesFromDifferentBases2.types │ ├── inheritedModuleMembersForClodule.errors.txt │ ├── inheritedModuleMembersForClodule.js │ ├── inheritedModuleMembersForClodule.symbols │ ├── inheritedModuleMembersForClodule.types │ ├── inheritedOverloadedSpecializedSignatures.errors.txt │ ├── inheritedOverloadedSpecializedSignatures.js │ ├── inheritedOverloadedSpecializedSignatures.symbols │ ├── inheritedOverloadedSpecializedSignatures.types │ ├── inheritedStringIndexersFromDifferentBaseTypes.errors.txt │ ├── inheritedStringIndexersFromDifferentBaseTypes.js │ ├── inheritedStringIndexersFromDifferentBaseTypes.symbols │ ├── inheritedStringIndexersFromDifferentBaseTypes.types │ ├── inheritedStringIndexersFromDifferentBaseTypes2.errors.txt │ ├── inheritedStringIndexersFromDifferentBaseTypes2.js │ ├── inheritedStringIndexersFromDifferentBaseTypes2.symbols │ ├── inheritedStringIndexersFromDifferentBaseTypes2.types │ ├── initializationOrdering1(target=es2021,usedefineforclassfields=false).js │ ├── initializationOrdering1(target=es2021,usedefineforclassfields=false).symbols │ ├── initializationOrdering1(target=es2021,usedefineforclassfields=false).types │ ├── initializationOrdering1(target=es2021,usedefineforclassfields=true).js │ ├── initializationOrdering1(target=es2021,usedefineforclassfields=true).symbols │ ├── initializationOrdering1(target=es2021,usedefineforclassfields=true).types │ ├── initializationOrdering1(target=es2022,usedefineforclassfields=false).js │ ├── initializationOrdering1(target=es2022,usedefineforclassfields=false).symbols │ ├── initializationOrdering1(target=es2022,usedefineforclassfields=false).types │ ├── initializationOrdering1(target=es2022,usedefineforclassfields=true).errors.txt │ ├── initializationOrdering1(target=es2022,usedefineforclassfields=true).js │ ├── initializationOrdering1(target=es2022,usedefineforclassfields=true).symbols │ ├── initializationOrdering1(target=es2022,usedefineforclassfields=true).types │ ├── initializationOrdering1(target=esnext,usedefineforclassfields=false).js │ ├── initializationOrdering1(target=esnext,usedefineforclassfields=false).symbols │ ├── initializationOrdering1(target=esnext,usedefineforclassfields=false).types │ ├── initializationOrdering1(target=esnext,usedefineforclassfields=true).errors.txt │ ├── initializationOrdering1(target=esnext,usedefineforclassfields=true).js │ ├── initializationOrdering1(target=esnext,usedefineforclassfields=true).symbols │ ├── initializationOrdering1(target=esnext,usedefineforclassfields=true).types │ ├── initializePropertiesWithRenamedLet(target=es2015).js │ ├── initializePropertiesWithRenamedLet(target=es2015).symbols │ ├── initializePropertiesWithRenamedLet(target=es2015).types │ ├── initializePropertiesWithRenamedLet(target=es5).errors.txt │ ├── initializePropertiesWithRenamedLet(target=es5).js │ ├── initializePropertiesWithRenamedLet(target=es5).symbols │ ├── initializePropertiesWithRenamedLet(target=es5).types │ ├── initializedDestructuringAssignmentTypes.errors.txt │ ├── initializedDestructuringAssignmentTypes.js │ ├── initializedDestructuringAssignmentTypes.symbols │ ├── initializedDestructuringAssignmentTypes.types │ ├── initializedParameterBeforeNonoptionalNotOptional.symbols │ ├── initializedParameterBeforeNonoptionalNotOptional.types │ ├── initializerReferencingConstructorLocals.errors.txt │ ├── initializerReferencingConstructorLocals.js │ ├── initializerReferencingConstructorLocals.symbols │ ├── initializerReferencingConstructorLocals.types │ ├── initializerReferencingConstructorParameters.errors.txt │ ├── initializerReferencingConstructorParameters.js │ ├── initializerReferencingConstructorParameters.symbols │ ├── initializerReferencingConstructorParameters.types │ ├── initializerWithThisPropertyAccess.errors.txt │ ├── initializerWithThisPropertyAccess.js │ ├── initializerWithThisPropertyAccess.symbols │ ├── initializerWithThisPropertyAccess.types │ ├── initializersInAmbientEnums.js │ ├── initializersInAmbientEnums.symbols │ ├── initializersInAmbientEnums.types │ ├── initializersInDeclarations.errors.txt │ ├── initializersInDeclarations.symbols │ ├── initializersInDeclarations.types │ ├── initializersWidened.errors.txt │ ├── initializersWidened.js │ ├── initializersWidened.symbols │ ├── initializersWidened.types │ ├── inlayHintsCrash1.baseline │ ├── inlayHintsEnumMemberValue.baseline │ ├── inlayHintsFunctionParameterTypes1.baseline │ ├── inlayHintsFunctionParameterTypes2.baseline │ ├── inlayHintsFunctionParameterTypes3.baseline │ ├── inlayHintsFunctionParameterTypes4.baseline │ ├── inlayHintsFunctionParameterTypes5.baseline │ ├── inlayHintsImportType1.baseline │ ├── inlayHintsImportType2.baseline │ ├── inlayHintsInferredTypePredicate1.baseline │ ├── inlayHintsInteractiveAnyParameter1.baseline │ ├── inlayHintsInteractiveAnyParameter2.baseline │ ├── inlayHintsInteractiveFunctionParameterTypes1.baseline │ ├── inlayHintsInteractiveFunctionParameterTypes2.baseline │ ├── inlayHintsInteractiveFunctionParameterTypes3.baseline │ ├── inlayHintsInteractiveFunctionParameterTypes4.baseline │ ├── inlayHintsInteractiveFunctionParameterTypes5.baseline │ ├── inlayHintsInteractiveImportType1.baseline │ ├── inlayHintsInteractiveImportType2.baseline │ ├── inlayHintsInteractiveInferredTypePredicate1.baseline │ ├── inlayHintsInteractiveJsDocParameterNames.baseline │ ├── inlayHintsInteractiveMultifile1.baseline │ ├── inlayHintsInteractiveMultifileFunctionCalls.baseline │ ├── inlayHintsInteractiveOverloadCall.baseline │ ├── inlayHintsInteractiveParameterNames.baseline │ ├── inlayHintsInteractiveParameterNamesInSpan1.baseline │ ├── inlayHintsInteractiveParameterNamesInSpan2.baseline │ ├── inlayHintsInteractiveParameterNamesWithComments.baseline │ ├── inlayHintsInteractiveRestParameters1.baseline │ ├── inlayHintsInteractiveRestParameters2.baseline │ ├── inlayHintsInteractiveRestParameters3.baseline │ ├── inlayHintsInteractiveReturnType.baseline │ ├── inlayHintsInteractiveTemplateLiteralTypes.baseline │ ├── inlayHintsInteractiveVariableTypes1.baseline │ ├── inlayHintsInteractiveVariableTypes2.baseline │ ├── inlayHintsInteractiveWithClosures.baseline │ ├── inlayHintsJsDocParameterNames.baseline │ ├── inlayHintsMultifile1.baseline │ ├── inlayHintsNoHintWhenArgumentMatchesName.baseline │ ├── inlayHintsNoParameterHints.baseline │ ├── inlayHintsNoVariableTypeHints.baseline │ ├── inlayHintsOverloadCall1.baseline │ ├── inlayHintsOverloadCall2.baseline │ ├── inlayHintsParameterNames.baseline │ ├── inlayHintsParameterNamesInSpan1.baseline │ ├── inlayHintsParameterNamesInSpan2.baseline │ ├── inlayHintsPropertyDeclarations.baseline │ ├── inlayHintsPropertyDeclarations2.baseline │ ├── inlayHintsQuotePreference1.baseline │ ├── inlayHintsQuotePreference2.baseline │ ├── inlayHintsRestParameters1.baseline │ ├── inlayHintsRestParameters2.baseline │ ├── inlayHintsReturnType.baseline │ ├── inlayHintsThisParameter.baseline │ ├── inlayHintsTypeMatchesName.baseline │ ├── inlayHintsTypeParameterModifiers1.baseline │ ├── inlayHintsVariableTypes1.baseline │ ├── inlayHintsVariableTypes2.baseline │ ├── inlayHintsVariableTypes3.baseline │ ├── inlayHintsWithClosures.baseline │ ├── inlineConditionalHasSimilarAssignability.js │ ├── inlineConditionalHasSimilarAssignability.symbols │ ├── inlineConditionalHasSimilarAssignability.types │ ├── inlineJsxAndJsxFragPragma.errors.txt │ ├── inlineJsxAndJsxFragPragma.js │ ├── inlineJsxAndJsxFragPragma.symbols │ ├── inlineJsxAndJsxFragPragma.types │ ├── inlineJsxAndJsxFragPragmaOverridesCompilerOptions.js │ ├── inlineJsxAndJsxFragPragmaOverridesCompilerOptions.symbols │ ├── inlineJsxAndJsxFragPragmaOverridesCompilerOptions.types │ ├── inlineJsxFactoryDeclarations.js │ ├── inlineJsxFactoryDeclarations.symbols │ ├── inlineJsxFactoryDeclarations.types │ ├── inlineJsxFactoryDeclarationsLocalTypes.errors.txt │ ├── inlineJsxFactoryDeclarationsLocalTypes.js │ ├── inlineJsxFactoryDeclarationsLocalTypes.symbols │ ├── inlineJsxFactoryDeclarationsLocalTypes.types │ ├── inlineJsxFactoryLocalTypeGlobalFallback.errors.txt │ ├── inlineJsxFactoryLocalTypeGlobalFallback.js │ ├── inlineJsxFactoryLocalTypeGlobalFallback.symbols │ ├── inlineJsxFactoryLocalTypeGlobalFallback.types │ ├── inlineJsxFactoryOverridesCompilerOption.js │ ├── inlineJsxFactoryOverridesCompilerOption.symbols │ ├── inlineJsxFactoryOverridesCompilerOption.types │ ├── inlineJsxFactoryWithFragmentIsError.errors.txt │ ├── inlineJsxFactoryWithFragmentIsError.js │ ├── inlineJsxFactoryWithFragmentIsError.symbols │ ├── inlineJsxFactoryWithFragmentIsError.types │ ├── inlineMappedTypeModifierDeclarationEmit.js │ ├── inlineMappedTypeModifierDeclarationEmit.symbols │ ├── inlineMappedTypeModifierDeclarationEmit.types │ ├── inlineSourceMap(target=es2015).js │ ├── inlineSourceMap(target=es2015).sourcemap.txt │ ├── inlineSourceMap(target=es2015).symbols │ ├── inlineSourceMap(target=es2015).types │ ├── inlineSourceMap(target=es5).errors.txt │ ├── inlineSourceMap(target=es5).js │ ├── inlineSourceMap(target=es5).sourcemap.txt │ ├── inlineSourceMap(target=es5).symbols │ ├── inlineSourceMap(target=es5).types │ ├── inlineSourceMap2(target=es2015).errors.txt │ ├── inlineSourceMap2(target=es2015).js │ ├── inlineSourceMap2(target=es2015).sourcemap.txt │ ├── inlineSourceMap2(target=es2015).symbols │ ├── inlineSourceMap2(target=es2015).types │ ├── inlineSourceMap2(target=es5).errors.txt │ ├── inlineSourceMap2(target=es5).js │ ├── inlineSourceMap2(target=es5).sourcemap.txt │ ├── inlineSourceMap2(target=es5).symbols │ ├── inlineSourceMap2(target=es5).types │ ├── inlineSources(target=es2015).errors.txt │ ├── inlineSources(target=es2015).js │ ├── inlineSources(target=es2015).sourcemap.txt │ ├── inlineSources(target=es2015).symbols │ ├── inlineSources(target=es2015).types │ ├── inlineSources(target=es5).errors.txt │ ├── inlineSources(target=es5).js │ ├── inlineSources(target=es5).sourcemap.txt │ ├── inlineSources(target=es5).symbols │ ├── inlineSources(target=es5).types │ ├── inlineSources2(target=es2015).errors.txt │ ├── inlineSources2(target=es2015).js │ ├── inlineSources2(target=es2015).sourcemap.txt │ ├── inlineSources2(target=es2015).symbols │ ├── inlineSources2(target=es2015).types │ ├── inlineSources2(target=es5).errors.txt │ ├── inlineSources2(target=es5).js │ ├── inlineSources2(target=es5).sourcemap.txt │ ├── inlineSources2(target=es5).symbols │ ├── inlineSources2(target=es5).types │ ├── inlinedAliasAssignableToConstraintSameAsAlias.errors.txt │ ├── inlinedAliasAssignableToConstraintSameAsAlias.js │ ├── inlinedAliasAssignableToConstraintSameAsAlias.symbols │ ├── inlinedAliasAssignableToConstraintSameAsAlias.types │ ├── innerAliases.errors.txt │ ├── innerAliases.js │ ├── innerAliases.symbols │ ├── innerAliases.types │ ├── innerAliases2.errors.txt │ ├── innerAliases2.js │ ├── innerAliases2.symbols │ ├── innerAliases2.types │ ├── innerBoundLambdaEmit.js │ ├── innerBoundLambdaEmit.symbols │ ├── innerBoundLambdaEmit.types │ ├── innerExtern.js │ ├── innerExtern.symbols │ ├── innerExtern.types │ ├── innerFunc.js │ ├── innerFunc.symbols │ ├── innerFunc.types │ ├── innerModExport1.errors.txt │ ├── innerModExport1.js │ ├── innerModExport1.symbols │ ├── innerModExport1.types │ ├── innerModExport2.errors.txt │ ├── innerModExport2.js │ ├── innerModExport2.symbols │ ├── innerModExport2.types │ ├── innerOverloads.js │ ├── innerOverloads.symbols │ ├── innerOverloads.types │ ├── innerTypeArgumentInference.js │ ├── innerTypeArgumentInference.symbols │ ├── innerTypeArgumentInference.types │ ├── innerTypeCheckOfLambdaArgument.errors.txt │ ├── innerTypeCheckOfLambdaArgument.js │ ├── innerTypeCheckOfLambdaArgument.symbols │ ├── innerTypeCheckOfLambdaArgument.types │ ├── innerTypeParameterShadowingOuterOne.errors.txt │ ├── innerTypeParameterShadowingOuterOne.js │ ├── innerTypeParameterShadowingOuterOne.symbols │ ├── innerTypeParameterShadowingOuterOne.types │ ├── innerTypeParameterShadowingOuterOne2.errors.txt │ ├── innerTypeParameterShadowingOuterOne2.js │ ├── innerTypeParameterShadowingOuterOne2.symbols │ ├── innerTypeParameterShadowingOuterOne2.types │ ├── instanceAndStaticDeclarations1.js │ ├── instanceAndStaticDeclarations1.symbols │ ├── instanceAndStaticDeclarations1.types │ ├── instanceMemberAssignsToClassPrototype.errors.txt │ ├── instanceMemberAssignsToClassPrototype.js │ ├── instanceMemberAssignsToClassPrototype.symbols │ ├── instanceMemberAssignsToClassPrototype.types │ ├── instanceMemberInitialization.js │ ├── instanceMemberInitialization.symbols │ ├── instanceMemberInitialization.types │ ├── instanceMemberWithComputedPropertyName.js │ ├── instanceMemberWithComputedPropertyName.symbols │ ├── instanceMemberWithComputedPropertyName.types │ ├── instanceMemberWithComputedPropertyName2.errors.txt │ ├── instanceMemberWithComputedPropertyName2.js │ ├── instanceMemberWithComputedPropertyName2.symbols │ ├── instanceMemberWithComputedPropertyName2.types │ ├── instanceOfAssignability.js │ ├── instanceOfAssignability.symbols │ ├── instanceOfAssignability.types │ ├── instanceOfInExternalModules.errors.txt │ ├── instanceOfInExternalModules.js │ ├── instanceOfInExternalModules.symbols │ ├── instanceOfInExternalModules.types │ ├── instancePropertiesInheritedIntoClassType.errors.txt │ ├── instancePropertiesInheritedIntoClassType.js │ ├── instancePropertiesInheritedIntoClassType.symbols │ ├── instancePropertiesInheritedIntoClassType.types │ ├── instancePropertyInClassType.errors.txt │ ├── instancePropertyInClassType.js │ ├── instancePropertyInClassType.symbols │ ├── instancePropertyInClassType.types │ ├── instanceSubtypeCheck1.js │ ├── instanceSubtypeCheck1.symbols │ ├── instanceSubtypeCheck1.types │ ├── instanceSubtypeCheck2.errors.txt │ ├── instanceSubtypeCheck2.js │ ├── instanceSubtypeCheck2.symbols │ ├── instanceSubtypeCheck2.types │ ├── instanceofNarrowReadonlyArray.js │ ├── instanceofNarrowReadonlyArray.symbols │ ├── instanceofNarrowReadonlyArray.types │ ├── instanceofOnInstantiationExpression.errors.txt │ ├── instanceofOnInstantiationExpression.js │ ├── instanceofOnInstantiationExpression.symbols │ ├── instanceofOnInstantiationExpression.types │ ├── instanceofOperator(target=es2015).errors.txt │ ├── instanceofOperator(target=es2015).js │ ├── instanceofOperator(target=es2015).symbols │ ├── instanceofOperator(target=es2015).types │ ├── instanceofOperator(target=es5).errors.txt │ ├── instanceofOperator(target=es5).js │ ├── instanceofOperator(target=es5).symbols │ ├── instanceofOperator(target=es5).types │ ├── instanceofOperatorWithAny.js │ ├── instanceofOperatorWithAny.symbols │ ├── instanceofOperatorWithAny.types │ ├── instanceofOperatorWithInvalidOperands.errors.txt │ ├── instanceofOperatorWithInvalidOperands.es2015.errors.txt │ ├── instanceofOperatorWithInvalidOperands.es2015.js │ ├── instanceofOperatorWithInvalidOperands.es2015.symbols │ ├── instanceofOperatorWithInvalidOperands.es2015.types │ ├── instanceofOperatorWithInvalidOperands.js │ ├── instanceofOperatorWithInvalidOperands.symbols │ ├── instanceofOperatorWithInvalidOperands.types │ ├── instanceofOperatorWithInvalidStaticToString.js │ ├── instanceofOperatorWithInvalidStaticToString.symbols │ ├── instanceofOperatorWithInvalidStaticToString.types │ ├── instanceofOperatorWithLHSIsObject.errors.txt │ ├── instanceofOperatorWithLHSIsObject.js │ ├── instanceofOperatorWithLHSIsObject.symbols │ ├── instanceofOperatorWithLHSIsObject.types │ ├── instanceofOperatorWithLHSIsTypeParameter.js │ ├── instanceofOperatorWithLHSIsTypeParameter.symbols │ ├── instanceofOperatorWithLHSIsTypeParameter.types │ ├── instanceofOperatorWithRHSHasSymbolHasInstance.js │ ├── instanceofOperatorWithRHSHasSymbolHasInstance.symbols │ ├── instanceofOperatorWithRHSHasSymbolHasInstance.types │ ├── instanceofOperatorWithRHSIsSubtypeOfFunction.errors.txt │ ├── instanceofOperatorWithRHSIsSubtypeOfFunction.js │ ├── instanceofOperatorWithRHSIsSubtypeOfFunction.symbols │ ├── instanceofOperatorWithRHSIsSubtypeOfFunction.types │ ├── instanceofTypeAliasToGenericClass.js │ ├── instanceofTypeAliasToGenericClass.symbols │ ├── instanceofTypeAliasToGenericClass.types │ ├── instanceofWithPrimitiveUnion.errors.txt │ ├── instanceofWithPrimitiveUnion.js │ ├── instanceofWithPrimitiveUnion.symbols │ ├── instanceofWithPrimitiveUnion.types │ ├── instanceofWithStructurallyIdenticalTypes.errors.txt │ ├── instanceofWithStructurallyIdenticalTypes.js │ ├── instanceofWithStructurallyIdenticalTypes.symbols │ ├── instanceofWithStructurallyIdenticalTypes.types │ ├── instantiateConstraintsToTypeArguments2.js │ ├── instantiateConstraintsToTypeArguments2.symbols │ ├── instantiateConstraintsToTypeArguments2.types │ ├── instantiateContextualTypes.js │ ├── instantiateContextualTypes.symbols │ ├── instantiateContextualTypes.types │ ├── instantiateContextuallyTypedGenericThis.errors.txt │ ├── instantiateContextuallyTypedGenericThis.js │ ├── instantiateContextuallyTypedGenericThis.symbols │ ├── instantiateContextuallyTypedGenericThis.types │ ├── instantiateCrossFileMerge.js │ ├── instantiateCrossFileMerge.symbols │ ├── instantiateCrossFileMerge.types │ ├── instantiateGenericClassWithWrongNumberOfTypeArguments.errors.txt │ ├── instantiateGenericClassWithWrongNumberOfTypeArguments.js │ ├── instantiateGenericClassWithWrongNumberOfTypeArguments.symbols │ ├── instantiateGenericClassWithWrongNumberOfTypeArguments.types │ ├── instantiateGenericClassWithZeroTypeArguments.errors.txt │ ├── instantiateGenericClassWithZeroTypeArguments.js │ ├── instantiateGenericClassWithZeroTypeArguments.symbols │ ├── instantiateGenericClassWithZeroTypeArguments.types │ ├── instantiateNonGenericTypeWithTypeArguments.errors.txt │ ├── instantiateNonGenericTypeWithTypeArguments.js │ ├── instantiateNonGenericTypeWithTypeArguments.symbols │ ├── instantiateNonGenericTypeWithTypeArguments.types │ ├── instantiateTemplateTagTypeParameterOnVariableStatement.js │ ├── instantiateTemplateTagTypeParameterOnVariableStatement.symbols │ ├── instantiateTemplateTagTypeParameterOnVariableStatement.types │ ├── instantiateTypeParameter.errors.txt │ ├── instantiateTypeParameter.js │ ├── instantiateTypeParameter.symbols │ ├── instantiateTypeParameter.types │ ├── instantiatedBaseTypeConstraints.js │ ├── instantiatedBaseTypeConstraints.symbols │ ├── instantiatedBaseTypeConstraints.types │ ├── instantiatedBaseTypeConstraints2.js │ ├── instantiatedBaseTypeConstraints2.symbols │ ├── instantiatedBaseTypeConstraints2.types │ ├── instantiatedModule.errors.txt │ ├── instantiatedModule.js │ ├── instantiatedModule.symbols │ ├── instantiatedModule.types │ ├── instantiatedReturnTypeContravariance.errors.txt │ ├── instantiatedReturnTypeContravariance.js │ ├── instantiatedReturnTypeContravariance.symbols │ ├── instantiatedReturnTypeContravariance.types │ ├── instantiatedTypeAliasDisplay.js │ ├── instantiatedTypeAliasDisplay.symbols │ ├── instantiatedTypeAliasDisplay.types │ ├── instantiationExpressionErrorNoCrash.errors.txt │ ├── instantiationExpressionErrorNoCrash.js │ ├── instantiationExpressionErrorNoCrash.symbols │ ├── instantiationExpressionErrorNoCrash.types │ ├── instantiationExpressionErrors.errors.txt │ ├── instantiationExpressionErrors.js │ ├── instantiationExpressionErrors.symbols │ ├── instantiationExpressionErrors.types │ ├── instantiationExpressions.errors.txt │ ├── instantiationExpressions.js │ ├── instantiationExpressions.symbols │ ├── instantiationExpressions.types │ ├── intTypeCheck.errors.txt │ ├── intTypeCheck.js │ ├── intTypeCheck.symbols │ ├── intTypeCheck.types │ ├── interMixingModulesInterfaces0.errors.txt │ ├── interMixingModulesInterfaces0.js │ ├── interMixingModulesInterfaces0.symbols │ ├── interMixingModulesInterfaces0.types │ ├── interMixingModulesInterfaces1.errors.txt │ ├── interMixingModulesInterfaces1.js │ ├── interMixingModulesInterfaces1.symbols │ ├── interMixingModulesInterfaces1.types │ ├── interMixingModulesInterfaces2.errors.txt │ ├── interMixingModulesInterfaces2.js │ ├── interMixingModulesInterfaces2.symbols │ ├── interMixingModulesInterfaces2.types │ ├── interMixingModulesInterfaces3.errors.txt │ ├── interMixingModulesInterfaces3.js │ ├── interMixingModulesInterfaces3.symbols │ ├── interMixingModulesInterfaces3.types │ ├── interMixingModulesInterfaces4.errors.txt │ ├── interMixingModulesInterfaces4.js │ ├── interMixingModulesInterfaces4.symbols │ ├── interMixingModulesInterfaces4.types │ ├── interMixingModulesInterfaces5.errors.txt │ ├── interMixingModulesInterfaces5.js │ ├── interMixingModulesInterfaces5.symbols │ ├── interMixingModulesInterfaces5.types │ ├── interface0.js │ ├── interface0.symbols │ ├── interface0.types │ ├── interfaceAssignmentCompat.errors.txt │ ├── interfaceAssignmentCompat.js │ ├── interfaceAssignmentCompat.symbols │ ├── interfaceAssignmentCompat.types │ ├── interfaceClassMerging.errors.txt │ ├── interfaceClassMerging.js │ ├── interfaceClassMerging.symbols │ ├── interfaceClassMerging.types │ ├── interfaceClassMerging2.errors.txt │ ├── interfaceClassMerging2.js │ ├── interfaceClassMerging2.symbols │ ├── interfaceClassMerging2.types │ ├── interfaceContextualType.errors.txt │ ├── interfaceContextualType.js │ ├── interfaceContextualType.symbols │ ├── interfaceContextualType.types │ ├── interfaceDeclaration1.errors.txt │ ├── interfaceDeclaration1.js │ ├── interfaceDeclaration1.symbols │ ├── interfaceDeclaration1.types │ ├── interfaceDeclaration2.js │ ├── interfaceDeclaration2.symbols │ ├── interfaceDeclaration2.types │ ├── interfaceDeclaration3.errors.txt │ ├── interfaceDeclaration3.js │ ├── interfaceDeclaration3.symbols │ ├── interfaceDeclaration3.types │ ├── interfaceDeclaration4.errors.txt │ ├── interfaceDeclaration4.js │ ├── interfaceDeclaration4.symbols │ ├── interfaceDeclaration4.types │ ├── interfaceDeclaration5.errors.txt │ ├── interfaceDeclaration5.js │ ├── interfaceDeclaration5.symbols │ ├── interfaceDeclaration5.types │ ├── interfaceDeclaration6.errors.txt │ ├── interfaceDeclaration6.js │ ├── interfaceDeclaration6.symbols │ ├── interfaceDeclaration6.types │ ├── interfaceDoesNotDependOnBaseTypes.errors.txt │ ├── interfaceDoesNotDependOnBaseTypes.js │ ├── interfaceDoesNotDependOnBaseTypes.symbols │ ├── interfaceDoesNotDependOnBaseTypes.types │ ├── interfaceExtendingClass.errors.txt │ ├── interfaceExtendingClass.js │ ├── interfaceExtendingClass.symbols │ ├── interfaceExtendingClass.types │ ├── interfaceExtendingClass2.errors.txt │ ├── interfaceExtendingClass2.js │ ├── interfaceExtendingClass2.symbols │ ├── interfaceExtendingClass2.types │ ├── interfaceExtendingClassWithPrivates.errors.txt │ ├── interfaceExtendingClassWithPrivates.js │ ├── interfaceExtendingClassWithPrivates.symbols │ ├── interfaceExtendingClassWithPrivates.types │ ├── interfaceExtendingClassWithPrivates2.errors.txt │ ├── interfaceExtendingClassWithPrivates2.js │ ├── interfaceExtendingClassWithPrivates2.symbols │ ├── interfaceExtendingClassWithPrivates2.types │ ├── interfaceExtendingClassWithProtecteds.errors.txt │ ├── interfaceExtendingClassWithProtecteds.js │ ├── interfaceExtendingClassWithProtecteds.symbols │ ├── interfaceExtendingClassWithProtecteds.types │ ├── interfaceExtendingClassWithProtecteds2.errors.txt │ ├── interfaceExtendingClassWithProtecteds2.js │ ├── interfaceExtendingClassWithProtecteds2.symbols │ ├── interfaceExtendingClassWithProtecteds2.types │ ├── interfaceExtendingOptionalChain.errors.txt │ ├── interfaceExtendingOptionalChain.js │ ├── interfaceExtendingOptionalChain.symbols │ ├── interfaceExtendingOptionalChain.types │ ├── interfaceExtendsClass1.js │ ├── interfaceExtendsClass1.symbols │ ├── interfaceExtendsClass1.types │ ├── interfaceExtendsClassWithPrivate1.errors.txt │ ├── interfaceExtendsClassWithPrivate1.js │ ├── interfaceExtendsClassWithPrivate1.symbols │ ├── interfaceExtendsClassWithPrivate1.types │ ├── interfaceExtendsClassWithPrivate2.errors.txt │ ├── interfaceExtendsClassWithPrivate2.js │ ├── interfaceExtendsClassWithPrivate2.symbols │ ├── interfaceExtendsClassWithPrivate2.types │ ├── interfaceExtendsObjectIntersection.js │ ├── interfaceExtendsObjectIntersection.symbols │ ├── interfaceExtendsObjectIntersection.types │ ├── interfaceExtendsObjectIntersectionErrors.errors.txt │ ├── interfaceExtendsObjectIntersectionErrors.js │ ├── interfaceExtendsObjectIntersectionErrors.symbols │ ├── interfaceExtendsObjectIntersectionErrors.types │ ├── interfaceImplementation1.errors.txt │ ├── interfaceImplementation1.js │ ├── interfaceImplementation1.symbols │ ├── interfaceImplementation1.types │ ├── interfaceImplementation2.errors.txt │ ├── interfaceImplementation2.js │ ├── interfaceImplementation2.symbols │ ├── interfaceImplementation2.types │ ├── interfaceImplementation3.errors.txt │ ├── interfaceImplementation3.js │ ├── interfaceImplementation3.symbols │ ├── interfaceImplementation3.types │ ├── interfaceImplementation4.errors.txt │ ├── interfaceImplementation4.js │ ├── interfaceImplementation4.symbols │ ├── interfaceImplementation4.types │ ├── interfaceImplementation5.js │ ├── interfaceImplementation5.symbols │ ├── interfaceImplementation5.types │ ├── interfaceImplementation6.errors.txt │ ├── interfaceImplementation6.js │ ├── interfaceImplementation6.symbols │ ├── interfaceImplementation6.types │ ├── interfaceImplementation7.errors.txt │ ├── interfaceImplementation7.js │ ├── interfaceImplementation7.symbols │ ├── interfaceImplementation7.types │ ├── interfaceImplementation8.errors.txt │ ├── interfaceImplementation8.js │ ├── interfaceImplementation8.symbols │ ├── interfaceImplementation8.types │ ├── interfaceInReopenedModule.errors.txt │ ├── interfaceInReopenedModule.js │ ├── interfaceInReopenedModule.symbols │ ├── interfaceInReopenedModule.types │ ├── interfaceInheritance.errors.txt │ ├── interfaceInheritance.js │ ├── interfaceInheritance.symbols │ ├── interfaceInheritance.types │ ├── interfaceInheritance2.errors.txt │ ├── interfaceInheritance2.js │ ├── interfaceInheritance2.symbols │ ├── interfaceInheritance2.types │ ├── interfaceMayNotBeExtendedWitACall.errors.txt │ ├── interfaceMayNotBeExtendedWitACall.js │ ├── interfaceMayNotBeExtendedWitACall.symbols │ ├── interfaceMayNotBeExtendedWitACall.types │ ├── interfaceMemberValidation.errors.txt │ ├── interfaceMemberValidation.js │ ├── interfaceMemberValidation.symbols │ ├── interfaceMemberValidation.types │ ├── interfaceMergeWithNonGenericTypeArguments.errors.txt │ ├── interfaceMergeWithNonGenericTypeArguments.js │ ├── interfaceMergeWithNonGenericTypeArguments.symbols │ ├── interfaceMergeWithNonGenericTypeArguments.types │ ├── interfaceMergedUnconstrainedNoErrorIrrespectiveOfOrder.js │ ├── interfaceMergedUnconstrainedNoErrorIrrespectiveOfOrder.symbols │ ├── interfaceMergedUnconstrainedNoErrorIrrespectiveOfOrder.types │ ├── interfaceNameAsIdentifier.errors.txt │ ├── interfaceNameAsIdentifier.js │ ├── interfaceNameAsIdentifier.symbols │ ├── interfaceNameAsIdentifier.types │ ├── interfaceNaming1.errors.txt │ ├── interfaceNaming1.js │ ├── interfaceNaming1.symbols │ ├── interfaceNaming1.types │ ├── interfaceOnly.js │ ├── interfaceOnly.symbols │ ├── interfaceOnly.types │ ├── interfacePropertiesWithSameName1.js │ ├── interfacePropertiesWithSameName1.symbols │ ├── interfacePropertiesWithSameName1.types │ ├── interfacePropertiesWithSameName2.errors.txt │ ├── interfacePropertiesWithSameName2.js │ ├── interfacePropertiesWithSameName2.symbols │ ├── interfacePropertiesWithSameName2.types │ ├── interfacePropertiesWithSameName3.errors.txt │ ├── interfacePropertiesWithSameName3.js │ ├── interfacePropertiesWithSameName3.symbols │ ├── interfacePropertiesWithSameName3.types │ ├── interfaceSubtyping.js │ ├── interfaceSubtyping.symbols │ ├── interfaceSubtyping.types │ ├── interfaceThatHidesBaseProperty.js │ ├── interfaceThatHidesBaseProperty.symbols │ ├── interfaceThatHidesBaseProperty.types │ ├── interfaceThatHidesBaseProperty2.errors.txt │ ├── interfaceThatHidesBaseProperty2.js │ ├── interfaceThatHidesBaseProperty2.symbols │ ├── interfaceThatHidesBaseProperty2.types │ ├── interfaceThatIndirectlyInheritsFromItself.errors.txt │ ├── interfaceThatIndirectlyInheritsFromItself.js │ ├── interfaceThatIndirectlyInheritsFromItself.symbols │ ├── interfaceThatIndirectlyInheritsFromItself.types │ ├── interfaceThatInheritsFromItself.errors.txt │ ├── interfaceThatInheritsFromItself.js │ ├── interfaceThatInheritsFromItself.symbols │ ├── interfaceThatInheritsFromItself.types │ ├── interfaceWithAccessibilityModifiers.errors.txt │ ├── interfaceWithAccessibilityModifiers.js │ ├── interfaceWithAccessibilityModifiers.symbols │ ├── interfaceWithAccessibilityModifiers.types │ ├── interfaceWithCallAndConstructSignature.errors.txt │ ├── interfaceWithCallAndConstructSignature.js │ ├── interfaceWithCallAndConstructSignature.symbols │ ├── interfaceWithCallAndConstructSignature.types │ ├── interfaceWithCallSignaturesThatHidesBaseSignature.errors.txt │ ├── interfaceWithCallSignaturesThatHidesBaseSignature.js │ ├── interfaceWithCallSignaturesThatHidesBaseSignature.symbols │ ├── interfaceWithCallSignaturesThatHidesBaseSignature.types │ ├── interfaceWithCallSignaturesThatHidesBaseSignature2.errors.txt │ ├── interfaceWithCallSignaturesThatHidesBaseSignature2.js │ ├── interfaceWithCallSignaturesThatHidesBaseSignature2.symbols │ ├── interfaceWithCallSignaturesThatHidesBaseSignature2.types │ ├── interfaceWithCommaSeparators.js │ ├── interfaceWithCommaSeparators.symbols │ ├── interfaceWithCommaSeparators.types │ ├── interfaceWithConstructSignaturesThatHidesBaseSignature.errors.txt │ ├── interfaceWithConstructSignaturesThatHidesBaseSignature.js │ ├── interfaceWithConstructSignaturesThatHidesBaseSignature.symbols │ ├── interfaceWithConstructSignaturesThatHidesBaseSignature.types │ ├── interfaceWithConstructSignaturesThatHidesBaseSignature2.errors.txt │ ├── interfaceWithConstructSignaturesThatHidesBaseSignature2.js │ ├── interfaceWithConstructSignaturesThatHidesBaseSignature2.symbols │ ├── interfaceWithConstructSignaturesThatHidesBaseSignature2.types │ ├── interfaceWithImplements1.errors.txt │ ├── interfaceWithImplements1.js │ ├── interfaceWithImplements1.symbols │ ├── interfaceWithImplements1.types │ ├── interfaceWithMultipleBaseTypes.errors.txt │ ├── interfaceWithMultipleBaseTypes.js │ ├── interfaceWithMultipleBaseTypes.symbols │ ├── interfaceWithMultipleBaseTypes.types │ ├── interfaceWithMultipleBaseTypes2.errors.txt │ ├── interfaceWithMultipleBaseTypes2.js │ ├── interfaceWithMultipleBaseTypes2.symbols │ ├── interfaceWithMultipleBaseTypes2.types │ ├── interfaceWithMultipleDeclarations.errors.txt │ ├── interfaceWithMultipleDeclarations.js │ ├── interfaceWithMultipleDeclarations.symbols │ ├── interfaceWithMultipleDeclarations.types │ ├── interfaceWithOptionalProperty.js │ ├── interfaceWithOptionalProperty.symbols │ ├── interfaceWithOptionalProperty.types │ ├── interfaceWithOverloadedCallAndConstructSignatures.errors.txt │ ├── interfaceWithOverloadedCallAndConstructSignatures.js │ ├── interfaceWithOverloadedCallAndConstructSignatures.symbols │ ├── interfaceWithOverloadedCallAndConstructSignatures.types │ ├── interfaceWithPrivateMember.errors.txt │ ├── interfaceWithPrivateMember.js │ ├── interfaceWithPrivateMember.symbols │ ├── interfaceWithPrivateMember.types │ ├── interfaceWithPropertyOfEveryType.errors.txt │ ├── interfaceWithPropertyOfEveryType.js │ ├── interfaceWithPropertyOfEveryType.symbols │ ├── interfaceWithPropertyOfEveryType.types │ ├── interfaceWithPropertyThatIsPrivateInBaseType.errors.txt │ ├── interfaceWithPropertyThatIsPrivateInBaseType.js │ ├── interfaceWithPropertyThatIsPrivateInBaseType.symbols │ ├── interfaceWithPropertyThatIsPrivateInBaseType.types │ ├── interfaceWithPropertyThatIsPrivateInBaseType2.errors.txt │ ├── interfaceWithPropertyThatIsPrivateInBaseType2.js │ ├── interfaceWithPropertyThatIsPrivateInBaseType2.symbols │ ├── interfaceWithPropertyThatIsPrivateInBaseType2.types │ ├── interfaceWithSpecializedCallAndConstructSignatures.errors.txt │ ├── interfaceWithSpecializedCallAndConstructSignatures.js │ ├── interfaceWithSpecializedCallAndConstructSignatures.symbols │ ├── interfaceWithSpecializedCallAndConstructSignatures.types │ ├── interfaceWithStringIndexerHidingBaseTypeIndexer.errors.txt │ ├── interfaceWithStringIndexerHidingBaseTypeIndexer.js │ ├── interfaceWithStringIndexerHidingBaseTypeIndexer.symbols │ ├── interfaceWithStringIndexerHidingBaseTypeIndexer.types │ ├── interfaceWithStringIndexerHidingBaseTypeIndexer2.errors.txt │ ├── interfaceWithStringIndexerHidingBaseTypeIndexer2.js │ ├── interfaceWithStringIndexerHidingBaseTypeIndexer2.symbols │ ├── interfaceWithStringIndexerHidingBaseTypeIndexer2.types │ ├── interfaceWithStringIndexerHidingBaseTypeIndexer3.errors.txt │ ├── interfaceWithStringIndexerHidingBaseTypeIndexer3.js │ ├── interfaceWithStringIndexerHidingBaseTypeIndexer3.symbols │ ├── interfaceWithStringIndexerHidingBaseTypeIndexer3.types │ ├── interfacedecl.js │ ├── interfacedecl.symbols │ ├── interfacedecl.types │ ├── interfacedeclWithIndexerErrors.errors.txt │ ├── interfacedeclWithIndexerErrors.js │ ├── interfacedeclWithIndexerErrors.symbols │ ├── interfacedeclWithIndexerErrors.types │ ├── interfacesWithPredefinedTypesAsNames.errors.txt │ ├── interfacesWithPredefinedTypesAsNames.js │ ├── interfacesWithPredefinedTypesAsNames.symbols │ ├── interfacesWithPredefinedTypesAsNames.types │ ├── internalAliasClass.js │ ├── internalAliasClass.symbols │ ├── internalAliasClass.types │ ├── internalAliasClassInsideLocalModuleWithExport.js │ ├── internalAliasClassInsideLocalModuleWithExport.symbols │ ├── internalAliasClassInsideLocalModuleWithExport.types │ ├── internalAliasClassInsideLocalModuleWithoutExport.js │ ├── internalAliasClassInsideLocalModuleWithoutExport.symbols │ ├── internalAliasClassInsideLocalModuleWithoutExport.types │ ├── internalAliasClassInsideLocalModuleWithoutExportAccessError.errors.txt │ ├── internalAliasClassInsideLocalModuleWithoutExportAccessError.js │ ├── internalAliasClassInsideLocalModuleWithoutExportAccessError.symbols │ ├── internalAliasClassInsideLocalModuleWithoutExportAccessError.types │ ├── internalAliasClassInsideTopLevelModuleWithExport.js │ ├── internalAliasClassInsideTopLevelModuleWithExport.symbols │ ├── internalAliasClassInsideTopLevelModuleWithExport.types │ ├── internalAliasClassInsideTopLevelModuleWithoutExport.js │ ├── internalAliasClassInsideTopLevelModuleWithoutExport.symbols │ ├── internalAliasClassInsideTopLevelModuleWithoutExport.types │ ├── internalAliasEnum.js │ ├── internalAliasEnum.symbols │ ├── internalAliasEnum.types │ ├── internalAliasEnumInsideLocalModuleWithExport.js │ ├── internalAliasEnumInsideLocalModuleWithExport.symbols │ ├── internalAliasEnumInsideLocalModuleWithExport.types │ ├── internalAliasEnumInsideLocalModuleWithoutExport.js │ ├── internalAliasEnumInsideLocalModuleWithoutExport.symbols │ ├── internalAliasEnumInsideLocalModuleWithoutExport.types │ ├── internalAliasEnumInsideLocalModuleWithoutExportAccessError.errors.txt │ ├── internalAliasEnumInsideLocalModuleWithoutExportAccessError.js │ ├── internalAliasEnumInsideLocalModuleWithoutExportAccessError.symbols │ ├── internalAliasEnumInsideLocalModuleWithoutExportAccessError.types │ ├── internalAliasEnumInsideTopLevelModuleWithExport.errors.txt │ ├── internalAliasEnumInsideTopLevelModuleWithExport.js │ ├── internalAliasEnumInsideTopLevelModuleWithExport.symbols │ ├── internalAliasEnumInsideTopLevelModuleWithExport.types │ ├── internalAliasEnumInsideTopLevelModuleWithoutExport.errors.txt │ ├── internalAliasEnumInsideTopLevelModuleWithoutExport.js │ ├── internalAliasEnumInsideTopLevelModuleWithoutExport.symbols │ ├── internalAliasEnumInsideTopLevelModuleWithoutExport.types │ ├── internalAliasFunction.js │ ├── internalAliasFunction.symbols │ ├── internalAliasFunction.types │ ├── internalAliasFunctionInsideLocalModuleWithExport.js │ ├── internalAliasFunctionInsideLocalModuleWithExport.symbols │ ├── internalAliasFunctionInsideLocalModuleWithExport.types │ ├── internalAliasFunctionInsideLocalModuleWithoutExport.js │ ├── internalAliasFunctionInsideLocalModuleWithoutExport.symbols │ ├── internalAliasFunctionInsideLocalModuleWithoutExport.types │ ├── internalAliasFunctionInsideLocalModuleWithoutExportAccessError.errors.txt │ ├── internalAliasFunctionInsideLocalModuleWithoutExportAccessError.js │ ├── internalAliasFunctionInsideLocalModuleWithoutExportAccessError.symbols │ ├── internalAliasFunctionInsideLocalModuleWithoutExportAccessError.types │ ├── internalAliasFunctionInsideTopLevelModuleWithExport.errors.txt │ ├── internalAliasFunctionInsideTopLevelModuleWithExport.js │ ├── internalAliasFunctionInsideTopLevelModuleWithExport.symbols │ ├── internalAliasFunctionInsideTopLevelModuleWithExport.types │ ├── internalAliasFunctionInsideTopLevelModuleWithoutExport.js │ ├── internalAliasFunctionInsideTopLevelModuleWithoutExport.symbols │ ├── internalAliasFunctionInsideTopLevelModuleWithoutExport.types │ ├── internalAliasInitializedModule.js │ ├── internalAliasInitializedModule.symbols │ ├── internalAliasInitializedModule.types │ ├── internalAliasInitializedModuleInsideLocalModuleWithExport.errors.txt │ ├── internalAliasInitializedModuleInsideLocalModuleWithExport.js │ ├── internalAliasInitializedModuleInsideLocalModuleWithExport.symbols │ ├── internalAliasInitializedModuleInsideLocalModuleWithExport.types │ ├── internalAliasInitializedModuleInsideLocalModuleWithoutExport.js │ ├── internalAliasInitializedModuleInsideLocalModuleWithoutExport.symbols │ ├── internalAliasInitializedModuleInsideLocalModuleWithoutExport.types │ ├── internalAliasInitializedModuleInsideLocalModuleWithoutExportAccessError.errors.txt │ ├── internalAliasInitializedModuleInsideLocalModuleWithoutExportAccessError.js │ ├── internalAliasInitializedModuleInsideLocalModuleWithoutExportAccessError.symbols │ ├── internalAliasInitializedModuleInsideLocalModuleWithoutExportAccessError.types │ ├── internalAliasInitializedModuleInsideTopLevelModuleWithExport.js │ ├── internalAliasInitializedModuleInsideTopLevelModuleWithExport.symbols │ ├── internalAliasInitializedModuleInsideTopLevelModuleWithExport.types │ ├── internalAliasInitializedModuleInsideTopLevelModuleWithoutExport.errors.txt │ ├── internalAliasInitializedModuleInsideTopLevelModuleWithoutExport.js │ ├── internalAliasInitializedModuleInsideTopLevelModuleWithoutExport.symbols │ ├── internalAliasInitializedModuleInsideTopLevelModuleWithoutExport.types │ ├── internalAliasInterface.js │ ├── internalAliasInterface.symbols │ ├── internalAliasInterface.types │ ├── internalAliasInterfaceInsideLocalModuleWithExport.errors.txt │ ├── internalAliasInterfaceInsideLocalModuleWithExport.js │ ├── internalAliasInterfaceInsideLocalModuleWithExport.symbols │ ├── internalAliasInterfaceInsideLocalModuleWithExport.types │ ├── internalAliasInterfaceInsideLocalModuleWithoutExport.errors.txt │ ├── internalAliasInterfaceInsideLocalModuleWithoutExport.js │ ├── internalAliasInterfaceInsideLocalModuleWithoutExport.symbols │ ├── internalAliasInterfaceInsideLocalModuleWithoutExport.types │ ├── internalAliasInterfaceInsideLocalModuleWithoutExportAccessError.errors.txt │ ├── internalAliasInterfaceInsideLocalModuleWithoutExportAccessError.js │ ├── internalAliasInterfaceInsideLocalModuleWithoutExportAccessError.symbols │ ├── internalAliasInterfaceInsideLocalModuleWithoutExportAccessError.types │ ├── internalAliasInterfaceInsideTopLevelModuleWithExport.js │ ├── internalAliasInterfaceInsideTopLevelModuleWithExport.symbols │ ├── internalAliasInterfaceInsideTopLevelModuleWithExport.types │ ├── internalAliasInterfaceInsideTopLevelModuleWithoutExport.errors.txt │ ├── internalAliasInterfaceInsideTopLevelModuleWithoutExport.js │ ├── internalAliasInterfaceInsideTopLevelModuleWithoutExport.symbols │ ├── internalAliasInterfaceInsideTopLevelModuleWithoutExport.types │ ├── internalAliasUninitializedModule.js │ ├── internalAliasUninitializedModule.symbols │ ├── internalAliasUninitializedModule.types │ ├── internalAliasUninitializedModuleInsideLocalModuleWithExport.js │ ├── internalAliasUninitializedModuleInsideLocalModuleWithExport.symbols │ ├── internalAliasUninitializedModuleInsideLocalModuleWithExport.types │ ├── internalAliasUninitializedModuleInsideLocalModuleWithoutExport.js │ ├── internalAliasUninitializedModuleInsideLocalModuleWithoutExport.symbols │ ├── internalAliasUninitializedModuleInsideLocalModuleWithoutExport.types │ ├── internalAliasUninitializedModuleInsideLocalModuleWithoutExportAccessError.errors.txt │ ├── internalAliasUninitializedModuleInsideLocalModuleWithoutExportAccessError.js │ ├── internalAliasUninitializedModuleInsideLocalModuleWithoutExportAccessError.symbols │ ├── internalAliasUninitializedModuleInsideLocalModuleWithoutExportAccessError.types │ ├── internalAliasUninitializedModuleInsideTopLevelModuleWithExport.errors.txt │ ├── internalAliasUninitializedModuleInsideTopLevelModuleWithExport.js │ ├── internalAliasUninitializedModuleInsideTopLevelModuleWithExport.symbols │ ├── internalAliasUninitializedModuleInsideTopLevelModuleWithExport.types │ ├── internalAliasUninitializedModuleInsideTopLevelModuleWithoutExport.js │ ├── internalAliasUninitializedModuleInsideTopLevelModuleWithoutExport.symbols │ ├── internalAliasUninitializedModuleInsideTopLevelModuleWithoutExport.types │ ├── internalAliasVar.js │ ├── internalAliasVar.symbols │ ├── internalAliasVar.types │ ├── internalAliasVarInsideLocalModuleWithExport.errors.txt │ ├── internalAliasVarInsideLocalModuleWithExport.js │ ├── internalAliasVarInsideLocalModuleWithExport.symbols │ ├── internalAliasVarInsideLocalModuleWithExport.types │ ├── internalAliasVarInsideLocalModuleWithoutExport.errors.txt │ ├── internalAliasVarInsideLocalModuleWithoutExport.js │ ├── internalAliasVarInsideLocalModuleWithoutExport.symbols │ ├── internalAliasVarInsideLocalModuleWithoutExport.types │ ├── internalAliasVarInsideLocalModuleWithoutExportAccessError.errors.txt │ ├── internalAliasVarInsideLocalModuleWithoutExportAccessError.js │ ├── internalAliasVarInsideLocalModuleWithoutExportAccessError.symbols │ ├── internalAliasVarInsideLocalModuleWithoutExportAccessError.types │ ├── internalAliasVarInsideTopLevelModuleWithExport.errors.txt │ ├── internalAliasVarInsideTopLevelModuleWithExport.js │ ├── internalAliasVarInsideTopLevelModuleWithExport.symbols │ ├── internalAliasVarInsideTopLevelModuleWithExport.types │ ├── internalAliasVarInsideTopLevelModuleWithoutExport.js │ ├── internalAliasVarInsideTopLevelModuleWithoutExport.symbols │ ├── internalAliasVarInsideTopLevelModuleWithoutExport.types │ ├── internalAliasWithDottedNameEmit.js │ ├── internalAliasWithDottedNameEmit.symbols │ ├── internalAliasWithDottedNameEmit.types │ ├── internalImportInstantiatedModuleMergedWithClassNotReferencingInstance.errors.txt │ ├── internalImportInstantiatedModuleMergedWithClassNotReferencingInstance.js │ ├── internalImportInstantiatedModuleMergedWithClassNotReferencingInstance.symbols │ ├── internalImportInstantiatedModuleMergedWithClassNotReferencingInstance.types │ ├── internalImportInstantiatedModuleMergedWithClassNotReferencingInstanceNoConflict.errors.txt │ ├── internalImportInstantiatedModuleMergedWithClassNotReferencingInstanceNoConflict.js │ ├── internalImportInstantiatedModuleMergedWithClassNotReferencingInstanceNoConflict.symbols │ ├── internalImportInstantiatedModuleMergedWithClassNotReferencingInstanceNoConflict.types │ ├── internalImportInstantiatedModuleNotReferencingInstance.errors.txt │ ├── internalImportInstantiatedModuleNotReferencingInstance.js │ ├── internalImportInstantiatedModuleNotReferencingInstance.symbols │ ├── internalImportInstantiatedModuleNotReferencingInstance.types │ ├── internalImportUnInstantiatedModuleMergedWithClassNotReferencingInstance.errors.txt │ ├── internalImportUnInstantiatedModuleMergedWithClassNotReferencingInstance.js │ ├── internalImportUnInstantiatedModuleMergedWithClassNotReferencingInstance.symbols │ ├── internalImportUnInstantiatedModuleMergedWithClassNotReferencingInstance.types │ ├── internalImportUnInstantiatedModuleMergedWithClassNotReferencingInstanceNoConflict.errors.txt │ ├── internalImportUnInstantiatedModuleMergedWithClassNotReferencingInstanceNoConflict.js │ ├── internalImportUnInstantiatedModuleMergedWithClassNotReferencingInstanceNoConflict.symbols │ ├── internalImportUnInstantiatedModuleMergedWithClassNotReferencingInstanceNoConflict.types │ ├── internalImportUnInstantiatedModuleNotReferencingInstanceNoConflict.js │ ├── internalImportUnInstantiatedModuleNotReferencingInstanceNoConflict.symbols │ ├── internalImportUnInstantiatedModuleNotReferencingInstanceNoConflict.types │ ├── intersectionAndUnionTypes.errors.txt │ ├── intersectionAndUnionTypes.js │ ├── intersectionAndUnionTypes.symbols │ ├── intersectionAndUnionTypes.types │ ├── intersectionApparentTypeCaching.symbols │ ├── intersectionApparentTypeCaching.types │ ├── intersectionAsWeakTypeSource.errors.txt │ ├── intersectionAsWeakTypeSource.js │ ├── intersectionAsWeakTypeSource.symbols │ ├── intersectionAsWeakTypeSource.types │ ├── intersectionConstraintReduction.symbols │ ├── intersectionConstraintReduction.types │ ├── intersectionIncludingPropFromGlobalAugmentation.symbols │ ├── intersectionIncludingPropFromGlobalAugmentation.types │ ├── intersectionMemberOfUnionNarrowsCorrectly.js │ ├── intersectionMemberOfUnionNarrowsCorrectly.symbols │ ├── intersectionMemberOfUnionNarrowsCorrectly.types │ ├── intersectionNarrowing.errors.txt │ ├── intersectionNarrowing.js │ ├── intersectionNarrowing.symbols │ ├── intersectionNarrowing.types │ ├── intersectionOfMixinConstructorTypeAndNonConstructorType.js │ ├── intersectionOfMixinConstructorTypeAndNonConstructorType.symbols │ ├── intersectionOfMixinConstructorTypeAndNonConstructorType.types │ ├── intersectionOfTypeVariableHasApparentSignatures.js │ ├── intersectionOfTypeVariableHasApparentSignatures.symbols │ ├── intersectionOfTypeVariableHasApparentSignatures.types │ ├── intersectionOfUnionNarrowing.js │ ├── intersectionOfUnionNarrowing.symbols │ ├── intersectionOfUnionNarrowing.types │ ├── intersectionOfUnionOfUnitTypes.js │ ├── intersectionOfUnionOfUnitTypes.symbols │ ├── intersectionOfUnionOfUnitTypes.types │ ├── intersectionPropertyCheck.errors.txt │ ├── intersectionPropertyCheck.js │ ├── intersectionPropertyCheck.symbols │ ├── intersectionPropertyCheck.types │ ├── intersectionReduction.errors.txt │ ├── intersectionReduction.js │ ├── intersectionReduction.symbols │ ├── intersectionReduction.types │ ├── intersectionReductionGenericStringLikeType.symbols │ ├── intersectionReductionGenericStringLikeType.types │ ├── intersectionReductionStrict.errors.txt │ ├── intersectionReductionStrict.js │ ├── intersectionReductionStrict.symbols │ ├── intersectionReductionStrict.types │ ├── intersectionSatisfiesConstraint.js │ ├── intersectionSatisfiesConstraint.symbols │ ├── intersectionSatisfiesConstraint.types │ ├── intersectionThisTypes.js │ ├── intersectionThisTypes.symbols │ ├── intersectionThisTypes.types │ ├── intersectionTypeAssignment.errors.txt │ ├── intersectionTypeAssignment.js │ ├── intersectionTypeAssignment.symbols │ ├── intersectionTypeAssignment.types │ ├── intersectionTypeEquivalence.js │ ├── intersectionTypeEquivalence.symbols │ ├── intersectionTypeEquivalence.types │ ├── intersectionTypeInference.errors.txt │ ├── intersectionTypeInference.js │ ├── intersectionTypeInference.symbols │ ├── intersectionTypeInference.types │ ├── intersectionTypeInference1.js │ ├── intersectionTypeInference1.symbols │ ├── intersectionTypeInference1.types │ ├── intersectionTypeInference2.js │ ├── intersectionTypeInference2.symbols │ ├── intersectionTypeInference2.types │ ├── intersectionTypeInference3.js │ ├── intersectionTypeInference3.symbols │ ├── intersectionTypeInference3.types │ ├── intersectionTypeMembers.errors.txt │ ├── intersectionTypeMembers.js │ ├── intersectionTypeMembers.symbols │ ├── intersectionTypeMembers.types │ ├── intersectionTypeNormalization.js │ ├── intersectionTypeNormalization.symbols │ ├── intersectionTypeNormalization.types │ ├── intersectionTypeOverloading.errors.txt │ ├── intersectionTypeOverloading.js │ ├── intersectionTypeOverloading.symbols │ ├── intersectionTypeOverloading.types │ ├── intersectionTypeReadonly.errors.txt │ ├── intersectionTypeReadonly.js │ ├── intersectionTypeReadonly.symbols │ ├── intersectionTypeReadonly.types │ ├── intersectionTypeWithLeadingOperator.js │ ├── intersectionTypeWithLeadingOperator.symbols │ ├── intersectionTypeWithLeadingOperator.types │ ├── intersectionType_useDefineForClassFields.js │ ├── intersectionType_useDefineForClassFields.symbols │ ├── intersectionType_useDefineForClassFields.types │ ├── intersectionWithConflictingPrivates.errors.txt │ ├── intersectionWithConflictingPrivates.js │ ├── intersectionWithConflictingPrivates.symbols │ ├── intersectionWithConflictingPrivates.types │ ├── intersectionWithConstructSignaturePrototypeResult.symbols │ ├── intersectionWithConstructSignaturePrototypeResult.types │ ├── intersectionWithIndexSignatures.errors.txt │ ├── intersectionWithIndexSignatures.js │ ├── intersectionWithIndexSignatures.symbols │ ├── intersectionWithIndexSignatures.types │ ├── intersectionWithUnionConstraint.errors.txt │ ├── intersectionWithUnionConstraint.js │ ├── intersectionWithUnionConstraint.symbols │ ├── intersectionWithUnionConstraint.types │ ├── intersectionsAndEmptyObjects.js │ ├── intersectionsAndEmptyObjects.symbols │ ├── intersectionsAndEmptyObjects.types │ ├── intersectionsAndOptionalProperties.errors.txt │ ├── intersectionsAndOptionalProperties.js │ ├── intersectionsAndOptionalProperties.symbols │ ├── intersectionsAndOptionalProperties.types │ ├── intersectionsAndOptionalProperties2(exactoptionalpropertytypes=false).symbols │ ├── intersectionsAndOptionalProperties2(exactoptionalpropertytypes=false).types │ ├── intersectionsAndOptionalProperties2(exactoptionalpropertytypes=true).errors.txt │ ├── intersectionsAndOptionalProperties2(exactoptionalpropertytypes=true).symbols │ ├── intersectionsAndOptionalProperties2(exactoptionalpropertytypes=true).types │ ├── intersectionsAndOptionalProperties3(exactoptionalpropertytypes=false).symbols │ ├── intersectionsAndOptionalProperties3(exactoptionalpropertytypes=false).types │ ├── intersectionsAndOptionalProperties3(exactoptionalpropertytypes=true).errors.txt │ ├── intersectionsAndOptionalProperties3(exactoptionalpropertytypes=true).symbols │ ├── intersectionsAndOptionalProperties3(exactoptionalpropertytypes=true).types │ ├── intersectionsAndReadonlyProperties.errors.txt │ ├── intersectionsAndReadonlyProperties.js │ ├── intersectionsAndReadonlyProperties.symbols │ ├── intersectionsAndReadonlyProperties.types │ ├── intersectionsOfLargeUnions.errors.txt │ ├── intersectionsOfLargeUnions.js │ ├── intersectionsOfLargeUnions.symbols │ ├── intersectionsOfLargeUnions.types │ ├── intersectionsOfLargeUnions2.errors.txt │ ├── intersectionsOfLargeUnions2.js │ ├── intersectionsOfLargeUnions2.symbols │ ├── intersectionsOfLargeUnions2.types │ ├── intlDateTimeFormatRangeES2021.js │ ├── intlDateTimeFormatRangeES2021.symbols │ ├── intlDateTimeFormatRangeES2021.types │ ├── intlDurationFormat.symbols │ ├── intlDurationFormat.types │ ├── intlNumberFormatES2020.js │ ├── intlNumberFormatES2020.symbols │ ├── intlNumberFormatES2020.types │ ├── intlNumberFormatES2023.js │ ├── intlNumberFormatES2023.symbols │ ├── intlNumberFormatES2023.types │ ├── intlNumberFormatES5UseGrouping(target=es2015).errors.txt │ ├── intlNumberFormatES5UseGrouping(target=es2015).js │ ├── intlNumberFormatES5UseGrouping(target=es2015).symbols │ ├── intlNumberFormatES5UseGrouping(target=es2015).types │ ├── intlNumberFormatES5UseGrouping(target=es5).errors.txt │ ├── intlNumberFormatES5UseGrouping(target=es5).js │ ├── intlNumberFormatES5UseGrouping(target=es5).symbols │ ├── intlNumberFormatES5UseGrouping(target=es5).types │ ├── intraBindingPatternReferences.errors.txt │ ├── intraBindingPatternReferences.symbols │ ├── intraBindingPatternReferences.types │ ├── intraExpressionInferences.errors.txt │ ├── intraExpressionInferences.js │ ├── intraExpressionInferences.symbols │ ├── intraExpressionInferences.types │ ├── intraExpressionInferencesJsx.symbols │ ├── intraExpressionInferencesJsx.types │ ├── intrinsicKeyword.errors.txt │ ├── intrinsicKeyword.js │ ├── intrinsicKeyword.symbols │ ├── intrinsicKeyword.types │ ├── intrinsicTypes.errors.txt │ ├── intrinsicTypes.js │ ├── intrinsicTypes.symbols │ ├── intrinsicTypes.types │ ├── intrinsics.errors.txt │ ├── intrinsics.js │ ├── intrinsics.symbols │ ├── intrinsics.types │ ├── invalidAssignmentsToVoid.errors.txt │ ├── invalidAssignmentsToVoid.js │ ├── invalidAssignmentsToVoid.symbols │ ├── invalidAssignmentsToVoid.types │ ├── invalidBinaryIntegerLiteralAndOctalIntegerLiteral.errors.txt │ ├── invalidBinaryIntegerLiteralAndOctalIntegerLiteral.js │ ├── invalidBinaryIntegerLiteralAndOctalIntegerLiteral.symbols │ ├── invalidBinaryIntegerLiteralAndOctalIntegerLiteral.types │ ├── invalidBooleanAssignments.errors.txt │ ├── invalidBooleanAssignments.js │ ├── invalidBooleanAssignments.symbols │ ├── invalidBooleanAssignments.types │ ├── invalidConstraint1.errors.txt │ ├── invalidConstraint1.js │ ├── invalidConstraint1.symbols │ ├── invalidConstraint1.types │ ├── invalidContinueInDownlevelAsync.errors.txt │ ├── invalidContinueInDownlevelAsync.js │ ├── invalidContinueInDownlevelAsync.symbols │ ├── invalidContinueInDownlevelAsync.types │ ├── invalidDoWhileBreakStatements.errors.txt │ ├── invalidDoWhileBreakStatements.js │ ├── invalidDoWhileBreakStatements.symbols │ ├── invalidDoWhileBreakStatements.types │ ├── invalidDoWhileContinueStatements.errors.txt │ ├── invalidDoWhileContinueStatements.js │ ├── invalidDoWhileContinueStatements.symbols │ ├── invalidDoWhileContinueStatements.types │ ├── invalidEnumAssignments.errors.txt │ ├── invalidEnumAssignments.js │ ├── invalidEnumAssignments.symbols │ ├── invalidEnumAssignments.types │ ├── invalidForBreakStatements.errors.txt │ ├── invalidForBreakStatements.js │ ├── invalidForBreakStatements.symbols │ ├── invalidForBreakStatements.types │ ├── invalidForContinueStatements.errors.txt │ ├── invalidForContinueStatements.js │ ├── invalidForContinueStatements.symbols │ ├── invalidForContinueStatements.types │ ├── invalidForInBreakStatements.errors.txt │ ├── invalidForInBreakStatements.js │ ├── invalidForInBreakStatements.symbols │ ├── invalidForInBreakStatements.types │ ├── invalidForInContinueStatements.errors.txt │ ├── invalidForInContinueStatements.js │ ├── invalidForInContinueStatements.symbols │ ├── invalidForInContinueStatements.types │ ├── invalidImportAliasIdentifiers.errors.txt │ ├── invalidImportAliasIdentifiers.js │ ├── invalidImportAliasIdentifiers.symbols │ ├── invalidImportAliasIdentifiers.types │ ├── invalidInstantiatedModule.errors.txt │ ├── invalidInstantiatedModule.js │ ├── invalidInstantiatedModule.symbols │ ├── invalidInstantiatedModule.types │ ├── invalidLetInForOfAndForIn_ES5.errors.txt │ ├── invalidLetInForOfAndForIn_ES5.js │ ├── invalidLetInForOfAndForIn_ES5.symbols │ ├── invalidLetInForOfAndForIn_ES5.types │ ├── invalidLetInForOfAndForIn_ES6.errors.txt │ ├── invalidLetInForOfAndForIn_ES6.js │ ├── invalidLetInForOfAndForIn_ES6.symbols │ ├── invalidLetInForOfAndForIn_ES6.types │ ├── invalidModuleWithStatementsOfEveryKind.errors.txt │ ├── invalidModuleWithStatementsOfEveryKind.js │ ├── invalidModuleWithStatementsOfEveryKind.symbols │ ├── invalidModuleWithStatementsOfEveryKind.types │ ├── invalidModuleWithVarStatements.errors.txt │ ├── invalidModuleWithVarStatements.js │ ├── invalidModuleWithVarStatements.symbols │ ├── invalidModuleWithVarStatements.types │ ├── invalidMultipleVariableDeclarations.errors.txt │ ├── invalidMultipleVariableDeclarations.js │ ├── invalidMultipleVariableDeclarations.symbols │ ├── invalidMultipleVariableDeclarations.types │ ├── invalidNestedModules.errors.txt │ ├── invalidNestedModules.js │ ├── invalidNestedModules.symbols │ ├── invalidNestedModules.types │ ├── invalidNewTarget.es5(target=es2015).errors.txt │ ├── invalidNewTarget.es5(target=es2015).js │ ├── invalidNewTarget.es5(target=es2015).symbols │ ├── invalidNewTarget.es5(target=es2015).types │ ├── invalidNewTarget.es5(target=es5).errors.txt │ ├── invalidNewTarget.es5(target=es5).js │ ├── invalidNewTarget.es5(target=es5).symbols │ ├── invalidNewTarget.es5(target=es5).types │ ├── invalidNewTarget.es6.errors.txt │ ├── invalidNewTarget.es6.js │ ├── invalidNewTarget.es6.symbols │ ├── invalidNewTarget.es6.types │ ├── invalidNumberAssignments.errors.txt │ ├── invalidNumberAssignments.js │ ├── invalidNumberAssignments.symbols │ ├── invalidNumberAssignments.types │ ├── invalidOptionalChainFromNewExpression.errors.txt │ ├── invalidOptionalChainFromNewExpression.js │ ├── invalidOptionalChainFromNewExpression.symbols │ ├── invalidOptionalChainFromNewExpression.types │ ├── invalidReferenceSyntax1.errors.txt │ ├── invalidReferenceSyntax1.js │ ├── invalidReferenceSyntax1.symbols │ ├── invalidReferenceSyntax1.types │ ├── invalidReturnStatements.errors.txt │ ├── invalidReturnStatements.js │ ├── invalidReturnStatements.symbols │ ├── invalidReturnStatements.types │ ├── invalidSplice.errors.txt │ ├── invalidSplice.js │ ├── invalidSplice.symbols │ ├── invalidSplice.types │ ├── invalidStaticField.errors.txt │ ├── invalidStaticField.js │ ├── invalidStaticField.symbols │ ├── invalidStaticField.types │ ├── invalidStringAssignments.errors.txt │ ├── invalidStringAssignments.js │ ├── invalidStringAssignments.symbols │ ├── invalidStringAssignments.types │ ├── invalidSwitchBreakStatement.errors.txt │ ├── invalidSwitchBreakStatement.js │ ├── invalidSwitchBreakStatement.symbols │ ├── invalidSwitchBreakStatement.types │ ├── invalidSwitchContinueStatement.errors.txt │ ├── invalidSwitchContinueStatement.js │ ├── invalidSwitchContinueStatement.symbols │ ├── invalidSwitchContinueStatement.types │ ├── invalidSymbolInTypeParameter1.errors.txt │ ├── invalidSymbolInTypeParameter1.js │ ├── invalidSymbolInTypeParameter1.symbols │ ├── invalidSymbolInTypeParameter1.types │ ├── invalidSyntaxNamespaceImportWithAMD.errors.txt │ ├── invalidSyntaxNamespaceImportWithAMD.js │ ├── invalidSyntaxNamespaceImportWithAMD.symbols │ ├── invalidSyntaxNamespaceImportWithAMD.types │ ├── invalidSyntaxNamespaceImportWithCommonjs.errors.txt │ ├── invalidSyntaxNamespaceImportWithCommonjs.js │ ├── invalidSyntaxNamespaceImportWithCommonjs.symbols │ ├── invalidSyntaxNamespaceImportWithCommonjs.types │ ├── invalidSyntaxNamespaceImportWithSystem.errors.txt │ ├── invalidSyntaxNamespaceImportWithSystem.js │ ├── invalidSyntaxNamespaceImportWithSystem.symbols │ ├── invalidSyntaxNamespaceImportWithSystem.types │ ├── invalidTaggedTemplateEscapeSequences(target=es2015).errors.txt │ ├── invalidTaggedTemplateEscapeSequences(target=es2015).js │ ├── invalidTaggedTemplateEscapeSequences(target=es2015).symbols │ ├── invalidTaggedTemplateEscapeSequences(target=es2015).types │ ├── invalidTaggedTemplateEscapeSequences(target=es5).errors.txt │ ├── invalidTaggedTemplateEscapeSequences(target=es5).js │ ├── invalidTaggedTemplateEscapeSequences(target=es5).symbols │ ├── invalidTaggedTemplateEscapeSequences(target=es5).types │ ├── invalidTaggedTemplateEscapeSequences(target=esnext).errors.txt │ ├── invalidTaggedTemplateEscapeSequences(target=esnext).js │ ├── invalidTaggedTemplateEscapeSequences(target=esnext).symbols │ ├── invalidTaggedTemplateEscapeSequences(target=esnext).types │ ├── invalidThisEmitInContextualObjectLiteral.js │ ├── invalidThisEmitInContextualObjectLiteral.symbols │ ├── invalidThisEmitInContextualObjectLiteral.types │ ├── invalidThrowStatement.errors.txt │ ├── invalidThrowStatement.js │ ├── invalidThrowStatement.symbols │ ├── invalidThrowStatement.types │ ├── invalidTripleSlashReference.errors.txt │ ├── invalidTripleSlashReference.js │ ├── invalidTripleSlashReference.symbols │ ├── invalidTripleSlashReference.types │ ├── invalidTryStatements.errors.txt │ ├── invalidTryStatements.js │ ├── invalidTryStatements.symbols │ ├── invalidTryStatements.types │ ├── invalidTypeNames.js │ ├── invalidTypeNames.symbols │ ├── invalidTypeNames.types │ ├── invalidTypeOfTarget.errors.txt │ ├── invalidTypeOfTarget.js │ ├── invalidTypeOfTarget.symbols │ ├── invalidTypeOfTarget.types │ ├── invalidUndefinedAssignments.errors.txt │ ├── invalidUndefinedAssignments.js │ ├── invalidUndefinedAssignments.symbols │ ├── invalidUndefinedAssignments.types │ ├── invalidUndefinedValues.errors.txt │ ├── invalidUndefinedValues.js │ ├── invalidUndefinedValues.symbols │ ├── invalidUndefinedValues.types │ ├── invalidUnicodeEscapeSequance.errors.txt │ ├── invalidUnicodeEscapeSequance.js │ ├── invalidUnicodeEscapeSequance.symbols │ ├── invalidUnicodeEscapeSequance.types │ ├── invalidUnicodeEscapeSequance2.errors.txt │ ├── invalidUnicodeEscapeSequance2.js │ ├── invalidUnicodeEscapeSequance2.symbols │ ├── invalidUnicodeEscapeSequance2.types │ ├── invalidUnicodeEscapeSequance3.errors.txt │ ├── invalidUnicodeEscapeSequance3.js │ ├── invalidUnicodeEscapeSequance3.symbols │ ├── invalidUnicodeEscapeSequance3.types │ ├── invalidUnicodeEscapeSequance4.errors.txt │ ├── invalidUnicodeEscapeSequance4.js │ ├── invalidUnicodeEscapeSequance4.symbols │ ├── invalidUnicodeEscapeSequance4.types │ ├── invalidUseOfTypeAsNamespace.errors.txt │ ├── invalidUseOfTypeAsNamespace.js │ ├── invalidUseOfTypeAsNamespace.symbols │ ├── invalidUseOfTypeAsNamespace.types │ ├── invalidVoidAssignments.errors.txt │ ├── invalidVoidAssignments.js │ ├── invalidVoidAssignments.symbols │ ├── invalidVoidAssignments.types │ ├── invalidVoidValues.errors.txt │ ├── invalidVoidValues.js │ ├── invalidVoidValues.symbols │ ├── invalidVoidValues.types │ ├── invalidWhileBreakStatements.errors.txt │ ├── invalidWhileBreakStatements.js │ ├── invalidWhileBreakStatements.symbols │ ├── invalidWhileBreakStatements.types │ ├── invalidWhileContinueStatements.errors.txt │ ├── invalidWhileContinueStatements.js │ ├── invalidWhileContinueStatements.symbols │ ├── invalidWhileContinueStatements.types │ ├── invariantGenericErrorElaboration.errors.txt │ ├── invariantGenericErrorElaboration.js │ ├── invariantGenericErrorElaboration.symbols │ ├── invariantGenericErrorElaboration.types │ ├── invocationExpressionInFunctionParameter.errors.txt │ ├── invocationExpressionInFunctionParameter.js │ ├── invocationExpressionInFunctionParameter.symbols │ ├── invocationExpressionInFunctionParameter.types │ ├── invokingNonGenericMethodWithTypeArguments1.errors.txt │ ├── invokingNonGenericMethodWithTypeArguments1.js │ ├── invokingNonGenericMethodWithTypeArguments1.symbols │ ├── invokingNonGenericMethodWithTypeArguments1.types │ ├── invokingNonGenericMethodWithTypeArguments2.errors.txt │ ├── invokingNonGenericMethodWithTypeArguments2.js │ ├── invokingNonGenericMethodWithTypeArguments2.symbols │ ├── invokingNonGenericMethodWithTypeArguments2.types │ ├── ipromise2.errors.txt │ ├── ipromise2.js │ ├── ipromise2.symbols │ ├── ipromise2.types │ ├── ipromise3.errors.txt │ ├── ipromise3.js │ ├── ipromise3.symbols │ ├── ipromise3.types │ ├── ipromise4.errors.txt │ ├── ipromise4.js │ ├── ipromise4.symbols │ ├── ipromise4.types │ ├── isArray.errors.txt │ ├── isArray.js │ ├── isArray.symbols │ ├── isArray.types │ ├── isDeclarationVisibleNodeKinds(target=es2015).errors.txt │ ├── isDeclarationVisibleNodeKinds(target=es2015).js │ ├── isDeclarationVisibleNodeKinds(target=es2015).symbols │ ├── isDeclarationVisibleNodeKinds(target=es2015).types │ ├── isDeclarationVisibleNodeKinds(target=es5).errors.txt │ ├── isDeclarationVisibleNodeKinds(target=es5).js │ ├── isDeclarationVisibleNodeKinds(target=es5).symbols │ ├── isDeclarationVisibleNodeKinds(target=es5).types │ ├── isDefinitionAcrossGlobalProjects.baseline.jsonc │ ├── isDefinitionAcrossModuleProjects.baseline.jsonc │ ├── isDefinitionInterfaceImplementation.baseline.jsonc │ ├── isDefinitionOverloads.baseline.jsonc │ ├── isDefinitionShorthandProperty.baseline.jsonc │ ├── isDefinitionSingleImport.baseline.jsonc │ ├── isDefinitionSingleReference.baseline.jsonc │ ├── isLiteral1.errors.txt │ ├── isLiteral1.js │ ├── isLiteral1.symbols │ ├── isLiteral1.types │ ├── isolatedDeclarationErrorTypes1.errors.txt │ ├── isolatedDeclarationErrorTypes1.js │ ├── isolatedDeclarationErrorTypes1.symbols │ ├── isolatedDeclarationErrorTypes1.types │ ├── isolatedDeclarationErrors.errors.txt │ ├── isolatedDeclarationErrors.js │ ├── isolatedDeclarationErrors.symbols │ ├── isolatedDeclarationErrors.types │ ├── isolatedDeclarationErrorsAugmentation.errors.txt │ ├── isolatedDeclarationErrorsAugmentation.js │ ├── isolatedDeclarationErrorsAugmentation.symbols │ ├── isolatedDeclarationErrorsAugmentation.types │ ├── isolatedDeclarationErrorsClasses.errors.txt │ ├── isolatedDeclarationErrorsClasses.js │ ├── isolatedDeclarationErrorsClasses.symbols │ ├── isolatedDeclarationErrorsClasses.types │ ├── isolatedDeclarationErrorsClassesExpressions.errors.txt │ ├── isolatedDeclarationErrorsClassesExpressions.js │ ├── isolatedDeclarationErrorsClassesExpressions.symbols │ ├── isolatedDeclarationErrorsClassesExpressions.types │ ├── isolatedDeclarationErrorsDefault.errors.txt │ ├── isolatedDeclarationErrorsDefault.js │ ├── isolatedDeclarationErrorsDefault.symbols │ ├── isolatedDeclarationErrorsDefault.types │ ├── isolatedDeclarationErrorsEnums.errors.txt │ ├── isolatedDeclarationErrorsEnums.js │ ├── isolatedDeclarationErrorsEnums.symbols │ ├── isolatedDeclarationErrorsEnums.types │ ├── isolatedDeclarationErrorsExpandoFunctions.errors.txt │ ├── isolatedDeclarationErrorsExpandoFunctions.js │ ├── isolatedDeclarationErrorsExpandoFunctions.symbols │ ├── isolatedDeclarationErrorsExpandoFunctions.types │ ├── isolatedDeclarationErrorsExpressions.errors.txt │ ├── isolatedDeclarationErrorsExpressions.js │ ├── isolatedDeclarationErrorsExpressions.symbols │ ├── isolatedDeclarationErrorsExpressions.types │ ├── isolatedDeclarationErrorsFunctionDeclarations.errors.txt │ ├── isolatedDeclarationErrorsFunctionDeclarations.js │ ├── isolatedDeclarationErrorsFunctionDeclarations.symbols │ ├── isolatedDeclarationErrorsFunctionDeclarations.types │ ├── isolatedDeclarationErrorsObjects.errors.txt │ ├── isolatedDeclarationErrorsObjects.js │ ├── isolatedDeclarationErrorsObjects.symbols │ ├── isolatedDeclarationErrorsObjects.types │ ├── isolatedDeclarationErrorsReturnTypes.errors.txt │ ├── isolatedDeclarationErrorsReturnTypes.js │ ├── isolatedDeclarationErrorsReturnTypes.symbols │ ├── isolatedDeclarationErrorsReturnTypes.types │ ├── isolatedDeclarationLazySymbols.errors.txt │ ├── isolatedDeclarationLazySymbols.js │ ├── isolatedDeclarationLazySymbols.symbols │ ├── isolatedDeclarationLazySymbols.types │ ├── isolatedDeclarationOutFile.errors.txt │ ├── isolatedDeclarationOutFile.js │ ├── isolatedDeclarationOutFile.symbols │ ├── isolatedDeclarationOutFile.types │ ├── isolatedDeclarationsAddUndefined.errors.txt │ ├── isolatedDeclarationsAddUndefined.js │ ├── isolatedDeclarationsAddUndefined.symbols │ ├── isolatedDeclarationsAddUndefined.types │ ├── isolatedDeclarationsAddUndefined2.errors.txt │ ├── isolatedDeclarationsAddUndefined2.js │ ├── isolatedDeclarationsAddUndefined2.symbols │ ├── isolatedDeclarationsAddUndefined2.types │ ├── isolatedDeclarationsAllowJs.errors.txt │ ├── isolatedDeclarationsAllowJs.js │ ├── isolatedDeclarationsAllowJs.symbols │ ├── isolatedDeclarationsAllowJs.types │ ├── isolatedDeclarationsLiterals.js │ ├── isolatedDeclarationsLiterals.symbols │ ├── isolatedDeclarationsLiterals.types │ ├── isolatedDeclarationsRequiresDeclaration.errors.txt │ ├── isolatedDeclarationsRequiresDeclaration.js │ ├── isolatedDeclarationsRequiresDeclaration.symbols │ ├── isolatedDeclarationsRequiresDeclaration.types │ ├── isolatedDeclarationsStrictBuiltinIteratorReturn(isolateddeclarations=false,strictbuiltiniteratorreturn=false).js │ ├── isolatedDeclarationsStrictBuiltinIteratorReturn(isolateddeclarations=false,strictbuiltiniteratorreturn=true).js │ ├── isolatedDeclarationsStrictBuiltinIteratorReturn(isolateddeclarations=true,strictbuiltiniteratorreturn=false).js │ ├── isolatedDeclarationsStrictBuiltinIteratorReturn(isolateddeclarations=true,strictbuiltiniteratorreturn=true).js │ ├── isolatedModulesAmbientConstEnum.errors.txt │ ├── isolatedModulesAmbientConstEnum.js │ ├── isolatedModulesAmbientConstEnum.symbols │ ├── isolatedModulesAmbientConstEnum.types │ ├── isolatedModulesConstEnum.js │ ├── isolatedModulesConstEnum.symbols │ ├── isolatedModulesConstEnum.types │ ├── isolatedModulesDeclaration.js │ ├── isolatedModulesDeclaration.symbols │ ├── isolatedModulesDeclaration.types │ ├── isolatedModulesDontElideReExportStar.js │ ├── isolatedModulesDontElideReExportStar.symbols │ ├── isolatedModulesDontElideReExportStar.types │ ├── isolatedModulesES6.js │ ├── isolatedModulesES6.symbols │ ├── isolatedModulesES6.types │ ├── isolatedModulesExportDeclarationType.errors.txt │ ├── isolatedModulesExportDeclarationType.js │ ├── isolatedModulesExportImportUninstantiatedNamespace.errors.txt │ ├── isolatedModulesExportImportUninstantiatedNamespace.js │ ├── isolatedModulesExternalModuleForced.js │ ├── isolatedModulesExternalModuleForced.symbols │ ├── isolatedModulesExternalModuleForced.types │ ├── isolatedModulesGlobalNamespacesAndEnums.errors.txt │ ├── isolatedModulesGlobalNamespacesAndEnums.js │ ├── isolatedModulesGlobalNamespacesAndEnums.symbols │ ├── isolatedModulesGlobalNamespacesAndEnums.types │ ├── isolatedModulesImportConstEnum.js │ ├── isolatedModulesImportConstEnum.symbols │ ├── isolatedModulesImportConstEnum.types │ ├── isolatedModulesImportConstEnumTypeOnly.js │ ├── isolatedModulesImportConstEnumTypeOnly.symbols │ ├── isolatedModulesImportConstEnumTypeOnly.types │ ├── isolatedModulesImportExportElision(target=es2015).errors.txt │ ├── isolatedModulesImportExportElision(target=es2015).js │ ├── isolatedModulesImportExportElision(target=es2015).symbols │ ├── isolatedModulesImportExportElision(target=es2015).types │ ├── isolatedModulesImportExportElision(target=es5).errors.txt │ ├── isolatedModulesImportExportElision(target=es5).js │ ├── isolatedModulesImportExportElision(target=es5).symbols │ ├── isolatedModulesImportExportElision(target=es5).types │ ├── isolatedModulesNoEmitOnError.errors.txt │ ├── isolatedModulesNoEmitOnError.js │ ├── isolatedModulesNoEmitOnError.symbols │ ├── isolatedModulesNoEmitOnError.types │ ├── isolatedModulesNoExternalModule.js │ ├── isolatedModulesNoExternalModule.symbols │ ├── isolatedModulesNoExternalModule.types │ ├── isolatedModulesNoExternalModuleMultiple.js │ ├── isolatedModulesNoExternalModuleMultiple.symbols │ ├── isolatedModulesNoExternalModuleMultiple.types │ ├── isolatedModulesNonAmbientConstEnum.js │ ├── isolatedModulesNonAmbientConstEnum.symbols │ ├── isolatedModulesNonAmbientConstEnum.types │ ├── isolatedModulesOut.errors.txt │ ├── isolatedModulesOut.js │ ├── isolatedModulesOut.symbols │ ├── isolatedModulesOut.types │ ├── isolatedModulesPlainFile-AMD(target=es2015).errors.txt │ ├── isolatedModulesPlainFile-AMD(target=es2015).js │ ├── isolatedModulesPlainFile-AMD(target=es2015).symbols │ ├── isolatedModulesPlainFile-AMD(target=es2015).types │ ├── isolatedModulesPlainFile-AMD(target=es5).errors.txt │ ├── isolatedModulesPlainFile-AMD(target=es5).js │ ├── isolatedModulesPlainFile-AMD(target=es5).symbols │ ├── isolatedModulesPlainFile-AMD(target=es5).types │ ├── isolatedModulesPlainFile-CommonJS(target=es2015).js │ ├── isolatedModulesPlainFile-CommonJS(target=es2015).symbols │ ├── isolatedModulesPlainFile-CommonJS(target=es2015).types │ ├── isolatedModulesPlainFile-CommonJS(target=es5).errors.txt │ ├── isolatedModulesPlainFile-CommonJS(target=es5).js │ ├── isolatedModulesPlainFile-CommonJS(target=es5).symbols │ ├── isolatedModulesPlainFile-CommonJS(target=es5).types │ ├── isolatedModulesPlainFile-ES6.js │ ├── isolatedModulesPlainFile-ES6.symbols │ ├── isolatedModulesPlainFile-ES6.types │ ├── isolatedModulesPlainFile-System(target=es2015).errors.txt │ ├── isolatedModulesPlainFile-System(target=es2015).js │ ├── isolatedModulesPlainFile-System(target=es2015).symbols │ ├── isolatedModulesPlainFile-System(target=es2015).types │ ├── isolatedModulesPlainFile-System(target=es5).errors.txt │ ├── isolatedModulesPlainFile-System(target=es5).js │ ├── isolatedModulesPlainFile-System(target=es5).symbols │ ├── isolatedModulesPlainFile-System(target=es5).types │ ├── isolatedModulesPlainFile-UMD(target=es2015).errors.txt │ ├── isolatedModulesPlainFile-UMD(target=es2015).js │ ├── isolatedModulesPlainFile-UMD(target=es2015).symbols │ ├── isolatedModulesPlainFile-UMD(target=es2015).types │ ├── isolatedModulesPlainFile-UMD(target=es5).errors.txt │ ├── isolatedModulesPlainFile-UMD(target=es5).js │ ├── isolatedModulesPlainFile-UMD(target=es5).symbols │ ├── isolatedModulesPlainFile-UMD(target=es5).types │ ├── isolatedModulesReExportType.errors.txt │ ├── isolatedModulesReExportType.js │ ├── isolatedModulesReExportType.symbols │ ├── isolatedModulesReExportType.types │ ├── isolatedModulesRequiresPreserveConstEnum.errors.txt │ ├── isolatedModulesRequiresPreserveConstEnum.js │ ├── isolatedModulesRequiresPreserveConstEnum.symbols │ ├── isolatedModulesRequiresPreserveConstEnum.types │ ├── isolatedModulesShadowGlobalTypeNotValue(isolatedmodules=false,verbatimmodulesyntax=true).errors.txt │ ├── isolatedModulesShadowGlobalTypeNotValue(isolatedmodules=true,verbatimmodulesyntax=false).errors.txt │ ├── isolatedModulesShadowGlobalTypeNotValue(isolatedmodules=true,verbatimmodulesyntax=true).errors.txt │ ├── isolatedModulesSketchyAliasLocalMerge(isolatedmodules=false,verbatimmodulesyntax=true).errors.txt │ ├── isolatedModulesSketchyAliasLocalMerge(isolatedmodules=true,verbatimmodulesyntax=false).errors.txt │ ├── isolatedModulesSketchyAliasLocalMerge(isolatedmodules=true,verbatimmodulesyntax=true).errors.txt │ ├── isolatedModulesSourceMap.js │ ├── isolatedModulesSourceMap.sourcemap.txt │ ├── isolatedModulesSourceMap.symbols │ ├── isolatedModulesSourceMap.types │ ├── isolatedModulesSpecifiedModule.js │ ├── isolatedModulesSpecifiedModule.symbols │ ├── isolatedModulesSpecifiedModule.types │ ├── isolatedModulesUnspecifiedModule.js │ ├── isolatedModulesUnspecifiedModule.symbols │ ├── isolatedModulesUnspecifiedModule.types │ ├── isolatedModulesWithDeclarationFile.js │ ├── isolatedModulesWithDeclarationFile.symbols │ ├── isolatedModulesWithDeclarationFile.types │ ├── isolatedModules_resolveJsonModule.js │ ├── isolatedModules_resolveJsonModule.symbols │ ├── isolatedModules_resolveJsonModule.types │ ├── isolatedModules_resolveJsonModule_strict_outDir_commonJs.js │ ├── isolatedModules_resolveJsonModule_strict_outDir_commonJs.symbols │ ├── isolatedModules_resolveJsonModule_strict_outDir_commonJs.types │ ├── isomorphicMappedTypeInference.js │ ├── isomorphicMappedTypeInference.symbols │ ├── isomorphicMappedTypeInference.types │ ├── iterableArrayPattern1.js │ ├── iterableArrayPattern1.symbols │ ├── iterableArrayPattern1.types │ ├── iterableArrayPattern10.errors.txt │ ├── iterableArrayPattern10.js │ ├── iterableArrayPattern10.symbols │ ├── iterableArrayPattern10.types │ ├── iterableArrayPattern11.js │ ├── iterableArrayPattern11.symbols │ ├── iterableArrayPattern11.types │ ├── iterableArrayPattern12.js │ ├── iterableArrayPattern12.symbols │ ├── iterableArrayPattern12.types │ ├── iterableArrayPattern13.errors.txt │ ├── iterableArrayPattern13.js │ ├── iterableArrayPattern13.symbols │ ├── iterableArrayPattern13.types │ ├── iterableArrayPattern14.js │ ├── iterableArrayPattern14.symbols │ ├── iterableArrayPattern14.types │ ├── iterableArrayPattern15.js │ ├── iterableArrayPattern15.symbols │ ├── iterableArrayPattern15.types │ ├── iterableArrayPattern16.errors.txt │ ├── iterableArrayPattern16.js │ ├── iterableArrayPattern16.symbols │ ├── iterableArrayPattern16.types │ ├── iterableArrayPattern17.errors.txt │ ├── iterableArrayPattern17.js │ ├── iterableArrayPattern17.symbols │ ├── iterableArrayPattern17.types │ ├── iterableArrayPattern18.errors.txt │ ├── iterableArrayPattern18.js │ ├── iterableArrayPattern18.symbols │ ├── iterableArrayPattern18.types │ ├── iterableArrayPattern19.errors.txt │ ├── iterableArrayPattern19.js │ ├── iterableArrayPattern19.symbols │ ├── iterableArrayPattern19.types │ ├── iterableArrayPattern2.js │ ├── iterableArrayPattern2.symbols │ ├── iterableArrayPattern2.types │ ├── iterableArrayPattern20.js │ ├── iterableArrayPattern20.symbols │ ├── iterableArrayPattern20.types │ ├── iterableArrayPattern21.errors.txt │ ├── iterableArrayPattern21.js │ ├── iterableArrayPattern21.symbols │ ├── iterableArrayPattern21.types │ ├── iterableArrayPattern22.errors.txt │ ├── iterableArrayPattern22.js │ ├── iterableArrayPattern22.symbols │ ├── iterableArrayPattern22.types │ ├── iterableArrayPattern23.errors.txt │ ├── iterableArrayPattern23.js │ ├── iterableArrayPattern23.symbols │ ├── iterableArrayPattern23.types │ ├── iterableArrayPattern24.errors.txt │ ├── iterableArrayPattern24.js │ ├── iterableArrayPattern24.symbols │ ├── iterableArrayPattern24.types │ ├── iterableArrayPattern25.errors.txt │ ├── iterableArrayPattern25.js │ ├── iterableArrayPattern25.symbols │ ├── iterableArrayPattern25.types │ ├── iterableArrayPattern26.errors.txt │ ├── iterableArrayPattern26.js │ ├── iterableArrayPattern26.symbols │ ├── iterableArrayPattern26.types │ ├── iterableArrayPattern27.js │ ├── iterableArrayPattern27.symbols │ ├── iterableArrayPattern27.types │ ├── iterableArrayPattern28.errors.txt │ ├── iterableArrayPattern28.js │ ├── iterableArrayPattern28.symbols │ ├── iterableArrayPattern28.types │ ├── iterableArrayPattern29.errors.txt │ ├── iterableArrayPattern29.js │ ├── iterableArrayPattern29.symbols │ ├── iterableArrayPattern29.types │ ├── iterableArrayPattern3.js │ ├── iterableArrayPattern3.symbols │ ├── iterableArrayPattern3.types │ ├── iterableArrayPattern30.js │ ├── iterableArrayPattern30.symbols │ ├── iterableArrayPattern30.types │ ├── iterableArrayPattern4.js │ ├── iterableArrayPattern4.symbols │ ├── iterableArrayPattern4.types │ ├── iterableArrayPattern5.errors.txt │ ├── iterableArrayPattern5.js │ ├── iterableArrayPattern5.symbols │ ├── iterableArrayPattern5.types │ ├── iterableArrayPattern6.errors.txt │ ├── iterableArrayPattern6.js │ ├── iterableArrayPattern6.symbols │ ├── iterableArrayPattern6.types │ ├── iterableArrayPattern7.errors.txt │ ├── iterableArrayPattern7.js │ ├── iterableArrayPattern7.symbols │ ├── iterableArrayPattern7.types │ ├── iterableArrayPattern8.errors.txt │ ├── iterableArrayPattern8.js │ ├── iterableArrayPattern8.symbols │ ├── iterableArrayPattern8.types │ ├── iterableArrayPattern9.js │ ├── iterableArrayPattern9.symbols │ ├── iterableArrayPattern9.types │ ├── iterableContextualTyping1.js │ ├── iterableContextualTyping1.symbols │ ├── iterableContextualTyping1.types │ ├── iterableTReturnTNext(strictbuiltiniteratorreturn=false).js │ ├── iterableTReturnTNext(strictbuiltiniteratorreturn=false).symbols │ ├── iterableTReturnTNext(strictbuiltiniteratorreturn=false).types │ ├── iterableTReturnTNext(strictbuiltiniteratorreturn=true).errors.txt │ ├── iterableTReturnTNext(strictbuiltiniteratorreturn=true).js │ ├── iterableTReturnTNext(strictbuiltiniteratorreturn=true).symbols │ ├── iterableTReturnTNext(strictbuiltiniteratorreturn=true).types │ ├── iterableWithNeverAsUnionMember(target=es5).errors.txt │ ├── iterableWithNeverAsUnionMember(target=es5).symbols │ ├── iterableWithNeverAsUnionMember(target=es5).types │ ├── iterableWithNeverAsUnionMember(target=esnext).errors.txt │ ├── iterableWithNeverAsUnionMember(target=esnext).symbols │ ├── iterableWithNeverAsUnionMember(target=esnext).types │ ├── iteratorExtraParameters.errors.txt │ ├── iteratorSpreadInArray.js │ ├── iteratorSpreadInArray.symbols │ ├── iteratorSpreadInArray.types │ ├── iteratorSpreadInArray10.errors.txt │ ├── iteratorSpreadInArray10.js │ ├── iteratorSpreadInArray10.symbols │ ├── iteratorSpreadInArray10.types │ ├── iteratorSpreadInArray11.errors.txt │ ├── iteratorSpreadInArray11.js │ ├── iteratorSpreadInArray11.symbols │ ├── iteratorSpreadInArray11.types │ ├── iteratorSpreadInArray2.js │ ├── iteratorSpreadInArray2.symbols │ ├── iteratorSpreadInArray2.types │ ├── iteratorSpreadInArray3.js │ ├── iteratorSpreadInArray3.symbols │ ├── iteratorSpreadInArray3.types │ ├── iteratorSpreadInArray4.js │ ├── iteratorSpreadInArray4.symbols │ ├── iteratorSpreadInArray4.types │ ├── iteratorSpreadInArray5.errors.txt │ ├── iteratorSpreadInArray5.js │ ├── iteratorSpreadInArray5.symbols │ ├── iteratorSpreadInArray5.types │ ├── iteratorSpreadInArray6.errors.txt │ ├── iteratorSpreadInArray6.js │ ├── iteratorSpreadInArray6.symbols │ ├── iteratorSpreadInArray6.types │ ├── iteratorSpreadInArray7.errors.txt │ ├── iteratorSpreadInArray7.js │ ├── iteratorSpreadInArray7.symbols │ ├── iteratorSpreadInArray7.types │ ├── iteratorSpreadInArray8.errors.txt │ ├── iteratorSpreadInArray8.js │ ├── iteratorSpreadInArray8.symbols │ ├── iteratorSpreadInArray8.types │ ├── iteratorSpreadInArray9.js │ ├── iteratorSpreadInArray9.symbols │ ├── iteratorSpreadInArray9.types │ ├── iteratorSpreadInCall.errors.txt │ ├── iteratorSpreadInCall.js │ ├── iteratorSpreadInCall.symbols │ ├── iteratorSpreadInCall.types │ ├── iteratorSpreadInCall10.errors.txt │ ├── iteratorSpreadInCall10.js │ ├── iteratorSpreadInCall10.symbols │ ├── iteratorSpreadInCall10.types │ ├── iteratorSpreadInCall11.js │ ├── iteratorSpreadInCall11.symbols │ ├── iteratorSpreadInCall11.types │ ├── iteratorSpreadInCall12.js │ ├── iteratorSpreadInCall12.symbols │ ├── iteratorSpreadInCall12.types │ ├── iteratorSpreadInCall2.errors.txt │ ├── iteratorSpreadInCall2.js │ ├── iteratorSpreadInCall2.symbols │ ├── iteratorSpreadInCall2.types │ ├── iteratorSpreadInCall3.js │ ├── iteratorSpreadInCall3.symbols │ ├── iteratorSpreadInCall3.types │ ├── iteratorSpreadInCall4.errors.txt │ ├── iteratorSpreadInCall4.js │ ├── iteratorSpreadInCall4.symbols │ ├── iteratorSpreadInCall4.types │ ├── iteratorSpreadInCall5.js │ ├── iteratorSpreadInCall5.symbols │ ├── iteratorSpreadInCall5.types │ ├── iteratorSpreadInCall6.errors.txt │ ├── iteratorSpreadInCall6.js │ ├── iteratorSpreadInCall6.symbols │ ├── iteratorSpreadInCall6.types │ ├── iteratorSpreadInCall7.errors.txt │ ├── iteratorSpreadInCall7.js │ ├── iteratorSpreadInCall7.symbols │ ├── iteratorSpreadInCall7.types │ ├── iteratorSpreadInCall8.errors.txt │ ├── iteratorSpreadInCall8.js │ ├── iteratorSpreadInCall8.symbols │ ├── iteratorSpreadInCall8.types │ ├── iteratorSpreadInCall9.errors.txt │ ├── iteratorSpreadInCall9.js │ ├── iteratorSpreadInCall9.symbols │ ├── iteratorSpreadInCall9.types │ ├── iteratorsAndStrictNullChecks.js │ ├── iteratorsAndStrictNullChecks.symbols │ ├── iteratorsAndStrictNullChecks.types │ ├── javaScriptClass2.baseline.jsonc │ ├── javaScriptClass3.baseline.jsonc │ ├── javascriptCommonjsModule.js │ ├── javascriptCommonjsModule.symbols │ ├── javascriptCommonjsModule.types │ ├── javascriptDefinePropertyPrototypeNonConstructor.symbols │ ├── javascriptDefinePropertyPrototypeNonConstructor.types │ ├── javascriptImportDefaultBadExport.symbols │ ├── javascriptImportDefaultBadExport.types │ ├── javascriptThisAssignmentInStaticBlock.js │ ├── javascriptThisAssignmentInStaticBlock.symbols │ ├── javascriptThisAssignmentInStaticBlock.types │ ├── jqueryInference.js │ ├── jqueryInference.symbols │ ├── jqueryInference.types │ ├── jsCheckObjectDefineThisNoCrash.errors.txt │ ├── jsCheckObjectDefineThisNoCrash.symbols │ ├── jsCheckObjectDefineThisNoCrash.types │ ├── jsContainerMergeJsContainer.symbols │ ├── jsContainerMergeJsContainer.types │ ├── jsContainerMergeTsDeclaration.symbols │ ├── jsContainerMergeTsDeclaration.types │ ├── jsContainerMergeTsDeclaration2.errors.txt │ ├── jsContainerMergeTsDeclaration2.symbols │ ├── jsContainerMergeTsDeclaration2.types │ ├── jsContainerMergeTsDeclaration3.errors.txt │ ├── jsContainerMergeTsDeclaration3.symbols │ ├── jsContainerMergeTsDeclaration3.types │ ├── jsDeclarationEmitDoesNotRenameImport.js │ ├── jsDeclarationEmitDoesNotRenameImport.symbols │ ├── jsDeclarationEmitDoesNotRenameImport.types │ ├── jsDeclarationEmitExportAssignedArray.js │ ├── jsDeclarationEmitExportAssignedArray.symbols │ ├── jsDeclarationEmitExportAssignedArray.types │ ├── jsDeclarationEmitExportAssignedFunctionWithExtraTypedefsMembers.js │ ├── jsDeclarationEmitExportAssignedFunctionWithExtraTypedefsMembers.symbols │ ├── jsDeclarationEmitExportAssignedFunctionWithExtraTypedefsMembers.types │ ├── jsDeclarationEmitExportedClassWithExtends.errors.txt │ ├── jsDeclarationEmitExportedClassWithExtends.js │ ├── jsDeclarationEmitExportedClassWithExtends.symbols │ ├── jsDeclarationEmitExportedClassWithExtends.types │ ├── jsDeclarationsClassAccessor.js │ ├── jsDeclarationsClassAccessor.symbols │ ├── jsDeclarationsClassAccessor.types │ ├── jsDeclarationsClassExtendsVisibility(target=es2015).js │ ├── jsDeclarationsClassExtendsVisibility(target=es2015).symbols │ ├── jsDeclarationsClassExtendsVisibility(target=es2015).types │ ├── jsDeclarationsClassExtendsVisibility(target=es5).errors.txt │ ├── jsDeclarationsClassExtendsVisibility(target=es5).js │ ├── jsDeclarationsClassExtendsVisibility(target=es5).symbols │ ├── jsDeclarationsClassExtendsVisibility(target=es5).types │ ├── jsDeclarationsClassImplementsGenericsSerialization(target=es2015).js │ ├── jsDeclarationsClassImplementsGenericsSerialization(target=es2015).symbols │ ├── jsDeclarationsClassImplementsGenericsSerialization(target=es2015).types │ ├── jsDeclarationsClassImplementsGenericsSerialization(target=es5).errors.txt │ ├── jsDeclarationsClassImplementsGenericsSerialization(target=es5).js │ ├── jsDeclarationsClassImplementsGenericsSerialization(target=es5).symbols │ ├── jsDeclarationsClassImplementsGenericsSerialization(target=es5).types │ ├── jsDeclarationsClassLeadingOptional(target=es2015).js │ ├── jsDeclarationsClassLeadingOptional(target=es2015).symbols │ ├── jsDeclarationsClassLeadingOptional(target=es2015).types │ ├── jsDeclarationsClassLeadingOptional(target=es5).errors.txt │ ├── jsDeclarationsClassLeadingOptional(target=es5).js │ ├── jsDeclarationsClassLeadingOptional(target=es5).symbols │ ├── jsDeclarationsClassLeadingOptional(target=es5).types │ ├── jsDeclarationsClassLikeHeuristic(target=es2015).errors.txt │ ├── jsDeclarationsClassLikeHeuristic(target=es2015).js │ ├── jsDeclarationsClassLikeHeuristic(target=es2015).symbols │ ├── jsDeclarationsClassLikeHeuristic(target=es2015).types │ ├── jsDeclarationsClassLikeHeuristic(target=es5).errors.txt │ ├── jsDeclarationsClassLikeHeuristic(target=es5).js │ ├── jsDeclarationsClassLikeHeuristic(target=es5).symbols │ ├── jsDeclarationsClassLikeHeuristic(target=es5).types │ ├── jsDeclarationsClassMethod.js │ ├── jsDeclarationsClassMethod.symbols │ ├── jsDeclarationsClassMethod.types │ ├── jsDeclarationsClassStatic(target=es2015).js │ ├── jsDeclarationsClassStatic(target=es2015).symbols │ ├── jsDeclarationsClassStatic(target=es2015).types │ ├── jsDeclarationsClassStatic(target=es5).errors.txt │ ├── jsDeclarationsClassStatic(target=es5).js │ ├── jsDeclarationsClassStatic(target=es5).symbols │ ├── jsDeclarationsClassStatic(target=es5).types │ ├── jsDeclarationsClassStatic2.js │ ├── jsDeclarationsClassStatic2.symbols │ ├── jsDeclarationsClassStatic2.types │ ├── jsDeclarationsClassStaticMethodAugmentation(target=es2015).js │ ├── jsDeclarationsClassStaticMethodAugmentation(target=es2015).symbols │ ├── jsDeclarationsClassStaticMethodAugmentation(target=es2015).types │ ├── jsDeclarationsClassStaticMethodAugmentation(target=es5).errors.txt │ ├── jsDeclarationsClassStaticMethodAugmentation(target=es5).js │ ├── jsDeclarationsClassStaticMethodAugmentation(target=es5).symbols │ ├── jsDeclarationsClassStaticMethodAugmentation(target=es5).types │ ├── jsDeclarationsClasses(target=es2015).errors.txt │ ├── jsDeclarationsClasses(target=es2015).js │ ├── jsDeclarationsClasses(target=es2015).symbols │ ├── jsDeclarationsClasses(target=es2015).types │ ├── jsDeclarationsClasses(target=es5).errors.txt │ ├── jsDeclarationsClasses(target=es5).js │ ├── jsDeclarationsClasses(target=es5).symbols │ ├── jsDeclarationsClasses(target=es5).types │ ├── jsDeclarationsClassesErr(target=es2015).errors.txt │ ├── jsDeclarationsClassesErr(target=es2015).js │ ├── jsDeclarationsClassesErr(target=es2015).symbols │ ├── jsDeclarationsClassesErr(target=es2015).types │ ├── jsDeclarationsClassesErr(target=es5).errors.txt │ ├── jsDeclarationsClassesErr(target=es5).js │ ├── jsDeclarationsClassesErr(target=es5).symbols │ ├── jsDeclarationsClassesErr(target=es5).types │ ├── jsDeclarationsCommonjsRelativePath.js │ ├── jsDeclarationsCommonjsRelativePath.symbols │ ├── jsDeclarationsCommonjsRelativePath.types │ ├── jsDeclarationsComputedNames(target=es2015).js │ ├── jsDeclarationsComputedNames(target=es2015).symbols │ ├── jsDeclarationsComputedNames(target=es2015).types │ ├── jsDeclarationsComputedNames(target=es5).errors.txt │ ├── jsDeclarationsComputedNames(target=es5).js │ ├── jsDeclarationsComputedNames(target=es5).symbols │ ├── jsDeclarationsComputedNames(target=es5).types │ ├── jsDeclarationsConstsAsNamespacesWithReferences.js │ ├── jsDeclarationsConstsAsNamespacesWithReferences.symbols │ ├── jsDeclarationsConstsAsNamespacesWithReferences.types │ ├── jsDeclarationsCrossfileMerge(target=es2015).errors.txt │ ├── jsDeclarationsCrossfileMerge(target=es2015).js │ ├── jsDeclarationsCrossfileMerge(target=es2015).symbols │ ├── jsDeclarationsCrossfileMerge(target=es2015).types │ ├── jsDeclarationsCrossfileMerge(target=es5).errors.txt │ ├── jsDeclarationsCrossfileMerge(target=es5).js │ ├── jsDeclarationsCrossfileMerge(target=es5).symbols │ ├── jsDeclarationsCrossfileMerge(target=es5).types │ ├── jsDeclarationsDefault(target=es2015).errors.txt │ ├── jsDeclarationsDefault(target=es2015).js │ ├── jsDeclarationsDefault(target=es2015).symbols │ ├── jsDeclarationsDefault(target=es2015).types │ ├── jsDeclarationsDefault(target=es5).errors.txt │ ├── jsDeclarationsDefault(target=es5).js │ ├── jsDeclarationsDefault(target=es5).symbols │ ├── jsDeclarationsDefault(target=es5).types │ ├── jsDeclarationsDefaultsErr(target=es2015).errors.txt │ ├── jsDeclarationsDefaultsErr(target=es2015).js │ ├── jsDeclarationsDefaultsErr(target=es2015).symbols │ ├── jsDeclarationsDefaultsErr(target=es2015).types │ ├── jsDeclarationsDefaultsErr(target=es5).errors.txt │ ├── jsDeclarationsDefaultsErr(target=es5).js │ ├── jsDeclarationsDefaultsErr(target=es5).symbols │ ├── jsDeclarationsDefaultsErr(target=es5).types │ ├── jsDeclarationsDocCommentsOnConsts(target=es2015).js │ ├── jsDeclarationsDocCommentsOnConsts(target=es2015).symbols │ ├── jsDeclarationsDocCommentsOnConsts(target=es2015).types │ ├── jsDeclarationsDocCommentsOnConsts(target=es5).errors.txt │ ├── jsDeclarationsDocCommentsOnConsts(target=es5).js │ ├── jsDeclarationsDocCommentsOnConsts(target=es5).symbols │ ├── jsDeclarationsDocCommentsOnConsts(target=es5).types │ ├── jsDeclarationsEnumTag(target=es2015).js │ ├── jsDeclarationsEnumTag(target=es2015).symbols │ ├── jsDeclarationsEnumTag(target=es2015).types │ ├── jsDeclarationsEnumTag(target=es5).errors.txt │ ├── jsDeclarationsEnumTag(target=es5).js │ ├── jsDeclarationsEnumTag(target=es5).symbols │ ├── jsDeclarationsEnumTag(target=es5).types │ ├── jsDeclarationsEnums(target=es2015).errors.txt │ ├── jsDeclarationsEnums(target=es2015).js │ ├── jsDeclarationsEnums(target=es2015).symbols │ ├── jsDeclarationsEnums(target=es2015).types │ ├── jsDeclarationsEnums(target=es5).errors.txt │ ├── jsDeclarationsEnums(target=es5).js │ ├── jsDeclarationsEnums(target=es5).symbols │ ├── jsDeclarationsEnums(target=es5).types │ ├── jsDeclarationsExportAssignedClassExpression(target=es2015).js │ ├── jsDeclarationsExportAssignedClassExpression(target=es2015).symbols │ ├── jsDeclarationsExportAssignedClassExpression(target=es2015).types │ ├── jsDeclarationsExportAssignedClassExpression(target=es5).errors.txt │ ├── jsDeclarationsExportAssignedClassExpression(target=es5).js │ ├── jsDeclarationsExportAssignedClassExpression(target=es5).symbols │ ├── jsDeclarationsExportAssignedClassExpression(target=es5).types │ ├── jsDeclarationsExportAssignedClassExpressionAnonymous(target=es2015).js │ ├── jsDeclarationsExportAssignedClassExpressionAnonymous(target=es2015).symbols │ ├── jsDeclarationsExportAssignedClassExpressionAnonymous(target=es2015).types │ ├── jsDeclarationsExportAssignedClassExpressionAnonymous(target=es5).errors.txt │ ├── jsDeclarationsExportAssignedClassExpressionAnonymous(target=es5).js │ ├── jsDeclarationsExportAssignedClassExpressionAnonymous(target=es5).symbols │ ├── jsDeclarationsExportAssignedClassExpressionAnonymous(target=es5).types │ ├── jsDeclarationsExportAssignedClassExpressionAnonymousWithSub(target=es2015).js │ ├── jsDeclarationsExportAssignedClassExpressionAnonymousWithSub(target=es2015).symbols │ ├── jsDeclarationsExportAssignedClassExpressionAnonymousWithSub(target=es2015).types │ ├── jsDeclarationsExportAssignedClassExpressionAnonymousWithSub(target=es5).errors.txt │ ├── jsDeclarationsExportAssignedClassExpressionAnonymousWithSub(target=es5).js │ ├── jsDeclarationsExportAssignedClassExpressionAnonymousWithSub(target=es5).symbols │ ├── jsDeclarationsExportAssignedClassExpressionAnonymousWithSub(target=es5).types │ ├── jsDeclarationsExportAssignedClassExpressionShadowing(target=es2015).js │ ├── jsDeclarationsExportAssignedClassExpressionShadowing(target=es2015).symbols │ ├── jsDeclarationsExportAssignedClassExpressionShadowing(target=es2015).types │ ├── jsDeclarationsExportAssignedClassExpressionShadowing(target=es5).errors.txt │ ├── jsDeclarationsExportAssignedClassExpressionShadowing(target=es5).js │ ├── jsDeclarationsExportAssignedClassExpressionShadowing(target=es5).symbols │ ├── jsDeclarationsExportAssignedClassExpressionShadowing(target=es5).types │ ├── jsDeclarationsExportAssignedClassInstance1(target=es2015).js │ ├── jsDeclarationsExportAssignedClassInstance1(target=es2015).symbols │ ├── jsDeclarationsExportAssignedClassInstance1(target=es2015).types │ ├── jsDeclarationsExportAssignedClassInstance1(target=es5).errors.txt │ ├── jsDeclarationsExportAssignedClassInstance1(target=es5).js │ ├── jsDeclarationsExportAssignedClassInstance1(target=es5).symbols │ ├── jsDeclarationsExportAssignedClassInstance1(target=es5).types │ ├── jsDeclarationsExportAssignedClassInstance2(target=es2015).js │ ├── jsDeclarationsExportAssignedClassInstance2(target=es2015).symbols │ ├── jsDeclarationsExportAssignedClassInstance2(target=es2015).types │ ├── jsDeclarationsExportAssignedClassInstance2(target=es5).errors.txt │ ├── jsDeclarationsExportAssignedClassInstance2(target=es5).js │ ├── jsDeclarationsExportAssignedClassInstance2(target=es5).symbols │ ├── jsDeclarationsExportAssignedClassInstance2(target=es5).types │ ├── jsDeclarationsExportAssignedClassInstance3(target=es2015).js │ ├── jsDeclarationsExportAssignedClassInstance3(target=es2015).symbols │ ├── jsDeclarationsExportAssignedClassInstance3(target=es2015).types │ ├── jsDeclarationsExportAssignedClassInstance3(target=es5).errors.txt │ ├── jsDeclarationsExportAssignedClassInstance3(target=es5).js │ ├── jsDeclarationsExportAssignedClassInstance3(target=es5).symbols │ ├── jsDeclarationsExportAssignedClassInstance3(target=es5).types │ ├── jsDeclarationsExportAssignedConstructorFunction(target=es2015).js │ ├── jsDeclarationsExportAssignedConstructorFunction(target=es2015).symbols │ ├── jsDeclarationsExportAssignedConstructorFunction(target=es2015).types │ ├── jsDeclarationsExportAssignedConstructorFunction(target=es5).errors.txt │ ├── jsDeclarationsExportAssignedConstructorFunction(target=es5).js │ ├── jsDeclarationsExportAssignedConstructorFunction(target=es5).symbols │ ├── jsDeclarationsExportAssignedConstructorFunction(target=es5).types │ ├── jsDeclarationsExportAssignedConstructorFunctionWithSub(target=es2015).errors.txt │ ├── jsDeclarationsExportAssignedConstructorFunctionWithSub(target=es2015).js │ ├── jsDeclarationsExportAssignedConstructorFunctionWithSub(target=es2015).symbols │ ├── jsDeclarationsExportAssignedConstructorFunctionWithSub(target=es2015).types │ ├── jsDeclarationsExportAssignedConstructorFunctionWithSub(target=es5).errors.txt │ ├── jsDeclarationsExportAssignedConstructorFunctionWithSub(target=es5).js │ ├── jsDeclarationsExportAssignedConstructorFunctionWithSub(target=es5).symbols │ ├── jsDeclarationsExportAssignedConstructorFunctionWithSub(target=es5).types │ ├── jsDeclarationsExportAssignedVisibility(target=es2015).js │ ├── jsDeclarationsExportAssignedVisibility(target=es2015).symbols │ ├── jsDeclarationsExportAssignedVisibility(target=es2015).types │ ├── jsDeclarationsExportAssignedVisibility(target=es5).errors.txt │ ├── jsDeclarationsExportAssignedVisibility(target=es5).js │ ├── jsDeclarationsExportAssignedVisibility(target=es5).symbols │ ├── jsDeclarationsExportAssignedVisibility(target=es5).types │ ├── jsDeclarationsExportAssignmentExpressionPlusSecondary(target=es2015).js │ ├── jsDeclarationsExportAssignmentExpressionPlusSecondary(target=es2015).symbols │ ├── jsDeclarationsExportAssignmentExpressionPlusSecondary(target=es2015).types │ ├── jsDeclarationsExportAssignmentExpressionPlusSecondary(target=es5).errors.txt │ ├── jsDeclarationsExportAssignmentExpressionPlusSecondary(target=es5).js │ ├── jsDeclarationsExportAssignmentExpressionPlusSecondary(target=es5).symbols │ ├── jsDeclarationsExportAssignmentExpressionPlusSecondary(target=es5).types │ ├── jsDeclarationsExportAssignmentWithKeywordName(target=es2015).js │ ├── jsDeclarationsExportAssignmentWithKeywordName(target=es2015).symbols │ ├── jsDeclarationsExportAssignmentWithKeywordName(target=es2015).types │ ├── jsDeclarationsExportAssignmentWithKeywordName(target=es5).errors.txt │ ├── jsDeclarationsExportAssignmentWithKeywordName(target=es5).js │ ├── jsDeclarationsExportAssignmentWithKeywordName(target=es5).symbols │ ├── jsDeclarationsExportAssignmentWithKeywordName(target=es5).types │ ├── jsDeclarationsExportDefinePropertyEmit.js │ ├── jsDeclarationsExportDefinePropertyEmit.symbols │ ├── jsDeclarationsExportDefinePropertyEmit.types │ ├── jsDeclarationsExportDoubleAssignmentInClosure.js │ ├── jsDeclarationsExportDoubleAssignmentInClosure.symbols │ ├── jsDeclarationsExportDoubleAssignmentInClosure.types │ ├── jsDeclarationsExportForms(target=es2015).js │ ├── jsDeclarationsExportForms(target=es2015).symbols │ ├── jsDeclarationsExportForms(target=es2015).types │ ├── jsDeclarationsExportForms(target=es5).errors.txt │ ├── jsDeclarationsExportForms(target=es5).js │ ├── jsDeclarationsExportForms(target=es5).symbols │ ├── jsDeclarationsExportForms(target=es5).types │ ├── jsDeclarationsExportFormsErr(target=es2015).errors.txt │ ├── jsDeclarationsExportFormsErr(target=es2015).js │ ├── jsDeclarationsExportFormsErr(target=es2015).symbols │ ├── jsDeclarationsExportFormsErr(target=es2015).types │ ├── jsDeclarationsExportFormsErr(target=es5).errors.txt │ ├── jsDeclarationsExportFormsErr(target=es5).js │ ├── jsDeclarationsExportFormsErr(target=es5).symbols │ ├── jsDeclarationsExportFormsErr(target=es5).types │ ├── jsDeclarationsExportSpecifierNonlocal(target=es2015).js │ ├── jsDeclarationsExportSpecifierNonlocal(target=es2015).symbols │ ├── jsDeclarationsExportSpecifierNonlocal(target=es2015).types │ ├── jsDeclarationsExportSpecifierNonlocal(target=es5).errors.txt │ ├── jsDeclarationsExportSpecifierNonlocal(target=es5).js │ ├── jsDeclarationsExportSpecifierNonlocal(target=es5).symbols │ ├── jsDeclarationsExportSpecifierNonlocal(target=es5).types │ ├── jsDeclarationsExportSubAssignments(target=es2015).js │ ├── jsDeclarationsExportSubAssignments(target=es2015).symbols │ ├── jsDeclarationsExportSubAssignments(target=es2015).types │ ├── jsDeclarationsExportSubAssignments(target=es5).errors.txt │ ├── jsDeclarationsExportSubAssignments(target=es5).js │ ├── jsDeclarationsExportSubAssignments(target=es5).symbols │ ├── jsDeclarationsExportSubAssignments(target=es5).types │ ├── jsDeclarationsExportedClassAliases.js │ ├── jsDeclarationsExportedClassAliases.symbols │ ├── jsDeclarationsExportedClassAliases.types │ ├── jsDeclarationsFunctionClassesCjsExportAssignment(target=es2015).js │ ├── jsDeclarationsFunctionClassesCjsExportAssignment(target=es2015).symbols │ ├── jsDeclarationsFunctionClassesCjsExportAssignment(target=es2015).types │ ├── jsDeclarationsFunctionClassesCjsExportAssignment(target=es5).errors.txt │ ├── jsDeclarationsFunctionClassesCjsExportAssignment(target=es5).js │ ├── jsDeclarationsFunctionClassesCjsExportAssignment(target=es5).symbols │ ├── jsDeclarationsFunctionClassesCjsExportAssignment(target=es5).types │ ├── jsDeclarationsFunctionJSDoc(target=es2015).js │ ├── jsDeclarationsFunctionJSDoc(target=es2015).symbols │ ├── jsDeclarationsFunctionJSDoc(target=es2015).types │ ├── jsDeclarationsFunctionJSDoc(target=es5).errors.txt │ ├── jsDeclarationsFunctionJSDoc(target=es5).js │ ├── jsDeclarationsFunctionJSDoc(target=es5).symbols │ ├── jsDeclarationsFunctionJSDoc(target=es5).types │ ├── jsDeclarationsFunctionKeywordProp(target=es2015).js │ ├── jsDeclarationsFunctionKeywordProp(target=es2015).symbols │ ├── jsDeclarationsFunctionKeywordProp(target=es2015).types │ ├── jsDeclarationsFunctionKeywordProp(target=es5).errors.txt │ ├── jsDeclarationsFunctionKeywordProp(target=es5).js │ ├── jsDeclarationsFunctionKeywordProp(target=es5).symbols │ ├── jsDeclarationsFunctionKeywordProp(target=es5).types │ ├── jsDeclarationsFunctionKeywordPropExhaustive(target=es2015).js │ ├── jsDeclarationsFunctionKeywordPropExhaustive(target=es2015).symbols │ ├── jsDeclarationsFunctionKeywordPropExhaustive(target=es2015).types │ ├── jsDeclarationsFunctionKeywordPropExhaustive(target=es5).errors.txt │ ├── jsDeclarationsFunctionKeywordPropExhaustive(target=es5).js │ ├── jsDeclarationsFunctionKeywordPropExhaustive(target=es5).symbols │ ├── jsDeclarationsFunctionKeywordPropExhaustive(target=es5).types │ ├── jsDeclarationsFunctionLikeClasses(target=es2015).errors.txt │ ├── jsDeclarationsFunctionLikeClasses(target=es2015).js │ ├── jsDeclarationsFunctionLikeClasses(target=es2015).symbols │ ├── jsDeclarationsFunctionLikeClasses(target=es2015).types │ ├── jsDeclarationsFunctionLikeClasses(target=es5).errors.txt │ ├── jsDeclarationsFunctionLikeClasses(target=es5).js │ ├── jsDeclarationsFunctionLikeClasses(target=es5).symbols │ ├── jsDeclarationsFunctionLikeClasses(target=es5).types │ ├── jsDeclarationsFunctionLikeClasses2(target=es2015).js │ ├── jsDeclarationsFunctionLikeClasses2(target=es2015).symbols │ ├── jsDeclarationsFunctionLikeClasses2(target=es2015).types │ ├── jsDeclarationsFunctionLikeClasses2(target=es5).errors.txt │ ├── jsDeclarationsFunctionLikeClasses2(target=es5).js │ ├── jsDeclarationsFunctionLikeClasses2(target=es5).symbols │ ├── jsDeclarationsFunctionLikeClasses2(target=es5).types │ ├── jsDeclarationsFunctionPrototypeStatic(target=es2015).js │ ├── jsDeclarationsFunctionPrototypeStatic(target=es2015).symbols │ ├── jsDeclarationsFunctionPrototypeStatic(target=es2015).types │ ├── jsDeclarationsFunctionPrototypeStatic(target=es5).errors.txt │ ├── jsDeclarationsFunctionPrototypeStatic(target=es5).js │ ├── jsDeclarationsFunctionPrototypeStatic(target=es5).symbols │ ├── jsDeclarationsFunctionPrototypeStatic(target=es5).types │ ├── jsDeclarationsFunctionWithDefaultAssignedMember.js │ ├── jsDeclarationsFunctionWithDefaultAssignedMember.symbols │ ├── jsDeclarationsFunctionWithDefaultAssignedMember.types │ ├── jsDeclarationsFunctions.js │ ├── jsDeclarationsFunctions.symbols │ ├── jsDeclarationsFunctions.types │ ├── jsDeclarationsFunctionsCjs.errors.txt │ ├── jsDeclarationsFunctionsCjs.js │ ├── jsDeclarationsFunctionsCjs.symbols │ ├── jsDeclarationsFunctionsCjs.types │ ├── jsDeclarationsGetterSetter.js │ ├── jsDeclarationsGetterSetter.symbols │ ├── jsDeclarationsGetterSetter.types │ ├── jsDeclarationsGlobalFileConstFunction.js │ ├── jsDeclarationsGlobalFileConstFunction.symbols │ ├── jsDeclarationsGlobalFileConstFunction.types │ ├── jsDeclarationsGlobalFileConstFunctionNamed.js │ ├── jsDeclarationsGlobalFileConstFunctionNamed.symbols │ ├── jsDeclarationsGlobalFileConstFunctionNamed.types │ ├── jsDeclarationsImportAliasExposedWithinNamespace.errors.txt │ ├── jsDeclarationsImportAliasExposedWithinNamespace.js │ ├── jsDeclarationsImportAliasExposedWithinNamespace.symbols │ ├── jsDeclarationsImportAliasExposedWithinNamespace.types │ ├── jsDeclarationsImportAliasExposedWithinNamespaceCjs.js │ ├── jsDeclarationsImportAliasExposedWithinNamespaceCjs.symbols │ ├── jsDeclarationsImportAliasExposedWithinNamespaceCjs.types │ ├── jsDeclarationsImportNamespacedType.js │ ├── jsDeclarationsImportNamespacedType.symbols │ ├── jsDeclarationsImportNamespacedType.types │ ├── jsDeclarationsImportTypeBundled.errors.txt │ ├── jsDeclarationsImportTypeBundled.js │ ├── jsDeclarationsImportTypeBundled.symbols │ ├── jsDeclarationsImportTypeBundled.types │ ├── jsDeclarationsInheritedTypes.errors.txt │ ├── jsDeclarationsInheritedTypes.js │ ├── jsDeclarationsInheritedTypes.symbols │ ├── jsDeclarationsInheritedTypes.types │ ├── jsDeclarationsInterfaces(target=es2015).errors.txt │ ├── jsDeclarationsInterfaces(target=es2015).js │ ├── jsDeclarationsInterfaces(target=es2015).symbols │ ├── jsDeclarationsInterfaces(target=es2015).types │ ├── jsDeclarationsInterfaces(target=es5).errors.txt │ ├── jsDeclarationsInterfaces(target=es5).js │ ├── jsDeclarationsInterfaces(target=es5).symbols │ ├── jsDeclarationsInterfaces(target=es5).types │ ├── jsDeclarationsJSDocRedirectedLookups.js │ ├── jsDeclarationsJSDocRedirectedLookups.symbols │ ├── jsDeclarationsJSDocRedirectedLookups.types │ ├── jsDeclarationsJson(target=es2015).js │ ├── jsDeclarationsJson(target=es2015).symbols │ ├── jsDeclarationsJson(target=es2015).types │ ├── jsDeclarationsJson(target=es5).errors.txt │ ├── jsDeclarationsJson(target=es5).js │ ├── jsDeclarationsJson(target=es5).symbols │ ├── jsDeclarationsJson(target=es5).types │ ├── jsDeclarationsMissingGenerics(target=es2015).js │ ├── jsDeclarationsMissingGenerics(target=es2015).symbols │ ├── jsDeclarationsMissingGenerics(target=es2015).types │ ├── jsDeclarationsMissingGenerics(target=es5).errors.txt │ ├── jsDeclarationsMissingGenerics(target=es5).js │ ├── jsDeclarationsMissingGenerics(target=es5).symbols │ ├── jsDeclarationsMissingGenerics(target=es5).types │ ├── jsDeclarationsMissingTypeParameters(target=es2015).js │ ├── jsDeclarationsMissingTypeParameters(target=es2015).symbols │ ├── jsDeclarationsMissingTypeParameters(target=es2015).types │ ├── jsDeclarationsMissingTypeParameters(target=es5).errors.txt │ ├── jsDeclarationsMissingTypeParameters(target=es5).js │ ├── jsDeclarationsMissingTypeParameters(target=es5).symbols │ ├── jsDeclarationsMissingTypeParameters(target=es5).types │ ├── jsDeclarationsModuleReferenceHasEmit(target=es2015).js │ ├── jsDeclarationsModuleReferenceHasEmit(target=es2015).symbols │ ├── jsDeclarationsModuleReferenceHasEmit(target=es2015).types │ ├── jsDeclarationsModuleReferenceHasEmit(target=es5).errors.txt │ ├── jsDeclarationsModuleReferenceHasEmit(target=es5).js │ ├── jsDeclarationsModuleReferenceHasEmit(target=es5).symbols │ ├── jsDeclarationsModuleReferenceHasEmit(target=es5).types │ ├── jsDeclarationsMultipleExportFromMerge(target=es2015).js │ ├── jsDeclarationsMultipleExportFromMerge(target=es2015).symbols │ ├── jsDeclarationsMultipleExportFromMerge(target=es2015).types │ ├── jsDeclarationsMultipleExportFromMerge(target=es5).errors.txt │ ├── jsDeclarationsMultipleExportFromMerge(target=es5).js │ ├── jsDeclarationsMultipleExportFromMerge(target=es5).symbols │ ├── jsDeclarationsMultipleExportFromMerge(target=es5).types │ ├── jsDeclarationsNestedParams.js │ ├── jsDeclarationsNestedParams.symbols │ ├── jsDeclarationsNestedParams.types │ ├── jsDeclarationsNonIdentifierInferredNames.js │ ├── jsDeclarationsNonIdentifierInferredNames.symbols │ ├── jsDeclarationsNonIdentifierInferredNames.types │ ├── jsDeclarationsOptionalTypeLiteralProps1.errors.txt │ ├── jsDeclarationsOptionalTypeLiteralProps1.js │ ├── jsDeclarationsOptionalTypeLiteralProps1.symbols │ ├── jsDeclarationsOptionalTypeLiteralProps1.types │ ├── jsDeclarationsOptionalTypeLiteralProps2.js │ ├── jsDeclarationsOptionalTypeLiteralProps2.symbols │ ├── jsDeclarationsOptionalTypeLiteralProps2.types │ ├── jsDeclarationsPackageJson(target=es2015).js │ ├── jsDeclarationsPackageJson(target=es2015).symbols │ ├── jsDeclarationsPackageJson(target=es2015).types │ ├── jsDeclarationsPackageJson(target=es5).errors.txt │ ├── jsDeclarationsPackageJson(target=es5).js │ ├── jsDeclarationsPackageJson(target=es5).symbols │ ├── jsDeclarationsPackageJson(target=es5).types │ ├── jsDeclarationsParameterTagReusesInputNodeInEmit1.js │ ├── jsDeclarationsParameterTagReusesInputNodeInEmit1.symbols │ ├── jsDeclarationsParameterTagReusesInputNodeInEmit1.types │ ├── jsDeclarationsParameterTagReusesInputNodeInEmit2.js │ ├── jsDeclarationsParameterTagReusesInputNodeInEmit2.symbols │ ├── jsDeclarationsParameterTagReusesInputNodeInEmit2.types │ ├── jsDeclarationsPrivateFields01.js │ ├── jsDeclarationsPrivateFields01.symbols │ ├── jsDeclarationsPrivateFields01.types │ ├── jsDeclarationsReactComponents(target=es2015).js │ ├── jsDeclarationsReactComponents(target=es2015).symbols │ ├── jsDeclarationsReactComponents(target=es2015).types │ ├── jsDeclarationsReactComponents(target=es5).errors.txt │ ├── jsDeclarationsReactComponents(target=es5).js │ ├── jsDeclarationsReactComponents(target=es5).symbols │ ├── jsDeclarationsReactComponents(target=es5).types │ ├── jsDeclarationsReexportAliases(target=es2015).js │ ├── jsDeclarationsReexportAliases(target=es2015).symbols │ ├── jsDeclarationsReexportAliases(target=es2015).types │ ├── jsDeclarationsReexportAliases(target=es5).errors.txt │ ├── jsDeclarationsReexportAliases(target=es5).js │ ├── jsDeclarationsReexportAliases(target=es5).symbols │ ├── jsDeclarationsReexportAliases(target=es5).types │ ├── jsDeclarationsReexportAliasesEsModuleInterop(target=es2015).js │ ├── jsDeclarationsReexportAliasesEsModuleInterop(target=es2015).symbols │ ├── jsDeclarationsReexportAliasesEsModuleInterop(target=es2015).types │ ├── jsDeclarationsReexportAliasesEsModuleInterop(target=es5).errors.txt │ ├── jsDeclarationsReexportAliasesEsModuleInterop(target=es5).js │ ├── jsDeclarationsReexportAliasesEsModuleInterop(target=es5).symbols │ ├── jsDeclarationsReexportAliasesEsModuleInterop(target=es5).types │ ├── jsDeclarationsReexportedCjsAlias(target=es2015).js │ ├── jsDeclarationsReexportedCjsAlias(target=es2015).symbols │ ├── jsDeclarationsReexportedCjsAlias(target=es2015).types │ ├── jsDeclarationsReexportedCjsAlias(target=es5).errors.txt │ ├── jsDeclarationsReexportedCjsAlias(target=es5).js │ ├── jsDeclarationsReexportedCjsAlias(target=es5).symbols │ ├── jsDeclarationsReexportedCjsAlias(target=es5).types │ ├── jsDeclarationsReferenceToClassInstanceCrossFile.js │ ├── jsDeclarationsReferenceToClassInstanceCrossFile.symbols │ ├── jsDeclarationsReferenceToClassInstanceCrossFile.types │ ├── jsDeclarationsRestArgsWithThisTypeInJSDocFunction(target=es2015).js │ ├── jsDeclarationsRestArgsWithThisTypeInJSDocFunction(target=es2015).symbols │ ├── jsDeclarationsRestArgsWithThisTypeInJSDocFunction(target=es2015).types │ ├── jsDeclarationsRestArgsWithThisTypeInJSDocFunction(target=es5).errors.txt │ ├── jsDeclarationsRestArgsWithThisTypeInJSDocFunction(target=es5).js │ ├── jsDeclarationsRestArgsWithThisTypeInJSDocFunction(target=es5).symbols │ ├── jsDeclarationsRestArgsWithThisTypeInJSDocFunction(target=es5).types │ ├── jsDeclarationsReusesExistingNodesMappingJSDocTypes.errors.txt │ ├── jsDeclarationsReusesExistingNodesMappingJSDocTypes.js │ ├── jsDeclarationsReusesExistingNodesMappingJSDocTypes.symbols │ ├── jsDeclarationsReusesExistingNodesMappingJSDocTypes.types │ ├── jsDeclarationsReusesExistingTypeAnnotations.js │ ├── jsDeclarationsReusesExistingTypeAnnotations.symbols │ ├── jsDeclarationsReusesExistingTypeAnnotations.types │ ├── jsDeclarationsSubclassWithExplicitNoArgumentConstructor.js │ ├── jsDeclarationsSubclassWithExplicitNoArgumentConstructor.symbols │ ├── jsDeclarationsSubclassWithExplicitNoArgumentConstructor.types │ ├── jsDeclarationsThisTypes.js │ ├── jsDeclarationsThisTypes.symbols │ ├── jsDeclarationsThisTypes.types │ ├── jsDeclarationsTypeAliases.js │ ├── jsDeclarationsTypeAliases.symbols │ ├── jsDeclarationsTypeAliases.types │ ├── jsDeclarationsTypeReassignmentFromDeclaration.js │ ├── jsDeclarationsTypeReassignmentFromDeclaration.symbols │ ├── jsDeclarationsTypeReassignmentFromDeclaration.types │ ├── jsDeclarationsTypeReassignmentFromDeclaration2.errors.txt │ ├── jsDeclarationsTypeReassignmentFromDeclaration2.js │ ├── jsDeclarationsTypeReassignmentFromDeclaration2.symbols │ ├── jsDeclarationsTypeReassignmentFromDeclaration2.types │ ├── jsDeclarationsTypeReferences(target=es2015).js │ ├── jsDeclarationsTypeReferences(target=es2015).symbols │ ├── jsDeclarationsTypeReferences(target=es2015).types │ ├── jsDeclarationsTypeReferences(target=es5).errors.txt │ ├── jsDeclarationsTypeReferences(target=es5).js │ ├── jsDeclarationsTypeReferences(target=es5).symbols │ ├── jsDeclarationsTypeReferences(target=es5).types │ ├── jsDeclarationsTypeReferences2(target=es2015).js │ ├── jsDeclarationsTypeReferences2(target=es2015).symbols │ ├── jsDeclarationsTypeReferences2(target=es2015).types │ ├── jsDeclarationsTypeReferences2(target=es5).errors.txt │ ├── jsDeclarationsTypeReferences2(target=es5).js │ ├── jsDeclarationsTypeReferences2(target=es5).symbols │ ├── jsDeclarationsTypeReferences2(target=es5).types │ ├── jsDeclarationsTypeReferences3(target=es2015).js │ ├── jsDeclarationsTypeReferences3(target=es2015).symbols │ ├── jsDeclarationsTypeReferences3(target=es2015).types │ ├── jsDeclarationsTypeReferences3(target=es5).errors.txt │ ├── jsDeclarationsTypeReferences3(target=es5).js │ ├── jsDeclarationsTypeReferences3(target=es5).symbols │ ├── jsDeclarationsTypeReferences3(target=es5).types │ ├── jsDeclarationsTypeReferences4(target=es2015).errors.txt │ ├── jsDeclarationsTypeReferences4(target=es2015).js │ ├── jsDeclarationsTypeReferences4(target=es2015).symbols │ ├── jsDeclarationsTypeReferences4(target=es2015).types │ ├── jsDeclarationsTypeReferences4(target=es5).errors.txt │ ├── jsDeclarationsTypeReferences4(target=es5).js │ ├── jsDeclarationsTypeReferences4(target=es5).symbols │ ├── jsDeclarationsTypeReferences4(target=es5).types │ ├── jsDeclarationsTypedefAndImportTypes.js │ ├── jsDeclarationsTypedefAndImportTypes.symbols │ ├── jsDeclarationsTypedefAndImportTypes.types │ ├── jsDeclarationsTypedefAndLatebound.errors.txt │ ├── jsDeclarationsTypedefAndLatebound.symbols │ ├── jsDeclarationsTypedefAndLatebound.types │ ├── jsDeclarationsTypedefDescriptionsPreserved.js │ ├── jsDeclarationsTypedefDescriptionsPreserved.symbols │ ├── jsDeclarationsTypedefDescriptionsPreserved.types │ ├── jsDeclarationsTypedefFunction.js │ ├── jsDeclarationsTypedefFunction.symbols │ ├── jsDeclarationsTypedefFunction.types │ ├── jsDeclarationsTypedefPropertyAndExportAssignment.js │ ├── jsDeclarationsTypedefPropertyAndExportAssignment.symbols │ ├── jsDeclarationsTypedefPropertyAndExportAssignment.types │ ├── jsDeclarationsUniqueSymbolUsage.js │ ├── jsDeclarationsUniqueSymbolUsage.symbols │ ├── jsDeclarationsUniqueSymbolUsage.types │ ├── jsDeclarationsWithDefaultAsNamespaceLikeMerge.js │ ├── jsDeclarationsWithDefaultAsNamespaceLikeMerge.symbols │ ├── jsDeclarationsWithDefaultAsNamespaceLikeMerge.types │ ├── jsDocAliasQuickInfo.baseline │ ├── jsDocDeclarationEmitDoesNotUseNodeModulesPathWithoutError.js │ ├── jsDocDeclarationEmitDoesNotUseNodeModulesPathWithoutError.symbols │ ├── jsDocDeclarationEmitDoesNotUseNodeModulesPathWithoutError.types │ ├── jsDocDontBreakWithNamespaces.baseline │ ├── jsDocFunctionSignatures5.baseline │ ├── jsDocFunctionSignatures6.baseline │ ├── jsDocSee1.baseline.jsonc │ ├── jsDocSee2.baseline.jsonc │ ├── jsDocSee3.baseline.jsonc │ ├── jsDocSee4.baseline.jsonc │ ├── jsDocSee_rename1.baseline.jsonc │ ├── jsDocServices.baseline.jsonc │ ├── jsDocSignature-43394.baseline │ ├── jsDocTypeTagQuickInfo1.baseline │ ├── jsDocTypeTagQuickInfo2.baseline │ ├── jsDocTypedefQuickInfo1.baseline │ ├── jsElementAccessNoContextualTypeCrash.errors.txt │ ├── jsElementAccessNoContextualTypeCrash.symbols │ ├── jsElementAccessNoContextualTypeCrash.types │ ├── jsEmitIntersectionProperty.js │ ├── jsEnumCrossFileExport.symbols │ ├── jsEnumCrossFileExport.types │ ├── jsEnumFunctionLocalNoCrash.symbols │ ├── jsEnumFunctionLocalNoCrash.types │ ├── jsEnumTagOnObjectFrozen.symbols │ ├── jsEnumTagOnObjectFrozen.types │ ├── jsExpandoObjectDefineProperty.symbols │ ├── jsExpandoObjectDefineProperty.types │ ├── jsExportAssignmentNonMutableLocation.js │ ├── jsExportAssignmentNonMutableLocation.symbols │ ├── jsExportAssignmentNonMutableLocation.types │ ├── jsExportMemberMergedWithModuleAugmentation.errors.txt │ ├── jsExportMemberMergedWithModuleAugmentation.symbols │ ├── jsExportMemberMergedWithModuleAugmentation.types │ ├── jsExportMemberMergedWithModuleAugmentation2.errors.txt │ ├── jsExportMemberMergedWithModuleAugmentation2.symbols │ ├── jsExportMemberMergedWithModuleAugmentation2.types │ ├── jsExportMemberMergedWithModuleAugmentation3.symbols │ ├── jsExportMemberMergedWithModuleAugmentation3.types │ ├── jsExtendsImplicitAny.errors.txt │ ├── jsExtendsImplicitAny.symbols │ ├── jsExtendsImplicitAny.types │ ├── jsFileAlternativeUseOfOverloadTag.js │ ├── jsFileAlternativeUseOfOverloadTag.symbols │ ├── jsFileAlternativeUseOfOverloadTag.types │ ├── jsFileClassPropertyInitalizationInObjectLiteral.symbols │ ├── jsFileClassPropertyInitalizationInObjectLiteral.types │ ├── jsFileClassPropertyType.errors.txt │ ├── jsFileClassPropertyType.symbols │ ├── jsFileClassPropertyType.types │ ├── jsFileClassPropertyType2.errors.txt │ ├── jsFileClassPropertyType2.symbols │ ├── jsFileClassPropertyType2.types │ ├── jsFileClassPropertyType3.errors.txt │ ├── jsFileClassPropertyType3.symbols │ ├── jsFileClassPropertyType3.types │ ├── jsFileClassSelfReferencedProperty.symbols │ ├── jsFileClassSelfReferencedProperty.types │ ├── jsFileCompilationAbstractModifier.errors.txt │ ├── jsFileCompilationAbstractModifier.symbols │ ├── jsFileCompilationAbstractModifier.types │ ├── jsFileCompilationAmbientVarDeclarationSyntax.errors.txt │ ├── jsFileCompilationAmbientVarDeclarationSyntax.symbols │ ├── jsFileCompilationAmbientVarDeclarationSyntax.types │ ├── jsFileCompilationAwaitModifier.js │ ├── jsFileCompilationAwaitModifier.symbols │ ├── jsFileCompilationAwaitModifier.types │ ├── jsFileCompilationBindDeepExportsAssignment.errors.txt │ ├── jsFileCompilationBindDeepExportsAssignment.symbols │ ├── jsFileCompilationBindDeepExportsAssignment.types │ ├── jsFileCompilationBindDuplicateIdentifier.errors.txt │ ├── jsFileCompilationBindDuplicateIdentifier.symbols │ ├── jsFileCompilationBindDuplicateIdentifier.types │ ├── jsFileCompilationBindErrors.errors.txt │ ├── jsFileCompilationBindErrors.symbols │ ├── jsFileCompilationBindErrors.types │ ├── jsFileCompilationBindMultipleDefaultExports.errors.txt │ ├── jsFileCompilationBindMultipleDefaultExports.symbols │ ├── jsFileCompilationBindMultipleDefaultExports.types │ ├── jsFileCompilationBindReachabilityErrors(alwaysstrict=false).errors.txt │ ├── jsFileCompilationBindReachabilityErrors(alwaysstrict=false).symbols │ ├── jsFileCompilationBindReachabilityErrors(alwaysstrict=false).types │ ├── jsFileCompilationBindReachabilityErrors(alwaysstrict=true).errors.txt │ ├── jsFileCompilationBindReachabilityErrors(alwaysstrict=true).symbols │ ├── jsFileCompilationBindReachabilityErrors(alwaysstrict=true).types │ ├── jsFileCompilationBindStrictModeErrors.errors.txt │ ├── jsFileCompilationBindStrictModeErrors.symbols │ ├── jsFileCompilationBindStrictModeErrors.types │ ├── jsFileCompilationClassMethodContainingArrowFunction.errors.txt │ ├── jsFileCompilationClassMethodContainingArrowFunction.js │ ├── jsFileCompilationClassMethodContainingArrowFunction.symbols │ ├── jsFileCompilationClassMethodContainingArrowFunction.types │ ├── jsFileCompilationConstModifier.symbols │ ├── jsFileCompilationConstModifier.types │ ├── jsFileCompilationConstructorOverloadSyntax.errors.txt │ ├── jsFileCompilationConstructorOverloadSyntax.symbols │ ├── jsFileCompilationConstructorOverloadSyntax.types │ ├── jsFileCompilationDecoratorSyntax.symbols │ ├── jsFileCompilationDecoratorSyntax.types │ ├── jsFileCompilationDuplicateFunctionImplementation.errors.txt │ ├── jsFileCompilationDuplicateFunctionImplementation.js │ ├── jsFileCompilationDuplicateFunctionImplementation.symbols │ ├── jsFileCompilationDuplicateFunctionImplementation.types │ ├── jsFileCompilationDuplicateFunctionImplementationFileOrderReversed.errors.txt │ ├── jsFileCompilationDuplicateFunctionImplementationFileOrderReversed.js │ ├── jsFileCompilationDuplicateFunctionImplementationFileOrderReversed.symbols │ ├── jsFileCompilationDuplicateFunctionImplementationFileOrderReversed.types │ ├── jsFileCompilationDuplicateVariable.errors.txt │ ├── jsFileCompilationDuplicateVariable.js │ ├── jsFileCompilationDuplicateVariable.symbols │ ├── jsFileCompilationDuplicateVariable.types │ ├── jsFileCompilationDuplicateVariableErrorReported.errors.txt │ ├── jsFileCompilationDuplicateVariableErrorReported.js │ ├── jsFileCompilationDuplicateVariableErrorReported.symbols │ ├── jsFileCompilationDuplicateVariableErrorReported.types │ ├── jsFileCompilationEmitBlockedCorrectly.errors.txt │ ├── jsFileCompilationEmitBlockedCorrectly.js │ ├── jsFileCompilationEmitBlockedCorrectly.symbols │ ├── jsFileCompilationEmitBlockedCorrectly.types │ ├── jsFileCompilationEmitDeclarations.errors.txt │ ├── jsFileCompilationEmitDeclarations.js │ ├── jsFileCompilationEmitDeclarations.symbols │ ├── jsFileCompilationEmitDeclarations.types │ ├── jsFileCompilationEmitTrippleSlashReference.errors.txt │ ├── jsFileCompilationEmitTrippleSlashReference.js │ ├── jsFileCompilationEmitTrippleSlashReference.symbols │ ├── jsFileCompilationEmitTrippleSlashReference.types │ ├── jsFileCompilationEnumSyntax.errors.txt │ ├── jsFileCompilationEnumSyntax.symbols │ ├── jsFileCompilationEnumSyntax.types │ ├── jsFileCompilationErrorOnDeclarationsWithJsFileReferenceWithNoOut.errors.txt │ ├── jsFileCompilationErrorOnDeclarationsWithJsFileReferenceWithNoOut.js │ ├── jsFileCompilationErrorOnDeclarationsWithJsFileReferenceWithNoOut.symbols │ ├── jsFileCompilationErrorOnDeclarationsWithJsFileReferenceWithNoOut.types │ ├── jsFileCompilationErrorOnDeclarationsWithJsFileReferenceWithOut.errors.txt │ ├── jsFileCompilationErrorOnDeclarationsWithJsFileReferenceWithOut.js │ ├── jsFileCompilationErrorOnDeclarationsWithJsFileReferenceWithOut.symbols │ ├── jsFileCompilationErrorOnDeclarationsWithJsFileReferenceWithOut.types │ ├── jsFileCompilationErrorOnDeclarationsWithJsFileReferenceWithOutDir.js │ ├── jsFileCompilationErrorOnDeclarationsWithJsFileReferenceWithOutDir.symbols │ ├── jsFileCompilationErrorOnDeclarationsWithJsFileReferenceWithOutDir.types │ ├── jsFileCompilationExportAssignmentSyntax.errors.txt │ ├── jsFileCompilationExportAssignmentSyntax.symbols │ ├── jsFileCompilationExportAssignmentSyntax.types │ ├── jsFileCompilationExternalPackageError.symbols │ ├── jsFileCompilationExternalPackageError.types │ ├── jsFileCompilationFunctionOverloadSyntax.errors.txt │ ├── jsFileCompilationFunctionOverloadSyntax.symbols │ ├── jsFileCompilationFunctionOverloadSyntax.types │ ├── jsFileCompilationHeritageClauseSyntaxOfClass.errors.txt │ ├── jsFileCompilationHeritageClauseSyntaxOfClass.symbols │ ├── jsFileCompilationHeritageClauseSyntaxOfClass.types │ ├── jsFileCompilationImportEqualsSyntax.errors.txt │ ├── jsFileCompilationImportEqualsSyntax.symbols │ ├── jsFileCompilationImportEqualsSyntax.types │ ├── jsFileCompilationInterfaceSyntax.errors.txt │ ├── jsFileCompilationInterfaceSyntax.symbols │ ├── jsFileCompilationInterfaceSyntax.types │ ├── jsFileCompilationLetBeingRenamed.errors.txt │ ├── jsFileCompilationLetBeingRenamed.js │ ├── jsFileCompilationLetBeingRenamed.symbols │ ├── jsFileCompilationLetBeingRenamed.types │ ├── jsFileCompilationLetDeclarationOrder.errors.txt │ ├── jsFileCompilationLetDeclarationOrder.js │ ├── jsFileCompilationLetDeclarationOrder.symbols │ ├── jsFileCompilationLetDeclarationOrder.types │ ├── jsFileCompilationLetDeclarationOrder2.errors.txt │ ├── jsFileCompilationLetDeclarationOrder2.js │ ├── jsFileCompilationLetDeclarationOrder2.symbols │ ├── jsFileCompilationLetDeclarationOrder2.types │ ├── jsFileCompilationMethodOverloadSyntax.errors.txt │ ├── jsFileCompilationMethodOverloadSyntax.symbols │ ├── jsFileCompilationMethodOverloadSyntax.types │ ├── jsFileCompilationModuleSyntax.errors.txt │ ├── jsFileCompilationModuleSyntax.symbols │ ├── jsFileCompilationModuleSyntax.types │ ├── jsFileCompilationNoErrorWithoutDeclarationsWithJsFileReferenceWithNoOut.errors.txt │ ├── jsFileCompilationNoErrorWithoutDeclarationsWithJsFileReferenceWithNoOut.js │ ├── jsFileCompilationNoErrorWithoutDeclarationsWithJsFileReferenceWithNoOut.symbols │ ├── jsFileCompilationNoErrorWithoutDeclarationsWithJsFileReferenceWithNoOut.types │ ├── jsFileCompilationNoErrorWithoutDeclarationsWithJsFileReferenceWithOut.errors.txt │ ├── jsFileCompilationNoErrorWithoutDeclarationsWithJsFileReferenceWithOut.js │ ├── jsFileCompilationNoErrorWithoutDeclarationsWithJsFileReferenceWithOut.symbols │ ├── jsFileCompilationNoErrorWithoutDeclarationsWithJsFileReferenceWithOut.types │ ├── jsFileCompilationNonNullAssertion.errors.txt │ ├── jsFileCompilationNonNullAssertion.js │ ├── jsFileCompilationNonNullAssertion.symbols │ ├── jsFileCompilationNonNullAssertion.types │ ├── jsFileCompilationOptionalClassElementSyntaxOfClass.errors.txt │ ├── jsFileCompilationOptionalParameter.errors.txt │ ├── jsFileCompilationOptionalParameter.symbols │ ├── jsFileCompilationOptionalParameter.types │ ├── jsFileCompilationPublicMethodSyntaxOfClass.errors.txt │ ├── jsFileCompilationPublicMethodSyntaxOfClass.symbols │ ├── jsFileCompilationPublicMethodSyntaxOfClass.types │ ├── jsFileCompilationPublicParameterModifier.errors.txt │ ├── jsFileCompilationPublicParameterModifier.symbols │ ├── jsFileCompilationPublicParameterModifier.types │ ├── jsFileCompilationRestParamJsDocFunction.errors.txt │ ├── jsFileCompilationRestParamJsDocFunction.js │ ├── jsFileCompilationRestParamJsDocFunction.symbols │ ├── jsFileCompilationRestParamJsDocFunction.types │ ├── jsFileCompilationRestParameter.errors.txt │ ├── jsFileCompilationRestParameter.js │ ├── jsFileCompilationRestParameter.symbols │ ├── jsFileCompilationRestParameter.types │ ├── jsFileCompilationReturnTypeSyntaxOfFunction.errors.txt │ ├── jsFileCompilationReturnTypeSyntaxOfFunction.symbols │ ├── jsFileCompilationReturnTypeSyntaxOfFunction.types │ ├── jsFileCompilationShortHandProperty.errors.txt │ ├── jsFileCompilationShortHandProperty.js │ ├── jsFileCompilationShortHandProperty.symbols │ ├── jsFileCompilationShortHandProperty.types │ ├── jsFileCompilationSyntaxError.errors.txt │ ├── jsFileCompilationSyntaxError.symbols │ ├── jsFileCompilationSyntaxError.types │ ├── jsFileCompilationTypeAliasSyntax.errors.txt │ ├── jsFileCompilationTypeAliasSyntax.symbols │ ├── jsFileCompilationTypeAliasSyntax.types │ ├── jsFileCompilationTypeArgumentSyntaxOfCall.errors.txt │ ├── jsFileCompilationTypeArgumentSyntaxOfCall.js │ ├── jsFileCompilationTypeAssertions.errors.txt │ ├── jsFileCompilationTypeAssertions.js │ ├── jsFileCompilationTypeAssertions.symbols │ ├── jsFileCompilationTypeAssertions.types │ ├── jsFileCompilationTypeOfParameter.errors.txt │ ├── jsFileCompilationTypeOfParameter.symbols │ ├── jsFileCompilationTypeOfParameter.types │ ├── jsFileCompilationTypeParameterSyntaxOfClass.errors.txt │ ├── jsFileCompilationTypeParameterSyntaxOfClass.symbols │ ├── jsFileCompilationTypeParameterSyntaxOfClass.types │ ├── jsFileCompilationTypeParameterSyntaxOfClassExpression.errors.txt │ ├── jsFileCompilationTypeParameterSyntaxOfClassExpression.symbols │ ├── jsFileCompilationTypeParameterSyntaxOfClassExpression.types │ ├── jsFileCompilationTypeParameterSyntaxOfFunction.errors.txt │ ├── jsFileCompilationTypeParameterSyntaxOfFunction.symbols │ ├── jsFileCompilationTypeParameterSyntaxOfFunction.types │ ├── jsFileCompilationTypeSyntaxOfVar.errors.txt │ ├── jsFileCompilationTypeSyntaxOfVar.symbols │ ├── jsFileCompilationTypeSyntaxOfVar.types │ ├── jsFileCompilationWithDeclarationEmitPathSameAsInput.errors.txt │ ├── jsFileCompilationWithDeclarationEmitPathSameAsInput.js │ ├── jsFileCompilationWithDeclarationEmitPathSameAsInput.symbols │ ├── jsFileCompilationWithDeclarationEmitPathSameAsInput.types │ ├── jsFileCompilationWithEnabledCompositeOption.errors.txt │ ├── jsFileCompilationWithEnabledCompositeOption.js │ ├── jsFileCompilationWithEnabledCompositeOption.symbols │ ├── jsFileCompilationWithEnabledCompositeOption.types │ ├── jsFileCompilationWithJsEmitPathSameAsInput.errors.txt │ ├── jsFileCompilationWithJsEmitPathSameAsInput.symbols │ ├── jsFileCompilationWithJsEmitPathSameAsInput.types │ ├── jsFileCompilationWithMapFileAsJs.errors.txt │ ├── jsFileCompilationWithMapFileAsJs.js │ ├── jsFileCompilationWithMapFileAsJs.sourcemap.txt │ ├── jsFileCompilationWithMapFileAsJs.symbols │ ├── jsFileCompilationWithMapFileAsJs.types │ ├── jsFileCompilationWithMapFileAsJsWithInlineSourceMap.errors.txt │ ├── jsFileCompilationWithMapFileAsJsWithInlineSourceMap.js │ ├── jsFileCompilationWithMapFileAsJsWithInlineSourceMap.sourcemap.txt │ ├── jsFileCompilationWithMapFileAsJsWithInlineSourceMap.symbols │ ├── jsFileCompilationWithMapFileAsJsWithInlineSourceMap.types │ ├── jsFileCompilationWithMapFileAsJsWithOutDir.errors.txt │ ├── jsFileCompilationWithMapFileAsJsWithOutDir.js │ ├── jsFileCompilationWithMapFileAsJsWithOutDir.sourcemap.txt │ ├── jsFileCompilationWithMapFileAsJsWithOutDir.symbols │ ├── jsFileCompilationWithMapFileAsJsWithOutDir.types │ ├── jsFileCompilationWithOut.errors.txt │ ├── jsFileCompilationWithOut.js │ ├── jsFileCompilationWithOut.symbols │ ├── jsFileCompilationWithOut.types │ ├── jsFileCompilationWithOutDeclarationFileNameSameAsInputJsFile.errors.txt │ ├── jsFileCompilationWithOutDeclarationFileNameSameAsInputJsFile.js │ ├── jsFileCompilationWithOutDeclarationFileNameSameAsInputJsFile.symbols │ ├── jsFileCompilationWithOutDeclarationFileNameSameAsInputJsFile.types │ ├── jsFileCompilationWithOutFileNameSameAsInputJsFile.errors.txt │ ├── jsFileCompilationWithOutFileNameSameAsInputJsFile.symbols │ ├── jsFileCompilationWithOutFileNameSameAsInputJsFile.types │ ├── jsFileCompilationWithoutJsExtensions.errors.txt │ ├── jsFileCompilationWithoutOut.errors.txt │ ├── jsFileCompilationWithoutOut.js │ ├── jsFileCompilationWithoutOut.symbols │ ├── jsFileCompilationWithoutOut.types │ ├── jsFileESModuleWithEnumTag.symbols │ ├── jsFileESModuleWithEnumTag.types │ ├── jsFileFunctionOverloads.js │ ├── jsFileFunctionOverloads.symbols │ ├── jsFileFunctionOverloads.types │ ├── jsFileFunctionOverloads2.js │ ├── jsFileFunctionOverloads2.symbols │ ├── jsFileFunctionOverloads2.types │ ├── jsFileFunctionParametersAsOptional.symbols │ ├── jsFileFunctionParametersAsOptional.types │ ├── jsFileFunctionParametersAsOptional2.errors.txt │ ├── jsFileFunctionParametersAsOptional2.symbols │ ├── jsFileFunctionParametersAsOptional2.types │ ├── jsFileImportNoTypes.baseline │ ├── jsFileImportPreservedWhenUsed.js │ ├── jsFileImportPreservedWhenUsed.symbols │ ├── jsFileImportPreservedWhenUsed.types │ ├── jsFileJsdocTypedefTagTypeExpressionCompletion4.baseline │ ├── jsFileMethodOverloads.js │ ├── jsFileMethodOverloads.symbols │ ├── jsFileMethodOverloads.types │ ├── jsFileMethodOverloads2.js │ ├── jsFileMethodOverloads2.symbols │ ├── jsFileMethodOverloads2.types │ ├── jsFileMethodOverloads3.errors.txt │ ├── jsFileMethodOverloads3.symbols │ ├── jsFileMethodOverloads3.types │ ├── jsFileMethodOverloads4.js │ ├── jsFileMethodOverloads4.symbols │ ├── jsFileMethodOverloads4.types │ ├── jsFileMethodOverloads5.js │ ├── jsFileMethodOverloads5.symbols │ ├── jsFileMethodOverloads5.types │ ├── jsFunctionWithPrototypeNoErrorTruncationNoCrash.errors.txt │ ├── jsFunctionWithPrototypeNoErrorTruncationNoCrash.js │ ├── jsFunctionWithPrototypeNoErrorTruncationNoCrash.symbols │ ├── jsFunctionWithPrototypeNoErrorTruncationNoCrash.types │ ├── jsNegativeElementAccessNotBound.symbols │ ├── jsNegativeElementAccessNotBound.types │ ├── jsNoImplicitAnyNoCascadingReferenceErrors.errors.txt │ ├── jsNoImplicitAnyNoCascadingReferenceErrors.js │ ├── jsNoImplicitAnyNoCascadingReferenceErrors.symbols │ ├── jsNoImplicitAnyNoCascadingReferenceErrors.types │ ├── jsObjectDefinePropertyRenameLocations.baseline.jsonc │ ├── jsObjectsMarkedAsOpenEnded.errors.txt │ ├── jsObjectsMarkedAsOpenEnded.js │ ├── jsObjectsMarkedAsOpenEnded.symbols │ ├── jsObjectsMarkedAsOpenEnded.types │ ├── jsPropertyAssignedAfterMethodDeclaration.errors.txt │ ├── jsPropertyAssignedAfterMethodDeclaration.symbols │ ├── jsPropertyAssignedAfterMethodDeclaration.types │ ├── jsPropertyAssignedAfterMethodDeclaration_nonError.symbols │ ├── jsPropertyAssignedAfterMethodDeclaration_nonError.types │ ├── jsSelfReferencingArgumentsFunction.symbols │ ├── jsSelfReferencingArgumentsFunction.types │ ├── jsdocAccessEnumType.symbols │ ├── jsdocAccessEnumType.types │ ├── jsdocAccessibilityTags.errors.txt │ ├── jsdocAccessibilityTags.symbols │ ├── jsdocAccessibilityTags.types │ ├── jsdocAccessibilityTagsDeclarations.errors.txt │ ├── jsdocAccessibilityTagsDeclarations.js │ ├── jsdocAccessibilityTagsDeclarations.symbols │ ├── jsdocAccessibilityTagsDeclarations.types │ ├── jsdocArrayObjectPromiseImplicitAny.symbols │ ├── jsdocArrayObjectPromiseImplicitAny.types │ ├── jsdocArrayObjectPromiseNoImplicitAny.errors.txt │ ├── jsdocArrayObjectPromiseNoImplicitAny.symbols │ ├── jsdocArrayObjectPromiseNoImplicitAny.types │ ├── jsdocAugmentsMissingType.errors.txt │ ├── jsdocAugmentsMissingType.symbols │ ├── jsdocAugmentsMissingType.types │ ├── jsdocAugments_errorInExtendsExpression.errors.txt │ ├── jsdocAugments_errorInExtendsExpression.symbols │ ├── jsdocAugments_errorInExtendsExpression.types │ ├── jsdocAugments_nameMismatch.errors.txt │ ├── jsdocAugments_nameMismatch.symbols │ ├── jsdocAugments_nameMismatch.types │ ├── jsdocAugments_noExtends.errors.txt │ ├── jsdocAugments_noExtends.symbols │ ├── jsdocAugments_noExtends.types │ ├── jsdocAugments_notAClass.errors.txt │ ├── jsdocAugments_notAClass.symbols │ ├── jsdocAugments_notAClass.types │ ├── jsdocAugments_qualifiedName.symbols │ ├── jsdocAugments_qualifiedName.types │ ├── jsdocAugments_withTypeParameter.symbols │ ├── jsdocAugments_withTypeParameter.types │ ├── jsdocBindingInUnreachableCode.symbols │ ├── jsdocBindingInUnreachableCode.types │ ├── jsdocBracelessTypeTag1.errors.txt │ ├── jsdocBracelessTypeTag1.symbols │ ├── jsdocBracelessTypeTag1.types │ ├── jsdocCallbackAndType.errors.txt │ ├── jsdocCallbackAndType.symbols │ ├── jsdocCallbackAndType.types │ ├── jsdocCallbackTagRename01.baseline.jsonc │ ├── jsdocCastCommentEmit.js │ ├── jsdocCastCommentEmit.symbols │ ├── jsdocCastCommentEmit.types │ ├── jsdocCatchClauseWithTypeAnnotation.errors.txt │ ├── jsdocCatchClauseWithTypeAnnotation.js │ ├── jsdocCatchClauseWithTypeAnnotation.symbols │ ├── jsdocCatchClauseWithTypeAnnotation.types │ ├── jsdocClassMissingTypeArguments.errors.txt │ ├── jsdocClassMissingTypeArguments.symbols │ ├── jsdocClassMissingTypeArguments.types │ ├── jsdocConstructorFunctionTypeReference.symbols │ ├── jsdocConstructorFunctionTypeReference.types │ ├── jsdocDisallowedInTypescript.errors.txt │ ├── jsdocDisallowedInTypescript.js │ ├── jsdocDisallowedInTypescript.symbols │ ├── jsdocDisallowedInTypescript.types │ ├── jsdocFunctionClassPropertiesDeclaration.js │ ├── jsdocFunctionClassPropertiesDeclaration.symbols │ ├── jsdocFunctionClassPropertiesDeclaration.types │ ├── jsdocFunctionType.errors.txt │ ├── jsdocFunctionType.symbols │ ├── jsdocFunctionType.types │ ├── jsdocFunctionTypeFalsePositive.errors.txt │ ├── jsdocFunctionTypeFalsePositive.symbols │ ├── jsdocFunctionTypeFalsePositive.types │ ├── jsdocFunction_missingReturn.errors.txt │ ├── jsdocFunction_missingReturn.symbols │ ├── jsdocFunction_missingReturn.types │ ├── jsdocIllegalTags.errors.txt │ ├── jsdocIllegalTags.symbols │ ├── jsdocIllegalTags.types │ ├── jsdocImplementsTag.symbols │ ├── jsdocImplementsTag.types │ ├── jsdocImplements_class.errors.txt │ ├── jsdocImplements_class.js │ ├── jsdocImplements_class.symbols │ ├── jsdocImplements_class.types │ ├── jsdocImplements_interface.errors.txt │ ├── jsdocImplements_interface.js │ ├── jsdocImplements_interface.symbols │ ├── jsdocImplements_interface.types │ ├── jsdocImplements_interface_multiple.errors.txt │ ├── jsdocImplements_interface_multiple.js │ ├── jsdocImplements_interface_multiple.symbols │ ├── jsdocImplements_interface_multiple.types │ ├── jsdocImplements_missingType.errors.txt │ ├── jsdocImplements_missingType.js │ ├── jsdocImplements_missingType.symbols │ ├── jsdocImplements_missingType.types │ ├── jsdocImplements_namespacedInterface.js │ ├── jsdocImplements_namespacedInterface.symbols │ ├── jsdocImplements_namespacedInterface.types │ ├── jsdocImplements_properties.errors.txt │ ├── jsdocImplements_properties.js │ ├── jsdocImplements_properties.symbols │ ├── jsdocImplements_properties.types │ ├── jsdocImplements_signatures.errors.txt │ ├── jsdocImplements_signatures.js │ ├── jsdocImplements_signatures.symbols │ ├── jsdocImplements_signatures.types │ ├── jsdocImportTagCompletion2.baseline │ ├── jsdocImportTagCompletion3.baseline │ ├── jsdocImportType.errors.txt │ ├── jsdocImportType.symbols │ ├── jsdocImportType.types │ ├── jsdocImportType2.errors.txt │ ├── jsdocImportType2.symbols │ ├── jsdocImportType2.types │ ├── jsdocImportTypeNodeNamespace.errors.txt │ ├── jsdocImportTypeNodeNamespace.symbols │ ├── jsdocImportTypeNodeNamespace.types │ ├── jsdocImportTypeReferenceToClassAlias.symbols │ ├── jsdocImportTypeReferenceToClassAlias.types │ ├── jsdocImportTypeReferenceToCommonjsModule.symbols │ ├── jsdocImportTypeReferenceToCommonjsModule.types │ ├── jsdocImportTypeReferenceToESModule.symbols │ ├── jsdocImportTypeReferenceToESModule.types │ ├── jsdocImportTypeReferenceToStringLiteral.symbols │ ├── jsdocImportTypeReferenceToStringLiteral.types │ ├── jsdocImportTypeResolution.symbols │ ├── jsdocImportTypeResolution.types │ ├── jsdocInTypeScript.errors.txt │ ├── jsdocInTypeScript.js │ ├── jsdocInTypeScript.symbols │ ├── jsdocInTypeScript.trace.json │ ├── jsdocInTypeScript.types │ ├── jsdocIndexSignature.errors.txt │ ├── jsdocIndexSignature.symbols │ ├── jsdocIndexSignature.types │ ├── jsdocInvalidTokens.symbols │ ├── jsdocInvalidTokens.types │ ├── jsdocLink1.baseline │ ├── jsdocLink2.baseline │ ├── jsdocLink3.baseline │ ├── jsdocLink4.baseline │ ├── jsdocLink5.baseline │ ├── jsdocLink6.baseline │ ├── jsdocLinkTag1.js │ ├── jsdocLinkTag1.symbols │ ├── jsdocLinkTag1.types │ ├── jsdocLinkTag2.symbols │ ├── jsdocLinkTag2.types │ ├── jsdocLinkTag3.js │ ├── jsdocLinkTag3.symbols │ ├── jsdocLinkTag3.types │ ├── jsdocLinkTag4.js │ ├── jsdocLinkTag4.symbols │ ├── jsdocLinkTag4.types │ ├── jsdocLinkTag5.js │ ├── jsdocLinkTag5.symbols │ ├── jsdocLinkTag5.types │ ├── jsdocLinkTag6.js │ ├── jsdocLinkTag6.symbols │ ├── jsdocLinkTag6.types │ ├── jsdocLinkTag7.symbols │ ├── jsdocLinkTag7.types │ ├── jsdocLinkTag8.symbols │ ├── jsdocLinkTag8.types │ ├── jsdocLinkTag9.symbols │ ├── jsdocLinkTag9.types │ ├── jsdocLink_findAllReferences1.baseline.jsonc │ ├── jsdocLink_rename1.baseline.jsonc │ ├── jsdocLiteral.errors.txt │ ├── jsdocLiteral.js │ ├── jsdocLiteral.symbols │ ├── jsdocLiteral.types │ ├── jsdocNeverUndefinedNull.errors.txt │ ├── jsdocNeverUndefinedNull.js │ ├── jsdocNeverUndefinedNull.symbols │ ├── jsdocNeverUndefinedNull.types │ ├── jsdocOnInheritedMembers1.baseline │ ├── jsdocOnInheritedMembers2.baseline │ ├── jsdocOuterTypeParameters1.errors.txt │ ├── jsdocOuterTypeParameters1.symbols │ ├── jsdocOuterTypeParameters1.types │ ├── jsdocOuterTypeParameters2.errors.txt │ ├── jsdocOuterTypeParameters2.symbols │ ├── jsdocOuterTypeParameters2.types │ ├── jsdocOuterTypeParameters3.errors.txt │ ├── jsdocOuterTypeParameters3.symbols │ ├── jsdocOuterTypeParameters3.types │ ├── jsdocOverrideTag1.errors.txt │ ├── jsdocOverrideTag1.symbols │ ├── jsdocOverrideTag1.types │ ├── jsdocParamTag2.errors.txt │ ├── jsdocParamTag2.symbols │ ├── jsdocParamTag2.types │ ├── jsdocParamTagInvalid.errors.txt │ ├── jsdocParamTagInvalid.symbols │ ├── jsdocParamTagInvalid.types │ ├── jsdocParamTagOnPropertyInitializer.symbols │ ├── jsdocParamTagOnPropertyInitializer.types │ ├── jsdocParamTagTypeLiteral.errors.txt │ ├── jsdocParamTagTypeLiteral.symbols │ ├── jsdocParamTagTypeLiteral.types │ ├── jsdocParameterParsingInfiniteLoop.errors.txt │ ├── jsdocParameterParsingInfiniteLoop.symbols │ ├── jsdocParameterParsingInfiniteLoop.types │ ├── jsdocParameterParsingInvalidName.js │ ├── jsdocParameterParsingInvalidName.symbols │ ├── jsdocParameterParsingInvalidName.types │ ├── jsdocParameterTagSnippetCompletion1.baseline │ ├── jsdocParameterTagSnippetCompletion2.baseline │ ├── jsdocParameterTagSnippetCompletion3.baseline │ ├── jsdocParseBackquotedParamName.errors.txt │ ├── jsdocParseBackquotedParamName.symbols │ ├── jsdocParseBackquotedParamName.types │ ├── jsdocParseDotDotDotInJSDocFunction.errors.txt │ ├── jsdocParseDotDotDotInJSDocFunction.symbols │ ├── jsdocParseDotDotDotInJSDocFunction.types │ ├── jsdocParseErrorsInTypescript.errors.txt │ ├── jsdocParseErrorsInTypescript.js │ ├── jsdocParseErrorsInTypescript.symbols │ ├── jsdocParseErrorsInTypescript.types │ ├── jsdocParseHigherOrderFunction.symbols │ ├── jsdocParseHigherOrderFunction.types │ ├── jsdocParseMatchingBackticks.symbols │ ├── jsdocParseMatchingBackticks.types │ ├── jsdocParseParenthesizedJSDocParameter.symbols │ ├── jsdocParseParenthesizedJSDocParameter.types │ ├── jsdocParseStarEquals.symbols │ ├── jsdocParseStarEquals.types │ ├── jsdocPostfixEqualsAddsOptionality.errors.txt │ ├── jsdocPostfixEqualsAddsOptionality.symbols │ ├── jsdocPostfixEqualsAddsOptionality.types │ ├── jsdocPrefixPostfixParsing.errors.txt │ ├── jsdocPrefixPostfixParsing.symbols │ ├── jsdocPrefixPostfixParsing.types │ ├── jsdocPrivateName1.errors.txt │ ├── jsdocPrivateName1.symbols │ ├── jsdocPrivateName1.types │ ├── jsdocPrivateName2.errors.txt │ ├── jsdocPrivateName2.symbols │ ├── jsdocPrivateName2.types │ ├── jsdocPropertyTagInvalid.errors.txt │ ├── jsdocPropertyTagInvalid.symbols │ ├── jsdocPropertyTagInvalid.types │ ├── jsdocPrototypePropertyAccessWithType.errors.txt │ ├── jsdocPrototypePropertyAccessWithType.symbols │ ├── jsdocPrototypePropertyAccessWithType.types │ ├── jsdocReadonly.errors.txt │ ├── jsdocReadonly.symbols │ ├── jsdocReadonly.types │ ├── jsdocReadonlyDeclarations.errors.txt │ ├── jsdocReadonlyDeclarations.js │ ├── jsdocReadonlyDeclarations.symbols │ ├── jsdocReadonlyDeclarations.types │ ├── jsdocReferenceGlobalTypeInCommonJs.errors.txt │ ├── jsdocReferenceGlobalTypeInCommonJs.symbols │ ├── jsdocReferenceGlobalTypeInCommonJs.types │ ├── jsdocResolveNameFailureInTypedef.errors.txt │ ├── jsdocResolveNameFailureInTypedef.symbols │ ├── jsdocResolveNameFailureInTypedef.types │ ├── jsdocRestParameter.errors.txt │ ├── jsdocRestParameter.symbols │ ├── jsdocRestParameter.types │ ├── jsdocRestParameter_es6.symbols │ ├── jsdocRestParameter_es6.types │ ├── jsdocReturnTag1.errors.txt │ ├── jsdocReturnTag1.js │ ├── jsdocReturnTag1.symbols │ ├── jsdocReturnTag1.types │ ├── jsdocReturnsTag.baseline │ ├── jsdocSatisfiesTagFindAllReferences.baseline.jsonc │ ├── jsdocSatisfiesTagRename.baseline.jsonc │ ├── jsdocSignatureOnReturnedFunction.js │ ├── jsdocSignatureOnReturnedFunction.symbols │ ├── jsdocSignatureOnReturnedFunction.types │ ├── jsdocTemplateClass.errors.txt │ ├── jsdocTemplateClass.symbols │ ├── jsdocTemplateClass.types │ ├── jsdocTemplateConstructorFunction.errors.txt │ ├── jsdocTemplateConstructorFunction.symbols │ ├── jsdocTemplateConstructorFunction.types │ ├── jsdocTemplateConstructorFunction2.errors.txt │ ├── jsdocTemplateConstructorFunction2.symbols │ ├── jsdocTemplateConstructorFunction2.types │ ├── jsdocTemplateTag.errors.txt │ ├── jsdocTemplateTag.symbols │ ├── jsdocTemplateTag.types │ ├── jsdocTemplateTag2.symbols │ ├── jsdocTemplateTag2.types │ ├── jsdocTemplateTag3.errors.txt │ ├── jsdocTemplateTag3.symbols │ ├── jsdocTemplateTag3.types │ ├── jsdocTemplateTag4.symbols │ ├── jsdocTemplateTag4.types │ ├── jsdocTemplateTag5.symbols │ ├── jsdocTemplateTag5.types │ ├── jsdocTemplateTag6.symbols │ ├── jsdocTemplateTag6.types │ ├── jsdocTemplateTag7.errors.txt │ ├── jsdocTemplateTag7.symbols │ ├── jsdocTemplateTag7.types │ ├── jsdocTemplateTag8.errors.txt │ ├── jsdocTemplateTag8.symbols │ ├── jsdocTemplateTag8.types │ ├── jsdocTemplateTagDefault.errors.txt │ ├── jsdocTemplateTagDefault.js │ ├── jsdocTemplateTagDefault.symbols │ ├── jsdocTemplateTagDefault.types │ ├── jsdocTemplateTagNameResolution.errors.txt │ ├── jsdocTemplateTagNameResolution.js │ ├── jsdocTemplateTagNameResolution.symbols │ ├── jsdocTemplateTagNameResolution.types │ ├── jsdocThisType.errors.txt │ ├── jsdocThisType.symbols │ ├── jsdocThisType.types │ ├── jsdocThrowsTag_findAllReferences.baseline.jsonc │ ├── jsdocThrowsTag_rename.baseline.jsonc │ ├── jsdocTwoLineTypedef.js │ ├── jsdocTwoLineTypedef.symbols │ ├── jsdocTwoLineTypedef.types │ ├── jsdocTypeCast.errors.txt │ ├── jsdocTypeCast.js │ ├── jsdocTypeCast.symbols │ ├── jsdocTypeCast.types │ ├── jsdocTypeDefAtStartOfFile.symbols │ ├── jsdocTypeDefAtStartOfFile.types │ ├── jsdocTypeFromChainedAssignment.errors.txt │ ├── jsdocTypeFromChainedAssignment.symbols │ ├── jsdocTypeFromChainedAssignment.types │ ├── jsdocTypeFromChainedAssignment2.errors.txt │ ├── jsdocTypeFromChainedAssignment2.symbols │ ├── jsdocTypeFromChainedAssignment2.types │ ├── jsdocTypeFromChainedAssignment3.errors.txt │ ├── jsdocTypeFromChainedAssignment3.symbols │ ├── jsdocTypeFromChainedAssignment3.types │ ├── jsdocTypeGenericInstantiationAttempt.symbols │ ├── jsdocTypeGenericInstantiationAttempt.types │ ├── jsdocTypeNongenericInstantiationAttempt.errors.txt │ ├── jsdocTypeNongenericInstantiationAttempt.symbols │ ├── jsdocTypeNongenericInstantiationAttempt.types │ ├── jsdocTypeReferenceExports.symbols │ ├── jsdocTypeReferenceExports.types │ ├── jsdocTypeReferenceToImport.symbols │ ├── jsdocTypeReferenceToImport.types │ ├── jsdocTypeReferenceToImportOfClassExpression.symbols │ ├── jsdocTypeReferenceToImportOfClassExpression.types │ ├── jsdocTypeReferenceToImportOfFunctionExpression.symbols │ ├── jsdocTypeReferenceToImportOfFunctionExpression.types │ ├── jsdocTypeReferenceToMergedClass.errors.txt │ ├── jsdocTypeReferenceToMergedClass.symbols │ ├── jsdocTypeReferenceToMergedClass.types │ ├── jsdocTypeReferenceToValue.symbols │ ├── jsdocTypeReferenceToValue.types │ ├── jsdocTypeReferenceUseBeforeDef.symbols │ ├── jsdocTypeReferenceUseBeforeDef.types │ ├── jsdocTypeTag.errors.txt │ ├── jsdocTypeTag.js │ ├── jsdocTypeTag.symbols │ ├── jsdocTypeTag.types │ ├── jsdocTypeTagCast.errors.txt │ ├── jsdocTypeTagCast.js │ ├── jsdocTypeTagCast.symbols │ ├── jsdocTypeTagCast.types │ ├── jsdocTypeTagOnParameter1.symbols │ ├── jsdocTypeTagOnParameter1.types │ ├── jsdocTypeTagParameterType.errors.txt │ ├── jsdocTypeTagParameterType.symbols │ ├── jsdocTypeTagParameterType.types │ ├── jsdocTypeTagRequiredParameters.errors.txt │ ├── jsdocTypeTagRequiredParameters.symbols │ ├── jsdocTypeTagRequiredParameters.types │ ├── jsdocTypecastNoTypeNoCrash.js │ ├── jsdocTypecastNoTypeNoCrash.symbols │ ├── jsdocTypecastNoTypeNoCrash.types │ ├── jsdocTypedefBeforeParenthesizedExpression.symbols │ ├── jsdocTypedefBeforeParenthesizedExpression.types │ ├── jsdocTypedefMissingType.errors.txt │ ├── jsdocTypedefMissingType.symbols │ ├── jsdocTypedefMissingType.types │ ├── jsdocTypedefNoCrash.js │ ├── jsdocTypedefNoCrash.symbols │ ├── jsdocTypedefNoCrash.types │ ├── jsdocTypedefNoCrash2.errors.txt │ ├── jsdocTypedefNoCrash2.js │ ├── jsdocTypedefNoCrash2.symbols │ ├── jsdocTypedefNoCrash2.types │ ├── jsdocTypedefTagGoToDefinition.baseline.jsonc │ ├── jsdocTypedefTagRename01.baseline.jsonc │ ├── jsdocTypedefTagRename02.baseline.jsonc │ ├── jsdocTypedefTagRename03.baseline.jsonc │ ├── jsdocTypedefTagSemanticMeaning0.baseline.jsonc │ ├── jsdocTypedefTagSemanticMeaning1.baseline.jsonc │ ├── jsdocTypedefTagServices.baseline.jsonc │ ├── jsdocTypedef_propertyWithNoType.symbols │ ├── jsdocTypedef_propertyWithNoType.types │ ├── jsdocUnexpectedCharacter.symbols │ ├── jsdocUnexpectedCharacter.types │ ├── jsdocVariableDeclarationWithTypeAnnotation.js │ ├── jsdocVariableDeclarationWithTypeAnnotation.symbols │ ├── jsdocVariableDeclarationWithTypeAnnotation.types │ ├── jsdocVariadicType.symbols │ ├── jsdocVariadicType.types │ ├── json.stringify.js │ ├── json.stringify.symbols │ ├── json.stringify.types │ ├── jsonFileImportChecksCallCorrectlyTwice.js │ ├── jsonFileImportChecksCallCorrectlyTwice.symbols │ ├── jsonFileImportChecksCallCorrectlyTwice.types │ ├── jsonParserRecovery/ │ │ ├── JSX.errors.txt │ │ ├── Two_comma-separated_objects.errors.txt │ │ ├── Two_objects.errors.txt │ │ ├── TypeScript_code.errors.txt │ │ └── trailing_identifier.errors.txt │ ├── jsxAndTypeAssertion.errors.txt │ ├── jsxAndTypeAssertion.js │ ├── jsxAndTypeAssertion.symbols │ ├── jsxAndTypeAssertion.types │ ├── jsxAttributeInitializer(jsx=preserve).errors.txt │ ├── jsxAttributeInitializer(jsx=preserve).js │ ├── jsxAttributeInitializer(jsx=preserve).symbols │ ├── jsxAttributeInitializer(jsx=preserve).types │ ├── jsxAttributeInitializer(jsx=react).errors.txt │ ├── jsxAttributeInitializer(jsx=react).js │ ├── jsxAttributeInitializer(jsx=react).symbols │ ├── jsxAttributeInitializer(jsx=react).types │ ├── jsxAttributeMissingInitializer.errors.txt │ ├── jsxAttributeMissingInitializer.js │ ├── jsxAttributeMissingInitializer.symbols │ ├── jsxAttributeMissingInitializer.types │ ├── jsxAttributeWithoutExpressionReact.errors.txt │ ├── jsxAttributeWithoutExpressionReact.js │ ├── jsxAttributeWithoutExpressionReact.symbols │ ├── jsxAttributeWithoutExpressionReact.types │ ├── jsxCallElaborationCheckNoCrash1.errors.txt │ ├── jsxCallElaborationCheckNoCrash1.js │ ├── jsxCallElaborationCheckNoCrash1.symbols │ ├── jsxCallElaborationCheckNoCrash1.types │ ├── jsxCallbackWithDestructuring.js │ ├── jsxCallbackWithDestructuring.symbols │ ├── jsxCallbackWithDestructuring.types │ ├── jsxCheckJsxNoTypeArgumentsAllowed.errors.txt │ ├── jsxCheckJsxNoTypeArgumentsAllowed.js │ ├── jsxCheckJsxNoTypeArgumentsAllowed.symbols │ ├── jsxCheckJsxNoTypeArgumentsAllowed.types │ ├── jsxChildWrongType.errors.txt │ ├── jsxChildWrongType.js │ ├── jsxChildWrongType.symbols │ ├── jsxChildWrongType.types │ ├── jsxChildrenArrayWrongType(target=es2015).errors.txt │ ├── jsxChildrenArrayWrongType(target=es2015).js │ ├── jsxChildrenArrayWrongType(target=es2015).symbols │ ├── jsxChildrenArrayWrongType(target=es2015).types │ ├── jsxChildrenArrayWrongType(target=es5).errors.txt │ ├── jsxChildrenArrayWrongType(target=es5).js │ ├── jsxChildrenArrayWrongType(target=es5).symbols │ ├── jsxChildrenArrayWrongType(target=es5).types │ ├── jsxChildrenGenericContextualTypes.errors.txt │ ├── jsxChildrenGenericContextualTypes.js │ ├── jsxChildrenGenericContextualTypes.symbols │ ├── jsxChildrenGenericContextualTypes.types │ ├── jsxChildrenIndividualErrorElaborations.errors.txt │ ├── jsxChildrenIndividualErrorElaborations.js │ ├── jsxChildrenIndividualErrorElaborations.symbols │ ├── jsxChildrenIndividualErrorElaborations.types │ ├── jsxChildrenSingleChildConfusableWithMultipleChildrenNoError.js │ ├── jsxChildrenSingleChildConfusableWithMultipleChildrenNoError.symbols │ ├── jsxChildrenSingleChildConfusableWithMultipleChildrenNoError.types │ ├── jsxChildrenWrongType.errors.txt │ ├── jsxChildrenWrongType.js │ ├── jsxChildrenWrongType.symbols │ ├── jsxChildrenWrongType.types │ ├── jsxClassAttributeResolution.errors.txt │ ├── jsxClassAttributeResolution.js │ ├── jsxClassAttributeResolution.symbols │ ├── jsxClassAttributeResolution.types │ ├── jsxComplexSignatureHasApplicabilityError.js │ ├── jsxComplexSignatureHasApplicabilityError.symbols │ ├── jsxComplexSignatureHasApplicabilityError.types │ ├── jsxComponentTypeErrors.errors.txt │ ├── jsxComponentTypeErrors.js │ ├── jsxComponentTypeErrors.symbols │ ├── jsxComponentTypeErrors.types │ ├── jsxContainsOnlyTriviaWhiteSpacesNotCountedAsChild.js │ ├── jsxContainsOnlyTriviaWhiteSpacesNotCountedAsChild.symbols │ ├── jsxContainsOnlyTriviaWhiteSpacesNotCountedAsChild.types │ ├── jsxDeclarationsWithEsModuleInteropNoCrash.js │ ├── jsxDeclarationsWithEsModuleInteropNoCrash.symbols │ ├── jsxDeclarationsWithEsModuleInteropNoCrash.types │ ├── jsxElementClassTooManyParams.js │ ├── jsxElementClassTooManyParams.symbols │ ├── jsxElementClassTooManyParams.types │ ├── jsxElementType.errors.txt │ ├── jsxElementType.js │ ├── jsxElementType.symbols │ ├── jsxElementType.types │ ├── jsxElementTypeLiteral.errors.txt │ ├── jsxElementTypeLiteral.js │ ├── jsxElementTypeLiteral.symbols │ ├── jsxElementTypeLiteral.types │ ├── jsxElementTypeLiteralWithGeneric.errors.txt │ ├── jsxElementTypeLiteralWithGeneric.js │ ├── jsxElementTypeLiteralWithGeneric.symbols │ ├── jsxElementTypeLiteralWithGeneric.types │ ├── jsxElementsAsIdentifierNames.js │ ├── jsxElementsAsIdentifierNames.symbols │ ├── jsxElementsAsIdentifierNames.types │ ├── jsxEmitAttributeWithPreserve.errors.txt │ ├── jsxEmitAttributeWithPreserve.js │ ├── jsxEmitAttributeWithPreserve.symbols │ ├── jsxEmitAttributeWithPreserve.types │ ├── jsxEmitWithAttributes.js │ ├── jsxEmitWithAttributes.symbols │ ├── jsxEmitWithAttributes.types │ ├── jsxEmptyExpressionNotCountedAsChild(jsx=react).js │ ├── jsxEmptyExpressionNotCountedAsChild(jsx=react).symbols │ ├── jsxEmptyExpressionNotCountedAsChild(jsx=react).types │ ├── jsxEmptyExpressionNotCountedAsChild(jsx=react-jsx).js │ ├── jsxEmptyExpressionNotCountedAsChild(jsx=react-jsx).symbols │ ├── jsxEmptyExpressionNotCountedAsChild(jsx=react-jsx).types │ ├── jsxEmptyExpressionNotCountedAsChild(jsx=react-jsxdev).js │ ├── jsxEmptyExpressionNotCountedAsChild(jsx=react-jsxdev).symbols │ ├── jsxEmptyExpressionNotCountedAsChild(jsx=react-jsxdev).types │ ├── jsxEmptyExpressionNotCountedAsChild2.errors.txt │ ├── jsxEmptyExpressionNotCountedAsChild2.symbols │ ├── jsxEmptyExpressionNotCountedAsChild2.types │ ├── jsxEsprimaFbTestSuite.errors.txt │ ├── jsxEsprimaFbTestSuite.js │ ├── jsxEsprimaFbTestSuite.symbols │ ├── jsxEsprimaFbTestSuite.types │ ├── jsxExcessPropsAndAssignability.errors.txt │ ├── jsxExcessPropsAndAssignability.js │ ├── jsxExcessPropsAndAssignability.symbols │ ├── jsxExcessPropsAndAssignability.types │ ├── jsxFactoryAndJsxFragmentFactory.errors.txt │ ├── jsxFactoryAndJsxFragmentFactory.js │ ├── jsxFactoryAndJsxFragmentFactory.symbols │ ├── jsxFactoryAndJsxFragmentFactory.types │ ├── jsxFactoryAndJsxFragmentFactoryErrorNotIdentifier.errors.txt │ ├── jsxFactoryAndJsxFragmentFactoryErrorNotIdentifier.js │ ├── jsxFactoryAndJsxFragmentFactoryErrorNotIdentifier.symbols │ ├── jsxFactoryAndJsxFragmentFactoryErrorNotIdentifier.types │ ├── jsxFactoryAndJsxFragmentFactoryNull.errors.txt │ ├── jsxFactoryAndJsxFragmentFactoryNull.js │ ├── jsxFactoryAndJsxFragmentFactoryNull.symbols │ ├── jsxFactoryAndJsxFragmentFactoryNull.types │ ├── jsxFactoryAndReactNamespace.errors.txt │ ├── jsxFactoryAndReactNamespace.js │ ├── jsxFactoryAndReactNamespace.symbols │ ├── jsxFactoryAndReactNamespace.types │ ├── jsxFactoryButNoJsxFragmentFactory.errors.txt │ ├── jsxFactoryButNoJsxFragmentFactory.js │ ├── jsxFactoryButNoJsxFragmentFactory.symbols │ ├── jsxFactoryButNoJsxFragmentFactory.types │ ├── jsxFactoryIdentifier.js │ ├── jsxFactoryIdentifier.sourcemap.txt │ ├── jsxFactoryIdentifier.symbols │ ├── jsxFactoryIdentifier.types │ ├── jsxFactoryIdentifierAsParameter.js │ ├── jsxFactoryIdentifierAsParameter.sourcemap.txt │ ├── jsxFactoryIdentifierAsParameter.symbols │ ├── jsxFactoryIdentifierAsParameter.types │ ├── jsxFactoryIdentifierWithAbsentParameter.errors.txt │ ├── jsxFactoryIdentifierWithAbsentParameter.js │ ├── jsxFactoryIdentifierWithAbsentParameter.sourcemap.txt │ ├── jsxFactoryIdentifierWithAbsentParameter.symbols │ ├── jsxFactoryIdentifierWithAbsentParameter.types │ ├── jsxFactoryMissingErrorInsideAClass.errors.txt │ ├── jsxFactoryMissingErrorInsideAClass.js │ ├── jsxFactoryMissingErrorInsideAClass.symbols │ ├── jsxFactoryMissingErrorInsideAClass.types │ ├── jsxFactoryNotIdentifierOrQualifiedName.errors.txt │ ├── jsxFactoryNotIdentifierOrQualifiedName.js │ ├── jsxFactoryNotIdentifierOrQualifiedName.symbols │ ├── jsxFactoryNotIdentifierOrQualifiedName.types │ ├── jsxFactoryNotIdentifierOrQualifiedName2.errors.txt │ ├── jsxFactoryNotIdentifierOrQualifiedName2.js │ ├── jsxFactoryNotIdentifierOrQualifiedName2.symbols │ ├── jsxFactoryNotIdentifierOrQualifiedName2.types │ ├── jsxFactoryQualifiedName.js │ ├── jsxFactoryQualifiedName.sourcemap.txt │ ├── jsxFactoryQualifiedName.symbols │ ├── jsxFactoryQualifiedName.types │ ├── jsxFactoryQualifiedNameResolutionError.errors.txt │ ├── jsxFactoryQualifiedNameResolutionError.js │ ├── jsxFactoryQualifiedNameResolutionError.sourcemap.txt │ ├── jsxFactoryQualifiedNameResolutionError.symbols │ ├── jsxFactoryQualifiedNameResolutionError.types │ ├── jsxFactoryQualifiedNameWithEs5(target=es2015).errors.txt │ ├── jsxFactoryQualifiedNameWithEs5(target=es2015).js │ ├── jsxFactoryQualifiedNameWithEs5(target=es2015).symbols │ ├── jsxFactoryQualifiedNameWithEs5(target=es2015).types │ ├── jsxFactoryQualifiedNameWithEs5(target=es5).errors.txt │ ├── jsxFactoryQualifiedNameWithEs5(target=es5).js │ ├── jsxFactoryQualifiedNameWithEs5(target=es5).symbols │ ├── jsxFactoryQualifiedNameWithEs5(target=es5).types │ ├── jsxFindAllReferencesOnRuntimeImportWithPaths1.baseline.jsonc │ ├── jsxFragReactReferenceErrors(jsx=preserve).js │ ├── jsxFragReactReferenceErrors(jsx=preserve).symbols │ ├── jsxFragReactReferenceErrors(jsx=preserve).types │ ├── jsxFragReactReferenceErrors(jsx=react-native).js │ ├── jsxFragReactReferenceErrors(jsx=react-native).symbols │ ├── jsxFragReactReferenceErrors(jsx=react-native).types │ ├── jsxFragmentAndFactoryUsedOnFragmentUse.js │ ├── jsxFragmentAndFactoryUsedOnFragmentUse.symbols │ ├── jsxFragmentAndFactoryUsedOnFragmentUse.types │ ├── jsxFragmentFactoryNoUnusedLocals.errors.txt │ ├── jsxFragmentFactoryNoUnusedLocals.js │ ├── jsxFragmentFactoryNoUnusedLocals.symbols │ ├── jsxFragmentFactoryNoUnusedLocals.types │ ├── jsxFragmentFactoryReference(jsx=react).errors.txt │ ├── jsxFragmentFactoryReference(jsx=react-jsx).errors.txt │ ├── jsxFragmentFactoryReference(jsx=react-jsxdev).errors.txt │ ├── jsxFragmentWrongType.errors.txt │ ├── jsxFragmentWrongType.js │ ├── jsxFragmentWrongType.symbols │ ├── jsxFragmentWrongType.types │ ├── jsxFunctionTypeChildren.symbols │ ├── jsxFunctionTypeChildren.types │ ├── jsxGenericComponentWithSpreadingResultOfGenericFunction.symbols │ ├── jsxGenericComponentWithSpreadingResultOfGenericFunction.types │ ├── jsxHasLiteralType.js │ ├── jsxHasLiteralType.symbols │ ├── jsxHasLiteralType.types │ ├── jsxHash.errors.txt │ ├── jsxHash.js │ ├── jsxHash.symbols │ ├── jsxHash.types │ ├── jsxImportForSideEffectsNonExtantNoError.errors.txt │ ├── jsxImportForSideEffectsNonExtantNoError.js │ ├── jsxImportForSideEffectsNonExtantNoError.symbols │ ├── jsxImportForSideEffectsNonExtantNoError.types │ ├── jsxImportInAttribute.errors.txt │ ├── jsxImportInAttribute.js │ ├── jsxImportInAttribute.symbols │ ├── jsxImportInAttribute.types │ ├── jsxImportSourceNonPragmaComment.errors.txt │ ├── jsxImportSourceNonPragmaComment.js │ ├── jsxImportSourceNonPragmaComment.symbols │ ├── jsxImportSourceNonPragmaComment.types │ ├── jsxInExtendsClause.errors.txt │ ├── jsxInExtendsClause.js │ ├── jsxInExtendsClause.symbols │ ├── jsxInExtendsClause.types │ ├── jsxInferenceProducesLiteralAsExpected.js │ ├── jsxInferenceProducesLiteralAsExpected.symbols │ ├── jsxInferenceProducesLiteralAsExpected.types │ ├── jsxIntrinsicDeclaredUsingTemplateLiteralTypeSignatures.errors.txt │ ├── jsxIntrinsicDeclaredUsingTemplateLiteralTypeSignatures.symbols │ ├── jsxIntrinsicDeclaredUsingTemplateLiteralTypeSignatures.types │ ├── jsxIntrinsicElementsCompatability.js │ ├── jsxIntrinsicElementsCompatability.symbols │ ├── jsxIntrinsicElementsCompatability.types │ ├── jsxIntrinsicElementsExtendsRecord.js │ ├── jsxIntrinsicElementsExtendsRecord.symbols │ ├── jsxIntrinsicElementsExtendsRecord.types │ ├── jsxIntrinsicElementsTypeArgumentErrors.errors.txt │ ├── jsxIntrinsicElementsTypeArgumentErrors.js │ ├── jsxIntrinsicElementsTypeArgumentErrors.symbols │ ├── jsxIntrinsicElementsTypeArgumentErrors.types │ ├── jsxIntrinsicUnions.js │ ├── jsxIntrinsicUnions.symbols │ ├── jsxIntrinsicUnions.types │ ├── jsxInvalidEsprimaTestSuite.errors.txt │ ├── jsxInvalidEsprimaTestSuite.js │ ├── jsxInvalidEsprimaTestSuite.symbols │ ├── jsxInvalidEsprimaTestSuite.types │ ├── jsxIssuesErrorWhenTagExpectsTooManyArguments.errors.txt │ ├── jsxIssuesErrorWhenTagExpectsTooManyArguments.js │ ├── jsxIssuesErrorWhenTagExpectsTooManyArguments.symbols │ ├── jsxIssuesErrorWhenTagExpectsTooManyArguments.types │ ├── jsxJsxsCjsTransformChildren(jsx=react-jsx).js │ ├── jsxJsxsCjsTransformChildren(jsx=react-jsx).symbols │ ├── jsxJsxsCjsTransformChildren(jsx=react-jsx).types │ ├── jsxJsxsCjsTransformChildren(jsx=react-jsxdev).js │ ├── jsxJsxsCjsTransformChildren(jsx=react-jsxdev).symbols │ ├── jsxJsxsCjsTransformChildren(jsx=react-jsxdev).types │ ├── jsxJsxsCjsTransformCustomImport(jsx=react-jsx).errors.txt │ ├── jsxJsxsCjsTransformCustomImport(jsx=react-jsx).js │ ├── jsxJsxsCjsTransformCustomImport(jsx=react-jsx).symbols │ ├── jsxJsxsCjsTransformCustomImport(jsx=react-jsx).types │ ├── jsxJsxsCjsTransformCustomImport(jsx=react-jsxdev).errors.txt │ ├── jsxJsxsCjsTransformCustomImport(jsx=react-jsxdev).js │ ├── jsxJsxsCjsTransformCustomImport(jsx=react-jsxdev).symbols │ ├── jsxJsxsCjsTransformCustomImport(jsx=react-jsxdev).types │ ├── jsxJsxsCjsTransformCustomImportPragma(jsx=react-jsx).errors.txt │ ├── jsxJsxsCjsTransformCustomImportPragma(jsx=react-jsx).js │ ├── jsxJsxsCjsTransformCustomImportPragma(jsx=react-jsx).symbols │ ├── jsxJsxsCjsTransformCustomImportPragma(jsx=react-jsx).types │ ├── jsxJsxsCjsTransformCustomImportPragma(jsx=react-jsxdev).errors.txt │ ├── jsxJsxsCjsTransformCustomImportPragma(jsx=react-jsxdev).js │ ├── jsxJsxsCjsTransformCustomImportPragma(jsx=react-jsxdev).symbols │ ├── jsxJsxsCjsTransformCustomImportPragma(jsx=react-jsxdev).types │ ├── jsxJsxsCjsTransformKeyProp(jsx=react-jsx).js │ ├── jsxJsxsCjsTransformKeyProp(jsx=react-jsx).symbols │ ├── jsxJsxsCjsTransformKeyProp(jsx=react-jsx).types │ ├── jsxJsxsCjsTransformKeyProp(jsx=react-jsxdev).js │ ├── jsxJsxsCjsTransformKeyProp(jsx=react-jsxdev).symbols │ ├── jsxJsxsCjsTransformKeyProp(jsx=react-jsxdev).types │ ├── jsxJsxsCjsTransformKeyPropCustomImport(jsx=react-jsx).errors.txt │ ├── jsxJsxsCjsTransformKeyPropCustomImport(jsx=react-jsx).js │ ├── jsxJsxsCjsTransformKeyPropCustomImport(jsx=react-jsx).symbols │ ├── jsxJsxsCjsTransformKeyPropCustomImport(jsx=react-jsx).types │ ├── jsxJsxsCjsTransformKeyPropCustomImport(jsx=react-jsxdev).errors.txt │ ├── jsxJsxsCjsTransformKeyPropCustomImport(jsx=react-jsxdev).js │ ├── jsxJsxsCjsTransformKeyPropCustomImport(jsx=react-jsxdev).symbols │ ├── jsxJsxsCjsTransformKeyPropCustomImport(jsx=react-jsxdev).types │ ├── jsxJsxsCjsTransformKeyPropCustomImportPragma(jsx=react-jsx).errors.txt │ ├── jsxJsxsCjsTransformKeyPropCustomImportPragma(jsx=react-jsx).js │ ├── jsxJsxsCjsTransformKeyPropCustomImportPragma(jsx=react-jsx).symbols │ ├── jsxJsxsCjsTransformKeyPropCustomImportPragma(jsx=react-jsx).types │ ├── jsxJsxsCjsTransformKeyPropCustomImportPragma(jsx=react-jsxdev).errors.txt │ ├── jsxJsxsCjsTransformKeyPropCustomImportPragma(jsx=react-jsxdev).js │ ├── jsxJsxsCjsTransformKeyPropCustomImportPragma(jsx=react-jsxdev).symbols │ ├── jsxJsxsCjsTransformKeyPropCustomImportPragma(jsx=react-jsxdev).types │ ├── jsxJsxsCjsTransformNestedSelfClosingChild(jsx=react-jsx).js │ ├── jsxJsxsCjsTransformNestedSelfClosingChild(jsx=react-jsx).symbols │ ├── jsxJsxsCjsTransformNestedSelfClosingChild(jsx=react-jsx).types │ ├── jsxJsxsCjsTransformNestedSelfClosingChild(jsx=react-jsxdev).js │ ├── jsxJsxsCjsTransformNestedSelfClosingChild(jsx=react-jsxdev).symbols │ ├── jsxJsxsCjsTransformNestedSelfClosingChild(jsx=react-jsxdev).types │ ├── jsxJsxsCjsTransformSubstitutesNames(jsx=react-jsx).js │ ├── jsxJsxsCjsTransformSubstitutesNames(jsx=react-jsx).symbols │ ├── jsxJsxsCjsTransformSubstitutesNames(jsx=react-jsx).types │ ├── jsxJsxsCjsTransformSubstitutesNames(jsx=react-jsxdev).js │ ├── jsxJsxsCjsTransformSubstitutesNames(jsx=react-jsxdev).symbols │ ├── jsxJsxsCjsTransformSubstitutesNames(jsx=react-jsxdev).types │ ├── jsxJsxsCjsTransformSubstitutesNamesFragment(jsx=react-jsx).js │ ├── jsxJsxsCjsTransformSubstitutesNamesFragment(jsx=react-jsx).symbols │ ├── jsxJsxsCjsTransformSubstitutesNamesFragment(jsx=react-jsx).types │ ├── jsxJsxsCjsTransformSubstitutesNamesFragment(jsx=react-jsxdev).js │ ├── jsxJsxsCjsTransformSubstitutesNamesFragment(jsx=react-jsxdev).symbols │ ├── jsxJsxsCjsTransformSubstitutesNamesFragment(jsx=react-jsxdev).types │ ├── jsxLibraryManagedAttributesUnusedGeneric.js │ ├── jsxLibraryManagedAttributesUnusedGeneric.symbols │ ├── jsxLibraryManagedAttributesUnusedGeneric.types │ ├── jsxLocalNamespaceIndexSignatureNoCrash.js │ ├── jsxLocalNamespaceIndexSignatureNoCrash.symbols │ ├── jsxLocalNamespaceIndexSignatureNoCrash.types │ ├── jsxMultilineAttributeStringValues.errors.txt │ ├── jsxMultilineAttributeStringValues.js │ ├── jsxMultilineAttributeStringValues.symbols │ ├── jsxMultilineAttributeStringValues.types │ ├── jsxMultilineAttributeValuesReact.errors.txt │ ├── jsxMultilineAttributeValuesReact.js │ ├── jsxMultilineAttributeValuesReact.symbols │ ├── jsxMultilineAttributeValuesReact.types │ ├── jsxNamespaceElementChildrenAttributeIgnoredWhenReactJsx(jsx=react-jsx).errors.txt │ ├── jsxNamespaceElementChildrenAttributeIgnoredWhenReactJsx(jsx=react-jsx).js │ ├── jsxNamespaceElementChildrenAttributeIgnoredWhenReactJsx(jsx=react-jsx).symbols │ ├── jsxNamespaceElementChildrenAttributeIgnoredWhenReactJsx(jsx=react-jsx).types │ ├── jsxNamespaceElementChildrenAttributeIgnoredWhenReactJsx(jsx=react-jsxdev).errors.txt │ ├── jsxNamespaceElementChildrenAttributeIgnoredWhenReactJsx(jsx=react-jsxdev).js │ ├── jsxNamespaceElementChildrenAttributeIgnoredWhenReactJsx(jsx=react-jsxdev).symbols │ ├── jsxNamespaceElementChildrenAttributeIgnoredWhenReactJsx(jsx=react-jsxdev).types │ ├── jsxNamespaceGlobalReexport.js │ ├── jsxNamespaceGlobalReexport.symbols │ ├── jsxNamespaceGlobalReexport.types │ ├── jsxNamespaceGlobalReexportMissingAliasTarget.errors.txt │ ├── jsxNamespaceGlobalReexportMissingAliasTarget.js │ ├── jsxNamespaceGlobalReexportMissingAliasTarget.symbols │ ├── jsxNamespaceGlobalReexportMissingAliasTarget.types │ ├── jsxNamespaceImplicitImportJSXNamespace.js │ ├── jsxNamespaceImplicitImportJSXNamespace.symbols │ ├── jsxNamespaceImplicitImportJSXNamespace.types │ ├── jsxNamespaceImplicitImportJSXNamespaceFromConfigPickedOverGlobalOne(jsx=preserve).js │ ├── jsxNamespaceImplicitImportJSXNamespaceFromConfigPickedOverGlobalOne(jsx=preserve).symbols │ ├── jsxNamespaceImplicitImportJSXNamespaceFromConfigPickedOverGlobalOne(jsx=preserve).types │ ├── jsxNamespaceImplicitImportJSXNamespaceFromConfigPickedOverGlobalOne(jsx=react-jsx).js │ ├── jsxNamespaceImplicitImportJSXNamespaceFromConfigPickedOverGlobalOne(jsx=react-jsx).symbols │ ├── jsxNamespaceImplicitImportJSXNamespaceFromConfigPickedOverGlobalOne(jsx=react-jsx).types │ ├── jsxNamespaceImplicitImportJSXNamespaceFromPragmaPickedOverGlobalOne.js │ ├── jsxNamespaceImplicitImportJSXNamespaceFromPragmaPickedOverGlobalOne.symbols │ ├── jsxNamespaceImplicitImportJSXNamespaceFromPragmaPickedOverGlobalOne.types │ ├── jsxNamespaceNoElementChildrenAttributeReactJsx(jsx=react-jsx).js │ ├── jsxNamespaceNoElementChildrenAttributeReactJsx(jsx=react-jsx).symbols │ ├── jsxNamespaceNoElementChildrenAttributeReactJsx(jsx=react-jsx).types │ ├── jsxNamespaceNoElementChildrenAttributeReactJsx(jsx=react-jsxdev).js │ ├── jsxNamespaceNoElementChildrenAttributeReactJsx(jsx=react-jsxdev).symbols │ ├── jsxNamespaceNoElementChildrenAttributeReactJsx(jsx=react-jsxdev).types │ ├── jsxNamespacePrefixInName.errors.txt │ ├── jsxNamespacePrefixInName.js │ ├── jsxNamespacePrefixInName.symbols │ ├── jsxNamespacePrefixInName.types │ ├── jsxNamespacePrefixInNameReact.errors.txt │ ├── jsxNamespacePrefixInNameReact.js │ ├── jsxNamespacePrefixInNameReact.symbols │ ├── jsxNamespacePrefixInNameReact.types │ ├── jsxNamespacePrefixIntrinsics.errors.txt │ ├── jsxNamespacePrefixIntrinsics.js │ ├── jsxNamespacePrefixIntrinsics.symbols │ ├── jsxNamespacePrefixIntrinsics.types │ ├── jsxNamespaceReexports.js │ ├── jsxNamespaceReexports.symbols │ ├── jsxNamespaceReexports.types │ ├── jsxNamespacedNameNotComparedToNonMatchingIndexSignature.js │ ├── jsxNamespacedNameNotComparedToNonMatchingIndexSignature.symbols │ ├── jsxNamespacedNameNotComparedToNonMatchingIndexSignature.types │ ├── jsxNestedWithinTernaryParsesCorrectly.errors.txt │ ├── jsxNestedWithinTernaryParsesCorrectly.js │ ├── jsxNestedWithinTernaryParsesCorrectly.symbols │ ├── jsxNestedWithinTernaryParsesCorrectly.types │ ├── jsxParsingError1.errors.txt │ ├── jsxParsingError1.js │ ├── jsxParsingError1.symbols │ ├── jsxParsingError1.types │ ├── jsxParsingError2.errors.txt │ ├── jsxParsingError2.js │ ├── jsxParsingError2.symbols │ ├── jsxParsingError2.types │ ├── jsxParsingError3.errors.txt │ ├── jsxParsingError3.js │ ├── jsxParsingError3.symbols │ ├── jsxParsingError3.types │ ├── jsxParsingError4(strict=false).js │ ├── jsxParsingError4(strict=false).symbols │ ├── jsxParsingError4(strict=false).types │ ├── jsxParsingError4(strict=true).js │ ├── jsxParsingError4(strict=true).symbols │ ├── jsxParsingError4(strict=true).types │ ├── jsxParsingErrorImmediateSpreadInAttributeValue.errors.txt │ ├── jsxParsingErrorImmediateSpreadInAttributeValue.js │ ├── jsxParsingErrorImmediateSpreadInAttributeValue.symbols │ ├── jsxParsingErrorImmediateSpreadInAttributeValue.types │ ├── jsxPartialSpread.js │ ├── jsxPartialSpread.symbols │ ├── jsxPartialSpread.types │ ├── jsxPreserveWithJsInput.js │ ├── jsxPreserveWithJsInput.symbols │ ├── jsxPreserveWithJsInput.types │ ├── jsxPropsAsIdentifierNames.errors.txt │ ├── jsxPropsAsIdentifierNames.js │ ├── jsxPropsAsIdentifierNames.symbols │ ├── jsxPropsAsIdentifierNames.types │ ├── jsxReactTestSuite.errors.txt │ ├── jsxReactTestSuite.js │ ├── jsxReactTestSuite.symbols │ ├── jsxReactTestSuite.types │ ├── jsxRuntimePragma(jsx=preserve).js │ ├── jsxRuntimePragma(jsx=preserve).symbols │ ├── jsxRuntimePragma(jsx=preserve).types │ ├── jsxRuntimePragma(jsx=react).js │ ├── jsxRuntimePragma(jsx=react).symbols │ ├── jsxRuntimePragma(jsx=react).types │ ├── jsxRuntimePragma(jsx=react-jsx).js │ ├── jsxRuntimePragma(jsx=react-jsx).symbols │ ├── jsxRuntimePragma(jsx=react-jsx).types │ ├── jsxRuntimePragma(jsx=react-jsxdev).js │ ├── jsxRuntimePragma(jsx=react-jsxdev).symbols │ ├── jsxRuntimePragma(jsx=react-jsxdev).types │ ├── jsxSpreadFirstUnionNoErrors.js │ ├── jsxSpreadFirstUnionNoErrors.symbols │ ├── jsxSpreadFirstUnionNoErrors.types │ ├── jsxSpreadOverwritesAttributeStrict.errors.txt │ ├── jsxSpreadOverwritesAttributeStrict.js │ ├── jsxSpreadOverwritesAttributeStrict.symbols │ ├── jsxSpreadOverwritesAttributeStrict.types │ ├── jsxSpreadReference.baseline.jsonc │ ├── jsxSpreadTag(target=es2015).errors.txt │ ├── jsxSpreadTag(target=es2015).js │ ├── jsxSpreadTag(target=es2015).symbols │ ├── jsxSpreadTag(target=es2015).types │ ├── jsxSpreadTag(target=esnext).errors.txt │ ├── jsxSpreadTag(target=esnext).js │ ├── jsxSpreadTag(target=esnext).symbols │ ├── jsxSpreadTag(target=esnext).types │ ├── jsxUnclosedParserRecovery.errors.txt │ ├── jsxUnclosedParserRecovery.js │ ├── jsxUnclosedParserRecovery.symbols │ ├── jsxUnclosedParserRecovery.types │ ├── jsxViaImport.2.errors.txt │ ├── jsxViaImport.2.js │ ├── jsxViaImport.2.symbols │ ├── jsxViaImport.2.types │ ├── jsxViaImport.errors.txt │ ├── jsxViaImport.js │ ├── jsxViaImport.symbols │ ├── jsxViaImport.types │ ├── keepImportsInDts1.errors.txt │ ├── keepImportsInDts1.js │ ├── keepImportsInDts1.symbols │ ├── keepImportsInDts1.types │ ├── keepImportsInDts2.errors.txt │ ├── keepImportsInDts2.js │ ├── keepImportsInDts2.symbols │ ├── keepImportsInDts2.types │ ├── keepImportsInDts3.errors.txt │ ├── keepImportsInDts3.js │ ├── keepImportsInDts3.symbols │ ├── keepImportsInDts3.types │ ├── keepImportsInDts4.errors.txt │ ├── keepImportsInDts4.js │ ├── keepImportsInDts4.symbols │ ├── keepImportsInDts4.types │ ├── keyRemappingKeyofResult.errors.txt │ ├── keyRemappingKeyofResult.js │ ├── keyRemappingKeyofResult.symbols │ ├── keyRemappingKeyofResult.types │ ├── keyRemappingKeyofResult2.symbols │ ├── keyRemappingKeyofResult2.types │ ├── keyofAndForIn.js │ ├── keyofAndForIn.symbols │ ├── keyofAndForIn.types │ ├── keyofAndIndexedAccess.errors.txt │ ├── keyofAndIndexedAccess.js │ ├── keyofAndIndexedAccess.symbols │ ├── keyofAndIndexedAccess.types │ ├── keyofAndIndexedAccess2.errors.txt │ ├── keyofAndIndexedAccess2.js │ ├── keyofAndIndexedAccess2.symbols │ ├── keyofAndIndexedAccess2.types │ ├── keyofAndIndexedAccessErrors.errors.txt │ ├── keyofAndIndexedAccessErrors.js │ ├── keyofAndIndexedAccessErrors.symbols │ ├── keyofAndIndexedAccessErrors.types │ ├── keyofDoesntContainSymbols.errors.txt │ ├── keyofDoesntContainSymbols.js │ ├── keyofDoesntContainSymbols.symbols │ ├── keyofDoesntContainSymbols.types │ ├── keyofGenericExtendingClassDoubleLayer.errors.txt │ ├── keyofGenericExtendingClassDoubleLayer.js │ ├── keyofGenericExtendingClassDoubleLayer.symbols │ ├── keyofGenericExtendingClassDoubleLayer.types │ ├── keyofInferenceIntersectsResults.js │ ├── keyofInferenceIntersectsResults.symbols │ ├── keyofInferenceIntersectsResults.types │ ├── keyofInferenceLowerPriorityThanReturn.js │ ├── keyofInferenceLowerPriorityThanReturn.symbols │ ├── keyofInferenceLowerPriorityThanReturn.types │ ├── keyofIntersection.js │ ├── keyofIntersection.symbols │ ├── keyofIntersection.types │ ├── keyofIsLiteralContexualType.errors.txt │ ├── keyofIsLiteralContexualType.js │ ├── keyofIsLiteralContexualType.symbols │ ├── keyofIsLiteralContexualType.types │ ├── keyofModuleObjectHasCorrectKeys.js │ ├── keyofModuleObjectHasCorrectKeys.symbols │ ├── keyofModuleObjectHasCorrectKeys.types │ ├── keyofObjectWithGlobalSymbolIncluded.js │ ├── keyofObjectWithGlobalSymbolIncluded.symbols │ ├── keyofObjectWithGlobalSymbolIncluded.types │ ├── keywordExpressionInternalComments.errors.txt │ ├── keywordExpressionInternalComments.js │ ├── keywordExpressionInternalComments.symbols │ ├── keywordExpressionInternalComments.types │ ├── keywordField.js │ ├── keywordField.symbols │ ├── keywordField.types │ ├── keywordInJsxIdentifier.errors.txt │ ├── keywordInJsxIdentifier.js │ ├── keywordInJsxIdentifier.symbols │ ├── keywordInJsxIdentifier.types │ ├── knockout.errors.txt │ ├── knockout.js │ ├── knockout.symbols │ ├── knockout.types │ ├── labeledStatementDeclarationListInLoopNoCrash1(target=es2015).errors.txt │ ├── labeledStatementDeclarationListInLoopNoCrash1(target=es2015).js │ ├── labeledStatementDeclarationListInLoopNoCrash1(target=es5).errors.txt │ ├── labeledStatementDeclarationListInLoopNoCrash1(target=es5).js │ ├── labeledStatementDeclarationListInLoopNoCrash2(target=es2015).errors.txt │ ├── labeledStatementDeclarationListInLoopNoCrash2(target=es2015).js │ ├── labeledStatementDeclarationListInLoopNoCrash2(target=es5).errors.txt │ ├── labeledStatementDeclarationListInLoopNoCrash2(target=es5).js │ ├── labeledStatementDeclarationListInLoopNoCrash3(target=es2015).errors.txt │ ├── labeledStatementDeclarationListInLoopNoCrash3(target=es2015).js │ ├── labeledStatementDeclarationListInLoopNoCrash3(target=es5).errors.txt │ ├── labeledStatementDeclarationListInLoopNoCrash3(target=es5).js │ ├── labeledStatementDeclarationListInLoopNoCrash4(target=es2015).errors.txt │ ├── labeledStatementDeclarationListInLoopNoCrash4(target=es2015).js │ ├── labeledStatementDeclarationListInLoopNoCrash4(target=es5).errors.txt │ ├── labeledStatementDeclarationListInLoopNoCrash4(target=es5).js │ ├── labeledStatementExportDeclarationNoCrash1(module=commonjs).errors.txt │ ├── labeledStatementExportDeclarationNoCrash1(module=commonjs).js │ ├── labeledStatementExportDeclarationNoCrash1(module=commonjs).symbols │ ├── labeledStatementExportDeclarationNoCrash1(module=commonjs).types │ ├── labeledStatementExportDeclarationNoCrash1(module=esnext).errors.txt │ ├── labeledStatementExportDeclarationNoCrash1(module=esnext).js │ ├── labeledStatementExportDeclarationNoCrash1(module=esnext).symbols │ ├── labeledStatementExportDeclarationNoCrash1(module=esnext).types │ ├── labeledStatementExportDeclarationNoCrash1(module=system).errors.txt │ ├── labeledStatementExportDeclarationNoCrash1(module=system).js │ ├── labeledStatementExportDeclarationNoCrash1(module=system).symbols │ ├── labeledStatementExportDeclarationNoCrash1(module=system).types │ ├── labeledStatementWithLabel.errors.txt │ ├── labeledStatementWithLabel.js │ ├── labeledStatementWithLabel.symbols │ ├── labeledStatementWithLabel.types │ ├── labeledStatementWithLabel_es2015.errors.txt │ ├── labeledStatementWithLabel_es2015.js │ ├── labeledStatementWithLabel_es2015.symbols │ ├── labeledStatementWithLabel_es2015.types │ ├── labeledStatementWithLabel_strict.errors.txt │ ├── labeledStatementWithLabel_strict.js │ ├── labeledStatementWithLabel_strict.symbols │ ├── labeledStatementWithLabel_strict.types │ ├── lambdaASIEmit.js │ ├── lambdaASIEmit.symbols │ ├── lambdaASIEmit.types │ ├── lambdaArgCrash.errors.txt │ ├── lambdaArgCrash.js │ ├── lambdaArgCrash.symbols │ ├── lambdaArgCrash.types │ ├── lambdaExpression.js │ ├── lambdaExpression.symbols │ ├── lambdaExpression.types │ ├── lambdaParamTypes.errors.txt │ ├── lambdaParamTypes.js │ ├── lambdaParamTypes.symbols │ ├── lambdaParamTypes.types │ ├── lambdaParameterWithTupleArgsHasCorrectAssignability.js │ ├── lambdaParameterWithTupleArgsHasCorrectAssignability.symbols │ ├── lambdaParameterWithTupleArgsHasCorrectAssignability.types │ ├── lambdaPropSelf.errors.txt │ ├── lambdaPropSelf.js │ ├── lambdaPropSelf.symbols │ ├── lambdaPropSelf.types │ ├── largeControlFlowGraph.errors.txt │ ├── largeControlFlowGraph.js │ ├── largeControlFlowGraph.symbols │ ├── largeControlFlowGraph.types │ ├── largeTupleTypes.symbols │ ├── largeTupleTypes.types │ ├── lastPropertyInLiteralWins.errors.txt │ ├── lastPropertyInLiteralWins.js │ ├── lastPropertyInLiteralWins.symbols │ ├── lastPropertyInLiteralWins.types │ ├── lateBoundAssignmentCandidateJS1.js │ ├── lateBoundAssignmentCandidateJS1.symbols │ ├── lateBoundAssignmentCandidateJS1.types │ ├── lateBoundAssignmentCandidateJS2.js │ ├── lateBoundAssignmentCandidateJS2.symbols │ ├── lateBoundAssignmentCandidateJS2.types │ ├── lateBoundAssignmentCandidateJS3.errors.txt │ ├── lateBoundAssignmentCandidateJS3.js │ ├── lateBoundAssignmentCandidateJS3.symbols │ ├── lateBoundAssignmentCandidateJS3.types │ ├── lateBoundAssignmentDeclarationSupport1.errors.txt │ ├── lateBoundAssignmentDeclarationSupport1.symbols │ ├── lateBoundAssignmentDeclarationSupport1.types │ ├── lateBoundAssignmentDeclarationSupport2.errors.txt │ ├── lateBoundAssignmentDeclarationSupport2.symbols │ ├── lateBoundAssignmentDeclarationSupport2.types │ ├── lateBoundAssignmentDeclarationSupport3.errors.txt │ ├── lateBoundAssignmentDeclarationSupport3.symbols │ ├── lateBoundAssignmentDeclarationSupport3.types │ ├── lateBoundAssignmentDeclarationSupport4.errors.txt │ ├── lateBoundAssignmentDeclarationSupport4.symbols │ ├── lateBoundAssignmentDeclarationSupport4.types │ ├── lateBoundAssignmentDeclarationSupport5.errors.txt │ ├── lateBoundAssignmentDeclarationSupport5.symbols │ ├── lateBoundAssignmentDeclarationSupport5.types │ ├── lateBoundAssignmentDeclarationSupport6.errors.txt │ ├── lateBoundAssignmentDeclarationSupport6.symbols │ ├── lateBoundAssignmentDeclarationSupport6.types │ ├── lateBoundAssignmentDeclarationSupport7.symbols │ ├── lateBoundAssignmentDeclarationSupport7.types │ ├── lateBoundClassMemberAssignmentJS.js │ ├── lateBoundClassMemberAssignmentJS.symbols │ ├── lateBoundClassMemberAssignmentJS.types │ ├── lateBoundClassMemberAssignmentJS2.js │ ├── lateBoundClassMemberAssignmentJS2.symbols │ ├── lateBoundClassMemberAssignmentJS2.types │ ├── lateBoundClassMemberAssignmentJS3.js │ ├── lateBoundClassMemberAssignmentJS3.symbols │ ├── lateBoundClassMemberAssignmentJS3.types │ ├── lateBoundConstraintTypeChecksCorrectly.errors.txt │ ├── lateBoundConstraintTypeChecksCorrectly.js │ ├── lateBoundConstraintTypeChecksCorrectly.symbols │ ├── lateBoundConstraintTypeChecksCorrectly.types │ ├── lateBoundDestructuringImplicitAnyError.errors.txt │ ├── lateBoundDestructuringImplicitAnyError.js │ ├── lateBoundDestructuringImplicitAnyError.symbols │ ├── lateBoundDestructuringImplicitAnyError.types │ ├── lateBoundFunctionMemberAssignmentDeclarations.js │ ├── lateBoundFunctionMemberAssignmentDeclarations.symbols │ ├── lateBoundFunctionMemberAssignmentDeclarations.types │ ├── lateBoundMethodNameAssigmentJS.js │ ├── lateBoundMethodNameAssigmentJS.symbols │ ├── lateBoundMethodNameAssigmentJS.types │ ├── leaveOptionalParameterAsWritten.js │ ├── leaveOptionalParameterAsWritten.symbols │ ├── leaveOptionalParameterAsWritten.types │ ├── legacyDecorators-contextualTypes.js │ ├── legacyDecorators-contextualTypes.symbols │ ├── legacyDecorators-contextualTypes.types │ ├── legacyNodeModulesExportsSpecifierGenerationConditions.errors.txt │ ├── legacyNodeModulesExportsSpecifierGenerationConditions.js │ ├── legacyNodeModulesExportsSpecifierGenerationConditions.symbols │ ├── legacyNodeModulesExportsSpecifierGenerationConditions.types │ ├── letAndVarRedeclaration.errors.txt │ ├── letAndVarRedeclaration.js │ ├── letAndVarRedeclaration.symbols │ ├── letAndVarRedeclaration.types │ ├── letAsIdentifier.errors.txt │ ├── letAsIdentifier.js │ ├── letAsIdentifier.symbols │ ├── letAsIdentifier.types │ ├── letAsIdentifier2.errors.txt │ ├── letAsIdentifier2.js │ ├── letAsIdentifier2.symbols │ ├── letAsIdentifier2.types │ ├── letAsIdentifierInStrictMode.errors.txt │ ├── letAsIdentifierInStrictMode.js │ ├── letAsIdentifierInStrictMode.symbols │ ├── letAsIdentifierInStrictMode.types │ ├── letConstInCaseClauses(target=es2015).errors.txt │ ├── letConstInCaseClauses(target=es2015).js │ ├── letConstInCaseClauses(target=es2015).symbols │ ├── letConstInCaseClauses(target=es2015).types │ ├── letConstInCaseClauses(target=es5).errors.txt │ ├── letConstInCaseClauses(target=es5).js │ ├── letConstInCaseClauses(target=es5).symbols │ ├── letConstInCaseClauses(target=es5).types │ ├── letConstMatchingParameterNames(target=es2015).js │ ├── letConstMatchingParameterNames(target=es2015).symbols │ ├── letConstMatchingParameterNames(target=es2015).types │ ├── letConstMatchingParameterNames(target=es5).errors.txt │ ├── letConstMatchingParameterNames(target=es5).js │ ├── letConstMatchingParameterNames(target=es5).symbols │ ├── letConstMatchingParameterNames(target=es5).types │ ├── letDeclarations-access.js │ ├── letDeclarations-access.symbols │ ├── letDeclarations-access.types │ ├── letDeclarations-es5(target=es2015).js │ ├── letDeclarations-es5(target=es2015).symbols │ ├── letDeclarations-es5(target=es2015).types │ ├── letDeclarations-es5(target=es5).errors.txt │ ├── letDeclarations-es5(target=es5).js │ ├── letDeclarations-es5(target=es5).symbols │ ├── letDeclarations-es5(target=es5).types │ ├── letDeclarations-es5-1(target=es2015).js │ ├── letDeclarations-es5-1(target=es2015).symbols │ ├── letDeclarations-es5-1(target=es2015).types │ ├── letDeclarations-es5-1(target=es5).errors.txt │ ├── letDeclarations-es5-1(target=es5).js │ ├── letDeclarations-es5-1(target=es5).symbols │ ├── letDeclarations-es5-1(target=es5).types │ ├── letDeclarations-invalidContexts.errors.txt │ ├── letDeclarations-invalidContexts.js │ ├── letDeclarations-invalidContexts.symbols │ ├── letDeclarations-invalidContexts.types │ ├── letDeclarations-scopes-duplicates.errors.txt │ ├── letDeclarations-scopes-duplicates.js │ ├── letDeclarations-scopes-duplicates.symbols │ ├── letDeclarations-scopes-duplicates.types │ ├── letDeclarations-scopes-duplicates2.errors.txt │ ├── letDeclarations-scopes-duplicates2.js │ ├── letDeclarations-scopes-duplicates2.symbols │ ├── letDeclarations-scopes-duplicates2.types │ ├── letDeclarations-scopes-duplicates3.errors.txt │ ├── letDeclarations-scopes-duplicates3.js │ ├── letDeclarations-scopes-duplicates3.symbols │ ├── letDeclarations-scopes-duplicates3.types │ ├── letDeclarations-scopes-duplicates4.errors.txt │ ├── letDeclarations-scopes-duplicates4.js │ ├── letDeclarations-scopes-duplicates4.symbols │ ├── letDeclarations-scopes-duplicates4.types │ ├── letDeclarations-scopes-duplicates5.errors.txt │ ├── letDeclarations-scopes-duplicates5.js │ ├── letDeclarations-scopes-duplicates5.symbols │ ├── letDeclarations-scopes-duplicates5.types │ ├── letDeclarations-scopes-duplicates6.errors.txt │ ├── letDeclarations-scopes-duplicates6.js │ ├── letDeclarations-scopes-duplicates6.symbols │ ├── letDeclarations-scopes-duplicates6.types │ ├── letDeclarations-scopes-duplicates7.errors.txt │ ├── letDeclarations-scopes-duplicates7.js │ ├── letDeclarations-scopes-duplicates7.symbols │ ├── letDeclarations-scopes-duplicates7.types │ ├── letDeclarations-scopes.errors.txt │ ├── letDeclarations-scopes.js │ ├── letDeclarations-scopes.symbols │ ├── letDeclarations-scopes.types │ ├── letDeclarations-scopes2.errors.txt │ ├── letDeclarations-scopes2.js │ ├── letDeclarations-scopes2.symbols │ ├── letDeclarations-scopes2.types │ ├── letDeclarations-useBeforeDefinition.errors.txt │ ├── letDeclarations-useBeforeDefinition.js │ ├── letDeclarations-useBeforeDefinition.symbols │ ├── letDeclarations-useBeforeDefinition.types │ ├── letDeclarations-useBeforeDefinition2.errors.txt │ ├── letDeclarations-useBeforeDefinition2.js │ ├── letDeclarations-useBeforeDefinition2.symbols │ ├── letDeclarations-useBeforeDefinition2.types │ ├── letDeclarations-validContexts.errors.txt │ ├── letDeclarations-validContexts.js │ ├── letDeclarations-validContexts.symbols │ ├── letDeclarations-validContexts.types │ ├── letDeclarations.js │ ├── letDeclarations.symbols │ ├── letDeclarations.types │ ├── letDeclarations2.js │ ├── letDeclarations2.symbols │ ├── letDeclarations2.types │ ├── letIdentifierInElementAccess01.errors.txt │ ├── letIdentifierInElementAccess01.js │ ├── letIdentifierInElementAccess01.symbols │ ├── letIdentifierInElementAccess01.types │ ├── letInConstDeclarations_ES5(target=es2015).errors.txt │ ├── letInConstDeclarations_ES5(target=es2015).js │ ├── letInConstDeclarations_ES5(target=es2015).symbols │ ├── letInConstDeclarations_ES5(target=es2015).types │ ├── letInConstDeclarations_ES5(target=es5).errors.txt │ ├── letInConstDeclarations_ES5(target=es5).js │ ├── letInConstDeclarations_ES5(target=es5).symbols │ ├── letInConstDeclarations_ES5(target=es5).types │ ├── letInConstDeclarations_ES6.errors.txt │ ├── letInConstDeclarations_ES6.js │ ├── letInConstDeclarations_ES6.symbols │ ├── letInConstDeclarations_ES6.types │ ├── letInLetConstDeclOfForOfAndForIn_ES5(target=es2015).errors.txt │ ├── letInLetConstDeclOfForOfAndForIn_ES5(target=es2015).js │ ├── letInLetConstDeclOfForOfAndForIn_ES5(target=es2015).symbols │ ├── letInLetConstDeclOfForOfAndForIn_ES5(target=es2015).types │ ├── letInLetConstDeclOfForOfAndForIn_ES5(target=es5).errors.txt │ ├── letInLetConstDeclOfForOfAndForIn_ES5(target=es5).js │ ├── letInLetConstDeclOfForOfAndForIn_ES5(target=es5).symbols │ ├── letInLetConstDeclOfForOfAndForIn_ES5(target=es5).types │ ├── letInLetConstDeclOfForOfAndForIn_ES6.errors.txt │ ├── letInLetConstDeclOfForOfAndForIn_ES6.js │ ├── letInLetConstDeclOfForOfAndForIn_ES6.symbols │ ├── letInLetConstDeclOfForOfAndForIn_ES6.types │ ├── letInLetDeclarations_ES5(target=es2015).errors.txt │ ├── letInLetDeclarations_ES5(target=es2015).js │ ├── letInLetDeclarations_ES5(target=es2015).symbols │ ├── letInLetDeclarations_ES5(target=es2015).types │ ├── letInLetDeclarations_ES5(target=es5).errors.txt │ ├── letInLetDeclarations_ES5(target=es5).js │ ├── letInLetDeclarations_ES5(target=es5).symbols │ ├── letInLetDeclarations_ES5(target=es5).types │ ├── letInLetDeclarations_ES6.errors.txt │ ├── letInLetDeclarations_ES6.js │ ├── letInLetDeclarations_ES6.symbols │ ├── letInLetDeclarations_ES6.types │ ├── letInNonStrictMode.js │ ├── letInNonStrictMode.symbols │ ├── letInNonStrictMode.types │ ├── letInVarDeclOfForIn_ES5(target=es2015).errors.txt │ ├── letInVarDeclOfForIn_ES5(target=es2015).js │ ├── letInVarDeclOfForIn_ES5(target=es2015).symbols │ ├── letInVarDeclOfForIn_ES5(target=es2015).types │ ├── letInVarDeclOfForIn_ES5(target=es5).errors.txt │ ├── letInVarDeclOfForIn_ES5(target=es5).js │ ├── letInVarDeclOfForIn_ES5(target=es5).symbols │ ├── letInVarDeclOfForIn_ES5(target=es5).types │ ├── letInVarDeclOfForIn_ES6.errors.txt │ ├── letInVarDeclOfForIn_ES6.js │ ├── letInVarDeclOfForIn_ES6.symbols │ ├── letInVarDeclOfForIn_ES6.types │ ├── letInVarDeclOfForOf_ES5(target=es2015).errors.txt │ ├── letInVarDeclOfForOf_ES5(target=es2015).js │ ├── letInVarDeclOfForOf_ES5(target=es2015).symbols │ ├── letInVarDeclOfForOf_ES5(target=es2015).types │ ├── letInVarDeclOfForOf_ES5(target=es5).errors.txt │ ├── letInVarDeclOfForOf_ES5(target=es5).js │ ├── letInVarDeclOfForOf_ES5(target=es5).symbols │ ├── letInVarDeclOfForOf_ES5(target=es5).types │ ├── letInVarDeclOfForOf_ES6.errors.txt │ ├── letInVarDeclOfForOf_ES6.js │ ├── letInVarDeclOfForOf_ES6.symbols │ ├── letInVarDeclOfForOf_ES6.types │ ├── letKeepNamesOfTopLevelItems.js │ ├── letKeepNamesOfTopLevelItems.symbols │ ├── letKeepNamesOfTopLevelItems.types │ ├── letShadowedByNameInNestedScope.js │ ├── letShadowedByNameInNestedScope.symbols │ ├── letShadowedByNameInNestedScope.types │ ├── libCompileChecks.js │ ├── libCompileChecks.symbols │ ├── libCompileChecks.types │ ├── libMembers.errors.txt │ ├── libMembers.js │ ├── libMembers.symbols │ ├── libMembers.types │ ├── libReferenceDeclarationEmit.js │ ├── libReferenceDeclarationEmit.symbols │ ├── libReferenceDeclarationEmit.types │ ├── libReferenceDeclarationEmitBundle.errors.txt │ ├── libReferenceDeclarationEmitBundle.js │ ├── libReferenceDeclarationEmitBundle.symbols │ ├── libReferenceDeclarationEmitBundle.types │ ├── libReferenceNoLib.errors.txt │ ├── libReferenceNoLib.js │ ├── libReferenceNoLib.symbols │ ├── libReferenceNoLib.types │ ├── libReferenceNoLibBundle.errors.txt │ ├── libReferenceNoLibBundle.js │ ├── libReferenceNoLibBundle.symbols │ ├── libReferenceNoLibBundle.types │ ├── libReplacement(libreplacement=false).trace.json │ ├── libReplacement(libreplacement=true).trace.json │ ├── libTypeScriptOverrideSimple.errors.txt │ ├── libTypeScriptOverrideSimple.js │ ├── libTypeScriptOverrideSimple.symbols │ ├── libTypeScriptOverrideSimple.trace.json │ ├── libTypeScriptOverrideSimple.types │ ├── libTypeScriptOverrideSimpleConfig.errors.txt │ ├── libTypeScriptOverrideSimpleConfig.js │ ├── libTypeScriptOverrideSimpleConfig.symbols │ ├── libTypeScriptOverrideSimpleConfig.trace.json │ ├── libTypeScriptOverrideSimpleConfig.types │ ├── libTypeScriptSubfileResolving.errors.txt │ ├── libTypeScriptSubfileResolving.js │ ├── libTypeScriptSubfileResolving.symbols │ ├── libTypeScriptSubfileResolving.trace.json │ ├── libTypeScriptSubfileResolving.types │ ├── libTypeScriptSubfileResolvingConfig.errors.txt │ ├── libTypeScriptSubfileResolvingConfig.js │ ├── libTypeScriptSubfileResolvingConfig.symbols │ ├── libTypeScriptSubfileResolvingConfig.trace.json │ ├── libTypeScriptSubfileResolvingConfig.types │ ├── libdtsFix.js │ ├── libdtsFix.symbols │ ├── libdtsFix.types │ ├── library-reference-1.js │ ├── library-reference-1.symbols │ ├── library-reference-1.trace.json │ ├── library-reference-1.types │ ├── library-reference-10.js │ ├── library-reference-10.symbols │ ├── library-reference-10.trace.json │ ├── library-reference-10.types │ ├── library-reference-11.js │ ├── library-reference-11.symbols │ ├── library-reference-11.trace.json │ ├── library-reference-11.types │ ├── library-reference-12.js │ ├── library-reference-12.symbols │ ├── library-reference-12.trace.json │ ├── library-reference-12.types │ ├── library-reference-13.js │ ├── library-reference-13.symbols │ ├── library-reference-13.trace.json │ ├── library-reference-13.types │ ├── library-reference-14.js │ ├── library-reference-14.symbols │ ├── library-reference-14.trace.json │ ├── library-reference-14.types │ ├── library-reference-15.errors.txt │ ├── library-reference-15.js │ ├── library-reference-15.symbols │ ├── library-reference-15.trace.json │ ├── library-reference-15.types │ ├── library-reference-2.js │ ├── library-reference-2.symbols │ ├── library-reference-2.trace.json │ ├── library-reference-2.types │ ├── library-reference-3.js │ ├── library-reference-3.symbols │ ├── library-reference-3.trace.json │ ├── library-reference-3.types │ ├── library-reference-4.js │ ├── library-reference-4.symbols │ ├── library-reference-4.trace.json │ ├── library-reference-4.types │ ├── library-reference-5.errors.txt │ ├── library-reference-5.js │ ├── library-reference-5.symbols │ ├── library-reference-5.trace.json │ ├── library-reference-5.types │ ├── library-reference-6.js │ ├── library-reference-6.symbols │ ├── library-reference-6.trace.json │ ├── library-reference-6.types │ ├── library-reference-7.js │ ├── library-reference-7.symbols │ ├── library-reference-7.trace.json │ ├── library-reference-7.types │ ├── library-reference-8.js │ ├── library-reference-8.symbols │ ├── library-reference-8.trace.json │ ├── library-reference-8.types │ ├── library-reference-scoped-packages.js │ ├── library-reference-scoped-packages.symbols │ ├── library-reference-scoped-packages.trace.json │ ├── library-reference-scoped-packages.types │ ├── library_ArraySlice.js │ ├── library_ArraySlice.symbols │ ├── library_ArraySlice.types │ ├── library_DatePrototypeProperties.js │ ├── library_DatePrototypeProperties.symbols │ ├── library_DatePrototypeProperties.types │ ├── library_ObjectPrototypeProperties.js │ ├── library_ObjectPrototypeProperties.symbols │ ├── library_ObjectPrototypeProperties.types │ ├── library_RegExpExecArraySlice.errors.txt │ ├── library_RegExpExecArraySlice.js │ ├── library_RegExpExecArraySlice.symbols │ ├── library_RegExpExecArraySlice.types │ ├── library_StringSlice.js │ ├── library_StringSlice.symbols │ ├── library_StringSlice.types │ ├── lift.errors.txt │ ├── lift.js │ ├── lift.symbols │ ├── lift.types │ ├── limitDeepInstantiations.errors.txt │ ├── limitDeepInstantiations.js │ ├── limitDeepInstantiations.symbols │ ├── limitDeepInstantiations.types │ ├── linkTagEmit1.js │ ├── linkTagEmit1.symbols │ ├── linkTagEmit1.types │ ├── linkedEditingJsxTag10.linkedEditing.txt │ ├── linkedEditingJsxTag11.linkedEditing.txt │ ├── linkedEditingJsxTag12.linkedEditing.txt │ ├── listFailure.errors.txt │ ├── listFailure.js │ ├── listFailure.symbols │ ├── listFailure.types │ ├── literalFreshnessPropagationOnNarrowing.errors.txt │ ├── literalFreshnessPropagationOnNarrowing.js │ ├── literalFreshnessPropagationOnNarrowing.symbols │ ├── literalFreshnessPropagationOnNarrowing.types │ ├── literalIntersectionYieldsLiteral.js │ ├── literalIntersectionYieldsLiteral.symbols │ ├── literalIntersectionYieldsLiteral.types │ ├── literalTypeNameAssertionNotTriggered.errors.txt │ ├── literalTypeNameAssertionNotTriggered.js │ ├── literalTypeNameAssertionNotTriggered.symbols │ ├── literalTypeNameAssertionNotTriggered.types │ ├── literalTypeWidening.js │ ├── literalTypeWidening.symbols │ ├── literalTypeWidening.types │ ├── literalTypes1.js │ ├── literalTypes1.symbols │ ├── literalTypes1.types │ ├── literalTypes2.js │ ├── literalTypes2.symbols │ ├── literalTypes2.types │ ├── literalTypes3.js │ ├── literalTypes3.symbols │ ├── literalTypes3.types │ ├── literalTypesAndDestructuring.js │ ├── literalTypesAndDestructuring.symbols │ ├── literalTypesAndDestructuring.types │ ├── literalTypesAndTypeAssertions.js │ ├── literalTypesAndTypeAssertions.symbols │ ├── literalTypesAndTypeAssertions.types │ ├── literalTypesWidenInParameterPosition.errors.txt │ ├── literalTypesWidenInParameterPosition.js │ ├── literalTypesWidenInParameterPosition.symbols │ ├── literalTypesWidenInParameterPosition.types │ ├── literalWideningWithCompoundLikeAssignments.symbols │ ├── literalWideningWithCompoundLikeAssignments.types │ ├── literals(target=es2015).errors.txt │ ├── literals(target=es2015).js │ ├── literals(target=es2015).symbols │ ├── literals(target=es2015).types │ ├── literals(target=es5).errors.txt │ ├── literals(target=es5).js │ ├── literals(target=es5).symbols │ ├── literals(target=es5).types │ ├── literals-negative.errors.txt │ ├── literals-negative.js │ ├── literals-negative.symbols │ ├── literals-negative.types │ ├── literals1.js │ ├── literals1.symbols │ ├── literals1.types │ ├── literalsInComputedProperties1.errors.txt │ ├── literalsInComputedProperties1.js │ ├── literalsInComputedProperties1.symbols │ ├── literalsInComputedProperties1.types │ ├── localAliasExportAssignment.errors.txt │ ├── localAliasExportAssignment.js │ ├── localAliasExportAssignment.symbols │ ├── localAliasExportAssignment.types │ ├── localClassesInLoop.js │ ├── localClassesInLoop.symbols │ ├── localClassesInLoop.types │ ├── localClassesInLoop_ES6.js │ ├── localClassesInLoop_ES6.symbols │ ├── localClassesInLoop_ES6.types │ ├── localGetReferences.baseline.jsonc │ ├── localImportNameVsGlobalName.js │ ├── localImportNameVsGlobalName.symbols │ ├── localImportNameVsGlobalName.types │ ├── localRequireFunction.js │ ├── localRequireFunction.symbols │ ├── localRequireFunction.types │ ├── localTypeParameterInferencePriority.js │ ├── localTypeParameterInferencePriority.symbols │ ├── localTypeParameterInferencePriority.types │ ├── localTypes1(target=es2015).errors.txt │ ├── localTypes1(target=es2015).js │ ├── localTypes1(target=es2015).symbols │ ├── localTypes1(target=es2015).types │ ├── localTypes1(target=es5).errors.txt │ ├── localTypes1(target=es5).js │ ├── localTypes1(target=es5).symbols │ ├── localTypes1(target=es5).types │ ├── localTypes2.js │ ├── localTypes2.symbols │ ├── localTypes2.types │ ├── localTypes3.js │ ├── localTypes3.symbols │ ├── localTypes3.types │ ├── localTypes4.errors.txt │ ├── localTypes4.js │ ├── localTypes4.symbols │ ├── localTypes4.types │ ├── localTypes5.js │ ├── localTypes5.symbols │ ├── localTypes5.types │ ├── localVariablesReturnedFromCatchBlocks.js │ ├── localVariablesReturnedFromCatchBlocks.symbols │ ├── localVariablesReturnedFromCatchBlocks.types │ ├── localesObjectArgument.js │ ├── localesObjectArgument.symbols │ ├── localesObjectArgument.types │ ├── logicalAndOperatorStrictMode.errors.txt │ ├── logicalAndOperatorStrictMode.js │ ├── logicalAndOperatorStrictMode.symbols │ ├── logicalAndOperatorStrictMode.types │ ├── logicalAndOperatorWithEveryType.errors.txt │ ├── logicalAndOperatorWithEveryType.js │ ├── logicalAndOperatorWithEveryType.symbols │ ├── logicalAndOperatorWithEveryType.types │ ├── logicalAndOperatorWithTypeParameters.errors.txt │ ├── logicalAndOperatorWithTypeParameters.js │ ├── logicalAndOperatorWithTypeParameters.symbols │ ├── logicalAndOperatorWithTypeParameters.types │ ├── logicalAssignment1(target=es2015).js │ ├── logicalAssignment1(target=es2015).symbols │ ├── logicalAssignment1(target=es2015).types │ ├── logicalAssignment1(target=es2020).js │ ├── logicalAssignment1(target=es2020).symbols │ ├── logicalAssignment1(target=es2020).types │ ├── logicalAssignment1(target=es2021).js │ ├── logicalAssignment1(target=es2021).symbols │ ├── logicalAssignment1(target=es2021).types │ ├── logicalAssignment1(target=esnext).js │ ├── logicalAssignment1(target=esnext).symbols │ ├── logicalAssignment1(target=esnext).types │ ├── logicalAssignment10(target=es2015).js │ ├── logicalAssignment10(target=es2015).symbols │ ├── logicalAssignment10(target=es2015).types │ ├── logicalAssignment10(target=es2020).js │ ├── logicalAssignment10(target=es2020).symbols │ ├── logicalAssignment10(target=es2020).types │ ├── logicalAssignment10(target=es2021).js │ ├── logicalAssignment10(target=es2021).symbols │ ├── logicalAssignment10(target=es2021).types │ ├── logicalAssignment10(target=esnext).js │ ├── logicalAssignment10(target=esnext).symbols │ ├── logicalAssignment10(target=esnext).types │ ├── logicalAssignment11(target=es2015).js │ ├── logicalAssignment11(target=es2015).symbols │ ├── logicalAssignment11(target=es2015).types │ ├── logicalAssignment11(target=es2020).js │ ├── logicalAssignment11(target=es2020).symbols │ ├── logicalAssignment11(target=es2020).types │ ├── logicalAssignment11(target=esnext).js │ ├── logicalAssignment11(target=esnext).symbols │ ├── logicalAssignment11(target=esnext).types │ ├── logicalAssignment2(target=es2015).js │ ├── logicalAssignment2(target=es2015).symbols │ ├── logicalAssignment2(target=es2015).types │ ├── logicalAssignment2(target=es2020).js │ ├── logicalAssignment2(target=es2020).symbols │ ├── logicalAssignment2(target=es2020).types │ ├── logicalAssignment2(target=es2021).js │ ├── logicalAssignment2(target=es2021).symbols │ ├── logicalAssignment2(target=es2021).types │ ├── logicalAssignment2(target=esnext).js │ ├── logicalAssignment2(target=esnext).symbols │ ├── logicalAssignment2(target=esnext).types │ ├── logicalAssignment3(target=es2015).js │ ├── logicalAssignment3(target=es2015).symbols │ ├── logicalAssignment3(target=es2015).types │ ├── logicalAssignment3(target=es2020).js │ ├── logicalAssignment3(target=es2020).symbols │ ├── logicalAssignment3(target=es2020).types │ ├── logicalAssignment3(target=es2021).js │ ├── logicalAssignment3(target=es2021).symbols │ ├── logicalAssignment3(target=es2021).types │ ├── logicalAssignment3(target=esnext).js │ ├── logicalAssignment3(target=esnext).symbols │ ├── logicalAssignment3(target=esnext).types │ ├── logicalAssignment4(target=es2015).errors.txt │ ├── logicalAssignment4(target=es2015).js │ ├── logicalAssignment4(target=es2015).symbols │ ├── logicalAssignment4(target=es2015).types │ ├── logicalAssignment4(target=es2020).errors.txt │ ├── logicalAssignment4(target=es2020).js │ ├── logicalAssignment4(target=es2020).symbols │ ├── logicalAssignment4(target=es2020).types │ ├── logicalAssignment4(target=es2021).errors.txt │ ├── logicalAssignment4(target=es2021).js │ ├── logicalAssignment4(target=es2021).symbols │ ├── logicalAssignment4(target=es2021).types │ ├── logicalAssignment4(target=esnext).errors.txt │ ├── logicalAssignment4(target=esnext).js │ ├── logicalAssignment4(target=esnext).symbols │ ├── logicalAssignment4(target=esnext).types │ ├── logicalAssignment5(target=es2015).errors.txt │ ├── logicalAssignment5(target=es2015).js │ ├── logicalAssignment5(target=es2015).symbols │ ├── logicalAssignment5(target=es2015).types │ ├── logicalAssignment5(target=es2020).errors.txt │ ├── logicalAssignment5(target=es2020).js │ ├── logicalAssignment5(target=es2020).symbols │ ├── logicalAssignment5(target=es2020).types │ ├── logicalAssignment5(target=es2021).errors.txt │ ├── logicalAssignment5(target=es2021).js │ ├── logicalAssignment5(target=es2021).symbols │ ├── logicalAssignment5(target=es2021).types │ ├── logicalAssignment5(target=esnext).errors.txt │ ├── logicalAssignment5(target=esnext).js │ ├── logicalAssignment5(target=esnext).symbols │ ├── logicalAssignment5(target=esnext).types │ ├── logicalAssignment6(target=es2015).errors.txt │ ├── logicalAssignment6(target=es2015).js │ ├── logicalAssignment6(target=es2015).symbols │ ├── logicalAssignment6(target=es2015).types │ ├── logicalAssignment6(target=es2020).errors.txt │ ├── logicalAssignment6(target=es2020).js │ ├── logicalAssignment6(target=es2020).symbols │ ├── logicalAssignment6(target=es2020).types │ ├── logicalAssignment6(target=es2021).errors.txt │ ├── logicalAssignment6(target=es2021).js │ ├── logicalAssignment6(target=es2021).symbols │ ├── logicalAssignment6(target=es2021).types │ ├── logicalAssignment6(target=esnext).errors.txt │ ├── logicalAssignment6(target=esnext).js │ ├── logicalAssignment6(target=esnext).symbols │ ├── logicalAssignment6(target=esnext).types │ ├── logicalAssignment7(target=es2015).errors.txt │ ├── logicalAssignment7(target=es2015).js │ ├── logicalAssignment7(target=es2015).symbols │ ├── logicalAssignment7(target=es2015).types │ ├── logicalAssignment7(target=es2020).errors.txt │ ├── logicalAssignment7(target=es2020).js │ ├── logicalAssignment7(target=es2020).symbols │ ├── logicalAssignment7(target=es2020).types │ ├── logicalAssignment7(target=es2021).errors.txt │ ├── logicalAssignment7(target=es2021).js │ ├── logicalAssignment7(target=es2021).symbols │ ├── logicalAssignment7(target=es2021).types │ ├── logicalAssignment7(target=esnext).errors.txt │ ├── logicalAssignment7(target=esnext).js │ ├── logicalAssignment7(target=esnext).symbols │ ├── logicalAssignment7(target=esnext).types │ ├── logicalAssignment8(target=es2015).errors.txt │ ├── logicalAssignment8(target=es2015).js │ ├── logicalAssignment8(target=es2015).symbols │ ├── logicalAssignment8(target=es2015).types │ ├── logicalAssignment8(target=es2020).errors.txt │ ├── logicalAssignment8(target=es2020).js │ ├── logicalAssignment8(target=es2020).symbols │ ├── logicalAssignment8(target=es2020).types │ ├── logicalAssignment8(target=es2021).errors.txt │ ├── logicalAssignment8(target=es2021).js │ ├── logicalAssignment8(target=es2021).symbols │ ├── logicalAssignment8(target=es2021).types │ ├── logicalAssignment8(target=esnext).errors.txt │ ├── logicalAssignment8(target=esnext).js │ ├── logicalAssignment8(target=esnext).symbols │ ├── logicalAssignment8(target=esnext).types │ ├── logicalAssignment9.js │ ├── logicalAssignment9.symbols │ ├── logicalAssignment9.types │ ├── logicalNotExpression1.errors.txt │ ├── logicalNotExpression1.js │ ├── logicalNotExpression1.symbols │ ├── logicalNotExpression1.types │ ├── logicalNotOperatorInvalidOperations.errors.txt │ ├── logicalNotOperatorInvalidOperations.js │ ├── logicalNotOperatorInvalidOperations.symbols │ ├── logicalNotOperatorInvalidOperations.types │ ├── logicalNotOperatorWithAnyOtherType.errors.txt │ ├── logicalNotOperatorWithAnyOtherType.js │ ├── logicalNotOperatorWithAnyOtherType.symbols │ ├── logicalNotOperatorWithAnyOtherType.types │ ├── logicalNotOperatorWithBooleanType.errors.txt │ ├── logicalNotOperatorWithBooleanType.js │ ├── logicalNotOperatorWithBooleanType.symbols │ ├── logicalNotOperatorWithBooleanType.types │ ├── logicalNotOperatorWithEnumType.errors.txt │ ├── logicalNotOperatorWithEnumType.js │ ├── logicalNotOperatorWithEnumType.symbols │ ├── logicalNotOperatorWithEnumType.types │ ├── logicalNotOperatorWithNumberType.errors.txt │ ├── logicalNotOperatorWithNumberType.js │ ├── logicalNotOperatorWithNumberType.symbols │ ├── logicalNotOperatorWithNumberType.types │ ├── logicalNotOperatorWithStringType.errors.txt │ ├── logicalNotOperatorWithStringType.js │ ├── logicalNotOperatorWithStringType.symbols │ ├── logicalNotOperatorWithStringType.types │ ├── logicalOrExpressionIsContextuallyTyped.errors.txt │ ├── logicalOrExpressionIsContextuallyTyped.js │ ├── logicalOrExpressionIsContextuallyTyped.symbols │ ├── logicalOrExpressionIsContextuallyTyped.types │ ├── logicalOrExpressionIsNotContextuallyTyped.errors.txt │ ├── logicalOrExpressionIsNotContextuallyTyped.js │ ├── logicalOrExpressionIsNotContextuallyTyped.symbols │ ├── logicalOrExpressionIsNotContextuallyTyped.types │ ├── logicalOrOperatorWithEveryType.errors.txt │ ├── logicalOrOperatorWithEveryType.js │ ├── logicalOrOperatorWithEveryType.symbols │ ├── logicalOrOperatorWithEveryType.types │ ├── logicalOrOperatorWithTypeParameters.errors.txt │ ├── logicalOrOperatorWithTypeParameters.js │ ├── logicalOrOperatorWithTypeParameters.symbols │ ├── logicalOrOperatorWithTypeParameters.types │ ├── longObjectInstantiationChain1.errors.txt │ ├── longObjectInstantiationChain1.symbols │ ├── longObjectInstantiationChain1.types │ ├── longObjectInstantiationChain2.errors.txt │ ├── longObjectInstantiationChain2.symbols │ ├── longObjectInstantiationChain2.types │ ├── longObjectInstantiationChain3.errors.txt │ ├── longObjectInstantiationChain3.symbols │ ├── longObjectInstantiationChain3.types │ ├── looseThisTypeInFunctions.errors.txt │ ├── looseThisTypeInFunctions.js │ ├── looseThisTypeInFunctions.symbols │ ├── looseThisTypeInFunctions.types │ ├── m7Bugs.errors.txt │ ├── m7Bugs.js │ ├── m7Bugs.symbols │ ├── m7Bugs.types │ ├── malformedTags.js │ ├── malformedTags.symbols │ ├── malformedTags.types │ ├── manyCompilerErrorsInTheTwoFiles.errors.txt │ ├── manyCompilerErrorsInTheTwoFiles.js │ ├── manyCompilerErrorsInTheTwoFiles.symbols │ ├── manyCompilerErrorsInTheTwoFiles.types │ ├── manyConstExports(target=es2015).js │ ├── manyConstExports(target=es2015).symbols │ ├── manyConstExports(target=es2015).types │ ├── manyConstExports(target=es5).errors.txt │ ├── manyConstExports(target=es5).js │ ├── manyConstExports(target=es5).symbols │ ├── manyConstExports(target=es5).types │ ├── mapCodeClassInvalidClassMember.mapCode.ts │ ├── mapCodeFocusLocationReplacement.mapCode.ts │ ├── mapCodeMethodInsertion.mapCode.ts │ ├── mapCodeMethodReplacement.mapCode.ts │ ├── mapCodeMixedClassDeclaration.mapCode.ts │ ├── mapCodeMultipleChangesAndRanges.mapCode.ts │ ├── mapCodeNestedClassIfInsertion.mapCode.ts │ ├── mapCodeNestedClassIfReplacement.mapCode.ts │ ├── mapCodeNestedForInsertion.mapCode.ts │ ├── mapCodeNestedForOfInsertion.mapCode.ts │ ├── mapCodeNestedForOfReplacement.mapCode.ts │ ├── mapCodeNestedForReplacement.mapCode.ts │ ├── mapCodeNestedIfInsertion.mapCode.ts │ ├── mapCodeNestedIfReplace.mapCode.ts │ ├── mapCodeNestedLabeledInsertion.mapCode.ts │ ├── mapCodeNestedLabeledReplace.mapCode.ts │ ├── mapCodeNestedWhileInsertion.mapCode.ts │ ├── mapCodeNestedWhileReplace.mapCode.ts │ ├── mapCodeNoChanges.mapCode.ts │ ├── mapCodeNoRanges.mapCode.ts │ ├── mapCodePlainJsInsertion.mapCode.ts │ ├── mapCodeRangeReplacement.mapCode.ts │ ├── mapCodeReplaceUsingRange.mapCode.ts │ ├── mapCodeToplevelInsert.mapCode.ts │ ├── mapCodeToplevelInsertNoClass.mapCode.ts │ ├── mapCodeToplevelReplace.mapCode.ts │ ├── mapConstructor.js │ ├── mapConstructor.symbols │ ├── mapConstructor.types │ ├── mapConstructorOnReadonlyTuple.js │ ├── mapConstructorOnReadonlyTuple.symbols │ ├── mapConstructorOnReadonlyTuple.types │ ├── mapGroupBy.js │ ├── mapGroupBy.symbols │ ├── mapGroupBy.types │ ├── mapOnTupleTypes01.js │ ├── mapOnTupleTypes01.symbols │ ├── mapOnTupleTypes01.types │ ├── mapOnTupleTypes02.js │ ├── mapOnTupleTypes02.symbols │ ├── mapOnTupleTypes02.types │ ├── mapUpsert.errors.txt │ ├── mapUpsert.js │ ├── mapUpsert.symbols │ ├── mapUpsert.types │ ├── mappedArrayTupleIntersections.symbols │ ├── mappedArrayTupleIntersections.types │ ├── mappedToToIndexSignatureInference.js │ ├── mappedToToIndexSignatureInference.symbols │ ├── mappedToToIndexSignatureInference.types │ ├── mappedTypeAndIndexSignatureRelation.js │ ├── mappedTypeAndIndexSignatureRelation.symbols │ ├── mappedTypeAndIndexSignatureRelation.types │ ├── mappedTypeAsClauseRecursiveNoCrash1.symbols │ ├── mappedTypeAsClauseRecursiveNoCrash1.types │ ├── mappedTypeAsClauseRelationships.errors.txt │ ├── mappedTypeAsClauseRelationships.js │ ├── mappedTypeAsClauseRelationships.symbols │ ├── mappedTypeAsClauseRelationships.types │ ├── mappedTypeAsClauses.errors.txt │ ├── mappedTypeAsClauses.js │ ├── mappedTypeAsClauses.symbols │ ├── mappedTypeAsClauses.types │ ├── mappedTypeAsStringTemplate.errors.txt │ ├── mappedTypeAsStringTemplate.js │ ├── mappedTypeAsStringTemplate.symbols │ ├── mappedTypeAsStringTemplate.types │ ├── mappedTypeCircularReferenceInAccessor.js │ ├── mappedTypeCircularReferenceInAccessor.symbols │ ├── mappedTypeCircularReferenceInAccessor.types │ ├── mappedTypeConstraints.js │ ├── mappedTypeConstraints.symbols │ ├── mappedTypeConstraints.types │ ├── mappedTypeConstraints2.errors.txt │ ├── mappedTypeConstraints2.js │ ├── mappedTypeConstraints2.symbols │ ├── mappedTypeConstraints2.types │ ├── mappedTypeContextualTypesApplied.js │ ├── mappedTypeContextualTypesApplied.symbols │ ├── mappedTypeContextualTypesApplied.types │ ├── mappedTypeErrors.errors.txt │ ├── mappedTypeErrors.js │ ├── mappedTypeErrors.symbols │ ├── mappedTypeErrors.types │ ├── mappedTypeErrors2.errors.txt │ ├── mappedTypeErrors2.js │ ├── mappedTypeErrors2.symbols │ ├── mappedTypeErrors2.types │ ├── mappedTypeGenericIndexedAccess.js │ ├── mappedTypeGenericIndexedAccess.symbols │ ├── mappedTypeGenericIndexedAccess.types │ ├── mappedTypeGenericInstantiationPreservesHomomorphism.js │ ├── mappedTypeGenericInstantiationPreservesHomomorphism.symbols │ ├── mappedTypeGenericInstantiationPreservesHomomorphism.types │ ├── mappedTypeGenericInstantiationPreservesInlineForm.js │ ├── mappedTypeGenericInstantiationPreservesInlineForm.symbols │ ├── mappedTypeGenericInstantiationPreservesInlineForm.types │ ├── mappedTypeGenericWithKnownKeys.errors.txt │ ├── mappedTypeGenericWithKnownKeys.symbols │ ├── mappedTypeGenericWithKnownKeys.types │ ├── mappedTypeIndexSignatureModifiers.symbols │ ├── mappedTypeIndexSignatureModifiers.types │ ├── mappedTypeIndexedAccess.errors.txt │ ├── mappedTypeIndexedAccess.js │ ├── mappedTypeIndexedAccess.symbols │ ├── mappedTypeIndexedAccess.types │ ├── mappedTypeIndexedAccessConstraint.errors.txt │ ├── mappedTypeIndexedAccessConstraint.symbols │ ├── mappedTypeIndexedAccessConstraint.types │ ├── mappedTypeInferenceAliasSubstitution.symbols │ ├── mappedTypeInferenceAliasSubstitution.types │ ├── mappedTypeInferenceCircularity.js │ ├── mappedTypeInferenceCircularity.symbols │ ├── mappedTypeInferenceCircularity.types │ ├── mappedTypeInferenceErrors.errors.txt │ ├── mappedTypeInferenceErrors.js │ ├── mappedTypeInferenceErrors.symbols │ ├── mappedTypeInferenceErrors.types │ ├── mappedTypeInferenceFromApparentType.errors.txt │ ├── mappedTypeInferenceFromApparentType.symbols │ ├── mappedTypeInferenceFromApparentType.types │ ├── mappedTypeInferenceToMappedType.symbols │ ├── mappedTypeInferenceToMappedType.types │ ├── mappedTypeModifiers.js │ ├── mappedTypeModifiers.symbols │ ├── mappedTypeModifiers.types │ ├── mappedTypeMultiInference.js │ ├── mappedTypeMultiInference.symbols │ ├── mappedTypeMultiInference.types │ ├── mappedTypeNestedGenericInstantiation.js │ ├── mappedTypeNestedGenericInstantiation.symbols │ ├── mappedTypeNestedGenericInstantiation.types │ ├── mappedTypeNoTypeNoCrash.errors.txt │ ├── mappedTypeNoTypeNoCrash.js │ ├── mappedTypeNoTypeNoCrash.symbols │ ├── mappedTypeNoTypeNoCrash.types │ ├── mappedTypeNotMistakenlyHomomorphic.errors.txt │ ├── mappedTypeNotMistakenlyHomomorphic.js │ ├── mappedTypeNotMistakenlyHomomorphic.symbols │ ├── mappedTypeNotMistakenlyHomomorphic.types │ ├── mappedTypeOverArrayWithBareAnyRestCanBeUsedAsRestParam1.symbols │ ├── mappedTypeOverArrayWithBareAnyRestCanBeUsedAsRestParam1.types │ ├── mappedTypeOverlappingStringEnumKeys.js │ ├── mappedTypeOverlappingStringEnumKeys.symbols │ ├── mappedTypeOverlappingStringEnumKeys.types │ ├── mappedTypeParameterConstraint.js │ ├── mappedTypeParameterConstraint.symbols │ ├── mappedTypeParameterConstraint.types │ ├── mappedTypePartialConstraints.js │ ├── mappedTypePartialConstraints.symbols │ ├── mappedTypePartialConstraints.types │ ├── mappedTypePartialNonHomomorphicBaseConstraint.js │ ├── mappedTypePartialNonHomomorphicBaseConstraint.symbols │ ├── mappedTypePartialNonHomomorphicBaseConstraint.types │ ├── mappedTypeProperties.errors.txt │ ├── mappedTypeProperties.js │ ├── mappedTypeProperties.symbols │ ├── mappedTypeProperties.types │ ├── mappedTypeRecursiveInference.errors.txt │ ├── mappedTypeRecursiveInference.js │ ├── mappedTypeRecursiveInference.symbols │ ├── mappedTypeRecursiveInference.types │ ├── mappedTypeRecursiveInference2.symbols │ ├── mappedTypeRecursiveInference2.types │ ├── mappedTypeRelationships.errors.txt │ ├── mappedTypeRelationships.js │ ├── mappedTypeRelationships.symbols │ ├── mappedTypeRelationships.types │ ├── mappedTypeTupleConstraintAssignability.symbols │ ├── mappedTypeTupleConstraintAssignability.types │ ├── mappedTypeUnionConstrainTupleTreatedAsArrayLike.errors.txt │ ├── mappedTypeUnionConstrainTupleTreatedAsArrayLike.symbols │ ├── mappedTypeUnionConstrainTupleTreatedAsArrayLike.types │ ├── mappedTypeUnionConstraintInferences.errors.txt │ ├── mappedTypeUnionConstraintInferences.js │ ├── mappedTypeUnionConstraintInferences.symbols │ ├── mappedTypeUnionConstraintInferences.types │ ├── mappedTypeWithAny.errors.txt │ ├── mappedTypeWithAny.js │ ├── mappedTypeWithAny.symbols │ ├── mappedTypeWithAny.types │ ├── mappedTypeWithAsClauseAndLateBoundProperty.errors.txt │ ├── mappedTypeWithAsClauseAndLateBoundProperty.js │ ├── mappedTypeWithAsClauseAndLateBoundProperty.symbols │ ├── mappedTypeWithAsClauseAndLateBoundProperty.types │ ├── mappedTypeWithAsClauseAndLateBoundProperty2.js │ ├── mappedTypeWithAsClauseAndLateBoundProperty2.symbols │ ├── mappedTypeWithAsClauseAndLateBoundProperty2.types │ ├── mappedTypeWithCombinedTypeMappers.errors.txt │ ├── mappedTypeWithCombinedTypeMappers.js │ ├── mappedTypeWithCombinedTypeMappers.symbols │ ├── mappedTypeWithCombinedTypeMappers.types │ ├── mappedTypeWithNameClauseAppliedToArrayType.symbols │ ├── mappedTypeWithNameClauseAppliedToArrayType.types │ ├── mappedTypes1.js │ ├── mappedTypes1.symbols │ ├── mappedTypes1.types │ ├── mappedTypes2.js │ ├── mappedTypes2.symbols │ ├── mappedTypes2.types │ ├── mappedTypes3.errors.txt │ ├── mappedTypes3.js │ ├── mappedTypes3.symbols │ ├── mappedTypes3.types │ ├── mappedTypes4.js │ ├── mappedTypes4.symbols │ ├── mappedTypes4.types │ ├── mappedTypes5.errors.txt │ ├── mappedTypes5.js │ ├── mappedTypes5.symbols │ ├── mappedTypes5.types │ ├── mappedTypes6.errors.txt │ ├── mappedTypes6.js │ ├── mappedTypes6.symbols │ ├── mappedTypes6.types │ ├── mappedTypesAndObjects.errors.txt │ ├── mappedTypesAndObjects.js │ ├── mappedTypesAndObjects.symbols │ ├── mappedTypesAndObjects.types │ ├── mappedTypesArraysTuples.js │ ├── mappedTypesArraysTuples.symbols │ ├── mappedTypesArraysTuples.types │ ├── mappedTypesGenericTuples.symbols │ ├── mappedTypesGenericTuples.types │ ├── mappedTypesGenericTuples2.symbols │ ├── mappedTypesGenericTuples2.types │ ├── matchReturnTypeInAllBranches.errors.txt │ ├── matchReturnTypeInAllBranches.js │ ├── matchReturnTypeInAllBranches.symbols │ ├── matchReturnTypeInAllBranches.types │ ├── matchingOfObjectLiteralConstraints.js │ ├── matchingOfObjectLiteralConstraints.symbols │ ├── matchingOfObjectLiteralConstraints.types │ ├── maxConstraints.errors.txt │ ├── maxConstraints.js │ ├── maxConstraints.symbols │ ├── maxConstraints.types │ ├── maxNodeModuleJsDepthDefaultsToZero.errors.txt │ ├── maxNodeModuleJsDepthDefaultsToZero.symbols │ ├── maxNodeModuleJsDepthDefaultsToZero.trace.json │ ├── maxNodeModuleJsDepthDefaultsToZero.types │ ├── maximum10SpellingSuggestions.errors.txt │ ├── maximum10SpellingSuggestions.js │ ├── maximum10SpellingSuggestions.symbols │ ├── maximum10SpellingSuggestions.types │ ├── memberAccessMustUseModuleInstances.errors.txt │ ├── memberAccessMustUseModuleInstances.js │ ├── memberAccessMustUseModuleInstances.symbols │ ├── memberAccessMustUseModuleInstances.types │ ├── memberAccessOnConstructorType.errors.txt │ ├── memberAccessOnConstructorType.js │ ├── memberAccessOnConstructorType.symbols │ ├── memberAccessOnConstructorType.types │ ├── memberFunctionOverloadMixingStaticAndInstance.errors.txt │ ├── memberFunctionOverloadMixingStaticAndInstance.js │ ├── memberFunctionOverloadMixingStaticAndInstance.symbols │ ├── memberFunctionOverloadMixingStaticAndInstance.types │ ├── memberFunctionsWithPrivateOverloads.errors.txt │ ├── memberFunctionsWithPrivateOverloads.js │ ├── memberFunctionsWithPrivateOverloads.symbols │ ├── memberFunctionsWithPrivateOverloads.types │ ├── memberFunctionsWithPublicOverloads.js │ ├── memberFunctionsWithPublicOverloads.symbols │ ├── memberFunctionsWithPublicOverloads.types │ ├── memberFunctionsWithPublicPrivateOverloads.errors.txt │ ├── memberFunctionsWithPublicPrivateOverloads.js │ ├── memberFunctionsWithPublicPrivateOverloads.symbols │ ├── memberFunctionsWithPublicPrivateOverloads.types │ ├── memberOverride.errors.txt │ ├── memberOverride.js │ ├── memberOverride.symbols │ ├── memberOverride.types │ ├── memberScope.errors.txt │ ├── memberScope.js │ ├── memberScope.symbols │ ├── memberScope.types │ ├── memberVariableDeclarations1.errors.txt │ ├── memberVariableDeclarations1.js │ ├── memberVariableDeclarations1.symbols │ ├── memberVariableDeclarations1.types │ ├── mergeClassInterfaceAndModule.js │ ├── mergeClassInterfaceAndModule.symbols │ ├── mergeClassInterfaceAndModule.types │ ├── mergeMultipleInterfacesReexported.js │ ├── mergeMultipleInterfacesReexported.symbols │ ├── mergeMultipleInterfacesReexported.types │ ├── mergeSymbolReexportInterface.errors.txt │ ├── mergeSymbolReexportInterface.js │ ├── mergeSymbolReexportInterface.symbols │ ├── mergeSymbolReexportInterface.types │ ├── mergeSymbolReexportedTypeAliasInstantiation.errors.txt │ ├── mergeSymbolReexportedTypeAliasInstantiation.js │ ├── mergeSymbolReexportedTypeAliasInstantiation.symbols │ ├── mergeSymbolReexportedTypeAliasInstantiation.types │ ├── mergeSymbolRexportFunction.errors.txt │ ├── mergeSymbolRexportFunction.js │ ├── mergeSymbolRexportFunction.symbols │ ├── mergeSymbolRexportFunction.types │ ├── mergeThreeInterfaces.errors.txt │ ├── mergeThreeInterfaces.js │ ├── mergeThreeInterfaces.symbols │ ├── mergeThreeInterfaces.types │ ├── mergeThreeInterfaces2.errors.txt │ ├── mergeThreeInterfaces2.js │ ├── mergeThreeInterfaces2.symbols │ ├── mergeThreeInterfaces2.types │ ├── mergeTwoInterfaces.errors.txt │ ├── mergeTwoInterfaces.js │ ├── mergeTwoInterfaces.symbols │ ├── mergeTwoInterfaces.types │ ├── mergeTwoInterfaces2.errors.txt │ ├── mergeTwoInterfaces2.js │ ├── mergeTwoInterfaces2.symbols │ ├── mergeTwoInterfaces2.types │ ├── mergeWithImportedNamespace.errors.txt │ ├── mergeWithImportedNamespace.js │ ├── mergeWithImportedNamespace.symbols │ ├── mergeWithImportedNamespace.types │ ├── mergeWithImportedType.errors.txt │ ├── mergeWithImportedType.js │ ├── mergeWithImportedType.symbols │ ├── mergeWithImportedType.types │ ├── mergedClassInterface.errors.txt │ ├── mergedClassInterface.js │ ├── mergedClassInterface.symbols │ ├── mergedClassInterface.types │ ├── mergedClassNamespaceRecordCast.errors.txt │ ├── mergedClassNamespaceRecordCast.js │ ├── mergedClassNamespaceRecordCast.symbols │ ├── mergedClassNamespaceRecordCast.types │ ├── mergedClassWithNamespacePrototype.errors.txt │ ├── mergedClassWithNamespacePrototype.js │ ├── mergedClassWithNamespacePrototype.symbols │ ├── mergedClassWithNamespacePrototype.types │ ├── mergedDeclarationExports.errors.txt │ ├── mergedDeclarationExports.js │ ├── mergedDeclarationExports.symbols │ ├── mergedDeclarationExports.types │ ├── mergedDeclarations1.js │ ├── mergedDeclarations1.symbols │ ├── mergedDeclarations1.types │ ├── mergedDeclarations2.errors.txt │ ├── mergedDeclarations2.js │ ├── mergedDeclarations2.symbols │ ├── mergedDeclarations2.types │ ├── mergedDeclarations3.errors.txt │ ├── mergedDeclarations3.js │ ├── mergedDeclarations3.symbols │ ├── mergedDeclarations3.types │ ├── mergedDeclarations4.js │ ├── mergedDeclarations4.symbols │ ├── mergedDeclarations4.types │ ├── mergedDeclarations5.js │ ├── mergedDeclarations5.symbols │ ├── mergedDeclarations5.types │ ├── mergedDeclarations6.errors.txt │ ├── mergedDeclarations6.js │ ├── mergedDeclarations6.symbols │ ├── mergedDeclarations6.types │ ├── mergedDeclarations7.errors.txt │ ├── mergedDeclarations7.js │ ├── mergedDeclarations7.symbols │ ├── mergedDeclarations7.types │ ├── mergedEnumDeclarationCodeGen.js │ ├── mergedEnumDeclarationCodeGen.symbols │ ├── mergedEnumDeclarationCodeGen.types │ ├── mergedInheritedClassInterface.errors.txt │ ├── mergedInheritedClassInterface.js │ ├── mergedInheritedClassInterface.symbols │ ├── mergedInheritedClassInterface.types │ ├── mergedInheritedMembersSatisfyAbstractBase.errors.txt │ ├── mergedInheritedMembersSatisfyAbstractBase.js │ ├── mergedInheritedMembersSatisfyAbstractBase.symbols │ ├── mergedInheritedMembersSatisfyAbstractBase.types │ ├── mergedInstantiationAssignment.symbols │ ├── mergedInstantiationAssignment.types │ ├── mergedInterfaceFromMultipleFiles1.errors.txt │ ├── mergedInterfaceFromMultipleFiles1.js │ ├── mergedInterfaceFromMultipleFiles1.symbols │ ├── mergedInterfaceFromMultipleFiles1.types │ ├── mergedInterfacesWithConflictingPropertyNames.errors.txt │ ├── mergedInterfacesWithConflictingPropertyNames.js │ ├── mergedInterfacesWithConflictingPropertyNames.symbols │ ├── mergedInterfacesWithConflictingPropertyNames.types │ ├── mergedInterfacesWithConflictingPropertyNames2.js │ ├── mergedInterfacesWithConflictingPropertyNames2.symbols │ ├── mergedInterfacesWithConflictingPropertyNames2.types │ ├── mergedInterfacesWithIndexers.errors.txt │ ├── mergedInterfacesWithIndexers.js │ ├── mergedInterfacesWithIndexers.symbols │ ├── mergedInterfacesWithIndexers.types │ ├── mergedInterfacesWithIndexers2.errors.txt │ ├── mergedInterfacesWithIndexers2.js │ ├── mergedInterfacesWithIndexers2.symbols │ ├── mergedInterfacesWithIndexers2.types │ ├── mergedInterfacesWithInheritedPrivates.errors.txt │ ├── mergedInterfacesWithInheritedPrivates.js │ ├── mergedInterfacesWithInheritedPrivates.symbols │ ├── mergedInterfacesWithInheritedPrivates.types │ ├── mergedInterfacesWithInheritedPrivates2.errors.txt │ ├── mergedInterfacesWithInheritedPrivates2.js │ ├── mergedInterfacesWithInheritedPrivates2.symbols │ ├── mergedInterfacesWithInheritedPrivates2.types │ ├── mergedInterfacesWithInheritedPrivates3.errors.txt │ ├── mergedInterfacesWithInheritedPrivates3.js │ ├── mergedInterfacesWithInheritedPrivates3.symbols │ ├── mergedInterfacesWithInheritedPrivates3.types │ ├── mergedInterfacesWithMultipleBases.errors.txt │ ├── mergedInterfacesWithMultipleBases.js │ ├── mergedInterfacesWithMultipleBases.symbols │ ├── mergedInterfacesWithMultipleBases.types │ ├── mergedInterfacesWithMultipleBases2.errors.txt │ ├── mergedInterfacesWithMultipleBases2.js │ ├── mergedInterfacesWithMultipleBases2.symbols │ ├── mergedInterfacesWithMultipleBases2.types │ ├── mergedInterfacesWithMultipleBases3.errors.txt │ ├── mergedInterfacesWithMultipleBases3.js │ ├── mergedInterfacesWithMultipleBases3.symbols │ ├── mergedInterfacesWithMultipleBases3.types │ ├── mergedInterfacesWithMultipleBases4.errors.txt │ ├── mergedInterfacesWithMultipleBases4.js │ ├── mergedInterfacesWithMultipleBases4.symbols │ ├── mergedInterfacesWithMultipleBases4.types │ ├── mergedModuleDeclarationCodeGen.js │ ├── mergedModuleDeclarationCodeGen.symbols │ ├── mergedModuleDeclarationCodeGen.types │ ├── mergedModuleDeclarationCodeGen2.js │ ├── mergedModuleDeclarationCodeGen2.symbols │ ├── mergedModuleDeclarationCodeGen2.types │ ├── mergedModuleDeclarationCodeGen3.js │ ├── mergedModuleDeclarationCodeGen3.symbols │ ├── mergedModuleDeclarationCodeGen3.types │ ├── mergedModuleDeclarationCodeGen4.js │ ├── mergedModuleDeclarationCodeGen4.symbols │ ├── mergedModuleDeclarationCodeGen4.types │ ├── mergedModuleDeclarationCodeGen5.js │ ├── mergedModuleDeclarationCodeGen5.symbols │ ├── mergedModuleDeclarationCodeGen5.types │ ├── mergedModuleDeclarationWithSharedExportedVar.js │ ├── mergedModuleDeclarationWithSharedExportedVar.symbols │ ├── mergedModuleDeclarationWithSharedExportedVar.types │ ├── mergedWithLocalValue.js │ ├── mergedWithLocalValue.symbols │ ├── mergedWithLocalValue.types │ ├── metadataImportType.errors.txt │ ├── metadataImportType.js │ ├── metadataImportType.symbols │ ├── metadataImportType.types │ ├── metadataOfClassFromAlias(strict=false,target=es2015).js │ ├── metadataOfClassFromAlias(strict=false,target=es2015).symbols │ ├── metadataOfClassFromAlias(strict=false,target=es2015).types │ ├── metadataOfClassFromAlias(strict=false,target=es5).errors.txt │ ├── metadataOfClassFromAlias(strict=false,target=es5).js │ ├── metadataOfClassFromAlias(strict=false,target=es5).symbols │ ├── metadataOfClassFromAlias(strict=false,target=es5).types │ ├── metadataOfClassFromAlias(strict=true,target=es2015).errors.txt │ ├── metadataOfClassFromAlias(strict=true,target=es2015).js │ ├── metadataOfClassFromAlias(strict=true,target=es2015).symbols │ ├── metadataOfClassFromAlias(strict=true,target=es2015).types │ ├── metadataOfClassFromAlias(strict=true,target=es5).errors.txt │ ├── metadataOfClassFromAlias(strict=true,target=es5).js │ ├── metadataOfClassFromAlias(strict=true,target=es5).symbols │ ├── metadataOfClassFromAlias(strict=true,target=es5).types │ ├── metadataOfClassFromAlias2(target=es2015).errors.txt │ ├── metadataOfClassFromAlias2(target=es2015).js │ ├── metadataOfClassFromAlias2(target=es2015).symbols │ ├── metadataOfClassFromAlias2(target=es2015).types │ ├── metadataOfClassFromAlias2(target=es5).errors.txt │ ├── metadataOfClassFromAlias2(target=es5).js │ ├── metadataOfClassFromAlias2(target=es5).symbols │ ├── metadataOfClassFromAlias2(target=es5).types │ ├── metadataOfClassFromModule(target=es2015).errors.txt │ ├── metadataOfClassFromModule(target=es2015).js │ ├── metadataOfClassFromModule(target=es2015).symbols │ ├── metadataOfClassFromModule(target=es2015).types │ ├── metadataOfClassFromModule(target=es5).errors.txt │ ├── metadataOfClassFromModule(target=es5).js │ ├── metadataOfClassFromModule(target=es5).symbols │ ├── metadataOfClassFromModule(target=es5).types │ ├── metadataOfEventAlias(target=es2015).errors.txt │ ├── metadataOfEventAlias(target=es2015).js │ ├── metadataOfEventAlias(target=es2015).symbols │ ├── metadataOfEventAlias(target=es2015).types │ ├── metadataOfEventAlias(target=es5).errors.txt │ ├── metadataOfEventAlias(target=es5).js │ ├── metadataOfEventAlias(target=es5).symbols │ ├── metadataOfEventAlias(target=es5).types │ ├── metadataOfStringLiteral.errors.txt │ ├── metadataOfStringLiteral.js │ ├── metadataOfStringLiteral.symbols │ ├── metadataOfStringLiteral.types │ ├── metadataOfUnion.js │ ├── metadataOfUnion.symbols │ ├── metadataOfUnion.types │ ├── metadataOfUnionWithNull(strictnullchecks=false).js │ ├── metadataOfUnionWithNull(strictnullchecks=false).symbols │ ├── metadataOfUnionWithNull(strictnullchecks=false).types │ ├── metadataOfUnionWithNull(strictnullchecks=true).js │ ├── metadataOfUnionWithNull(strictnullchecks=true).symbols │ ├── metadataOfUnionWithNull(strictnullchecks=true).types │ ├── metadataReferencedWithinFilteredUnion(strictnullchecks=false,target=es2015).js │ ├── metadataReferencedWithinFilteredUnion(strictnullchecks=false,target=es2015).symbols │ ├── metadataReferencedWithinFilteredUnion(strictnullchecks=false,target=es2015).types │ ├── metadataReferencedWithinFilteredUnion(strictnullchecks=false,target=es5).errors.txt │ ├── metadataReferencedWithinFilteredUnion(strictnullchecks=false,target=es5).js │ ├── metadataReferencedWithinFilteredUnion(strictnullchecks=false,target=es5).symbols │ ├── metadataReferencedWithinFilteredUnion(strictnullchecks=false,target=es5).types │ ├── metadataReferencedWithinFilteredUnion(strictnullchecks=true,target=es2015).errors.txt │ ├── metadataReferencedWithinFilteredUnion(strictnullchecks=true,target=es2015).js │ ├── metadataReferencedWithinFilteredUnion(strictnullchecks=true,target=es2015).symbols │ ├── metadataReferencedWithinFilteredUnion(strictnullchecks=true,target=es2015).types │ ├── metadataReferencedWithinFilteredUnion(strictnullchecks=true,target=es5).errors.txt │ ├── metadataReferencedWithinFilteredUnion(strictnullchecks=true,target=es5).js │ ├── metadataReferencedWithinFilteredUnion(strictnullchecks=true,target=es5).symbols │ ├── metadataReferencedWithinFilteredUnion(strictnullchecks=true,target=es5).types │ ├── methodChainError.errors.txt │ ├── methodChainError.js │ ├── methodChainError.symbols │ ├── methodChainError.types │ ├── methodContainingLocalFunction(target=es2015).js │ ├── methodContainingLocalFunction(target=es2015).symbols │ ├── methodContainingLocalFunction(target=es2015).types │ ├── methodContainingLocalFunction(target=es5).errors.txt │ ├── methodContainingLocalFunction(target=es5).js │ ├── methodContainingLocalFunction(target=es5).symbols │ ├── methodContainingLocalFunction(target=es5).types │ ├── methodInAmbientClass1.errors.txt │ ├── methodInAmbientClass1.js │ ├── methodInAmbientClass1.symbols │ ├── methodInAmbientClass1.types │ ├── methodSignatureDeclarationEmit1.js │ ├── methodSignatureDeclarationEmit1.symbols │ ├── methodSignatureDeclarationEmit1.types │ ├── methodSignatureHandledDeclarationKindForSymbol.errors.txt │ ├── methodSignatureHandledDeclarationKindForSymbol.js │ ├── methodSignatureHandledDeclarationKindForSymbol.symbols │ ├── methodSignatureHandledDeclarationKindForSymbol.types │ ├── methodSignaturesWithOverloads.errors.txt │ ├── methodSignaturesWithOverloads.js │ ├── methodSignaturesWithOverloads.symbols │ ├── methodSignaturesWithOverloads.types │ ├── methodSignaturesWithOverloads2.errors.txt │ ├── methodSignaturesWithOverloads2.js │ ├── methodSignaturesWithOverloads2.symbols │ ├── methodSignaturesWithOverloads2.types │ ├── methodsReturningThis.errors.txt │ ├── methodsReturningThis.js │ ├── methodsReturningThis.symbols │ ├── methodsReturningThis.types │ ├── mismatchedClassConstructorVariable.errors.txt │ ├── mismatchedClassConstructorVariable.js │ ├── mismatchedClassConstructorVariable.symbols │ ├── mismatchedClassConstructorVariable.types │ ├── mismatchedExplicitTypeParameterAndArgumentType.errors.txt │ ├── mismatchedExplicitTypeParameterAndArgumentType.js │ ├── mismatchedExplicitTypeParameterAndArgumentType.symbols │ ├── mismatchedExplicitTypeParameterAndArgumentType.types │ ├── mismatchedGenericArguments1.errors.txt │ ├── mismatchedGenericArguments1.js │ ├── mismatchedGenericArguments1.symbols │ ├── mismatchedGenericArguments1.types │ ├── missingAndExcessProperties.errors.txt │ ├── missingAndExcessProperties.js │ ├── missingAndExcessProperties.symbols │ ├── missingAndExcessProperties.types │ ├── missingArgument1.errors.txt │ ├── missingArgument1.js │ ├── missingArgument1.symbols │ ├── missingArgument1.types │ ├── missingCloseBrace.errors.txt │ ├── missingCloseBrace.js │ ├── missingCloseBrace.symbols │ ├── missingCloseBrace.types │ ├── missingCloseBraceInObjectLiteral.errors.txt │ ├── missingCloseBraceInObjectLiteral.js │ ├── missingCloseBraceInObjectLiteral.symbols │ ├── missingCloseBraceInObjectLiteral.types │ ├── missingCloseBracketInArray.errors.txt │ ├── missingCloseBracketInArray.js │ ├── missingCloseBracketInArray.symbols │ ├── missingCloseBracketInArray.types │ ├── missingCloseParenStatements(alwaysstrict=false).errors.txt │ ├── missingCloseParenStatements(alwaysstrict=false).js │ ├── missingCloseParenStatements(alwaysstrict=false).symbols │ ├── missingCloseParenStatements(alwaysstrict=false).types │ ├── missingCloseParenStatements(alwaysstrict=true).errors.txt │ ├── missingCloseParenStatements(alwaysstrict=true).js │ ├── missingCloseParenStatements(alwaysstrict=true).symbols │ ├── missingCloseParenStatements(alwaysstrict=true).types │ ├── missingCommaInTemplateStringsArray.errors.txt │ ├── missingCommaInTemplateStringsArray.js │ ├── missingCommaInTemplateStringsArray.symbols │ ├── missingCommaInTemplateStringsArray.types │ ├── missingDecoratorType(target=es2015).errors.txt │ ├── missingDecoratorType(target=es2015).js │ ├── missingDecoratorType(target=es2015).symbols │ ├── missingDecoratorType(target=es2015).types │ ├── missingDecoratorType(target=es5).errors.txt │ ├── missingDecoratorType(target=es5).js │ ├── missingDecoratorType(target=es5).symbols │ ├── missingDecoratorType(target=es5).types │ ├── missingDiscriminants.errors.txt │ ├── missingDiscriminants.symbols │ ├── missingDiscriminants.types │ ├── missingDiscriminants2.errors.txt │ ├── missingDiscriminants2.symbols │ ├── missingDiscriminants2.types │ ├── missingDomElement_UsingDomLib.errors.txt │ ├── missingDomElement_UsingDomLib.js │ ├── missingDomElement_UsingDomLib.symbols │ ├── missingDomElement_UsingDomLib.types │ ├── missingDomElements.errors.txt │ ├── missingDomElements.js │ ├── missingDomElements.symbols │ ├── missingDomElements.types │ ├── missingFunctionImplementation.errors.txt │ ├── missingFunctionImplementation.js │ ├── missingFunctionImplementation.symbols │ ├── missingFunctionImplementation.types │ ├── missingFunctionImplementation2.errors.txt │ ├── missingFunctionImplementation2.js │ ├── missingFunctionImplementation2.symbols │ ├── missingFunctionImplementation2.types │ ├── missingImportAfterModuleImport.errors.txt │ ├── missingImportAfterModuleImport.js │ ├── missingImportAfterModuleImport.symbols │ ├── missingImportAfterModuleImport.types │ ├── missingMemberErrorHasShortPath.errors.txt │ ├── missingMemberErrorHasShortPath.js │ ├── missingMemberErrorHasShortPath.symbols │ ├── missingMemberErrorHasShortPath.types │ ├── missingPropertiesOfClassExpression.errors.txt │ ├── missingPropertiesOfClassExpression.js │ ├── missingPropertiesOfClassExpression.symbols │ ├── missingPropertiesOfClassExpression.types │ ├── missingRequiredDeclare.d.errors.txt │ ├── missingRequiredDeclare.d.symbols │ ├── missingRequiredDeclare.d.types │ ├── missingReturnStatement.errors.txt │ ├── missingReturnStatement.js │ ├── missingReturnStatement.symbols │ ├── missingReturnStatement.types │ ├── missingReturnStatement1.errors.txt │ ├── missingReturnStatement1.js │ ├── missingReturnStatement1.symbols │ ├── missingReturnStatement1.types │ ├── missingSelf.js │ ├── missingSelf.symbols │ ├── missingSelf.types │ ├── missingSemicolonInModuleSpecifier.js │ ├── missingSemicolonInModuleSpecifier.symbols │ ├── missingSemicolonInModuleSpecifier.types │ ├── missingTypeArguments1.errors.txt │ ├── missingTypeArguments1.js │ ├── missingTypeArguments1.symbols │ ├── missingTypeArguments1.types │ ├── missingTypeArguments2.errors.txt │ ├── missingTypeArguments2.js │ ├── missingTypeArguments2.symbols │ ├── missingTypeArguments2.types │ ├── missingTypeArguments3.js │ ├── missingTypeArguments3.symbols │ ├── missingTypeArguments3.types │ ├── misspelledJsDocTypedefTags.symbols │ ├── misspelledJsDocTypedefTags.types │ ├── misspelledNewMetaProperty.errors.txt │ ├── misspelledNewMetaProperty.js │ ├── misspelledNewMetaProperty.symbols │ ├── misspelledNewMetaProperty.types │ ├── mixedExports.js │ ├── mixedExports.symbols │ ├── mixedExports.types │ ├── mixedPropertyElementAccessAssignmentDeclaration.js │ ├── mixedPropertyElementAccessAssignmentDeclaration.symbols │ ├── mixedPropertyElementAccessAssignmentDeclaration.types │ ├── mixedStaticAndInstanceClassMembers.errors.txt │ ├── mixedStaticAndInstanceClassMembers.js │ ├── mixedStaticAndInstanceClassMembers.symbols │ ├── mixedStaticAndInstanceClassMembers.types │ ├── mixedTypeEnumComparison.js │ ├── mixedTypeEnumComparison.symbols │ ├── mixedTypeEnumComparison.types │ ├── mixinAbstractClasses.2.errors.txt │ ├── mixinAbstractClasses.2.js │ ├── mixinAbstractClasses.2.symbols │ ├── mixinAbstractClasses.2.types │ ├── mixinAbstractClasses.js │ ├── mixinAbstractClasses.symbols │ ├── mixinAbstractClasses.types │ ├── mixinAbstractClassesReturnTypeInference.js │ ├── mixinAbstractClassesReturnTypeInference.symbols │ ├── mixinAbstractClassesReturnTypeInference.types │ ├── mixinAccessModifiers.errors.txt │ ├── mixinAccessModifiers.js │ ├── mixinAccessModifiers.symbols │ ├── mixinAccessModifiers.types │ ├── mixinAccessors1.js │ ├── mixinAccessors1.symbols │ ├── mixinAccessors1.types │ ├── mixinAccessors2.js │ ├── mixinAccessors2.symbols │ ├── mixinAccessors2.types │ ├── mixinAccessors3.errors.txt │ ├── mixinAccessors3.js │ ├── mixinAccessors3.symbols │ ├── mixinAccessors3.types │ ├── mixinAccessors4.js │ ├── mixinAccessors4.symbols │ ├── mixinAccessors4.types │ ├── mixinAccessors5.js │ ├── mixinAccessors5.symbols │ ├── mixinAccessors5.types │ ├── mixinClassesAnnotated.js │ ├── mixinClassesAnnotated.symbols │ ├── mixinClassesAnnotated.types │ ├── mixinClassesAnonymous.js │ ├── mixinClassesAnonymous.symbols │ ├── mixinClassesAnonymous.types │ ├── mixinClassesMembers.js │ ├── mixinClassesMembers.symbols │ ├── mixinClassesMembers.types │ ├── mixinIntersectionIsValidbaseType.js │ ├── mixinIntersectionIsValidbaseType.symbols │ ├── mixinIntersectionIsValidbaseType.types │ ├── mixinOverMappedTypeNoCrash.symbols │ ├── mixinOverMappedTypeNoCrash.types │ ├── mixinPrivateAndProtected.errors.txt │ ├── mixinPrivateAndProtected.js │ ├── mixinPrivateAndProtected.symbols │ ├── mixinPrivateAndProtected.types │ ├── mixinWithBaseDependingOnSelfNoCrash1.errors.txt │ ├── mixinWithBaseDependingOnSelfNoCrash1.symbols │ ├── mixinWithBaseDependingOnSelfNoCrash1.types │ ├── mixingApparentTypeOverrides.js │ ├── mixingApparentTypeOverrides.symbols │ ├── mixingApparentTypeOverrides.types │ ├── mixingFunctionAndAmbientModule1.js │ ├── mixingFunctionAndAmbientModule1.symbols │ ├── mixingFunctionAndAmbientModule1.types │ ├── mixingStaticAndInstanceOverloads.errors.txt │ ├── mixingStaticAndInstanceOverloads.js │ ├── mixingStaticAndInstanceOverloads.symbols │ ├── mixingStaticAndInstanceOverloads.types │ ├── modFunctionCrash.js │ ├── modFunctionCrash.symbols │ ├── modFunctionCrash.types │ ├── modKeyword.js │ ├── modKeyword.symbols │ ├── modKeyword.types │ ├── modifierOnClassDeclarationMemberInFunction.js │ ├── modifierOnClassDeclarationMemberInFunction.symbols │ ├── modifierOnClassDeclarationMemberInFunction.types │ ├── modifierOnClassExpressionMemberInFunction.js │ ├── modifierOnClassExpressionMemberInFunction.symbols │ ├── modifierOnClassExpressionMemberInFunction.types │ ├── modifierOnParameter1.errors.txt │ ├── modifierOnParameter1.js │ ├── modifierOnParameter1.symbols │ ├── modifierOnParameter1.types │ ├── modifierParenCast(target=es2015).js │ ├── modifierParenCast(target=es2015).symbols │ ├── modifierParenCast(target=es2015).types │ ├── modifierParenCast(target=es5).errors.txt │ ├── modifierParenCast(target=es5).js │ ├── modifierParenCast(target=es5).symbols │ ├── modifierParenCast(target=es5).types │ ├── modifiersInObjectLiterals.errors.txt │ ├── modifiersInObjectLiterals.js │ ├── modifiersInObjectLiterals.symbols │ ├── modifiersInObjectLiterals.types │ ├── modifiersOnInterfaceIndexSignature1.errors.txt │ ├── modifiersOnInterfaceIndexSignature1.js │ ├── modifiersOnInterfaceIndexSignature1.symbols │ ├── modifiersOnInterfaceIndexSignature1.types │ ├── modularizeLibrary_Dom.asynciterable.js │ ├── modularizeLibrary_Dom.asynciterable.symbols │ ├── modularizeLibrary_Dom.asynciterable.types │ ├── modularizeLibrary_Dom.iterable.js │ ├── modularizeLibrary_Dom.iterable.symbols │ ├── modularizeLibrary_Dom.iterable.types │ ├── modularizeLibrary_ErrorFromUsingES6ArrayWithOnlyES6ArrayLib(target=es2015).errors.txt │ ├── modularizeLibrary_ErrorFromUsingES6ArrayWithOnlyES6ArrayLib(target=es2015).js │ ├── modularizeLibrary_ErrorFromUsingES6ArrayWithOnlyES6ArrayLib(target=es2015).symbols │ ├── modularizeLibrary_ErrorFromUsingES6ArrayWithOnlyES6ArrayLib(target=es2015).types │ ├── modularizeLibrary_ErrorFromUsingES6ArrayWithOnlyES6ArrayLib(target=es5).errors.txt │ ├── modularizeLibrary_ErrorFromUsingES6ArrayWithOnlyES6ArrayLib(target=es5).js │ ├── modularizeLibrary_ErrorFromUsingES6ArrayWithOnlyES6ArrayLib(target=es5).symbols │ ├── modularizeLibrary_ErrorFromUsingES6ArrayWithOnlyES6ArrayLib(target=es5).types │ ├── modularizeLibrary_ErrorFromUsingES6FeaturesWithOnlyES5Lib.errors.txt │ ├── modularizeLibrary_ErrorFromUsingES6FeaturesWithOnlyES5Lib.js │ ├── modularizeLibrary_ErrorFromUsingES6FeaturesWithOnlyES5Lib.symbols │ ├── modularizeLibrary_ErrorFromUsingES6FeaturesWithOnlyES5Lib.types │ ├── modularizeLibrary_ErrorFromUsingWellknownSymbolWithOutES6WellknownSymbolLib.errors.txt │ ├── modularizeLibrary_ErrorFromUsingWellknownSymbolWithOutES6WellknownSymbolLib.js │ ├── modularizeLibrary_ErrorFromUsingWellknownSymbolWithOutES6WellknownSymbolLib.symbols │ ├── modularizeLibrary_ErrorFromUsingWellknownSymbolWithOutES6WellknownSymbolLib.types │ ├── modularizeLibrary_NoErrorDuplicateLibOptions1.js │ ├── modularizeLibrary_NoErrorDuplicateLibOptions1.symbols │ ├── modularizeLibrary_NoErrorDuplicateLibOptions1.types │ ├── modularizeLibrary_NoErrorDuplicateLibOptions2.js │ ├── modularizeLibrary_NoErrorDuplicateLibOptions2.symbols │ ├── modularizeLibrary_NoErrorDuplicateLibOptions2.types │ ├── modularizeLibrary_TargetES5UsingES6Lib.js │ ├── modularizeLibrary_TargetES5UsingES6Lib.symbols │ ├── modularizeLibrary_TargetES5UsingES6Lib.types │ ├── modularizeLibrary_TargetES6UsingES6Lib.js │ ├── modularizeLibrary_TargetES6UsingES6Lib.symbols │ ├── modularizeLibrary_TargetES6UsingES6Lib.types │ ├── modularizeLibrary_UsingES5LibAndES6ArrayLib(target=es2015).js │ ├── modularizeLibrary_UsingES5LibAndES6ArrayLib(target=es2015).symbols │ ├── modularizeLibrary_UsingES5LibAndES6ArrayLib(target=es2015).types │ ├── modularizeLibrary_UsingES5LibAndES6ArrayLib(target=es5).errors.txt │ ├── modularizeLibrary_UsingES5LibAndES6ArrayLib(target=es5).js │ ├── modularizeLibrary_UsingES5LibAndES6ArrayLib(target=es5).symbols │ ├── modularizeLibrary_UsingES5LibAndES6ArrayLib(target=es5).types │ ├── modularizeLibrary_UsingES5LibAndES6FeatureLibs.js │ ├── modularizeLibrary_UsingES5LibAndES6FeatureLibs.symbols │ ├── modularizeLibrary_UsingES5LibAndES6FeatureLibs.types │ ├── modularizeLibrary_UsingES5LibES6ArrayLibES6WellknownSymbolLib.js │ ├── modularizeLibrary_UsingES5LibES6ArrayLibES6WellknownSymbolLib.symbols │ ├── modularizeLibrary_UsingES5LibES6ArrayLibES6WellknownSymbolLib.types │ ├── modularizeLibrary_Worker.asynciterable.js │ ├── modularizeLibrary_Worker.asynciterable.symbols │ ├── modularizeLibrary_Worker.asynciterable.types │ ├── modularizeLibrary_Worker.iterable.js │ ├── modularizeLibrary_Worker.iterable.symbols │ ├── modularizeLibrary_Worker.iterable.types │ ├── moduleAliasAsFunctionArgument.errors.txt │ ├── moduleAliasAsFunctionArgument.js │ ├── moduleAliasAsFunctionArgument.symbols │ ├── moduleAliasAsFunctionArgument.types │ ├── moduleAliasInterface.js │ ├── moduleAliasInterface.symbols │ ├── moduleAliasInterface.types │ ├── moduleAndInterfaceSharingName.errors.txt │ ├── moduleAndInterfaceSharingName.js │ ├── moduleAndInterfaceSharingName.symbols │ ├── moduleAndInterfaceSharingName.types │ ├── moduleAndInterfaceSharingName2.errors.txt │ ├── moduleAndInterfaceSharingName2.js │ ├── moduleAndInterfaceSharingName2.symbols │ ├── moduleAndInterfaceSharingName2.types │ ├── moduleAndInterfaceSharingName3.errors.txt │ ├── moduleAndInterfaceSharingName3.js │ ├── moduleAndInterfaceSharingName3.symbols │ ├── moduleAndInterfaceSharingName3.types │ ├── moduleAndInterfaceSharingName4.js │ ├── moduleAndInterfaceSharingName4.symbols │ ├── moduleAndInterfaceSharingName4.types │ ├── moduleAndInterfaceWithSameName.errors.txt │ ├── moduleAndInterfaceWithSameName.js │ ├── moduleAndInterfaceWithSameName.symbols │ ├── moduleAndInterfaceWithSameName.types │ ├── moduleAsBaseType.errors.txt │ ├── moduleAsBaseType.js │ ├── moduleAsBaseType.symbols │ ├── moduleAsBaseType.types │ ├── moduleAssignmentCompat1.errors.txt │ ├── moduleAssignmentCompat1.js │ ├── moduleAssignmentCompat1.symbols │ ├── moduleAssignmentCompat1.types │ ├── moduleAssignmentCompat2.errors.txt │ ├── moduleAssignmentCompat2.js │ ├── moduleAssignmentCompat2.symbols │ ├── moduleAssignmentCompat2.types │ ├── moduleAssignmentCompat3.errors.txt │ ├── moduleAssignmentCompat3.js │ ├── moduleAssignmentCompat3.symbols │ ├── moduleAssignmentCompat3.types │ ├── moduleAssignmentCompat4.errors.txt │ ├── moduleAssignmentCompat4.js │ ├── moduleAssignmentCompat4.symbols │ ├── moduleAssignmentCompat4.types │ ├── moduleAugmentationCollidingNamesInAugmentation1.errors.txt │ ├── moduleAugmentationCollidingNamesInAugmentation1.js │ ├── moduleAugmentationCollidingNamesInAugmentation1.symbols │ ├── moduleAugmentationCollidingNamesInAugmentation1.types │ ├── moduleAugmentationDeclarationEmit1.errors.txt │ ├── moduleAugmentationDeclarationEmit1.js │ ├── moduleAugmentationDeclarationEmit1.symbols │ ├── moduleAugmentationDeclarationEmit1.types │ ├── moduleAugmentationDeclarationEmit2.errors.txt │ ├── moduleAugmentationDeclarationEmit2.js │ ├── moduleAugmentationDeclarationEmit2.symbols │ ├── moduleAugmentationDeclarationEmit2.types │ ├── moduleAugmentationDisallowedExtensions.errors.txt │ ├── moduleAugmentationDisallowedExtensions.js │ ├── moduleAugmentationDisallowedExtensions.symbols │ ├── moduleAugmentationDisallowedExtensions.types │ ├── moduleAugmentationDoesInterfaceMergeOfReexport.js │ ├── moduleAugmentationDoesInterfaceMergeOfReexport.symbols │ ├── moduleAugmentationDoesInterfaceMergeOfReexport.types │ ├── moduleAugmentationDoesNamespaceEnumMergeOfReexport.js │ ├── moduleAugmentationDoesNamespaceEnumMergeOfReexport.symbols │ ├── moduleAugmentationDoesNamespaceEnumMergeOfReexport.types │ ├── moduleAugmentationDoesNamespaceMergeOfReexport.js │ ├── moduleAugmentationDoesNamespaceMergeOfReexport.symbols │ ├── moduleAugmentationDoesNamespaceMergeOfReexport.types │ ├── moduleAugmentationDuringSyntheticDefaultCheck.js │ ├── moduleAugmentationDuringSyntheticDefaultCheck.symbols │ ├── moduleAugmentationDuringSyntheticDefaultCheck.types │ ├── moduleAugmentationEnumClassMergeOfReexportIsError.errors.txt │ ├── moduleAugmentationEnumClassMergeOfReexportIsError.js │ ├── moduleAugmentationEnumClassMergeOfReexportIsError.symbols │ ├── moduleAugmentationEnumClassMergeOfReexportIsError.types │ ├── moduleAugmentationExtendAmbientModule1.errors.txt │ ├── moduleAugmentationExtendAmbientModule1.js │ ├── moduleAugmentationExtendAmbientModule1.symbols │ ├── moduleAugmentationExtendAmbientModule1.types │ ├── moduleAugmentationExtendAmbientModule2.errors.txt │ ├── moduleAugmentationExtendAmbientModule2.js │ ├── moduleAugmentationExtendAmbientModule2.symbols │ ├── moduleAugmentationExtendAmbientModule2.types │ ├── moduleAugmentationExtendFileModule1.errors.txt │ ├── moduleAugmentationExtendFileModule1.js │ ├── moduleAugmentationExtendFileModule1.symbols │ ├── moduleAugmentationExtendFileModule1.types │ ├── moduleAugmentationExtendFileModule2.errors.txt │ ├── moduleAugmentationExtendFileModule2.js │ ├── moduleAugmentationExtendFileModule2.symbols │ ├── moduleAugmentationExtendFileModule2.types │ ├── moduleAugmentationGlobal1.errors.txt │ ├── moduleAugmentationGlobal1.js │ ├── moduleAugmentationGlobal1.symbols │ ├── moduleAugmentationGlobal1.types │ ├── moduleAugmentationGlobal2.js │ ├── moduleAugmentationGlobal2.symbols │ ├── moduleAugmentationGlobal2.types │ ├── moduleAugmentationGlobal3.js │ ├── moduleAugmentationGlobal3.symbols │ ├── moduleAugmentationGlobal3.types │ ├── moduleAugmentationGlobal4.js │ ├── moduleAugmentationGlobal4.symbols │ ├── moduleAugmentationGlobal4.types │ ├── moduleAugmentationGlobal5.js │ ├── moduleAugmentationGlobal5.symbols │ ├── moduleAugmentationGlobal5.types │ ├── moduleAugmentationGlobal6.errors.txt │ ├── moduleAugmentationGlobal6.js │ ├── moduleAugmentationGlobal6.symbols │ ├── moduleAugmentationGlobal6.types │ ├── moduleAugmentationGlobal6_1.errors.txt │ ├── moduleAugmentationGlobal6_1.js │ ├── moduleAugmentationGlobal6_1.symbols │ ├── moduleAugmentationGlobal6_1.types │ ├── moduleAugmentationGlobal7.errors.txt │ ├── moduleAugmentationGlobal7.js │ ├── moduleAugmentationGlobal7.symbols │ ├── moduleAugmentationGlobal7.types │ ├── moduleAugmentationGlobal7_1.errors.txt │ ├── moduleAugmentationGlobal7_1.js │ ├── moduleAugmentationGlobal7_1.symbols │ ├── moduleAugmentationGlobal7_1.types │ ├── moduleAugmentationGlobal8(target=es2015).errors.txt │ ├── moduleAugmentationGlobal8(target=es2015).js │ ├── moduleAugmentationGlobal8(target=es2015).symbols │ ├── moduleAugmentationGlobal8(target=es2015).types │ ├── moduleAugmentationGlobal8(target=es5).errors.txt │ ├── moduleAugmentationGlobal8(target=es5).js │ ├── moduleAugmentationGlobal8(target=es5).symbols │ ├── moduleAugmentationGlobal8(target=es5).types │ ├── moduleAugmentationGlobal8_1(target=es2015).errors.txt │ ├── moduleAugmentationGlobal8_1(target=es2015).js │ ├── moduleAugmentationGlobal8_1(target=es2015).symbols │ ├── moduleAugmentationGlobal8_1(target=es2015).types │ ├── moduleAugmentationGlobal8_1(target=es5).errors.txt │ ├── moduleAugmentationGlobal8_1(target=es5).js │ ├── moduleAugmentationGlobal8_1(target=es5).symbols │ ├── moduleAugmentationGlobal8_1(target=es5).types │ ├── moduleAugmentationImportsAndExports1.errors.txt │ ├── moduleAugmentationImportsAndExports1.js │ ├── moduleAugmentationImportsAndExports1.symbols │ ├── moduleAugmentationImportsAndExports1.types │ ├── moduleAugmentationImportsAndExports2.errors.txt │ ├── moduleAugmentationImportsAndExports2.js │ ├── moduleAugmentationImportsAndExports2.symbols │ ├── moduleAugmentationImportsAndExports2.types │ ├── moduleAugmentationImportsAndExports3.errors.txt │ ├── moduleAugmentationImportsAndExports3.js │ ├── moduleAugmentationImportsAndExports3.symbols │ ├── moduleAugmentationImportsAndExports3.types │ ├── moduleAugmentationImportsAndExports4.errors.txt │ ├── moduleAugmentationImportsAndExports4.js │ ├── moduleAugmentationImportsAndExports4.symbols │ ├── moduleAugmentationImportsAndExports4.types │ ├── moduleAugmentationImportsAndExports5.errors.txt │ ├── moduleAugmentationImportsAndExports5.js │ ├── moduleAugmentationImportsAndExports5.symbols │ ├── moduleAugmentationImportsAndExports5.types │ ├── moduleAugmentationImportsAndExports6.errors.txt │ ├── moduleAugmentationImportsAndExports6.js │ ├── moduleAugmentationImportsAndExports6.symbols │ ├── moduleAugmentationImportsAndExports6.types │ ├── moduleAugmentationInAmbientModule1.errors.txt │ ├── moduleAugmentationInAmbientModule1.js │ ├── moduleAugmentationInAmbientModule1.symbols │ ├── moduleAugmentationInAmbientModule1.types │ ├── moduleAugmentationInAmbientModule2.errors.txt │ ├── moduleAugmentationInAmbientModule2.js │ ├── moduleAugmentationInAmbientModule2.symbols │ ├── moduleAugmentationInAmbientModule2.types │ ├── moduleAugmentationInAmbientModule3.errors.txt │ ├── moduleAugmentationInAmbientModule3.js │ ├── moduleAugmentationInAmbientModule3.symbols │ ├── moduleAugmentationInAmbientModule3.types │ ├── moduleAugmentationInAmbientModule4.errors.txt │ ├── moduleAugmentationInAmbientModule4.js │ ├── moduleAugmentationInAmbientModule4.symbols │ ├── moduleAugmentationInAmbientModule4.types │ ├── moduleAugmentationInAmbientModule5.js │ ├── moduleAugmentationInAmbientModule5.symbols │ ├── moduleAugmentationInAmbientModule5.types │ ├── moduleAugmentationInDependency.js │ ├── moduleAugmentationInDependency.symbols │ ├── moduleAugmentationInDependency.types │ ├── moduleAugmentationInDependency2.errors.txt │ ├── moduleAugmentationInDependency2.js │ ├── moduleAugmentationInDependency2.symbols │ ├── moduleAugmentationInDependency2.types │ ├── moduleAugmentationNoNewNames.errors.txt │ ├── moduleAugmentationNoNewNames.js │ ├── moduleAugmentationNoNewNames.symbols │ ├── moduleAugmentationNoNewNames.types │ ├── moduleAugmentationOfAlias.js │ ├── moduleAugmentationOfAlias.symbols │ ├── moduleAugmentationOfAlias.types │ ├── moduleAugmentationWithNonExistentNamedImport.errors.txt │ ├── moduleAugmentationWithNonExistentNamedImport.symbols │ ├── moduleAugmentationWithNonExistentNamedImport.types │ ├── moduleAugmentationsBundledOutput1(target=es2015).errors.txt │ ├── moduleAugmentationsBundledOutput1(target=es2015).js │ ├── moduleAugmentationsBundledOutput1(target=es2015).symbols │ ├── moduleAugmentationsBundledOutput1(target=es2015).types │ ├── moduleAugmentationsBundledOutput1(target=es5).errors.txt │ ├── moduleAugmentationsBundledOutput1(target=es5).js │ ├── moduleAugmentationsBundledOutput1(target=es5).symbols │ ├── moduleAugmentationsBundledOutput1(target=es5).types │ ├── moduleAugmentationsImports1.errors.txt │ ├── moduleAugmentationsImports1.js │ ├── moduleAugmentationsImports1.symbols │ ├── moduleAugmentationsImports1.types │ ├── moduleAugmentationsImports2.errors.txt │ ├── moduleAugmentationsImports2.js │ ├── moduleAugmentationsImports2.symbols │ ├── moduleAugmentationsImports2.types │ ├── moduleAugmentationsImports3.errors.txt │ ├── moduleAugmentationsImports3.js │ ├── moduleAugmentationsImports3.symbols │ ├── moduleAugmentationsImports3.types │ ├── moduleAugmentationsImports4.errors.txt │ ├── moduleAugmentationsImports4.js │ ├── moduleAugmentationsImports4.symbols │ ├── moduleAugmentationsImports4.types │ ├── moduleClassArrayCodeGenTest.errors.txt │ ├── moduleClassArrayCodeGenTest.js │ ├── moduleClassArrayCodeGenTest.symbols │ ├── moduleClassArrayCodeGenTest.types │ ├── moduleCodeGenTest3.js │ ├── moduleCodeGenTest3.symbols │ ├── moduleCodeGenTest3.types │ ├── moduleCodeGenTest5.js │ ├── moduleCodeGenTest5.symbols │ ├── moduleCodeGenTest5.types │ ├── moduleCodegenTest4.js │ ├── moduleCodegenTest4.symbols │ ├── moduleCodegenTest4.types │ ├── moduleCrashBug1.errors.txt │ ├── moduleCrashBug1.js │ ├── moduleCrashBug1.symbols │ ├── moduleCrashBug1.types │ ├── moduleDeclarationExportStarShadowingGlobalIsNameable.js │ ├── moduleDeclarationExportStarShadowingGlobalIsNameable.symbols │ ├── moduleDeclarationExportStarShadowingGlobalIsNameable.types │ ├── moduleDetectionIsolatedModulesCjsFileScope.js │ ├── moduleDetectionIsolatedModulesCjsFileScope.symbols │ ├── moduleDetectionIsolatedModulesCjsFileScope.types │ ├── moduleDuplicateIdentifiers.errors.txt │ ├── moduleDuplicateIdentifiers.js │ ├── moduleDuplicateIdentifiers.symbols │ ├── moduleDuplicateIdentifiers.types │ ├── moduleElementsInWrongContext.errors.txt │ ├── moduleElementsInWrongContext.js │ ├── moduleElementsInWrongContext.symbols │ ├── moduleElementsInWrongContext.types │ ├── moduleElementsInWrongContext2.errors.txt │ ├── moduleElementsInWrongContext2.js │ ├── moduleElementsInWrongContext2.symbols │ ├── moduleElementsInWrongContext2.types │ ├── moduleElementsInWrongContext3.errors.txt │ ├── moduleElementsInWrongContext3.js │ ├── moduleElementsInWrongContext3.symbols │ ├── moduleElementsInWrongContext3.types │ ├── moduleExportAlias.symbols │ ├── moduleExportAlias.types │ ├── moduleExportAlias2.symbols │ ├── moduleExportAlias2.types │ ├── moduleExportAlias3.symbols │ ├── moduleExportAlias3.types │ ├── moduleExportAlias4.symbols │ ├── moduleExportAlias4.types │ ├── moduleExportAlias5.symbols │ ├── moduleExportAlias5.types │ ├── moduleExportAliasElementAccessExpression.js │ ├── moduleExportAliasElementAccessExpression.symbols │ ├── moduleExportAliasElementAccessExpression.types │ ├── moduleExportAliasExports.symbols │ ├── moduleExportAliasExports.types │ ├── moduleExportAliasImported.symbols │ ├── moduleExportAliasImported.types │ ├── moduleExportAliasUnknown.errors.txt │ ├── moduleExportAliasUnknown.symbols │ ├── moduleExportAliasUnknown.types │ ├── moduleExportAssignment.symbols │ ├── moduleExportAssignment.types │ ├── moduleExportAssignment2.symbols │ ├── moduleExportAssignment2.types │ ├── moduleExportAssignment3.symbols │ ├── moduleExportAssignment3.types │ ├── moduleExportAssignment4.symbols │ ├── moduleExportAssignment4.types │ ├── moduleExportAssignment5.symbols │ ├── moduleExportAssignment5.types │ ├── moduleExportAssignment6.symbols │ ├── moduleExportAssignment6.types │ ├── moduleExportAssignment7.errors.txt │ ├── moduleExportAssignment7.symbols │ ├── moduleExportAssignment7.types │ ├── moduleExportDuplicateAlias.errors.txt │ ├── moduleExportDuplicateAlias.js │ ├── moduleExportDuplicateAlias.symbols │ ├── moduleExportDuplicateAlias.types │ ├── moduleExportDuplicateAlias2.js │ ├── moduleExportDuplicateAlias2.symbols │ ├── moduleExportDuplicateAlias2.types │ ├── moduleExportDuplicateAlias3.js │ ├── moduleExportDuplicateAlias3.symbols │ ├── moduleExportDuplicateAlias3.types │ ├── moduleExportNestedNamespaces.symbols │ ├── moduleExportNestedNamespaces.types │ ├── moduleExportNonStructured.errors.txt │ ├── moduleExportNonStructured.js │ ├── moduleExportNonStructured.symbols │ ├── moduleExportNonStructured.types │ ├── moduleExportPropertyAssignmentDefault.symbols │ ├── moduleExportPropertyAssignmentDefault.types │ ├── moduleExportWithExportPropertyAssignment.errors.txt │ ├── moduleExportWithExportPropertyAssignment.symbols │ ├── moduleExportWithExportPropertyAssignment.types │ ├── moduleExportWithExportPropertyAssignment2.errors.txt │ ├── moduleExportWithExportPropertyAssignment2.symbols │ ├── moduleExportWithExportPropertyAssignment2.types │ ├── moduleExportWithExportPropertyAssignment3.errors.txt │ ├── moduleExportWithExportPropertyAssignment3.symbols │ ├── moduleExportWithExportPropertyAssignment3.types │ ├── moduleExportWithExportPropertyAssignment4.errors.txt │ ├── moduleExportWithExportPropertyAssignment4.symbols │ ├── moduleExportWithExportPropertyAssignment4.types │ ├── moduleExports1.errors.txt │ ├── moduleExports1.js │ ├── moduleExports1.symbols │ ├── moduleExports1.types │ ├── moduleExportsAliasLoop1.errors.txt │ ├── moduleExportsAliasLoop1.symbols │ ├── moduleExportsAliasLoop1.types │ ├── moduleExportsAliasLoop2.errors.txt │ ├── moduleExportsAliasLoop2.symbols │ ├── moduleExportsAliasLoop2.types │ ├── moduleExportsElementAccessAssignment.js │ ├── moduleExportsElementAccessAssignment.symbols │ ├── moduleExportsElementAccessAssignment.types │ ├── moduleExportsElementAccessAssignment2.symbols │ ├── moduleExportsElementAccessAssignment2.types │ ├── moduleExportsTypeNoExcessPropertyCheckFromContainedLiteral.symbols │ ├── moduleExportsTypeNoExcessPropertyCheckFromContainedLiteral.types │ ├── moduleExportsUnaryExpression.js │ ├── moduleExportsUnaryExpression.symbols │ ├── moduleExportsUnaryExpression.types │ ├── moduleIdentifiers.js │ ├── moduleIdentifiers.symbols │ ├── moduleIdentifiers.types │ ├── moduleImport.errors.txt │ ├── moduleImport.js │ ├── moduleImport.symbols │ ├── moduleImport.types │ ├── moduleImportedForTypeArgumentPosition.errors.txt │ ├── moduleImportedForTypeArgumentPosition.js │ ├── moduleImportedForTypeArgumentPosition.symbols │ ├── moduleImportedForTypeArgumentPosition.types │ ├── moduleInTypePosition1.errors.txt │ ├── moduleInTypePosition1.js │ ├── moduleInTypePosition1.symbols │ ├── moduleInTypePosition1.types │ ├── moduleKeywordDeprecated.errors.txt │ ├── moduleKeywordDeprecated.js │ ├── moduleKeywordDeprecated.symbols │ ├── moduleKeywordDeprecated.types │ ├── moduleKeywordRepeatError.errors.txt │ ├── moduleKeywordRepeatError.js │ ├── moduleKeywordRepeatError.symbols │ ├── moduleKeywordRepeatError.types │ ├── moduleLocalImportNotIncorrectlyRedirected.js │ ├── moduleLocalImportNotIncorrectlyRedirected.symbols │ ├── moduleLocalImportNotIncorrectlyRedirected.types │ ├── moduleMemberMissingErrorIsRelative.errors.txt │ ├── moduleMemberMissingErrorIsRelative.js │ ├── moduleMemberMissingErrorIsRelative.symbols │ ├── moduleMemberMissingErrorIsRelative.types │ ├── moduleMemberWithoutTypeAnnotation1.js │ ├── moduleMemberWithoutTypeAnnotation1.symbols │ ├── moduleMemberWithoutTypeAnnotation1.types │ ├── moduleMemberWithoutTypeAnnotation2.js │ ├── moduleMemberWithoutTypeAnnotation2.symbols │ ├── moduleMemberWithoutTypeAnnotation2.types │ ├── moduleMerge.js │ ├── moduleMerge.symbols │ ├── moduleMerge.types │ ├── moduleMergeConstructor.errors.txt │ ├── moduleMergeConstructor.js │ ├── moduleMergeConstructor.symbols │ ├── moduleMergeConstructor.types │ ├── moduleNewExportBug.errors.txt │ ├── moduleNewExportBug.js │ ├── moduleNewExportBug.symbols │ ├── moduleNewExportBug.types │ ├── moduleNoEmit.js │ ├── moduleNoEmit.symbols │ ├── moduleNoEmit.types │ ├── moduleNodeDefaultImports(module=node16).errors.txt │ ├── moduleNodeDefaultImports(module=node16).js │ ├── moduleNodeDefaultImports(module=node16).symbols │ ├── moduleNodeDefaultImports(module=node16).types │ ├── moduleNodeDefaultImports(module=node18).errors.txt │ ├── moduleNodeDefaultImports(module=node18).js │ ├── moduleNodeDefaultImports(module=node18).symbols │ ├── moduleNodeDefaultImports(module=node18).types │ ├── moduleNodeDefaultImports(module=node20).errors.txt │ ├── moduleNodeDefaultImports(module=node20).js │ ├── moduleNodeDefaultImports(module=node20).symbols │ ├── moduleNodeDefaultImports(module=node20).types │ ├── moduleNodeDefaultImports(module=nodenext).errors.txt │ ├── moduleNodeDefaultImports(module=nodenext).js │ ├── moduleNodeDefaultImports(module=nodenext).symbols │ ├── moduleNodeDefaultImports(module=nodenext).types │ ├── moduleNodeImportRequireEmit(target=es2016).js │ ├── moduleNodeImportRequireEmit(target=es2016).symbols │ ├── moduleNodeImportRequireEmit(target=es2016).types │ ├── moduleNodeImportRequireEmit(target=es2020).js │ ├── moduleNodeImportRequireEmit(target=es2020).symbols │ ├── moduleNodeImportRequireEmit(target=es2020).types │ ├── moduleNodeImportRequireEmit(target=es5).errors.txt │ ├── moduleNodeImportRequireEmit(target=es5).js │ ├── moduleNodeImportRequireEmit(target=es5).symbols │ ├── moduleNodeImportRequireEmit(target=es5).types │ ├── moduleNodeImportRequireEmit(target=esnext).js │ ├── moduleNodeImportRequireEmit(target=esnext).symbols │ ├── moduleNodeImportRequireEmit(target=esnext).types │ ├── moduleNodeNextImportFix.baseline │ ├── moduleNoneDynamicImport(target=es2015).errors.txt │ ├── moduleNoneDynamicImport(target=es2015).js │ ├── moduleNoneDynamicImport(target=es2015).symbols │ ├── moduleNoneDynamicImport(target=es2015).types │ ├── moduleNoneDynamicImport(target=es2020).errors.txt │ ├── moduleNoneDynamicImport(target=es2020).js │ ├── moduleNoneDynamicImport(target=es2020).symbols │ ├── moduleNoneDynamicImport(target=es2020).types │ ├── moduleNoneErrors(target=es2015).errors.txt │ ├── moduleNoneErrors(target=es2015).js │ ├── moduleNoneErrors(target=es2015).symbols │ ├── moduleNoneErrors(target=es2015).types │ ├── moduleNoneErrors(target=es5).errors.txt │ ├── moduleNoneErrors(target=es5).js │ ├── moduleNoneErrors(target=es5).symbols │ ├── moduleNoneErrors(target=es5).types │ ├── moduleNoneOutFile.errors.txt │ ├── moduleNoneOutFile.js │ ├── moduleNoneOutFile.symbols │ ├── moduleNoneOutFile.types │ ├── moduleOuterQualification.js │ ├── moduleOuterQualification.symbols │ ├── moduleOuterQualification.types │ ├── modulePreserve1.js │ ├── modulePreserve1.symbols │ ├── modulePreserve1.types │ ├── modulePreserve2.symbols │ ├── modulePreserve2.trace.json │ ├── modulePreserve2.types │ ├── modulePreserve3.trace.json │ ├── modulePreserve4.errors.txt │ ├── modulePreserve4.js │ ├── modulePreserve4.symbols │ ├── modulePreserve4.types │ ├── modulePreserveImportHelpers.js │ ├── modulePreserveImportHelpers.symbols │ ├── modulePreserveImportHelpers.types │ ├── modulePreserveTopLevelAwait1(target=es2016).errors.txt │ ├── modulePreserveTopLevelAwait1(target=es2016).symbols │ ├── modulePreserveTopLevelAwait1(target=es2016).types │ ├── modulePreserveTopLevelAwait1(target=esnext).symbols │ ├── modulePreserveTopLevelAwait1(target=esnext).types │ ├── modulePrologueAMD.errors.txt │ ├── modulePrologueAMD.js │ ├── modulePrologueAMD.symbols │ ├── modulePrologueAMD.types │ ├── modulePrologueCommonjs.js │ ├── modulePrologueCommonjs.symbols │ ├── modulePrologueCommonjs.types │ ├── modulePrologueES6.js │ ├── modulePrologueES6.symbols │ ├── modulePrologueES6.types │ ├── modulePrologueSystem.errors.txt │ ├── modulePrologueSystem.js │ ├── modulePrologueSystem.symbols │ ├── modulePrologueSystem.types │ ├── modulePrologueUmd.errors.txt │ ├── modulePrologueUmd.js │ ├── modulePrologueUmd.symbols │ ├── modulePrologueUmd.types │ ├── moduleProperty1.errors.txt │ ├── moduleProperty1.js │ ├── moduleProperty1.symbols │ ├── moduleProperty1.types │ ├── moduleProperty2.errors.txt │ ├── moduleProperty2.js │ ├── moduleProperty2.symbols │ ├── moduleProperty2.types │ ├── moduleRedifinitionErrors.js │ ├── moduleRedifinitionErrors.symbols │ ├── moduleRedifinitionErrors.types │ ├── moduleReopenedTypeOtherBlock.errors.txt │ ├── moduleReopenedTypeOtherBlock.js │ ├── moduleReopenedTypeOtherBlock.symbols │ ├── moduleReopenedTypeOtherBlock.types │ ├── moduleReopenedTypeSameBlock.errors.txt │ ├── moduleReopenedTypeSameBlock.js │ ├── moduleReopenedTypeSameBlock.symbols │ ├── moduleReopenedTypeSameBlock.types │ ├── moduleResolution/ │ │ ├── baseUrl-without-path-mappings-or-rootDirs.js │ │ ├── classic-baseUrl-path-mappings.js │ │ ├── classic-baseUrl.js │ │ ├── classic-rootDirs.js │ │ ├── module-name-in-require-calls-has-inconsistent-casing.js │ │ ├── module-names-in-require-calls-has-consistent-casing-and-current-directory-has-uppercase-chars.js │ │ ├── module-names-in-require-calls-has-inconsistent-casing-and-current-directory-has-uppercase-chars.js │ │ ├── nested-node-module.js │ │ ├── node-baseUrl-path-mappings.js │ │ ├── node-baseUrl.js │ │ ├── node-rootDirs.js │ │ ├── non-relative-module-name-as-directory.js │ │ ├── non-relative-module-name-as-file-ts-files-not-loaded.js │ │ ├── non-relative-module-name-as-file.js │ │ ├── non-relative-preserveSymlinks.js │ │ ├── non-relative-preserves-originalPath-on-cache-hit.js │ │ ├── non-relative-uses-originalPath-for-caching.js │ │ ├── relative-module-name-as-directory-load-index.js │ │ ├── relative-module-name-as-directory-with-invalid-typings.js │ │ ├── relative-module-name-as-directory.js │ │ ├── relative-module-name-as-file.js │ │ ├── reused-program-keeps-errors.js │ │ ├── same-file-is-referenced-using-absolute-and-relative-names.js │ │ ├── should-file-all-modules.js │ │ ├── should-find-file-referenced-via-absolute-and-relative-names.js │ │ ├── should-find-modules-in-node_modules.js │ │ ├── two-files-exist-on-disk-that-differs-only-in-casing.js │ │ ├── two-files-in-program-differ-only-in-drive-letter-in-their-names.js │ │ ├── two-files-used-in-program-differ-only-in-casing-(imports).js │ │ ├── two-files-used-in-program-differ-only-in-casing-(imports,-relative-module-names).js │ │ ├── two-files-used-in-program-differ-only-in-casing-(tripleslash-references).js │ │ ├── type-reference-from-primary-location.js │ │ ├── type-reference-from-secondary-location.js │ │ ├── type-reference-overrides-secondary-location.js │ │ └── typeReferenceDirective-is-relative-and-in-a-sibling-folder.js │ ├── moduleResolutionAsTypeReferenceDirective.js │ ├── moduleResolutionAsTypeReferenceDirective.symbols │ ├── moduleResolutionAsTypeReferenceDirective.trace.json │ ├── moduleResolutionAsTypeReferenceDirective.types │ ├── moduleResolutionAsTypeReferenceDirectiveAmbient.js │ ├── moduleResolutionAsTypeReferenceDirectiveAmbient.symbols │ ├── moduleResolutionAsTypeReferenceDirectiveAmbient.trace.json │ ├── moduleResolutionAsTypeReferenceDirectiveAmbient.types │ ├── moduleResolutionAsTypeReferenceDirectiveScoped.errors.txt │ ├── moduleResolutionAsTypeReferenceDirectiveScoped.js │ ├── moduleResolutionAsTypeReferenceDirectiveScoped.symbols │ ├── moduleResolutionAsTypeReferenceDirectiveScoped.trace.json │ ├── moduleResolutionAsTypeReferenceDirectiveScoped.types │ ├── moduleResolutionNoResolve.js │ ├── moduleResolutionNoResolve.symbols │ ├── moduleResolutionNoResolve.types │ ├── moduleResolutionNoTsCJS.errors.txt │ ├── moduleResolutionNoTsCJS.js │ ├── moduleResolutionNoTsCJS.symbols │ ├── moduleResolutionNoTsCJS.types │ ├── moduleResolutionNoTsESM.errors.txt │ ├── moduleResolutionNoTsESM.js │ ├── moduleResolutionNoTsESM.symbols │ ├── moduleResolutionNoTsESM.types │ ├── moduleResolutionPackageIdWithRelativeAndAbsolutePath.errors.txt │ ├── moduleResolutionPackageIdWithRelativeAndAbsolutePath.js │ ├── moduleResolutionPackageIdWithRelativeAndAbsolutePath.symbols │ ├── moduleResolutionPackageIdWithRelativeAndAbsolutePath.trace.json │ ├── moduleResolutionPackageIdWithRelativeAndAbsolutePath.types │ ├── moduleResolutionWithExtensions.js │ ├── moduleResolutionWithExtensions.symbols │ ├── moduleResolutionWithExtensions.trace.json │ ├── moduleResolutionWithExtensions.types │ ├── moduleResolutionWithExtensions_notSupported.errors.txt │ ├── moduleResolutionWithExtensions_notSupported.js │ ├── moduleResolutionWithExtensions_notSupported.symbols │ ├── moduleResolutionWithExtensions_notSupported.trace.json │ ├── moduleResolutionWithExtensions_notSupported.types │ ├── moduleResolutionWithExtensions_notSupported2.errors.txt │ ├── moduleResolutionWithExtensions_notSupported2.js │ ├── moduleResolutionWithExtensions_notSupported2.symbols │ ├── moduleResolutionWithExtensions_notSupported2.trace.json │ ├── moduleResolutionWithExtensions_notSupported2.types │ ├── moduleResolutionWithExtensions_notSupported3.js │ ├── moduleResolutionWithExtensions_notSupported3.symbols │ ├── moduleResolutionWithExtensions_notSupported3.trace.json │ ├── moduleResolutionWithExtensions_notSupported3.types │ ├── moduleResolutionWithExtensions_unexpected.js │ ├── moduleResolutionWithExtensions_unexpected.symbols │ ├── moduleResolutionWithExtensions_unexpected.trace.json │ ├── moduleResolutionWithExtensions_unexpected.types │ ├── moduleResolutionWithExtensions_unexpected2.errors.txt │ ├── moduleResolutionWithExtensions_unexpected2.js │ ├── moduleResolutionWithExtensions_unexpected2.symbols │ ├── moduleResolutionWithExtensions_unexpected2.trace.json │ ├── moduleResolutionWithExtensions_unexpected2.types │ ├── moduleResolutionWithExtensions_withAmbientPresent.js │ ├── moduleResolutionWithExtensions_withAmbientPresent.symbols │ ├── moduleResolutionWithExtensions_withAmbientPresent.trace.json │ ├── moduleResolutionWithExtensions_withAmbientPresent.types │ ├── moduleResolutionWithExtensions_withPaths.errors.txt │ ├── moduleResolutionWithExtensions_withPaths.js │ ├── moduleResolutionWithExtensions_withPaths.symbols │ ├── moduleResolutionWithExtensions_withPaths.trace.json │ ├── moduleResolutionWithExtensions_withPaths.types │ ├── moduleResolutionWithModule(module=commonjs,moduleresolution=node16).errors.txt │ ├── moduleResolutionWithModule(module=commonjs,moduleresolution=node16).js │ ├── moduleResolutionWithModule(module=commonjs,moduleresolution=node16).symbols │ ├── moduleResolutionWithModule(module=commonjs,moduleresolution=node16).types │ ├── moduleResolutionWithModule(module=commonjs,moduleresolution=nodenext).errors.txt │ ├── moduleResolutionWithModule(module=commonjs,moduleresolution=nodenext).js │ ├── moduleResolutionWithModule(module=commonjs,moduleresolution=nodenext).symbols │ ├── moduleResolutionWithModule(module=commonjs,moduleresolution=nodenext).types │ ├── moduleResolutionWithModule(module=node16,moduleresolution=node16).js │ ├── moduleResolutionWithModule(module=node16,moduleresolution=node16).symbols │ ├── moduleResolutionWithModule(module=node16,moduleresolution=node16).types │ ├── moduleResolutionWithModule(module=node16,moduleresolution=nodenext).js │ ├── moduleResolutionWithModule(module=node16,moduleresolution=nodenext).symbols │ ├── moduleResolutionWithModule(module=node16,moduleresolution=nodenext).types │ ├── moduleResolutionWithModule(module=node18,moduleresolution=node16).js │ ├── moduleResolutionWithModule(module=node18,moduleresolution=node16).symbols │ ├── moduleResolutionWithModule(module=node18,moduleresolution=node16).types │ ├── moduleResolutionWithModule(module=node18,moduleresolution=nodenext).js │ ├── moduleResolutionWithModule(module=node18,moduleresolution=nodenext).symbols │ ├── moduleResolutionWithModule(module=node18,moduleresolution=nodenext).types │ ├── moduleResolutionWithModule(module=node20,moduleresolution=node16).js │ ├── moduleResolutionWithModule(module=node20,moduleresolution=node16).symbols │ ├── moduleResolutionWithModule(module=node20,moduleresolution=node16).types │ ├── moduleResolutionWithModule(module=node20,moduleresolution=nodenext).js │ ├── moduleResolutionWithModule(module=node20,moduleresolution=nodenext).symbols │ ├── moduleResolutionWithModule(module=node20,moduleresolution=nodenext).types │ ├── moduleResolutionWithModule(module=nodenext,moduleresolution=node16).js │ ├── moduleResolutionWithModule(module=nodenext,moduleresolution=node16).symbols │ ├── moduleResolutionWithModule(module=nodenext,moduleresolution=node16).types │ ├── moduleResolutionWithModule(module=nodenext,moduleresolution=nodenext).js │ ├── moduleResolutionWithModule(module=nodenext,moduleresolution=nodenext).symbols │ ├── moduleResolutionWithModule(module=nodenext,moduleresolution=nodenext).types │ ├── moduleResolutionWithRequire.js │ ├── moduleResolutionWithRequire.symbols │ ├── moduleResolutionWithRequire.trace.json │ ├── moduleResolutionWithRequire.types │ ├── moduleResolutionWithRequireAndImport.js │ ├── moduleResolutionWithRequireAndImport.symbols │ ├── moduleResolutionWithRequireAndImport.trace.json │ ├── moduleResolutionWithRequireAndImport.types │ ├── moduleResolutionWithSuffixes_empty.errors.txt │ ├── moduleResolutionWithSuffixes_empty.js │ ├── moduleResolutionWithSuffixes_empty.symbols │ ├── moduleResolutionWithSuffixes_empty.trace.json │ ├── moduleResolutionWithSuffixes_empty.types │ ├── moduleResolutionWithSuffixes_notSpecified.errors.txt │ ├── moduleResolutionWithSuffixes_notSpecified.js │ ├── moduleResolutionWithSuffixes_notSpecified.symbols │ ├── moduleResolutionWithSuffixes_notSpecified.trace.json │ ├── moduleResolutionWithSuffixes_notSpecified.types │ ├── moduleResolutionWithSuffixes_one.errors.txt │ ├── moduleResolutionWithSuffixes_one.js │ ├── moduleResolutionWithSuffixes_one.symbols │ ├── moduleResolutionWithSuffixes_one.trace.json │ ├── moduleResolutionWithSuffixes_one.types │ ├── moduleResolutionWithSuffixes_oneBlank.errors.txt │ ├── moduleResolutionWithSuffixes_oneBlank.js │ ├── moduleResolutionWithSuffixes_oneBlank.symbols │ ├── moduleResolutionWithSuffixes_oneBlank.trace.json │ ├── moduleResolutionWithSuffixes_oneBlank.types │ ├── moduleResolutionWithSuffixes_oneNotFound.errors.txt │ ├── moduleResolutionWithSuffixes_oneNotFound.js │ ├── moduleResolutionWithSuffixes_oneNotFound.symbols │ ├── moduleResolutionWithSuffixes_oneNotFound.trace.json │ ├── moduleResolutionWithSuffixes_oneNotFound.types │ ├── moduleResolutionWithSuffixes_one_dirModuleWithIndex.errors.txt │ ├── moduleResolutionWithSuffixes_one_dirModuleWithIndex.js │ ├── moduleResolutionWithSuffixes_one_dirModuleWithIndex.symbols │ ├── moduleResolutionWithSuffixes_one_dirModuleWithIndex.trace.json │ ├── moduleResolutionWithSuffixes_one_dirModuleWithIndex.types │ ├── moduleResolutionWithSuffixes_one_externalModule.errors.txt │ ├── moduleResolutionWithSuffixes_one_externalModule.js │ ├── moduleResolutionWithSuffixes_one_externalModule.symbols │ ├── moduleResolutionWithSuffixes_one_externalModule.trace.json │ ├── moduleResolutionWithSuffixes_one_externalModule.types │ ├── moduleResolutionWithSuffixes_one_externalModulePath.errors.txt │ ├── moduleResolutionWithSuffixes_one_externalModulePath.js │ ├── moduleResolutionWithSuffixes_one_externalModulePath.symbols │ ├── moduleResolutionWithSuffixes_one_externalModulePath.trace.json │ ├── moduleResolutionWithSuffixes_one_externalModulePath.types │ ├── moduleResolutionWithSuffixes_one_externalModule_withPaths.errors.txt │ ├── moduleResolutionWithSuffixes_one_externalModule_withPaths.js │ ├── moduleResolutionWithSuffixes_one_externalModule_withPaths.symbols │ ├── moduleResolutionWithSuffixes_one_externalModule_withPaths.trace.json │ ├── moduleResolutionWithSuffixes_one_externalModule_withPaths.types │ ├── moduleResolutionWithSuffixes_one_externalTSModule.errors.txt │ ├── moduleResolutionWithSuffixes_one_externalTSModule.js │ ├── moduleResolutionWithSuffixes_one_externalTSModule.symbols │ ├── moduleResolutionWithSuffixes_one_externalTSModule.trace.json │ ├── moduleResolutionWithSuffixes_one_externalTSModule.types │ ├── moduleResolutionWithSuffixes_one_jsModule.errors.txt │ ├── moduleResolutionWithSuffixes_one_jsModule.js │ ├── moduleResolutionWithSuffixes_one_jsModule.symbols │ ├── moduleResolutionWithSuffixes_one_jsModule.trace.json │ ├── moduleResolutionWithSuffixes_one_jsModule.types │ ├── moduleResolutionWithSuffixes_one_jsonModule.errors.txt │ ├── moduleResolutionWithSuffixes_one_jsonModule.js │ ├── moduleResolutionWithSuffixes_one_jsonModule.symbols │ ├── moduleResolutionWithSuffixes_one_jsonModule.trace.json │ ├── moduleResolutionWithSuffixes_one_jsonModule.types │ ├── moduleResolutionWithSuffixes_threeLastIsBlank1.errors.txt │ ├── moduleResolutionWithSuffixes_threeLastIsBlank1.js │ ├── moduleResolutionWithSuffixes_threeLastIsBlank1.symbols │ ├── moduleResolutionWithSuffixes_threeLastIsBlank1.trace.json │ ├── moduleResolutionWithSuffixes_threeLastIsBlank1.types │ ├── moduleResolutionWithSuffixes_threeLastIsBlank2.errors.txt │ ├── moduleResolutionWithSuffixes_threeLastIsBlank2.js │ ├── moduleResolutionWithSuffixes_threeLastIsBlank2.symbols │ ├── moduleResolutionWithSuffixes_threeLastIsBlank2.trace.json │ ├── moduleResolutionWithSuffixes_threeLastIsBlank2.types │ ├── moduleResolutionWithSuffixes_threeLastIsBlank3.errors.txt │ ├── moduleResolutionWithSuffixes_threeLastIsBlank3.js │ ├── moduleResolutionWithSuffixes_threeLastIsBlank3.symbols │ ├── moduleResolutionWithSuffixes_threeLastIsBlank3.trace.json │ ├── moduleResolutionWithSuffixes_threeLastIsBlank3.types │ ├── moduleResolutionWithSuffixes_threeLastIsBlank4.errors.txt │ ├── moduleResolutionWithSuffixes_threeLastIsBlank4.js │ ├── moduleResolutionWithSuffixes_threeLastIsBlank4.symbols │ ├── moduleResolutionWithSuffixes_threeLastIsBlank4.trace.json │ ├── moduleResolutionWithSuffixes_threeLastIsBlank4.types │ ├── moduleResolutionWithSymlinks.errors.txt │ ├── moduleResolutionWithSymlinks.js │ ├── moduleResolutionWithSymlinks.symbols │ ├── moduleResolutionWithSymlinks.trace.json │ ├── moduleResolutionWithSymlinks.types │ ├── moduleResolutionWithSymlinks_notInNodeModules.js │ ├── moduleResolutionWithSymlinks_notInNodeModules.symbols │ ├── moduleResolutionWithSymlinks_notInNodeModules.trace.json │ ├── moduleResolutionWithSymlinks_notInNodeModules.types │ ├── moduleResolutionWithSymlinks_preserveSymlinks.errors.txt │ ├── moduleResolutionWithSymlinks_preserveSymlinks.js │ ├── moduleResolutionWithSymlinks_preserveSymlinks.symbols │ ├── moduleResolutionWithSymlinks_preserveSymlinks.trace.json │ ├── moduleResolutionWithSymlinks_preserveSymlinks.types │ ├── moduleResolutionWithSymlinks_referenceTypes.js │ ├── moduleResolutionWithSymlinks_referenceTypes.symbols │ ├── moduleResolutionWithSymlinks_referenceTypes.trace.json │ ├── moduleResolutionWithSymlinks_referenceTypes.types │ ├── moduleResolutionWithSymlinks_withOutDir.errors.txt │ ├── moduleResolutionWithSymlinks_withOutDir.js │ ├── moduleResolutionWithSymlinks_withOutDir.symbols │ ├── moduleResolutionWithSymlinks_withOutDir.trace.json │ ├── moduleResolutionWithSymlinks_withOutDir.types │ ├── moduleResolutionWithoutExtension1.errors.txt │ ├── moduleResolutionWithoutExtension1.js │ ├── moduleResolutionWithoutExtension1.symbols │ ├── moduleResolutionWithoutExtension1.types │ ├── moduleResolutionWithoutExtension2.errors.txt │ ├── moduleResolutionWithoutExtension2.js │ ├── moduleResolutionWithoutExtension2.symbols │ ├── moduleResolutionWithoutExtension2.types │ ├── moduleResolutionWithoutExtension3(module=node18).errors.txt │ ├── moduleResolutionWithoutExtension3(module=node18).js │ ├── moduleResolutionWithoutExtension3(module=node18).symbols │ ├── moduleResolutionWithoutExtension3(module=node18).types │ ├── moduleResolutionWithoutExtension3(module=node20).errors.txt │ ├── moduleResolutionWithoutExtension3(module=node20).js │ ├── moduleResolutionWithoutExtension3(module=node20).symbols │ ├── moduleResolutionWithoutExtension3(module=node20).types │ ├── moduleResolutionWithoutExtension3(module=nodenext).errors.txt │ ├── moduleResolutionWithoutExtension3(module=nodenext).js │ ├── moduleResolutionWithoutExtension3(module=nodenext).symbols │ ├── moduleResolutionWithoutExtension3(module=nodenext).types │ ├── moduleResolutionWithoutExtension4(module=node18).errors.txt │ ├── moduleResolutionWithoutExtension4(module=node18).js │ ├── moduleResolutionWithoutExtension4(module=node18).symbols │ ├── moduleResolutionWithoutExtension4(module=node18).types │ ├── moduleResolutionWithoutExtension4(module=node20).errors.txt │ ├── moduleResolutionWithoutExtension4(module=node20).js │ ├── moduleResolutionWithoutExtension4(module=node20).symbols │ ├── moduleResolutionWithoutExtension4(module=node20).types │ ├── moduleResolutionWithoutExtension4(module=nodenext).errors.txt │ ├── moduleResolutionWithoutExtension4(module=nodenext).js │ ├── moduleResolutionWithoutExtension4(module=nodenext).symbols │ ├── moduleResolutionWithoutExtension4(module=nodenext).types │ ├── moduleResolutionWithoutExtension5.errors.txt │ ├── moduleResolutionWithoutExtension5.js │ ├── moduleResolutionWithoutExtension5.symbols │ ├── moduleResolutionWithoutExtension5.types │ ├── moduleResolutionWithoutExtension6.errors.txt │ ├── moduleResolutionWithoutExtension6.js │ ├── moduleResolutionWithoutExtension6.symbols │ ├── moduleResolutionWithoutExtension6.types │ ├── moduleResolutionWithoutExtension7.errors.txt │ ├── moduleResolutionWithoutExtension7.js │ ├── moduleResolutionWithoutExtension7.symbols │ ├── moduleResolutionWithoutExtension7.types │ ├── moduleResolutionWithoutExtension8.errors.txt │ ├── moduleResolutionWithoutExtension8.js │ ├── moduleResolutionWithoutExtension8.symbols │ ├── moduleResolutionWithoutExtension8.types │ ├── moduleResolution_automaticTypeDirectiveNames.js │ ├── moduleResolution_automaticTypeDirectiveNames.symbols │ ├── moduleResolution_automaticTypeDirectiveNames.types │ ├── moduleResolution_classicPrefersTs.errors.txt │ ├── moduleResolution_classicPrefersTs.symbols │ ├── moduleResolution_classicPrefersTs.types │ ├── moduleResolution_explicitNodeModulesImport.js │ ├── moduleResolution_explicitNodeModulesImport.symbols │ ├── moduleResolution_explicitNodeModulesImport.types │ ├── moduleResolution_explicitNodeModulesImport_implicitAny.js │ ├── moduleResolution_explicitNodeModulesImport_implicitAny.symbols │ ├── moduleResolution_explicitNodeModulesImport_implicitAny.types │ ├── moduleResolution_noLeadingDot.js │ ├── moduleResolution_noLeadingDot.symbols │ ├── moduleResolution_noLeadingDot.types │ ├── moduleResolution_packageJson_notAtPackageRoot.js │ ├── moduleResolution_packageJson_notAtPackageRoot.symbols │ ├── moduleResolution_packageJson_notAtPackageRoot.trace.json │ ├── moduleResolution_packageJson_notAtPackageRoot.types │ ├── moduleResolution_packageJson_notAtPackageRoot_fakeScopedPackage.js │ ├── moduleResolution_packageJson_notAtPackageRoot_fakeScopedPackage.symbols │ ├── moduleResolution_packageJson_notAtPackageRoot_fakeScopedPackage.trace.json │ ├── moduleResolution_packageJson_notAtPackageRoot_fakeScopedPackage.types │ ├── moduleResolution_packageJson_scopedPackage.js │ ├── moduleResolution_packageJson_scopedPackage.symbols │ ├── moduleResolution_packageJson_scopedPackage.trace.json │ ├── moduleResolution_packageJson_scopedPackage.types │ ├── moduleResolution_packageJson_yesAtPackageRoot.js │ ├── moduleResolution_packageJson_yesAtPackageRoot.symbols │ ├── moduleResolution_packageJson_yesAtPackageRoot.trace.json │ ├── moduleResolution_packageJson_yesAtPackageRoot.types │ ├── moduleResolution_packageJson_yesAtPackageRoot_fakeScopedPackage.js │ ├── moduleResolution_packageJson_yesAtPackageRoot_fakeScopedPackage.symbols │ ├── moduleResolution_packageJson_yesAtPackageRoot_fakeScopedPackage.trace.json │ ├── moduleResolution_packageJson_yesAtPackageRoot_fakeScopedPackage.types │ ├── moduleResolution_packageJson_yesAtPackageRoot_mainFieldInSubDirectory.js │ ├── moduleResolution_packageJson_yesAtPackageRoot_mainFieldInSubDirectory.symbols │ ├── moduleResolution_packageJson_yesAtPackageRoot_mainFieldInSubDirectory.trace.json │ ├── moduleResolution_packageJson_yesAtPackageRoot_mainFieldInSubDirectory.types │ ├── moduleResolution_relativeImportJsFile.js │ ├── moduleResolution_relativeImportJsFile.symbols │ ├── moduleResolution_relativeImportJsFile.types │ ├── moduleResolution_relativeImportJsFile_noImplicitAny.errors.txt │ ├── moduleResolution_relativeImportJsFile_noImplicitAny.js │ ├── moduleResolution_relativeImportJsFile_noImplicitAny.symbols │ ├── moduleResolution_relativeImportJsFile_noImplicitAny.types │ ├── moduleSameValueDuplicateExportedBindings1.js │ ├── moduleSameValueDuplicateExportedBindings1.symbols │ ├── moduleSameValueDuplicateExportedBindings1.types │ ├── moduleSameValueDuplicateExportedBindings2.js │ ├── moduleSameValueDuplicateExportedBindings2.symbols │ ├── moduleSameValueDuplicateExportedBindings2.types │ ├── moduleScoping.js │ ├── moduleScoping.symbols │ ├── moduleScoping.types │ ├── moduleScopingBug.js │ ├── moduleScopingBug.symbols │ ├── moduleScopingBug.types │ ├── moduleSharesNameWithImportDeclarationInsideIt.js │ ├── moduleSharesNameWithImportDeclarationInsideIt.symbols │ ├── moduleSharesNameWithImportDeclarationInsideIt.types │ ├── moduleSharesNameWithImportDeclarationInsideIt2.js │ ├── moduleSharesNameWithImportDeclarationInsideIt2.symbols │ ├── moduleSharesNameWithImportDeclarationInsideIt2.types │ ├── moduleSharesNameWithImportDeclarationInsideIt3.errors.txt │ ├── moduleSharesNameWithImportDeclarationInsideIt3.js │ ├── moduleSharesNameWithImportDeclarationInsideIt3.symbols │ ├── moduleSharesNameWithImportDeclarationInsideIt3.types │ ├── moduleSharesNameWithImportDeclarationInsideIt4.js │ ├── moduleSharesNameWithImportDeclarationInsideIt4.symbols │ ├── moduleSharesNameWithImportDeclarationInsideIt4.types │ ├── moduleSharesNameWithImportDeclarationInsideIt5.errors.txt │ ├── moduleSharesNameWithImportDeclarationInsideIt5.js │ ├── moduleSharesNameWithImportDeclarationInsideIt5.symbols │ ├── moduleSharesNameWithImportDeclarationInsideIt5.types │ ├── moduleSharesNameWithImportDeclarationInsideIt6.js │ ├── moduleSharesNameWithImportDeclarationInsideIt6.symbols │ ├── moduleSharesNameWithImportDeclarationInsideIt6.types │ ├── moduleSymbolMerging.errors.txt │ ├── moduleSymbolMerging.js │ ├── moduleSymbolMerging.symbols │ ├── moduleSymbolMerging.types │ ├── moduleUnassignedVariable.js │ ├── moduleUnassignedVariable.symbols │ ├── moduleUnassignedVariable.types │ ├── moduleVariableArrayIndexer.errors.txt │ ├── moduleVariableArrayIndexer.js │ ├── moduleVariableArrayIndexer.symbols │ ├── moduleVariableArrayIndexer.types │ ├── moduleVariables.js │ ├── moduleVariables.symbols │ ├── moduleVariables.types │ ├── moduleVisibilityTest1.js │ ├── moduleVisibilityTest1.symbols │ ├── moduleVisibilityTest1.types │ ├── moduleVisibilityTest2.errors.txt │ ├── moduleVisibilityTest2.js │ ├── moduleVisibilityTest2.symbols │ ├── moduleVisibilityTest2.types │ ├── moduleVisibilityTest3.errors.txt │ ├── moduleVisibilityTest3.js │ ├── moduleVisibilityTest3.symbols │ ├── moduleVisibilityTest3.types │ ├── moduleVisibilityTest4.errors.txt │ ├── moduleVisibilityTest4.js │ ├── moduleVisibilityTest4.symbols │ ├── moduleVisibilityTest4.types │ ├── moduleWithNoValuesAsType.errors.txt │ ├── moduleWithNoValuesAsType.js │ ├── moduleWithNoValuesAsType.symbols │ ├── moduleWithNoValuesAsType.types │ ├── moduleWithStatementsOfEveryKind.errors.txt │ ├── moduleWithStatementsOfEveryKind.js │ ├── moduleWithStatementsOfEveryKind.symbols │ ├── moduleWithStatementsOfEveryKind.types │ ├── moduleWithTryStatement1.js │ ├── moduleWithTryStatement1.symbols │ ├── moduleWithTryStatement1.types │ ├── moduleWithValuesAsType.errors.txt │ ├── moduleWithValuesAsType.js │ ├── moduleWithValuesAsType.symbols │ ├── moduleWithValuesAsType.types │ ├── module_augmentExistingAmbientVariable.errors.txt │ ├── module_augmentExistingAmbientVariable.js │ ├── module_augmentExistingAmbientVariable.symbols │ ├── module_augmentExistingAmbientVariable.types │ ├── module_augmentExistingVariable.errors.txt │ ├── module_augmentExistingVariable.js │ ├── module_augmentExistingVariable.symbols │ ├── module_augmentExistingVariable.types │ ├── module_augmentUninstantiatedModule.js │ ├── module_augmentUninstantiatedModule.symbols │ ├── module_augmentUninstantiatedModule.types │ ├── module_augmentUninstantiatedModule2.js │ ├── module_augmentUninstantiatedModule2.symbols │ ├── module_augmentUninstantiatedModule2.types │ ├── moduledecl(target=es2015).js │ ├── moduledecl(target=es2015).symbols │ ├── moduledecl(target=es2015).types │ ├── moduledecl(target=es5).errors.txt │ ├── moduledecl(target=es5).js │ ├── moduledecl(target=es5).symbols │ ├── moduledecl(target=es5).types │ ├── multiCallOverloads.js │ ├── multiCallOverloads.symbols │ ├── multiCallOverloads.types │ ├── multiExtendsSplitInterfaces1.js │ ├── multiExtendsSplitInterfaces1.symbols │ ├── multiExtendsSplitInterfaces1.types │ ├── multiExtendsSplitInterfaces2.errors.txt │ ├── multiExtendsSplitInterfaces2.js │ ├── multiExtendsSplitInterfaces2.symbols │ ├── multiExtendsSplitInterfaces2.types │ ├── multiImportExport.js │ ├── multiImportExport.symbols │ ├── multiImportExport.types │ ├── multiLineContextDiagnosticWithPretty.errors.txt │ ├── multiLineContextDiagnosticWithPretty.js │ ├── multiLineContextDiagnosticWithPretty.symbols │ ├── multiLineContextDiagnosticWithPretty.types │ ├── multiLineErrors.errors.txt │ ├── multiLineErrors.js │ ├── multiLineErrors.symbols │ ├── multiLineErrors.types │ ├── multiLinePropertyAccessAndArrowFunctionIndent1.errors.txt │ ├── multiLinePropertyAccessAndArrowFunctionIndent1.js │ ├── multiLinePropertyAccessAndArrowFunctionIndent1.symbols │ ├── multiLinePropertyAccessAndArrowFunctionIndent1.types │ ├── multiModuleClodule1.js │ ├── multiModuleClodule1.symbols │ ├── multiModuleClodule1.types │ ├── multiModuleFundule1.js │ ├── multiModuleFundule1.symbols │ ├── multiModuleFundule1.types │ ├── multiSignatureTypeInference.symbols │ ├── multiSignatureTypeInference.types │ ├── multiline.errors.txt │ ├── multiline.js │ ├── multiline.symbols │ ├── multiline.types │ ├── multipleBaseInterfaesWithIncompatibleProperties.errors.txt │ ├── multipleBaseInterfaesWithIncompatibleProperties.js │ ├── multipleBaseInterfaesWithIncompatibleProperties.symbols │ ├── multipleBaseInterfaesWithIncompatibleProperties.types │ ├── multipleBaseInterfaesWithIncompatibleProperties2(exactoptionalpropertytypes=false).symbols │ ├── multipleBaseInterfaesWithIncompatibleProperties2(exactoptionalpropertytypes=false).types │ ├── multipleBaseInterfaesWithIncompatibleProperties2(exactoptionalpropertytypes=true).errors.txt │ ├── multipleBaseInterfaesWithIncompatibleProperties2(exactoptionalpropertytypes=true).symbols │ ├── multipleBaseInterfaesWithIncompatibleProperties2(exactoptionalpropertytypes=true).types │ ├── multipleClassPropertyModifiers.errors.txt │ ├── multipleClassPropertyModifiers.js │ ├── multipleClassPropertyModifiers.symbols │ ├── multipleClassPropertyModifiers.types │ ├── multipleClassPropertyModifiersErrors.errors.txt │ ├── multipleClassPropertyModifiersErrors.js │ ├── multipleClassPropertyModifiersErrors.symbols │ ├── multipleClassPropertyModifiersErrors.types │ ├── multipleDeclarations.errors.txt │ ├── multipleDeclarations.js │ ├── multipleDeclarations.symbols │ ├── multipleDeclarations.types │ ├── multipleDefaultExports01(target=es2015).errors.txt │ ├── multipleDefaultExports01(target=es2015).js │ ├── multipleDefaultExports01(target=es2015).symbols │ ├── multipleDefaultExports01(target=es2015).types │ ├── multipleDefaultExports01(target=es5).errors.txt │ ├── multipleDefaultExports01(target=es5).js │ ├── multipleDefaultExports01(target=es5).symbols │ ├── multipleDefaultExports01(target=es5).types │ ├── multipleDefaultExports02(target=es2015).errors.txt │ ├── multipleDefaultExports02(target=es2015).js │ ├── multipleDefaultExports02(target=es2015).symbols │ ├── multipleDefaultExports02(target=es2015).types │ ├── multipleDefaultExports02(target=es5).errors.txt │ ├── multipleDefaultExports02(target=es5).js │ ├── multipleDefaultExports02(target=es5).symbols │ ├── multipleDefaultExports02(target=es5).types │ ├── multipleDefaultExports03(target=es2015).errors.txt │ ├── multipleDefaultExports03(target=es2015).js │ ├── multipleDefaultExports03(target=es2015).symbols │ ├── multipleDefaultExports03(target=es2015).types │ ├── multipleDefaultExports03(target=es5).errors.txt │ ├── multipleDefaultExports03(target=es5).js │ ├── multipleDefaultExports03(target=es5).symbols │ ├── multipleDefaultExports03(target=es5).types │ ├── multipleDefaultExports04(target=es2015).errors.txt │ ├── multipleDefaultExports04(target=es2015).js │ ├── multipleDefaultExports04(target=es2015).symbols │ ├── multipleDefaultExports04(target=es2015).types │ ├── multipleDefaultExports04(target=es5).errors.txt │ ├── multipleDefaultExports04(target=es5).js │ ├── multipleDefaultExports04(target=es5).symbols │ ├── multipleDefaultExports04(target=es5).types │ ├── multipleDefaultExports05(target=es2015).errors.txt │ ├── multipleDefaultExports05(target=es2015).js │ ├── multipleDefaultExports05(target=es2015).symbols │ ├── multipleDefaultExports05(target=es2015).types │ ├── multipleDefaultExports05(target=es5).errors.txt │ ├── multipleDefaultExports05(target=es5).js │ ├── multipleDefaultExports05(target=es5).symbols │ ├── multipleDefaultExports05(target=es5).types │ ├── multipleExportAssignments.errors.txt │ ├── multipleExportAssignments.js │ ├── multipleExportAssignments.symbols │ ├── multipleExportAssignments.types │ ├── multipleExportAssignmentsInAmbientDeclaration.errors.txt │ ├── multipleExportAssignmentsInAmbientDeclaration.js │ ├── multipleExportAssignmentsInAmbientDeclaration.symbols │ ├── multipleExportAssignmentsInAmbientDeclaration.types │ ├── multipleExportDefault1.errors.txt │ ├── multipleExportDefault1.js │ ├── multipleExportDefault1.symbols │ ├── multipleExportDefault1.types │ ├── multipleExportDefault2.errors.txt │ ├── multipleExportDefault2.js │ ├── multipleExportDefault2.symbols │ ├── multipleExportDefault2.types │ ├── multipleExportDefault3.errors.txt │ ├── multipleExportDefault3.js │ ├── multipleExportDefault3.symbols │ ├── multipleExportDefault3.types │ ├── multipleExportDefault4.errors.txt │ ├── multipleExportDefault4.js │ ├── multipleExportDefault4.symbols │ ├── multipleExportDefault4.types │ ├── multipleExportDefault5.errors.txt │ ├── multipleExportDefault5.js │ ├── multipleExportDefault5.symbols │ ├── multipleExportDefault5.types │ ├── multipleExportDefault6.errors.txt │ ├── multipleExportDefault6.js │ ├── multipleExportDefault6.symbols │ ├── multipleExportDefault6.types │ ├── multipleExports.errors.txt │ ├── multipleExports.js │ ├── multipleExports.symbols │ ├── multipleExports.types │ ├── multipleInferenceContexts.js │ ├── multipleInferenceContexts.symbols │ ├── multipleInferenceContexts.types │ ├── multipleInheritance.errors.txt │ ├── multipleInheritance.js │ ├── multipleInheritance.symbols │ ├── multipleInheritance.types │ ├── multipleNumericIndexers.errors.txt │ ├── multipleNumericIndexers.js │ ├── multipleNumericIndexers.symbols │ ├── multipleNumericIndexers.types │ ├── multipleStringIndexers.errors.txt │ ├── multipleStringIndexers.js │ ├── multipleStringIndexers.symbols │ ├── multipleStringIndexers.types │ ├── multivar.errors.txt │ ├── multivar.js │ ├── multivar.symbols │ ├── multivar.types │ ├── mutrec.errors.txt │ ├── mutrec.js │ ├── mutrec.symbols │ ├── mutrec.types │ ├── mutuallyRecursiveCallbacks.errors.txt │ ├── mutuallyRecursiveCallbacks.js │ ├── mutuallyRecursiveCallbacks.symbols │ ├── mutuallyRecursiveCallbacks.types │ ├── mutuallyRecursiveGenericBaseTypes1.errors.txt │ ├── mutuallyRecursiveGenericBaseTypes1.js │ ├── mutuallyRecursiveGenericBaseTypes1.symbols │ ├── mutuallyRecursiveGenericBaseTypes1.types │ ├── mutuallyRecursiveGenericBaseTypes2.errors.txt │ ├── mutuallyRecursiveGenericBaseTypes2.js │ ├── mutuallyRecursiveGenericBaseTypes2.symbols │ ├── mutuallyRecursiveGenericBaseTypes2.types │ ├── mutuallyRecursiveInference.errors.txt │ ├── mutuallyRecursiveInference.js │ ├── mutuallyRecursiveInference.symbols │ ├── mutuallyRecursiveInference.types │ ├── mutuallyRecursiveInterfaceDeclaration.js │ ├── mutuallyRecursiveInterfaceDeclaration.symbols │ ├── mutuallyRecursiveInterfaceDeclaration.types │ ├── nameCollision.errors.txt │ ├── nameCollision.js │ ├── nameCollision.symbols │ ├── nameCollision.types │ ├── nameCollisionWithBlockScopedVariable1.js │ ├── nameCollisionWithBlockScopedVariable1.symbols │ ├── nameCollisionWithBlockScopedVariable1.types │ ├── nameCollisions.errors.txt │ ├── nameCollisions.js │ ├── nameCollisions.symbols │ ├── nameCollisions.types │ ├── nameCollisionsInPropertyAssignments.js │ ├── nameCollisionsInPropertyAssignments.symbols │ ├── nameCollisionsInPropertyAssignments.types │ ├── nameDelimitedBySlashes.js │ ├── nameDelimitedBySlashes.symbols │ ├── nameDelimitedBySlashes.types │ ├── nameOrDottedSpan_classes.baseline │ ├── nameOrDottedSpan_stmts.baseline │ ├── nameWithFileExtension.js │ ├── nameWithFileExtension.symbols │ ├── nameWithFileExtension.types │ ├── nameWithRelativePaths.js │ ├── nameWithRelativePaths.symbols │ ├── nameWithRelativePaths.types │ ├── namedFunctionExpressionAssignedToClassProperty.js │ ├── namedFunctionExpressionAssignedToClassProperty.symbols │ ├── namedFunctionExpressionAssignedToClassProperty.types │ ├── namedFunctionExpressionCall.js │ ├── namedFunctionExpressionCall.symbols │ ├── namedFunctionExpressionCall.types │ ├── namedFunctionExpressionCallErrors.errors.txt │ ├── namedFunctionExpressionCallErrors.js │ ├── namedFunctionExpressionCallErrors.symbols │ ├── namedFunctionExpressionCallErrors.types │ ├── namedFunctionExpressionInModule.js │ ├── namedFunctionExpressionInModule.symbols │ ├── namedFunctionExpressionInModule.types │ ├── namedImportNonExistentName.errors.txt │ ├── namedImportNonExistentName.js │ ├── namedImportNonExistentName.symbols │ ├── namedImportNonExistentName.types │ ├── namedTupleMembers.js │ ├── namedTupleMembers.symbols │ ├── namedTupleMembers.types │ ├── namedTupleMembersErrors.errors.txt │ ├── namedTupleMembersErrors.js │ ├── namedTupleMembersErrors.symbols │ ├── namedTupleMembersErrors.types │ ├── namespaceAssignmentToRequireAlias.errors.txt │ ├── namespaceAssignmentToRequireAlias.js │ ├── namespaceAssignmentToRequireAlias.symbols │ ├── namespaceAssignmentToRequireAlias.types │ ├── namespaceDisambiguationInUnion.errors.txt │ ├── namespaceDisambiguationInUnion.js │ ├── namespaceDisambiguationInUnion.symbols │ ├── namespaceDisambiguationInUnion.types │ ├── namespaceImportTypeQuery.errors.txt │ ├── namespaceImportTypeQuery.js │ ├── namespaceImportTypeQuery.symbols │ ├── namespaceImportTypeQuery.types │ ├── namespaceImportTypeQuery2.js │ ├── namespaceImportTypeQuery2.symbols │ ├── namespaceImportTypeQuery2.types │ ├── namespaceImportTypeQuery3.errors.txt │ ├── namespaceImportTypeQuery3.js │ ├── namespaceImportTypeQuery3.symbols │ ├── namespaceImportTypeQuery3.types │ ├── namespaceImportTypeQuery4.errors.txt │ ├── namespaceImportTypeQuery4.js │ ├── namespaceImportTypeQuery4.symbols │ ├── namespaceImportTypeQuery4.types │ ├── namespaceMemberAccess.errors.txt │ ├── namespaceMemberAccess.js │ ├── namespaceMemberAccess.symbols │ ├── namespaceMemberAccess.types │ ├── namespaceMergedWithFunctionWithOverloadsUsage.errors.txt │ ├── namespaceMergedWithFunctionWithOverloadsUsage.js │ ├── namespaceMergedWithFunctionWithOverloadsUsage.symbols │ ├── namespaceMergedWithFunctionWithOverloadsUsage.types │ ├── namespaceMergedWithImportAliasNoCrash.errors.txt │ ├── namespaceMergedWithImportAliasNoCrash.js │ ├── namespaceMergedWithImportAliasNoCrash.symbols │ ├── namespaceMergedWithImportAliasNoCrash.types │ ├── namespaceNotMergedWithFunctionDefaultExport.errors.txt │ ├── namespaceNotMergedWithFunctionDefaultExport.symbols │ ├── namespaceNotMergedWithFunctionDefaultExport.types │ ├── namespaces1.js │ ├── namespaces1.symbols │ ├── namespaces1.types │ ├── namespaces2.js │ ├── namespaces2.symbols │ ├── namespaces2.types │ ├── namespacesDeclaration1.js │ ├── namespacesDeclaration1.symbols │ ├── namespacesDeclaration1.types │ ├── namespacesDeclaration2.errors.txt │ ├── namespacesDeclaration2.js │ ├── namespacesDeclaration2.symbols │ ├── namespacesDeclaration2.types │ ├── namespacesWithTypeAliasOnlyExportsMerge.js │ ├── namespacesWithTypeAliasOnlyExportsMerge.symbols │ ├── namespacesWithTypeAliasOnlyExportsMerge.types │ ├── nanEquality.errors.txt │ ├── nanEquality.js │ ├── nanEquality.symbols │ ├── nanEquality.types │ ├── narrowByBooleanComparison.symbols │ ├── narrowByBooleanComparison.types │ ├── narrowByClauseExpressionInSwitchTrue1.symbols │ ├── narrowByClauseExpressionInSwitchTrue1.types │ ├── narrowByClauseExpressionInSwitchTrue10.symbols │ ├── narrowByClauseExpressionInSwitchTrue10.types │ ├── narrowByClauseExpressionInSwitchTrue2.symbols │ ├── narrowByClauseExpressionInSwitchTrue2.types │ ├── narrowByClauseExpressionInSwitchTrue3.errors.txt │ ├── narrowByClauseExpressionInSwitchTrue3.symbols │ ├── narrowByClauseExpressionInSwitchTrue3.types │ ├── narrowByClauseExpressionInSwitchTrue4.symbols │ ├── narrowByClauseExpressionInSwitchTrue4.types │ ├── narrowByClauseExpressionInSwitchTrue5.symbols │ ├── narrowByClauseExpressionInSwitchTrue5.types │ ├── narrowByClauseExpressionInSwitchTrue6.errors.txt │ ├── narrowByClauseExpressionInSwitchTrue6.symbols │ ├── narrowByClauseExpressionInSwitchTrue6.types │ ├── narrowByClauseExpressionInSwitchTrue7.errors.txt │ ├── narrowByClauseExpressionInSwitchTrue7.symbols │ ├── narrowByClauseExpressionInSwitchTrue7.types │ ├── narrowByClauseExpressionInSwitchTrue8.symbols │ ├── narrowByClauseExpressionInSwitchTrue8.types │ ├── narrowByClauseExpressionInSwitchTrue9.symbols │ ├── narrowByClauseExpressionInSwitchTrue9.types │ ├── narrowByEquality.errors.txt │ ├── narrowByEquality.js │ ├── narrowByEquality.symbols │ ├── narrowByEquality.types │ ├── narrowByInstanceof.js │ ├── narrowByInstanceof.symbols │ ├── narrowByInstanceof.types │ ├── narrowByParenthesizedSwitchExpression.symbols │ ├── narrowByParenthesizedSwitchExpression.types │ ├── narrowBySwitchDiscriminantUndefinedCase1(exactoptionalpropertytypes=false,nouncheckedindexedaccess=false).symbols │ ├── narrowBySwitchDiscriminantUndefinedCase1(exactoptionalpropertytypes=false,nouncheckedindexedaccess=false).types │ ├── narrowBySwitchDiscriminantUndefinedCase1(exactoptionalpropertytypes=false,nouncheckedindexedaccess=true).symbols │ ├── narrowBySwitchDiscriminantUndefinedCase1(exactoptionalpropertytypes=false,nouncheckedindexedaccess=true).types │ ├── narrowBySwitchDiscriminantUndefinedCase1(exactoptionalpropertytypes=true,nouncheckedindexedaccess=false).symbols │ ├── narrowBySwitchDiscriminantUndefinedCase1(exactoptionalpropertytypes=true,nouncheckedindexedaccess=false).types │ ├── narrowBySwitchDiscriminantUndefinedCase1(exactoptionalpropertytypes=true,nouncheckedindexedaccess=true).symbols │ ├── narrowBySwitchDiscriminantUndefinedCase1(exactoptionalpropertytypes=true,nouncheckedindexedaccess=true).types │ ├── narrowCommaOperatorNestedWithinLHS.js │ ├── narrowCommaOperatorNestedWithinLHS.symbols │ ├── narrowCommaOperatorNestedWithinLHS.types │ ├── narrowExceptionVariableInCatchClause.errors.txt │ ├── narrowExceptionVariableInCatchClause.js │ ├── narrowExceptionVariableInCatchClause.symbols │ ├── narrowExceptionVariableInCatchClause.types │ ├── narrowFromAnyWithInstanceof.errors.txt │ ├── narrowFromAnyWithInstanceof.js │ ├── narrowFromAnyWithInstanceof.symbols │ ├── narrowFromAnyWithInstanceof.types │ ├── narrowFromAnyWithTypePredicate.errors.txt │ ├── narrowFromAnyWithTypePredicate.js │ ├── narrowFromAnyWithTypePredicate.symbols │ ├── narrowFromAnyWithTypePredicate.types │ ├── narrowRefinedConstLikeParameterBIndingElementNameInInnerScope.symbols │ ├── narrowRefinedConstLikeParameterBIndingElementNameInInnerScope.types │ ├── narrowSwitchOptionalChainContainmentEvolvingArrayNoCrash1.errors.txt │ ├── narrowSwitchOptionalChainContainmentEvolvingArrayNoCrash1.symbols │ ├── narrowSwitchOptionalChainContainmentEvolvingArrayNoCrash1.types │ ├── narrowTypeByInstanceof.errors.txt │ ├── narrowTypeByInstanceof.js │ ├── narrowTypeByInstanceof.symbols │ ├── narrowTypeByInstanceof.types │ ├── narrowUnknownByTypePredicate.symbols │ ├── narrowUnknownByTypePredicate.types │ ├── narrowUnknownByTypeofObject.js │ ├── narrowUnknownByTypeofObject.symbols │ ├── narrowUnknownByTypeofObject.types │ ├── narrowedConstInMethod.js │ ├── narrowedConstInMethod.symbols │ ├── narrowedConstInMethod.types │ ├── narrowedImports.js │ ├── narrowedImports.symbols │ ├── narrowedImports.types │ ├── narrowedImports_assumeInitialized.js │ ├── narrowedImports_assumeInitialized.symbols │ ├── narrowedImports_assumeInitialized.types │ ├── narrowingAssignmentReadonlyRespectsAssertion.js │ ├── narrowingAssignmentReadonlyRespectsAssertion.symbols │ ├── narrowingAssignmentReadonlyRespectsAssertion.types │ ├── narrowingByDiscriminantInLoop.js │ ├── narrowingByDiscriminantInLoop.symbols │ ├── narrowingByDiscriminantInLoop.types │ ├── narrowingByTypeofInSwitch.js │ ├── narrowingByTypeofInSwitch.symbols │ ├── narrowingByTypeofInSwitch.types │ ├── narrowingConstrainedTypeParameter.js │ ├── narrowingConstrainedTypeParameter.symbols │ ├── narrowingConstrainedTypeParameter.types │ ├── narrowingConstrainedTypeVariable.js │ ├── narrowingConstrainedTypeVariable.symbols │ ├── narrowingConstrainedTypeVariable.types │ ├── narrowingDestructuring.js │ ├── narrowingDestructuring.symbols │ ├── narrowingDestructuring.types │ ├── narrowingGenericTypeFromInstanceof01.errors.txt │ ├── narrowingGenericTypeFromInstanceof01.js │ ├── narrowingGenericTypeFromInstanceof01.symbols │ ├── narrowingGenericTypeFromInstanceof01.types │ ├── narrowingInCaseClauseAfterCaseClauseWithReturn.symbols │ ├── narrowingInCaseClauseAfterCaseClauseWithReturn.types │ ├── narrowingIntersection.js │ ├── narrowingIntersection.symbols │ ├── narrowingIntersection.types │ ├── narrowingMutualSubtypes.errors.txt │ ├── narrowingMutualSubtypes.js │ ├── narrowingMutualSubtypes.symbols │ ├── narrowingMutualSubtypes.types │ ├── narrowingNoInfer1.symbols │ ├── narrowingNoInfer1.types │ ├── narrowingOfDottedNames.errors.txt │ ├── narrowingOfDottedNames.js │ ├── narrowingOfDottedNames.symbols │ ├── narrowingOfDottedNames.types │ ├── narrowingOfQualifiedNames.errors.txt │ ├── narrowingOfQualifiedNames.js │ ├── narrowingOfQualifiedNames.symbols │ ├── narrowingOfQualifiedNames.types │ ├── narrowingOrderIndependent.js │ ├── narrowingOrderIndependent.symbols │ ├── narrowingOrderIndependent.types │ ├── narrowingPastLastAssignment.errors.txt │ ├── narrowingPastLastAssignment.symbols │ ├── narrowingPastLastAssignment.types │ ├── narrowingPastLastAssignmentInModule.symbols │ ├── narrowingPastLastAssignmentInModule.types │ ├── narrowingPlainJsNoCrash1.js │ ├── narrowingPlainJsNoCrash1.symbols │ ├── narrowingPlainJsNoCrash1.types │ ├── narrowingRestGenericCall.js │ ├── narrowingRestGenericCall.symbols │ ├── narrowingRestGenericCall.types │ ├── narrowingTruthyObject.errors.txt │ ├── narrowingTruthyObject.js │ ├── narrowingTruthyObject.symbols │ ├── narrowingTruthyObject.types │ ├── narrowingTypeofDiscriminant.js │ ├── narrowingTypeofDiscriminant.symbols │ ├── narrowingTypeofDiscriminant.types │ ├── narrowingTypeofFunction.js │ ├── narrowingTypeofFunction.symbols │ ├── narrowingTypeofFunction.types │ ├── narrowingTypeofObject.js │ ├── narrowingTypeofObject.symbols │ ├── narrowingTypeofObject.types │ ├── narrowingTypeofParenthesized1.symbols │ ├── narrowingTypeofParenthesized1.types │ ├── narrowingTypeofUndefined1.js │ ├── narrowingTypeofUndefined1.symbols │ ├── narrowingTypeofUndefined1.types │ ├── narrowingTypeofUndefined2.js │ ├── narrowingTypeofUndefined2.symbols │ ├── narrowingTypeofUndefined2.types │ ├── narrowingUnionToNeverAssigment.errors.txt │ ├── narrowingUnionToNeverAssigment.js │ ├── narrowingUnionToNeverAssigment.symbols │ ├── narrowingUnionToNeverAssigment.types │ ├── narrowingUnionToUnion.js │ ├── narrowingUnionToUnion.symbols │ ├── narrowingUnionToUnion.types │ ├── narrowingUnionWithBang.js │ ├── narrowingUnionWithBang.symbols │ ├── narrowingUnionWithBang.types │ ├── narrowingWithNonNullExpression.js │ ├── narrowingWithNonNullExpression.symbols │ ├── narrowingWithNonNullExpression.types │ ├── nativeToBoxedTypes.errors.txt │ ├── nativeToBoxedTypes.js │ ├── nativeToBoxedTypes.symbols │ ├── nativeToBoxedTypes.types │ ├── nearbyIdenticalGenericLambdasAssignable.js │ ├── nearbyIdenticalGenericLambdasAssignable.symbols │ ├── nearbyIdenticalGenericLambdasAssignable.types │ ├── negateOperatorInvalidOperations.errors.txt │ ├── negateOperatorInvalidOperations.js │ ├── negateOperatorInvalidOperations.symbols │ ├── negateOperatorInvalidOperations.types │ ├── negateOperatorWithAnyOtherType.errors.txt │ ├── negateOperatorWithAnyOtherType.js │ ├── negateOperatorWithAnyOtherType.symbols │ ├── negateOperatorWithAnyOtherType.types │ ├── negateOperatorWithBooleanType.errors.txt │ ├── negateOperatorWithBooleanType.js │ ├── negateOperatorWithBooleanType.symbols │ ├── negateOperatorWithBooleanType.types │ ├── negateOperatorWithEnumType.errors.txt │ ├── negateOperatorWithEnumType.js │ ├── negateOperatorWithEnumType.symbols │ ├── negateOperatorWithEnumType.types │ ├── negateOperatorWithNumberType.errors.txt │ ├── negateOperatorWithNumberType.js │ ├── negateOperatorWithNumberType.symbols │ ├── negateOperatorWithNumberType.types │ ├── negateOperatorWithStringType.errors.txt │ ├── negateOperatorWithStringType.js │ ├── negateOperatorWithStringType.symbols │ ├── negateOperatorWithStringType.types │ ├── negativeZero.js │ ├── negativeZero.symbols │ ├── negativeZero.types │ ├── nestedBlockScopedBindings1.js │ ├── nestedBlockScopedBindings1.symbols │ ├── nestedBlockScopedBindings1.types │ ├── nestedBlockScopedBindings10.js │ ├── nestedBlockScopedBindings10.symbols │ ├── nestedBlockScopedBindings10.types │ ├── nestedBlockScopedBindings11.js │ ├── nestedBlockScopedBindings11.symbols │ ├── nestedBlockScopedBindings11.types │ ├── nestedBlockScopedBindings12.js │ ├── nestedBlockScopedBindings12.symbols │ ├── nestedBlockScopedBindings12.types │ ├── nestedBlockScopedBindings13.js │ ├── nestedBlockScopedBindings13.symbols │ ├── nestedBlockScopedBindings13.types │ ├── nestedBlockScopedBindings14.js │ ├── nestedBlockScopedBindings14.symbols │ ├── nestedBlockScopedBindings14.types │ ├── nestedBlockScopedBindings15.js │ ├── nestedBlockScopedBindings15.symbols │ ├── nestedBlockScopedBindings15.types │ ├── nestedBlockScopedBindings16.js │ ├── nestedBlockScopedBindings16.symbols │ ├── nestedBlockScopedBindings16.types │ ├── nestedBlockScopedBindings2.js │ ├── nestedBlockScopedBindings2.symbols │ ├── nestedBlockScopedBindings2.types │ ├── nestedBlockScopedBindings3.js │ ├── nestedBlockScopedBindings3.symbols │ ├── nestedBlockScopedBindings3.types │ ├── nestedBlockScopedBindings4.js │ ├── nestedBlockScopedBindings4.symbols │ ├── nestedBlockScopedBindings4.types │ ├── nestedBlockScopedBindings5.js │ ├── nestedBlockScopedBindings5.symbols │ ├── nestedBlockScopedBindings5.types │ ├── nestedBlockScopedBindings6.js │ ├── nestedBlockScopedBindings6.symbols │ ├── nestedBlockScopedBindings6.types │ ├── nestedBlockScopedBindings7.js │ ├── nestedBlockScopedBindings7.symbols │ ├── nestedBlockScopedBindings7.types │ ├── nestedBlockScopedBindings8.js │ ├── nestedBlockScopedBindings8.symbols │ ├── nestedBlockScopedBindings8.types │ ├── nestedBlockScopedBindings9.js │ ├── nestedBlockScopedBindings9.symbols │ ├── nestedBlockScopedBindings9.types │ ├── nestedCallbackErrorNotFlattened.errors.txt │ ├── nestedCallbackErrorNotFlattened.js │ ├── nestedCallbackErrorNotFlattened.symbols │ ├── nestedCallbackErrorNotFlattened.types │ ├── nestedClassDeclaration.errors.txt │ ├── nestedClassDeclaration.js │ ├── nestedClassDeclaration.symbols │ ├── nestedClassDeclaration.types │ ├── nestedDestructuringOfRequire.errors.txt │ ├── nestedDestructuringOfRequire.js │ ├── nestedDestructuringOfRequire.symbols │ ├── nestedDestructuringOfRequire.types │ ├── nestedExcessPropertyChecking.errors.txt │ ├── nestedExcessPropertyChecking.js │ ├── nestedExcessPropertyChecking.symbols │ ├── nestedExcessPropertyChecking.types │ ├── nestedFreshLiteral.errors.txt │ ├── nestedFreshLiteral.js │ ├── nestedFreshLiteral.symbols │ ├── nestedFreshLiteral.types │ ├── nestedGenericConditionalTypeWithGenericImportType.js │ ├── nestedGenericConditionalTypeWithGenericImportType.symbols │ ├── nestedGenericConditionalTypeWithGenericImportType.types │ ├── nestedGenericSpreadInference.js │ ├── nestedGenericSpreadInference.symbols │ ├── nestedGenericSpreadInference.types │ ├── nestedGenerics.js │ ├── nestedGenerics.symbols │ ├── nestedGenerics.types │ ├── nestedGlobalNamespaceInClass.errors.txt │ ├── nestedGlobalNamespaceInClass.js │ ├── nestedGlobalNamespaceInClass.symbols │ ├── nestedGlobalNamespaceInClass.types │ ├── nestedHomomorphicMappedTypesWithArrayConstraint1.symbols │ ├── nestedHomomorphicMappedTypesWithArrayConstraint1.types │ ├── nestedIfStatement.errors.txt │ ├── nestedIfStatement.js │ ├── nestedIfStatement.symbols │ ├── nestedIfStatement.types │ ├── nestedIndexer.js │ ├── nestedIndexer.symbols │ ├── nestedIndexer.types │ ├── nestedInfinitelyExpandedRecursiveTypes.errors.txt │ ├── nestedInfinitelyExpandedRecursiveTypes.js │ ├── nestedInfinitelyExpandedRecursiveTypes.symbols │ ├── nestedInfinitelyExpandedRecursiveTypes.types │ ├── nestedLoopTypeGuards.errors.txt │ ├── nestedLoopTypeGuards.js │ ├── nestedLoopTypeGuards.symbols │ ├── nestedLoopTypeGuards.types │ ├── nestedLoopWithOnlyInnerLetCaptured(target=es2015).js │ ├── nestedLoopWithOnlyInnerLetCaptured(target=es2015).symbols │ ├── nestedLoopWithOnlyInnerLetCaptured(target=es2015).types │ ├── nestedLoopWithOnlyInnerLetCaptured(target=es5).errors.txt │ ├── nestedLoopWithOnlyInnerLetCaptured(target=es5).js │ ├── nestedLoopWithOnlyInnerLetCaptured(target=es5).symbols │ ├── nestedLoopWithOnlyInnerLetCaptured(target=es5).types │ ├── nestedLoops(target=es2015).js │ ├── nestedLoops(target=es2015).symbols │ ├── nestedLoops(target=es2015).types │ ├── nestedLoops(target=es5).errors.txt │ ├── nestedLoops(target=es5).js │ ├── nestedLoops(target=es5).symbols │ ├── nestedLoops(target=es5).types │ ├── nestedModulePrivateAccess.js │ ├── nestedModulePrivateAccess.symbols │ ├── nestedModulePrivateAccess.types │ ├── nestedModules.js │ ├── nestedModules.symbols │ ├── nestedModules.types │ ├── nestedNamespace.js │ ├── nestedNamespace.symbols │ ├── nestedNamespace.types │ ├── nestedObjectRest.js │ ├── nestedObjectRest.symbols │ ├── nestedObjectRest.types │ ├── nestedPackageJsonRedirect(moduleresolution=bundler).trace.json │ ├── nestedPackageJsonRedirect(moduleresolution=node16).errors.txt │ ├── nestedPackageJsonRedirect(moduleresolution=node16).trace.json │ ├── nestedPackageJsonRedirect(moduleresolution=nodenext).errors.txt │ ├── nestedPackageJsonRedirect(moduleresolution=nodenext).trace.json │ ├── nestedPrototypeAssignment.symbols │ ├── nestedPrototypeAssignment.types │ ├── nestedRecursiveArraysOrObjectsError01.errors.txt │ ├── nestedRecursiveArraysOrObjectsError01.js │ ├── nestedRecursiveArraysOrObjectsError01.symbols │ ├── nestedRecursiveArraysOrObjectsError01.types │ ├── nestedRecursiveLambda.js │ ├── nestedRecursiveLambda.symbols │ ├── nestedRecursiveLambda.types │ ├── nestedRedeclarationInES6AMD.errors.txt │ ├── nestedRedeclarationInES6AMD.js │ ├── nestedRedeclarationInES6AMD.symbols │ ├── nestedRedeclarationInES6AMD.types │ ├── nestedSelf.js │ ├── nestedSelf.symbols │ ├── nestedSelf.types │ ├── nestedSuperCallEmit(target=es2015).js │ ├── nestedSuperCallEmit(target=es5).errors.txt │ ├── nestedSuperCallEmit(target=es5).js │ ├── nestedThisContainer.js │ ├── nestedThisContainer.symbols │ ├── nestedThisContainer.types │ ├── nestedTypeVariableInfersLiteral.js │ ├── nestedTypeVariableInfersLiteral.symbols │ ├── nestedTypeVariableInfersLiteral.types │ ├── nestedUnaryExpressionHang.errors.txt │ ├── nestedUnaryExpressionHang.js │ ├── nestedUnaryExpressionHang.symbols │ ├── nestedUnaryExpressionHang.types │ ├── neverAsDiscriminantType(strict=false).js │ ├── neverAsDiscriminantType(strict=false).symbols │ ├── neverAsDiscriminantType(strict=false).types │ ├── neverAsDiscriminantType(strict=true).js │ ├── neverAsDiscriminantType(strict=true).symbols │ ├── neverAsDiscriminantType(strict=true).types │ ├── neverInference.js │ ├── neverInference.symbols │ ├── neverInference.types │ ├── neverIntersectionNotCallable.errors.txt │ ├── neverIntersectionNotCallable.js │ ├── neverIntersectionNotCallable.symbols │ ├── neverIntersectionNotCallable.types │ ├── neverNullishThroughParentheses.errors.txt │ ├── neverNullishThroughParentheses.js │ ├── neverNullishThroughParentheses.symbols │ ├── neverNullishThroughParentheses.types │ ├── neverReturningFunctions1.errors.txt │ ├── neverReturningFunctions1.js │ ├── neverReturningFunctions1.symbols │ ├── neverReturningFunctions1.types │ ├── neverType.js │ ├── neverType.symbols │ ├── neverType.types │ ├── neverTypeErrors1.errors.txt │ ├── neverTypeErrors1.js │ ├── neverTypeErrors1.symbols │ ├── neverTypeErrors1.types │ ├── neverTypeErrors2.errors.txt │ ├── neverTypeErrors2.js │ ├── neverTypeErrors2.symbols │ ├── neverTypeErrors2.types │ ├── neverUnionIntersection.js │ ├── neverUnionIntersection.symbols │ ├── neverUnionIntersection.types │ ├── newAbstractInstance.errors.txt │ ├── newAbstractInstance.js │ ├── newAbstractInstance.symbols │ ├── newAbstractInstance.types │ ├── newAbstractInstance2.errors.txt │ ├── newAbstractInstance2.js │ ├── newAbstractInstance2.symbols │ ├── newAbstractInstance2.types │ ├── newArrays.errors.txt │ ├── newArrays.js │ ├── newArrays.symbols │ ├── newArrays.types │ ├── newExpressionWithCast.errors.txt │ ├── newExpressionWithCast.js │ ├── newExpressionWithCast.symbols │ ├── newExpressionWithCast.types │ ├── newExpressionWithTypeParameterConstrainedToOuterTypeParameter.errors.txt │ ├── newExpressionWithTypeParameterConstrainedToOuterTypeParameter.js │ ├── newExpressionWithTypeParameterConstrainedToOuterTypeParameter.symbols │ ├── newExpressionWithTypeParameterConstrainedToOuterTypeParameter.types │ ├── newFunctionImplicitAny.errors.txt │ ├── newFunctionImplicitAny.js │ ├── newFunctionImplicitAny.symbols │ ├── newFunctionImplicitAny.types │ ├── newLexicalEnvironmentForConvertedLoop(target=es2015).js │ ├── newLexicalEnvironmentForConvertedLoop(target=es2015).symbols │ ├── newLexicalEnvironmentForConvertedLoop(target=es2015).types │ ├── newLexicalEnvironmentForConvertedLoop(target=es5).errors.txt │ ├── newLexicalEnvironmentForConvertedLoop(target=es5).js │ ├── newLexicalEnvironmentForConvertedLoop(target=es5).symbols │ ├── newLexicalEnvironmentForConvertedLoop(target=es5).types │ ├── newLineFlagWithCRLF.js │ ├── newLineFlagWithCRLF.symbols │ ├── newLineFlagWithCRLF.types │ ├── newLineFlagWithLF.js │ ├── newLineFlagWithLF.symbols │ ├── newLineFlagWithLF.types │ ├── newLineInTypeofInstantiation.js │ ├── newLineInTypeofInstantiation.symbols │ ├── newLineInTypeofInstantiation.types │ ├── newMap.errors.txt │ ├── newMap.js │ ├── newMap.symbols │ ├── newMap.types │ ├── newMissingIdentifier.errors.txt │ ├── newMissingIdentifier.js │ ├── newMissingIdentifier.symbols │ ├── newMissingIdentifier.types │ ├── newNamesInGlobalAugmentations1.js │ ├── newNamesInGlobalAugmentations1.symbols │ ├── newNamesInGlobalAugmentations1.types │ ├── newNonReferenceType.errors.txt │ ├── newNonReferenceType.js │ ├── newNonReferenceType.symbols │ ├── newNonReferenceType.types │ ├── newOnInstanceSymbol.errors.txt │ ├── newOnInstanceSymbol.js │ ├── newOnInstanceSymbol.symbols │ ├── newOnInstanceSymbol.types │ ├── newOperator.errors.txt │ ├── newOperator.js │ ├── newOperator.symbols │ ├── newOperator.types │ ├── newOperatorConformance.js │ ├── newOperatorConformance.symbols │ ├── newOperatorConformance.types │ ├── newOperatorErrorCases.errors.txt │ ├── newOperatorErrorCases.js │ ├── newOperatorErrorCases.symbols │ ├── newOperatorErrorCases.types │ ├── newOperatorErrorCases_noImplicitAny.errors.txt │ ├── newOperatorErrorCases_noImplicitAny.js │ ├── newOperatorErrorCases_noImplicitAny.symbols │ ├── newOperatorErrorCases_noImplicitAny.types │ ├── newTarget.es5(target=es2015).js │ ├── newTarget.es5(target=es2015).symbols │ ├── newTarget.es5(target=es2015).types │ ├── newTarget.es5(target=es5).errors.txt │ ├── newTarget.es5(target=es5).js │ ├── newTarget.es5(target=es5).symbols │ ├── newTarget.es5(target=es5).types │ ├── newTarget.es6.js │ ├── newTarget.es6.symbols │ ├── newTarget.es6.types │ ├── newTargetNarrowing.js │ ├── newTargetNarrowing.symbols │ ├── newTargetNarrowing.types │ ├── newWithSpread.js │ ├── newWithSpread.symbols │ ├── newWithSpread.types │ ├── newWithSpreadES5(target=es2015).js │ ├── newWithSpreadES5(target=es2015).symbols │ ├── newWithSpreadES5(target=es2015).types │ ├── newWithSpreadES5(target=es5).errors.txt │ ├── newWithSpreadES5(target=es5).js │ ├── newWithSpreadES5(target=es5).symbols │ ├── newWithSpreadES5(target=es5).types │ ├── newWithSpreadES6.js │ ├── newWithSpreadES6.symbols │ ├── newWithSpreadES6.types │ ├── noAsConstNameLookup.js │ ├── noAsConstNameLookup.symbols │ ├── noAsConstNameLookup.types │ ├── noAssertForUnparseableTypedefs.errors.txt │ ├── noAssertForUnparseableTypedefs.symbols │ ├── noAssertForUnparseableTypedefs.types │ ├── noBundledEmitFromNodeModules.errors.txt │ ├── noBundledEmitFromNodeModules.js │ ├── noBundledEmitFromNodeModules.symbols │ ├── noBundledEmitFromNodeModules.types │ ├── noCatchBlock.js │ ├── noCatchBlock.sourcemap.txt │ ├── noCatchBlock.symbols │ ├── noCatchBlock.types │ ├── noCheckDoesNotReportError.js │ ├── noCheckDoesNotReportError.symbols │ ├── noCheckDoesNotReportError.types │ ├── noCheckNoEmit.symbols │ ├── noCheckNoEmit.types │ ├── noCheckRequiresEmitDeclarationOnly.js │ ├── noCheckRequiresEmitDeclarationOnly.symbols │ ├── noCheckRequiresEmitDeclarationOnly.types │ ├── noCircularDefinitionOnExportOfPrivateInMergedNamespace.js │ ├── noCircularDefinitionOnExportOfPrivateInMergedNamespace.symbols │ ├── noCircularDefinitionOnExportOfPrivateInMergedNamespace.types │ ├── noCircularitySelfReferentialGetter1.symbols │ ├── noCircularitySelfReferentialGetter1.types │ ├── noCircularitySelfReferentialGetter2.symbols │ ├── noCircularitySelfReferentialGetter2.types │ ├── noCircularitySelfReferentialGetter3.symbols │ ├── noCircularitySelfReferentialGetter3.types │ ├── noCircularitySelfReferentialGetter4.symbols │ ├── noCircularitySelfReferentialGetter4.types │ ├── noCollisionThisExpressionAndClassInGlobal.js │ ├── noCollisionThisExpressionAndClassInGlobal.symbols │ ├── noCollisionThisExpressionAndClassInGlobal.types │ ├── noCollisionThisExpressionAndLocalVarInAccessors.js │ ├── noCollisionThisExpressionAndLocalVarInAccessors.symbols │ ├── noCollisionThisExpressionAndLocalVarInAccessors.types │ ├── noCollisionThisExpressionAndLocalVarInConstructor.js │ ├── noCollisionThisExpressionAndLocalVarInConstructor.symbols │ ├── noCollisionThisExpressionAndLocalVarInConstructor.types │ ├── noCollisionThisExpressionAndLocalVarInFunction.js │ ├── noCollisionThisExpressionAndLocalVarInFunction.symbols │ ├── noCollisionThisExpressionAndLocalVarInFunction.types │ ├── noCollisionThisExpressionAndLocalVarInLambda.js │ ├── noCollisionThisExpressionAndLocalVarInLambda.symbols │ ├── noCollisionThisExpressionAndLocalVarInLambda.types │ ├── noCollisionThisExpressionAndLocalVarInMethod.js │ ├── noCollisionThisExpressionAndLocalVarInMethod.symbols │ ├── noCollisionThisExpressionAndLocalVarInMethod.types │ ├── noCollisionThisExpressionAndLocalVarInProperty.js │ ├── noCollisionThisExpressionAndLocalVarInProperty.symbols │ ├── noCollisionThisExpressionAndLocalVarInProperty.types │ ├── noCollisionThisExpressionAndVarInGlobal.js │ ├── noCollisionThisExpressionAndVarInGlobal.symbols │ ├── noCollisionThisExpressionAndVarInGlobal.types │ ├── noCollisionThisExpressionInFunctionAndVarInGlobal.js │ ├── noCollisionThisExpressionInFunctionAndVarInGlobal.symbols │ ├── noCollisionThisExpressionInFunctionAndVarInGlobal.types │ ├── noConstraintInReturnType1.errors.txt │ ├── noConstraintInReturnType1.js │ ├── noConstraintInReturnType1.symbols │ ├── noConstraintInReturnType1.types │ ├── noCrashOnImportShadowing.errors.txt │ ├── noCrashOnImportShadowing.js │ ├── noCrashOnImportShadowing.symbols │ ├── noCrashOnImportShadowing.types │ ├── noCrashOnMixin.errors.txt │ ├── noCrashOnMixin.js │ ├── noCrashOnMixin.symbols │ ├── noCrashOnMixin.types │ ├── noCrashOnMixin2.errors.txt │ ├── noCrashOnMixin2.symbols │ ├── noCrashOnMixin2.types │ ├── noCrashOnNoLib.errors.txt │ ├── noCrashOnNoLib.js │ ├── noCrashOnNoLib.symbols │ ├── noCrashOnNoLib.types │ ├── noCrashOnParameterNamedRequire.errors.txt │ ├── noCrashOnParameterNamedRequire.js │ ├── noCrashOnParameterNamedRequire.symbols │ ├── noCrashOnParameterNamedRequire.types │ ├── noCrashOnThisTypeUsage.js │ ├── noCrashOnThisTypeUsage.symbols │ ├── noCrashOnThisTypeUsage.types │ ├── noCrashUMDMergedWithGlobalValue.js │ ├── noCrashUMDMergedWithGlobalValue.symbols │ ├── noCrashUMDMergedWithGlobalValue.types │ ├── noCrashWithVerbatimModuleSyntaxAndImportsNotUsedAsValues.errors.txt │ ├── noCrashWithVerbatimModuleSyntaxAndImportsNotUsedAsValues.js │ ├── noCrashWithVerbatimModuleSyntaxAndImportsNotUsedAsValues.symbols │ ├── noCrashWithVerbatimModuleSyntaxAndImportsNotUsedAsValues.types │ ├── noDuplicateJsdoc1.errors.txt │ ├── noDuplicateJsdoc1.symbols │ ├── noDuplicateJsdoc1.types │ ├── noEmitAndComposite.symbols │ ├── noEmitAndComposite.types │ ├── noEmitAndCompositeListFilesOnly.symbols │ ├── noEmitAndCompositeListFilesOnly.types │ ├── noEmitAndIncremental.symbols │ ├── noEmitAndIncremental.types │ ├── noEmitAndIncrementalListFilesOnly.symbols │ ├── noEmitAndIncrementalListFilesOnly.types │ ├── noEmitHelpers.js │ ├── noEmitHelpers.symbols │ ├── noEmitHelpers.types │ ├── noEmitHelpers2(target=es2015).js │ ├── noEmitHelpers2(target=es2015).symbols │ ├── noEmitHelpers2(target=es2015).types │ ├── noEmitHelpers2(target=es5).errors.txt │ ├── noEmitHelpers2(target=es5).js │ ├── noEmitHelpers2(target=es5).symbols │ ├── noEmitHelpers2(target=es5).types │ ├── noEmitOnError.errors.txt │ ├── noEmitOnError.js │ ├── noEmitOnError.symbols │ ├── noEmitOnError.types │ ├── noErrorTruncation.errors.txt │ ├── noErrorTruncation.js │ ├── noErrorTruncation.symbols │ ├── noErrorTruncation.types │ ├── noErrorUsingImportExportModuleAugmentationInDeclarationFile1.errors.txt │ ├── noErrorUsingImportExportModuleAugmentationInDeclarationFile1.symbols │ ├── noErrorUsingImportExportModuleAugmentationInDeclarationFile1.types │ ├── noErrorUsingImportExportModuleAugmentationInDeclarationFile2(target=es2015).errors.txt │ ├── noErrorUsingImportExportModuleAugmentationInDeclarationFile2(target=es2015).js │ ├── noErrorUsingImportExportModuleAugmentationInDeclarationFile2(target=es2015).symbols │ ├── noErrorUsingImportExportModuleAugmentationInDeclarationFile2(target=es2015).types │ ├── noErrorUsingImportExportModuleAugmentationInDeclarationFile2(target=es5).errors.txt │ ├── noErrorUsingImportExportModuleAugmentationInDeclarationFile2(target=es5).js │ ├── noErrorUsingImportExportModuleAugmentationInDeclarationFile2(target=es5).symbols │ ├── noErrorUsingImportExportModuleAugmentationInDeclarationFile2(target=es5).types │ ├── noErrorUsingImportExportModuleAugmentationInDeclarationFile3(target=es2015).errors.txt │ ├── noErrorUsingImportExportModuleAugmentationInDeclarationFile3(target=es2015).js │ ├── noErrorUsingImportExportModuleAugmentationInDeclarationFile3(target=es2015).symbols │ ├── noErrorUsingImportExportModuleAugmentationInDeclarationFile3(target=es2015).types │ ├── noErrorUsingImportExportModuleAugmentationInDeclarationFile3(target=es5).errors.txt │ ├── noErrorUsingImportExportModuleAugmentationInDeclarationFile3(target=es5).js │ ├── noErrorUsingImportExportModuleAugmentationInDeclarationFile3(target=es5).symbols │ ├── noErrorUsingImportExportModuleAugmentationInDeclarationFile3(target=es5).types │ ├── noErrorsInCallback.errors.txt │ ├── noErrorsInCallback.js │ ├── noErrorsInCallback.symbols │ ├── noErrorsInCallback.types │ ├── noExcessiveStackDepthError.errors.txt │ ├── noExcessiveStackDepthError.js │ ├── noExcessiveStackDepthError.symbols │ ├── noExcessiveStackDepthError.types │ ├── noImplicitAnyAndPrivateMembersWithoutTypeAnnotations.js │ ├── noImplicitAnyAndPrivateMembersWithoutTypeAnnotations.symbols │ ├── noImplicitAnyAndPrivateMembersWithoutTypeAnnotations.types │ ├── noImplicitAnyDestructuringInPrivateMethod.js │ ├── noImplicitAnyDestructuringInPrivateMethod.symbols │ ├── noImplicitAnyDestructuringInPrivateMethod.types │ ├── noImplicitAnyDestructuringParameterDeclaration.errors.txt │ ├── noImplicitAnyDestructuringParameterDeclaration.js │ ├── noImplicitAnyDestructuringParameterDeclaration.symbols │ ├── noImplicitAnyDestructuringParameterDeclaration.types │ ├── noImplicitAnyDestructuringVarDeclaration.errors.txt │ ├── noImplicitAnyDestructuringVarDeclaration.js │ ├── noImplicitAnyDestructuringVarDeclaration.symbols │ ├── noImplicitAnyDestructuringVarDeclaration.types │ ├── noImplicitAnyDestructuringVarDeclaration2.js │ ├── noImplicitAnyDestructuringVarDeclaration2.symbols │ ├── noImplicitAnyDestructuringVarDeclaration2.types │ ├── noImplicitAnyForIn.errors.txt │ ├── noImplicitAnyForIn.js │ ├── noImplicitAnyForIn.symbols │ ├── noImplicitAnyForIn.types │ ├── noImplicitAnyForMethodParameters.errors.txt │ ├── noImplicitAnyForMethodParameters.js │ ├── noImplicitAnyForMethodParameters.symbols │ ├── noImplicitAnyForMethodParameters.types │ ├── noImplicitAnyForwardReferencedInterface.errors.txt │ ├── noImplicitAnyForwardReferencedInterface.js │ ├── noImplicitAnyForwardReferencedInterface.symbols │ ├── noImplicitAnyForwardReferencedInterface.types │ ├── noImplicitAnyFunctionExpressionAssignment.js │ ├── noImplicitAnyFunctionExpressionAssignment.symbols │ ├── noImplicitAnyFunctionExpressionAssignment.types │ ├── noImplicitAnyFunctions.errors.txt │ ├── noImplicitAnyFunctions.js │ ├── noImplicitAnyFunctions.symbols │ ├── noImplicitAnyFunctions.types │ ├── noImplicitAnyInBareInterface.errors.txt │ ├── noImplicitAnyInBareInterface.js │ ├── noImplicitAnyInBareInterface.symbols │ ├── noImplicitAnyInBareInterface.types │ ├── noImplicitAnyInCastExpression.errors.txt │ ├── noImplicitAnyInCastExpression.js │ ├── noImplicitAnyInCastExpression.symbols │ ├── noImplicitAnyInCastExpression.types │ ├── noImplicitAnyInContextuallyTypesFunctionParamter.js │ ├── noImplicitAnyInContextuallyTypesFunctionParamter.symbols │ ├── noImplicitAnyInContextuallyTypesFunctionParamter.types │ ├── noImplicitAnyIndexing.errors.txt │ ├── noImplicitAnyIndexing.js │ ├── noImplicitAnyIndexing.symbols │ ├── noImplicitAnyIndexing.types │ ├── noImplicitAnyIndexingSuppressed.errors.txt │ ├── noImplicitAnyIndexingSuppressed.js │ ├── noImplicitAnyIndexingSuppressed.symbols │ ├── noImplicitAnyIndexingSuppressed.types │ ├── noImplicitAnyLoopCrash(target=es2015).errors.txt │ ├── noImplicitAnyLoopCrash(target=es2015).js │ ├── noImplicitAnyLoopCrash(target=es2015).symbols │ ├── noImplicitAnyLoopCrash(target=es2015).types │ ├── noImplicitAnyLoopCrash(target=es5).errors.txt │ ├── noImplicitAnyLoopCrash(target=es5).js │ ├── noImplicitAnyLoopCrash(target=es5).symbols │ ├── noImplicitAnyLoopCrash(target=es5).types │ ├── noImplicitAnyMissingGetAccessor(target=es2015).errors.txt │ ├── noImplicitAnyMissingGetAccessor(target=es2015).js │ ├── noImplicitAnyMissingGetAccessor(target=es2015).symbols │ ├── noImplicitAnyMissingGetAccessor(target=es2015).types │ ├── noImplicitAnyMissingGetAccessor(target=es5).errors.txt │ ├── noImplicitAnyMissingGetAccessor(target=es5).js │ ├── noImplicitAnyMissingGetAccessor(target=es5).symbols │ ├── noImplicitAnyMissingGetAccessor(target=es5).types │ ├── noImplicitAnyMissingSetAccessor(target=es2015).errors.txt │ ├── noImplicitAnyMissingSetAccessor(target=es2015).js │ ├── noImplicitAnyMissingSetAccessor(target=es2015).symbols │ ├── noImplicitAnyMissingSetAccessor(target=es2015).types │ ├── noImplicitAnyMissingSetAccessor(target=es5).errors.txt │ ├── noImplicitAnyMissingSetAccessor(target=es5).js │ ├── noImplicitAnyMissingSetAccessor(target=es5).symbols │ ├── noImplicitAnyMissingSetAccessor(target=es5).types │ ├── noImplicitAnyModule.errors.txt │ ├── noImplicitAnyModule.js │ ├── noImplicitAnyModule.symbols │ ├── noImplicitAnyModule.types │ ├── noImplicitAnyNamelessParameter.errors.txt │ ├── noImplicitAnyNamelessParameter.js │ ├── noImplicitAnyNamelessParameter.symbols │ ├── noImplicitAnyNamelessParameter.types │ ├── noImplicitAnyParametersInAmbientClass.errors.txt │ ├── noImplicitAnyParametersInAmbientClass.js │ ├── noImplicitAnyParametersInAmbientClass.symbols │ ├── noImplicitAnyParametersInAmbientClass.types │ ├── noImplicitAnyParametersInAmbientFunctions.errors.txt │ ├── noImplicitAnyParametersInAmbientFunctions.js │ ├── noImplicitAnyParametersInAmbientFunctions.symbols │ ├── noImplicitAnyParametersInAmbientFunctions.types │ ├── noImplicitAnyParametersInAmbientModule.errors.txt │ ├── noImplicitAnyParametersInAmbientModule.js │ ├── noImplicitAnyParametersInAmbientModule.symbols │ ├── noImplicitAnyParametersInAmbientModule.types │ ├── noImplicitAnyParametersInBareFunctions.errors.txt │ ├── noImplicitAnyParametersInBareFunctions.js │ ├── noImplicitAnyParametersInBareFunctions.symbols │ ├── noImplicitAnyParametersInBareFunctions.types │ ├── noImplicitAnyParametersInClass.errors.txt │ ├── noImplicitAnyParametersInClass.js │ ├── noImplicitAnyParametersInClass.symbols │ ├── noImplicitAnyParametersInClass.types │ ├── noImplicitAnyParametersInInterface.errors.txt │ ├── noImplicitAnyParametersInInterface.js │ ├── noImplicitAnyParametersInInterface.symbols │ ├── noImplicitAnyParametersInInterface.types │ ├── noImplicitAnyParametersInModule.errors.txt │ ├── noImplicitAnyParametersInModule.js │ ├── noImplicitAnyParametersInModule.symbols │ ├── noImplicitAnyParametersInModule.types │ ├── noImplicitAnyReferencingDeclaredInterface.errors.txt │ ├── noImplicitAnyReferencingDeclaredInterface.js │ ├── noImplicitAnyReferencingDeclaredInterface.symbols │ ├── noImplicitAnyReferencingDeclaredInterface.types │ ├── noImplicitAnyStringIndexerOnObject.errors.txt │ ├── noImplicitAnyStringIndexerOnObject.js │ ├── noImplicitAnyStringIndexerOnObject.symbols │ ├── noImplicitAnyStringIndexerOnObject.types │ ├── noImplicitAnyUnionNormalizedObjectLiteral1.errors.txt │ ├── noImplicitAnyUnionNormalizedObjectLiteral1.symbols │ ├── noImplicitAnyUnionNormalizedObjectLiteral1.types │ ├── noImplicitAnyWithOverloads.errors.txt │ ├── noImplicitAnyWithOverloads.js │ ├── noImplicitAnyWithOverloads.symbols │ ├── noImplicitAnyWithOverloads.types │ ├── noImplicitReturnInConstructors.js │ ├── noImplicitReturnInConstructors.symbols │ ├── noImplicitReturnInConstructors.types │ ├── noImplicitReturnsExclusions.errors.txt │ ├── noImplicitReturnsExclusions.symbols │ ├── noImplicitReturnsExclusions.types │ ├── noImplicitReturnsInAsync1.js │ ├── noImplicitReturnsInAsync1.symbols │ ├── noImplicitReturnsInAsync1.types │ ├── noImplicitReturnsInAsync2.errors.txt │ ├── noImplicitReturnsInAsync2.js │ ├── noImplicitReturnsInAsync2.symbols │ ├── noImplicitReturnsInAsync2.types │ ├── noImplicitReturnsWithProtectedBlocks1.js │ ├── noImplicitReturnsWithProtectedBlocks1.symbols │ ├── noImplicitReturnsWithProtectedBlocks1.types │ ├── noImplicitReturnsWithProtectedBlocks2.errors.txt │ ├── noImplicitReturnsWithProtectedBlocks2.js │ ├── noImplicitReturnsWithProtectedBlocks2.symbols │ ├── noImplicitReturnsWithProtectedBlocks2.types │ ├── noImplicitReturnsWithProtectedBlocks3.errors.txt │ ├── noImplicitReturnsWithProtectedBlocks3.js │ ├── noImplicitReturnsWithProtectedBlocks3.symbols │ ├── noImplicitReturnsWithProtectedBlocks3.types │ ├── noImplicitReturnsWithoutReturnExpression.errors.txt │ ├── noImplicitReturnsWithoutReturnExpression.js │ ├── noImplicitReturnsWithoutReturnExpression.symbols │ ├── noImplicitReturnsWithoutReturnExpression.types │ ├── noImplicitSymbolToString.errors.txt │ ├── noImplicitSymbolToString.js │ ├── noImplicitSymbolToString.symbols │ ├── noImplicitSymbolToString.types │ ├── noImplicitThisBigThis.js │ ├── noImplicitThisBigThis.symbols │ ├── noImplicitThisBigThis.types │ ├── noImplicitThisFunctions.errors.txt │ ├── noImplicitThisFunctions.js │ ├── noImplicitThisFunctions.symbols │ ├── noImplicitThisFunctions.types │ ├── noImplicitUseStrict_amd.errors.txt │ ├── noImplicitUseStrict_amd.js │ ├── noImplicitUseStrict_amd.symbols │ ├── noImplicitUseStrict_amd.types │ ├── noImplicitUseStrict_commonjs.errors.txt │ ├── noImplicitUseStrict_commonjs.js │ ├── noImplicitUseStrict_commonjs.symbols │ ├── noImplicitUseStrict_commonjs.types │ ├── noImplicitUseStrict_es6.errors.txt │ ├── noImplicitUseStrict_es6.js │ ├── noImplicitUseStrict_es6.symbols │ ├── noImplicitUseStrict_es6.types │ ├── noImplicitUseStrict_system.errors.txt │ ├── noImplicitUseStrict_system.js │ ├── noImplicitUseStrict_system.symbols │ ├── noImplicitUseStrict_system.types │ ├── noImplicitUseStrict_umd.errors.txt │ ├── noImplicitUseStrict_umd.js │ ├── noImplicitUseStrict_umd.symbols │ ├── noImplicitUseStrict_umd.types │ ├── noInfer.errors.txt │ ├── noInfer.js │ ├── noInfer.symbols │ ├── noInfer.types │ ├── noInferCommonPropertyCheck1.errors.txt │ ├── noInferCommonPropertyCheck1.symbols │ ├── noInferCommonPropertyCheck1.types │ ├── noInferRedeclaration.js │ ├── noInferRedeclaration.symbols │ ├── noInferRedeclaration.types │ ├── noInferUnionExcessPropertyCheck1.errors.txt │ ├── noInferUnionExcessPropertyCheck1.symbols │ ├── noInferUnionExcessPropertyCheck1.types │ ├── noIterationTypeErrorsInCFA.js │ ├── noIterationTypeErrorsInCFA.symbols │ ├── noIterationTypeErrorsInCFA.types │ ├── noMappedGetSet.errors.txt │ ├── noMappedGetSet.js │ ├── noMappedGetSet.symbols │ ├── noMappedGetSet.types │ ├── noObjectKeysToKeyofT.js │ ├── noObjectKeysToKeyofT.symbols │ ├── noObjectKeysToKeyofT.types │ ├── noParameterReassignmentIIFEAnnotated.errors.txt │ ├── noParameterReassignmentIIFEAnnotated.symbols │ ├── noParameterReassignmentIIFEAnnotated.types │ ├── noParameterReassignmentJSIIFE.errors.txt │ ├── noParameterReassignmentJSIIFE.symbols │ ├── noParameterReassignmentJSIIFE.types │ ├── noPropertyAccessFromIndexSignature1.errors.txt │ ├── noPropertyAccessFromIndexSignature1.js │ ├── noPropertyAccessFromIndexSignature1.symbols │ ├── noPropertyAccessFromIndexSignature1.types │ ├── noReachabilityErrorsOnEmptyStatement.js │ ├── noReachabilityErrorsOnEmptyStatement.symbols │ ├── noReachabilityErrorsOnEmptyStatement.types │ ├── noRepeatedPropertyNames.errors.txt │ ├── noRepeatedPropertyNames.js │ ├── noRepeatedPropertyNames.symbols │ ├── noRepeatedPropertyNames.types │ ├── noSelfOnVars.js │ ├── noSelfOnVars.symbols │ ├── noSelfOnVars.types │ ├── noStrictGenericChecks.errors.txt │ ├── noStrictGenericChecks.js │ ├── noStrictGenericChecks.symbols │ ├── noStrictGenericChecks.types │ ├── noSubstitutionTemplateStringLiteralTypes.js │ ├── noSubstitutionTemplateStringLiteralTypes.symbols │ ├── noSubstitutionTemplateStringLiteralTypes.types │ ├── noSubtypeReduction.symbols │ ├── noSubtypeReduction.types │ ├── noSymbolForMergeCrash.errors.txt │ ├── noSymbolForMergeCrash.js │ ├── noSymbolForMergeCrash.symbols │ ├── noSymbolForMergeCrash.types │ ├── noTypeArgumentOnReturnType1.errors.txt │ ├── noTypeArgumentOnReturnType1.js │ ├── noTypeArgumentOnReturnType1.symbols │ ├── noTypeArgumentOnReturnType1.types │ ├── noUncheckedIndexAccess.js │ ├── noUncheckedIndexAccess.symbols │ ├── noUncheckedIndexAccess.types │ ├── noUncheckedIndexedAccess.errors.txt │ ├── noUncheckedIndexedAccess.js │ ├── noUncheckedIndexedAccess.symbols │ ├── noUncheckedIndexedAccess.types │ ├── noUncheckedIndexedAccessCompoundAssignments.errors.txt │ ├── noUncheckedIndexedAccessCompoundAssignments.js │ ├── noUncheckedIndexedAccessCompoundAssignments.symbols │ ├── noUncheckedIndexedAccessCompoundAssignments.types │ ├── noUncheckedIndexedAccessDestructuring.errors.txt │ ├── noUncheckedIndexedAccessDestructuring.js │ ├── noUncheckedIndexedAccessDestructuring.symbols │ ├── noUncheckedIndexedAccessDestructuring.types │ ├── noUnusedLocals_destructuringAssignment.errors.txt │ ├── noUnusedLocals_destructuringAssignment.js │ ├── noUnusedLocals_destructuringAssignment.symbols │ ├── noUnusedLocals_destructuringAssignment.types │ ├── noUnusedLocals_potentialPredicateUnusedParam.errors.txt │ ├── noUnusedLocals_potentialPredicateUnusedParam.symbols │ ├── noUnusedLocals_potentialPredicateUnusedParam.types │ ├── noUnusedLocals_selfReference.errors.txt │ ├── noUnusedLocals_selfReference.js │ ├── noUnusedLocals_selfReference.symbols │ ├── noUnusedLocals_selfReference.types │ ├── noUnusedLocals_selfReference_skipsBlockLocations.errors.txt │ ├── noUnusedLocals_selfReference_skipsBlockLocations.js │ ├── noUnusedLocals_selfReference_skipsBlockLocations.symbols │ ├── noUnusedLocals_selfReference_skipsBlockLocations.types │ ├── noUnusedLocals_typeParameterMergedWithParameter.errors.txt │ ├── noUnusedLocals_typeParameterMergedWithParameter.js │ ├── noUnusedLocals_typeParameterMergedWithParameter.symbols │ ├── noUnusedLocals_typeParameterMergedWithParameter.types │ ├── noUnusedLocals_writeOnly.errors.txt │ ├── noUnusedLocals_writeOnly.js │ ├── noUnusedLocals_writeOnly.symbols │ ├── noUnusedLocals_writeOnly.types │ ├── noUnusedLocals_writeOnlyProperty.errors.txt │ ├── noUnusedLocals_writeOnlyProperty.js │ ├── noUnusedLocals_writeOnlyProperty.symbols │ ├── noUnusedLocals_writeOnlyProperty.types │ ├── noUnusedLocals_writeOnlyProperty_dynamicNames.errors.txt │ ├── noUnusedLocals_writeOnlyProperty_dynamicNames.js │ ├── noUnusedLocals_writeOnlyProperty_dynamicNames.symbols │ ├── noUnusedLocals_writeOnlyProperty_dynamicNames.types │ ├── noUsedBeforeDefinedErrorInAmbientContext1.symbols │ ├── noUsedBeforeDefinedErrorInAmbientContext1.types │ ├── noUsedBeforeDefinedErrorInTypeContext.symbols │ ├── noUsedBeforeDefinedErrorInTypeContext.types │ ├── node10AlternateResult_noResolution.errors.txt │ ├── node10AlternateResult_noResolution.trace.json │ ├── node10Alternateresult_noTypes.errors.txt │ ├── node10Alternateresult_noTypes.trace.json │ ├── node10IsNode_node.errors.txt │ ├── node10IsNode_node.symbols │ ├── node10IsNode_node.trace.json │ ├── node10IsNode_node.types │ ├── node10IsNode_node10.symbols │ ├── node10IsNode_node10.trace.json │ ├── node10IsNode_node10.types │ ├── nodeAllowJsPackageSelfName(module=node16).errors.txt │ ├── nodeAllowJsPackageSelfName(module=node16).js │ ├── nodeAllowJsPackageSelfName(module=node16).symbols │ ├── nodeAllowJsPackageSelfName(module=node16).types │ ├── nodeAllowJsPackageSelfName(module=node18).errors.txt │ ├── nodeAllowJsPackageSelfName(module=node18).js │ ├── nodeAllowJsPackageSelfName(module=node18).symbols │ ├── nodeAllowJsPackageSelfName(module=node18).types │ ├── nodeAllowJsPackageSelfName(module=node20).errors.txt │ ├── nodeAllowJsPackageSelfName(module=node20).js │ ├── nodeAllowJsPackageSelfName(module=node20).symbols │ ├── nodeAllowJsPackageSelfName(module=node20).types │ ├── nodeAllowJsPackageSelfName(module=nodenext).errors.txt │ ├── nodeAllowJsPackageSelfName(module=nodenext).js │ ├── nodeAllowJsPackageSelfName(module=nodenext).symbols │ ├── nodeAllowJsPackageSelfName(module=nodenext).types │ ├── nodeAllowJsPackageSelfName2.js │ ├── nodeAllowJsPackageSelfName2.symbols │ ├── nodeAllowJsPackageSelfName2.types │ ├── nodeColonModuleResolution.js │ ├── nodeColonModuleResolution.symbols │ ├── nodeColonModuleResolution.trace.json │ ├── nodeColonModuleResolution.types │ ├── nodeColonModuleResolution2.js │ ├── nodeColonModuleResolution2.symbols │ ├── nodeColonModuleResolution2.trace.json │ ├── nodeColonModuleResolution2.types │ ├── nodeModuleReexportFromDottedPath.js │ ├── nodeModuleReexportFromDottedPath.symbols │ ├── nodeModuleReexportFromDottedPath.types │ ├── nodeModules1(module=node16).errors.txt │ ├── nodeModules1(module=node16).js │ ├── nodeModules1(module=node16).symbols │ ├── nodeModules1(module=node16).types │ ├── nodeModules1(module=node18).errors.txt │ ├── nodeModules1(module=node18).js │ ├── nodeModules1(module=node18).symbols │ ├── nodeModules1(module=node18).types │ ├── nodeModules1(module=node20).errors.txt │ ├── nodeModules1(module=node20).js │ ├── nodeModules1(module=node20).symbols │ ├── nodeModules1(module=node20).types │ ├── nodeModules1(module=nodenext).errors.txt │ ├── nodeModules1(module=nodenext).js │ ├── nodeModules1(module=nodenext).symbols │ ├── nodeModules1(module=nodenext).types │ ├── nodeModulesAllowJs1(module=node16).errors.txt │ ├── nodeModulesAllowJs1(module=node16).js │ ├── nodeModulesAllowJs1(module=node16).symbols │ ├── nodeModulesAllowJs1(module=node16).types │ ├── nodeModulesAllowJs1(module=node18).errors.txt │ ├── nodeModulesAllowJs1(module=node18).js │ ├── nodeModulesAllowJs1(module=node18).symbols │ ├── nodeModulesAllowJs1(module=node18).types │ ├── nodeModulesAllowJs1(module=node20).errors.txt │ ├── nodeModulesAllowJs1(module=node20).js │ ├── nodeModulesAllowJs1(module=node20).symbols │ ├── nodeModulesAllowJs1(module=node20).types │ ├── nodeModulesAllowJs1(module=nodenext).errors.txt │ ├── nodeModulesAllowJs1(module=nodenext).js │ ├── nodeModulesAllowJs1(module=nodenext).symbols │ ├── nodeModulesAllowJs1(module=nodenext).types │ ├── nodeModulesAllowJsCjsFromJs(module=node16).symbols │ ├── nodeModulesAllowJsCjsFromJs(module=node16).types │ ├── nodeModulesAllowJsCjsFromJs(module=node18).symbols │ ├── nodeModulesAllowJsCjsFromJs(module=node18).types │ ├── nodeModulesAllowJsCjsFromJs(module=node20).symbols │ ├── nodeModulesAllowJsCjsFromJs(module=node20).types │ ├── nodeModulesAllowJsCjsFromJs(module=nodenext).symbols │ ├── nodeModulesAllowJsCjsFromJs(module=nodenext).types │ ├── nodeModulesAllowJsConditionalPackageExports(module=node16).errors.txt │ ├── nodeModulesAllowJsConditionalPackageExports(module=node16).js │ ├── nodeModulesAllowJsConditionalPackageExports(module=node16).symbols │ ├── nodeModulesAllowJsConditionalPackageExports(module=node16).types │ ├── nodeModulesAllowJsConditionalPackageExports(module=node18).errors.txt │ ├── nodeModulesAllowJsConditionalPackageExports(module=node18).js │ ├── nodeModulesAllowJsConditionalPackageExports(module=node18).symbols │ ├── nodeModulesAllowJsConditionalPackageExports(module=node18).types │ ├── nodeModulesAllowJsConditionalPackageExports(module=node20).js │ ├── nodeModulesAllowJsConditionalPackageExports(module=node20).symbols │ ├── nodeModulesAllowJsConditionalPackageExports(module=node20).types │ ├── nodeModulesAllowJsConditionalPackageExports(module=nodenext).js │ ├── nodeModulesAllowJsConditionalPackageExports(module=nodenext).symbols │ ├── nodeModulesAllowJsConditionalPackageExports(module=nodenext).types │ ├── nodeModulesAllowJsDynamicImport(module=node16).js │ ├── nodeModulesAllowJsDynamicImport(module=node16).symbols │ ├── nodeModulesAllowJsDynamicImport(module=node16).types │ ├── nodeModulesAllowJsDynamicImport(module=node18).js │ ├── nodeModulesAllowJsDynamicImport(module=node18).symbols │ ├── nodeModulesAllowJsDynamicImport(module=node18).types │ ├── nodeModulesAllowJsDynamicImport(module=node20).js │ ├── nodeModulesAllowJsDynamicImport(module=node20).symbols │ ├── nodeModulesAllowJsDynamicImport(module=node20).types │ ├── nodeModulesAllowJsDynamicImport(module=nodenext).js │ ├── nodeModulesAllowJsDynamicImport(module=nodenext).symbols │ ├── nodeModulesAllowJsDynamicImport(module=nodenext).types │ ├── nodeModulesAllowJsExportAssignment(module=node16).errors.txt │ ├── nodeModulesAllowJsExportAssignment(module=node16).js │ ├── nodeModulesAllowJsExportAssignment(module=node16).symbols │ ├── nodeModulesAllowJsExportAssignment(module=node16).types │ ├── nodeModulesAllowJsExportAssignment(module=node18).errors.txt │ ├── nodeModulesAllowJsExportAssignment(module=node18).js │ ├── nodeModulesAllowJsExportAssignment(module=node18).symbols │ ├── nodeModulesAllowJsExportAssignment(module=node18).types │ ├── nodeModulesAllowJsExportAssignment(module=node20).errors.txt │ ├── nodeModulesAllowJsExportAssignment(module=node20).js │ ├── nodeModulesAllowJsExportAssignment(module=node20).symbols │ ├── nodeModulesAllowJsExportAssignment(module=node20).types │ ├── nodeModulesAllowJsExportAssignment(module=nodenext).errors.txt │ ├── nodeModulesAllowJsExportAssignment(module=nodenext).js │ ├── nodeModulesAllowJsExportAssignment(module=nodenext).symbols │ ├── nodeModulesAllowJsExportAssignment(module=nodenext).types │ ├── nodeModulesAllowJsExportlessJsModuleDetectionAuto(module=node16).js │ ├── nodeModulesAllowJsExportlessJsModuleDetectionAuto(module=node16).symbols │ ├── nodeModulesAllowJsExportlessJsModuleDetectionAuto(module=node16).types │ ├── nodeModulesAllowJsExportlessJsModuleDetectionAuto(module=node18).js │ ├── nodeModulesAllowJsExportlessJsModuleDetectionAuto(module=node18).symbols │ ├── nodeModulesAllowJsExportlessJsModuleDetectionAuto(module=node18).types │ ├── nodeModulesAllowJsExportlessJsModuleDetectionAuto(module=node20).js │ ├── nodeModulesAllowJsExportlessJsModuleDetectionAuto(module=node20).symbols │ ├── nodeModulesAllowJsExportlessJsModuleDetectionAuto(module=node20).types │ ├── nodeModulesAllowJsExportlessJsModuleDetectionAuto(module=nodenext).js │ ├── nodeModulesAllowJsExportlessJsModuleDetectionAuto(module=nodenext).symbols │ ├── nodeModulesAllowJsExportlessJsModuleDetectionAuto(module=nodenext).types │ ├── nodeModulesAllowJsGeneratedNameCollisions(module=node16).errors.txt │ ├── nodeModulesAllowJsGeneratedNameCollisions(module=node16).js │ ├── nodeModulesAllowJsGeneratedNameCollisions(module=node16).symbols │ ├── nodeModulesAllowJsGeneratedNameCollisions(module=node16).types │ ├── nodeModulesAllowJsGeneratedNameCollisions(module=node18).errors.txt │ ├── nodeModulesAllowJsGeneratedNameCollisions(module=node18).js │ ├── nodeModulesAllowJsGeneratedNameCollisions(module=node18).symbols │ ├── nodeModulesAllowJsGeneratedNameCollisions(module=node18).types │ ├── nodeModulesAllowJsGeneratedNameCollisions(module=node20).errors.txt │ ├── nodeModulesAllowJsGeneratedNameCollisions(module=node20).js │ ├── nodeModulesAllowJsGeneratedNameCollisions(module=node20).symbols │ ├── nodeModulesAllowJsGeneratedNameCollisions(module=node20).types │ ├── nodeModulesAllowJsGeneratedNameCollisions(module=nodenext).errors.txt │ ├── nodeModulesAllowJsGeneratedNameCollisions(module=nodenext).js │ ├── nodeModulesAllowJsGeneratedNameCollisions(module=nodenext).symbols │ ├── nodeModulesAllowJsGeneratedNameCollisions(module=nodenext).types │ ├── nodeModulesAllowJsImportAssignment(module=node16).errors.txt │ ├── nodeModulesAllowJsImportAssignment(module=node16).js │ ├── nodeModulesAllowJsImportAssignment(module=node16).symbols │ ├── nodeModulesAllowJsImportAssignment(module=node16).types │ ├── nodeModulesAllowJsImportAssignment(module=node18).errors.txt │ ├── nodeModulesAllowJsImportAssignment(module=node18).js │ ├── nodeModulesAllowJsImportAssignment(module=node18).symbols │ ├── nodeModulesAllowJsImportAssignment(module=node18).types │ ├── nodeModulesAllowJsImportAssignment(module=node20).errors.txt │ ├── nodeModulesAllowJsImportAssignment(module=node20).js │ ├── nodeModulesAllowJsImportAssignment(module=node20).symbols │ ├── nodeModulesAllowJsImportAssignment(module=node20).types │ ├── nodeModulesAllowJsImportAssignment(module=nodenext).errors.txt │ ├── nodeModulesAllowJsImportAssignment(module=nodenext).js │ ├── nodeModulesAllowJsImportAssignment(module=nodenext).symbols │ ├── nodeModulesAllowJsImportAssignment(module=nodenext).types │ ├── nodeModulesAllowJsImportHelpersCollisions1(module=node16).errors.txt │ ├── nodeModulesAllowJsImportHelpersCollisions1(module=node16).js │ ├── nodeModulesAllowJsImportHelpersCollisions1(module=node16).symbols │ ├── nodeModulesAllowJsImportHelpersCollisions1(module=node16).types │ ├── nodeModulesAllowJsImportHelpersCollisions1(module=node18).errors.txt │ ├── nodeModulesAllowJsImportHelpersCollisions1(module=node18).js │ ├── nodeModulesAllowJsImportHelpersCollisions1(module=node18).symbols │ ├── nodeModulesAllowJsImportHelpersCollisions1(module=node18).types │ ├── nodeModulesAllowJsImportHelpersCollisions1(module=node20).errors.txt │ ├── nodeModulesAllowJsImportHelpersCollisions1(module=node20).js │ ├── nodeModulesAllowJsImportHelpersCollisions1(module=node20).symbols │ ├── nodeModulesAllowJsImportHelpersCollisions1(module=node20).types │ ├── nodeModulesAllowJsImportHelpersCollisions1(module=nodenext).errors.txt │ ├── nodeModulesAllowJsImportHelpersCollisions1(module=nodenext).js │ ├── nodeModulesAllowJsImportHelpersCollisions1(module=nodenext).symbols │ ├── nodeModulesAllowJsImportHelpersCollisions1(module=nodenext).types │ ├── nodeModulesAllowJsImportHelpersCollisions2(module=node16).errors.txt │ ├── nodeModulesAllowJsImportHelpersCollisions2(module=node16).js │ ├── nodeModulesAllowJsImportHelpersCollisions2(module=node16).symbols │ ├── nodeModulesAllowJsImportHelpersCollisions2(module=node16).types │ ├── nodeModulesAllowJsImportHelpersCollisions2(module=node18).errors.txt │ ├── nodeModulesAllowJsImportHelpersCollisions2(module=node18).js │ ├── nodeModulesAllowJsImportHelpersCollisions2(module=node18).symbols │ ├── nodeModulesAllowJsImportHelpersCollisions2(module=node18).types │ ├── nodeModulesAllowJsImportHelpersCollisions2(module=node20).errors.txt │ ├── nodeModulesAllowJsImportHelpersCollisions2(module=node20).js │ ├── nodeModulesAllowJsImportHelpersCollisions2(module=node20).symbols │ ├── nodeModulesAllowJsImportHelpersCollisions2(module=node20).types │ ├── nodeModulesAllowJsImportHelpersCollisions2(module=nodenext).errors.txt │ ├── nodeModulesAllowJsImportHelpersCollisions2(module=nodenext).js │ ├── nodeModulesAllowJsImportHelpersCollisions2(module=nodenext).symbols │ ├── nodeModulesAllowJsImportHelpersCollisions2(module=nodenext).types │ ├── nodeModulesAllowJsImportHelpersCollisions3(module=node16,target=es2015).errors.txt │ ├── nodeModulesAllowJsImportHelpersCollisions3(module=node16,target=es2015).js │ ├── nodeModulesAllowJsImportHelpersCollisions3(module=node16,target=es2015).symbols │ ├── nodeModulesAllowJsImportHelpersCollisions3(module=node16,target=es2015).types │ ├── nodeModulesAllowJsImportHelpersCollisions3(module=node16,target=es5).errors.txt │ ├── nodeModulesAllowJsImportHelpersCollisions3(module=node16,target=es5).js │ ├── nodeModulesAllowJsImportHelpersCollisions3(module=node16,target=es5).symbols │ ├── nodeModulesAllowJsImportHelpersCollisions3(module=node16,target=es5).types │ ├── nodeModulesAllowJsImportHelpersCollisions3(module=node18,target=es2015).errors.txt │ ├── nodeModulesAllowJsImportHelpersCollisions3(module=node18,target=es2015).js │ ├── nodeModulesAllowJsImportHelpersCollisions3(module=node18,target=es2015).symbols │ ├── nodeModulesAllowJsImportHelpersCollisions3(module=node18,target=es2015).types │ ├── nodeModulesAllowJsImportHelpersCollisions3(module=node18,target=es5).errors.txt │ ├── nodeModulesAllowJsImportHelpersCollisions3(module=node18,target=es5).js │ ├── nodeModulesAllowJsImportHelpersCollisions3(module=node18,target=es5).symbols │ ├── nodeModulesAllowJsImportHelpersCollisions3(module=node18,target=es5).types │ ├── nodeModulesAllowJsImportHelpersCollisions3(module=node20,target=es2015).errors.txt │ ├── nodeModulesAllowJsImportHelpersCollisions3(module=node20,target=es2015).js │ ├── nodeModulesAllowJsImportHelpersCollisions3(module=node20,target=es2015).symbols │ ├── nodeModulesAllowJsImportHelpersCollisions3(module=node20,target=es2015).types │ ├── nodeModulesAllowJsImportHelpersCollisions3(module=node20,target=es5).errors.txt │ ├── nodeModulesAllowJsImportHelpersCollisions3(module=node20,target=es5).js │ ├── nodeModulesAllowJsImportHelpersCollisions3(module=node20,target=es5).symbols │ ├── nodeModulesAllowJsImportHelpersCollisions3(module=node20,target=es5).types │ ├── nodeModulesAllowJsImportHelpersCollisions3(module=nodenext,target=es2015).errors.txt │ ├── nodeModulesAllowJsImportHelpersCollisions3(module=nodenext,target=es2015).js │ ├── nodeModulesAllowJsImportHelpersCollisions3(module=nodenext,target=es2015).symbols │ ├── nodeModulesAllowJsImportHelpersCollisions3(module=nodenext,target=es2015).types │ ├── nodeModulesAllowJsImportHelpersCollisions3(module=nodenext,target=es5).errors.txt │ ├── nodeModulesAllowJsImportHelpersCollisions3(module=nodenext,target=es5).js │ ├── nodeModulesAllowJsImportHelpersCollisions3(module=nodenext,target=es5).symbols │ ├── nodeModulesAllowJsImportHelpersCollisions3(module=nodenext,target=es5).types │ ├── nodeModulesAllowJsImportMeta(module=node16).errors.txt │ ├── nodeModulesAllowJsImportMeta(module=node16).js │ ├── nodeModulesAllowJsImportMeta(module=node16).symbols │ ├── nodeModulesAllowJsImportMeta(module=node16).types │ ├── nodeModulesAllowJsImportMeta(module=node18).errors.txt │ ├── nodeModulesAllowJsImportMeta(module=node18).js │ ├── nodeModulesAllowJsImportMeta(module=node18).symbols │ ├── nodeModulesAllowJsImportMeta(module=node18).types │ ├── nodeModulesAllowJsImportMeta(module=node20).errors.txt │ ├── nodeModulesAllowJsImportMeta(module=node20).js │ ├── nodeModulesAllowJsImportMeta(module=node20).symbols │ ├── nodeModulesAllowJsImportMeta(module=node20).types │ ├── nodeModulesAllowJsImportMeta(module=nodenext).errors.txt │ ├── nodeModulesAllowJsImportMeta(module=nodenext).js │ ├── nodeModulesAllowJsImportMeta(module=nodenext).symbols │ ├── nodeModulesAllowJsImportMeta(module=nodenext).types │ ├── nodeModulesAllowJsPackageExports(module=node16).errors.txt │ ├── nodeModulesAllowJsPackageExports(module=node16).js │ ├── nodeModulesAllowJsPackageExports(module=node16).symbols │ ├── nodeModulesAllowJsPackageExports(module=node16).types │ ├── nodeModulesAllowJsPackageExports(module=node18).errors.txt │ ├── nodeModulesAllowJsPackageExports(module=node18).js │ ├── nodeModulesAllowJsPackageExports(module=node18).symbols │ ├── nodeModulesAllowJsPackageExports(module=node18).types │ ├── nodeModulesAllowJsPackageExports(module=node20).js │ ├── nodeModulesAllowJsPackageExports(module=node20).symbols │ ├── nodeModulesAllowJsPackageExports(module=node20).types │ ├── nodeModulesAllowJsPackageExports(module=nodenext).js │ ├── nodeModulesAllowJsPackageExports(module=nodenext).symbols │ ├── nodeModulesAllowJsPackageExports(module=nodenext).types │ ├── nodeModulesAllowJsPackageImports(module=node16).errors.txt │ ├── nodeModulesAllowJsPackageImports(module=node16).js │ ├── nodeModulesAllowJsPackageImports(module=node16).symbols │ ├── nodeModulesAllowJsPackageImports(module=node16).types │ ├── nodeModulesAllowJsPackageImports(module=node18).errors.txt │ ├── nodeModulesAllowJsPackageImports(module=node18).js │ ├── nodeModulesAllowJsPackageImports(module=node18).symbols │ ├── nodeModulesAllowJsPackageImports(module=node18).types │ ├── nodeModulesAllowJsPackageImports(module=node20).errors.txt │ ├── nodeModulesAllowJsPackageImports(module=node20).js │ ├── nodeModulesAllowJsPackageImports(module=node20).symbols │ ├── nodeModulesAllowJsPackageImports(module=node20).types │ ├── nodeModulesAllowJsPackageImports(module=nodenext).errors.txt │ ├── nodeModulesAllowJsPackageImports(module=nodenext).js │ ├── nodeModulesAllowJsPackageImports(module=nodenext).symbols │ ├── nodeModulesAllowJsPackageImports(module=nodenext).types │ ├── nodeModulesAllowJsPackagePatternExports(module=node16).errors.txt │ ├── nodeModulesAllowJsPackagePatternExports(module=node16).js │ ├── nodeModulesAllowJsPackagePatternExports(module=node16).symbols │ ├── nodeModulesAllowJsPackagePatternExports(module=node16).types │ ├── nodeModulesAllowJsPackagePatternExports(module=node18).errors.txt │ ├── nodeModulesAllowJsPackagePatternExports(module=node18).js │ ├── nodeModulesAllowJsPackagePatternExports(module=node18).symbols │ ├── nodeModulesAllowJsPackagePatternExports(module=node18).types │ ├── nodeModulesAllowJsPackagePatternExports(module=node20).js │ ├── nodeModulesAllowJsPackagePatternExports(module=node20).symbols │ ├── nodeModulesAllowJsPackagePatternExports(module=node20).types │ ├── nodeModulesAllowJsPackagePatternExports(module=nodenext).js │ ├── nodeModulesAllowJsPackagePatternExports(module=nodenext).symbols │ ├── nodeModulesAllowJsPackagePatternExports(module=nodenext).types │ ├── nodeModulesAllowJsPackagePatternExportsExclude(module=node16).errors.txt │ ├── nodeModulesAllowJsPackagePatternExportsExclude(module=node16).js │ ├── nodeModulesAllowJsPackagePatternExportsExclude(module=node16).symbols │ ├── nodeModulesAllowJsPackagePatternExportsExclude(module=node16).types │ ├── nodeModulesAllowJsPackagePatternExportsExclude(module=node18).errors.txt │ ├── nodeModulesAllowJsPackagePatternExportsExclude(module=node18).js │ ├── nodeModulesAllowJsPackagePatternExportsExclude(module=node18).symbols │ ├── nodeModulesAllowJsPackagePatternExportsExclude(module=node18).types │ ├── nodeModulesAllowJsPackagePatternExportsExclude(module=node20).errors.txt │ ├── nodeModulesAllowJsPackagePatternExportsExclude(module=node20).js │ ├── nodeModulesAllowJsPackagePatternExportsExclude(module=node20).symbols │ ├── nodeModulesAllowJsPackagePatternExportsExclude(module=node20).types │ ├── nodeModulesAllowJsPackagePatternExportsExclude(module=nodenext).errors.txt │ ├── nodeModulesAllowJsPackagePatternExportsExclude(module=nodenext).js │ ├── nodeModulesAllowJsPackagePatternExportsExclude(module=nodenext).symbols │ ├── nodeModulesAllowJsPackagePatternExportsExclude(module=nodenext).types │ ├── nodeModulesAllowJsPackagePatternExportsTrailers(module=node16).errors.txt │ ├── nodeModulesAllowJsPackagePatternExportsTrailers(module=node16).js │ ├── nodeModulesAllowJsPackagePatternExportsTrailers(module=node16).symbols │ ├── nodeModulesAllowJsPackagePatternExportsTrailers(module=node16).types │ ├── nodeModulesAllowJsPackagePatternExportsTrailers(module=node18).errors.txt │ ├── nodeModulesAllowJsPackagePatternExportsTrailers(module=node18).js │ ├── nodeModulesAllowJsPackagePatternExportsTrailers(module=node18).symbols │ ├── nodeModulesAllowJsPackagePatternExportsTrailers(module=node18).types │ ├── nodeModulesAllowJsPackagePatternExportsTrailers(module=node20).js │ ├── nodeModulesAllowJsPackagePatternExportsTrailers(module=node20).symbols │ ├── nodeModulesAllowJsPackagePatternExportsTrailers(module=node20).types │ ├── nodeModulesAllowJsPackagePatternExportsTrailers(module=nodenext).js │ ├── nodeModulesAllowJsPackagePatternExportsTrailers(module=nodenext).symbols │ ├── nodeModulesAllowJsPackagePatternExportsTrailers(module=nodenext).types │ ├── nodeModulesAllowJsSynchronousCallErrors(module=node16).errors.txt │ ├── nodeModulesAllowJsSynchronousCallErrors(module=node16).js │ ├── nodeModulesAllowJsSynchronousCallErrors(module=node16).symbols │ ├── nodeModulesAllowJsSynchronousCallErrors(module=node16).types │ ├── nodeModulesAllowJsSynchronousCallErrors(module=node18).errors.txt │ ├── nodeModulesAllowJsSynchronousCallErrors(module=node18).js │ ├── nodeModulesAllowJsSynchronousCallErrors(module=node18).symbols │ ├── nodeModulesAllowJsSynchronousCallErrors(module=node18).types │ ├── nodeModulesAllowJsSynchronousCallErrors(module=node20).errors.txt │ ├── nodeModulesAllowJsSynchronousCallErrors(module=node20).js │ ├── nodeModulesAllowJsSynchronousCallErrors(module=node20).symbols │ ├── nodeModulesAllowJsSynchronousCallErrors(module=node20).types │ ├── nodeModulesAllowJsSynchronousCallErrors(module=nodenext).errors.txt │ ├── nodeModulesAllowJsSynchronousCallErrors(module=nodenext).js │ ├── nodeModulesAllowJsSynchronousCallErrors(module=nodenext).symbols │ ├── nodeModulesAllowJsSynchronousCallErrors(module=nodenext).types │ ├── nodeModulesAllowJsTopLevelAwait(module=node16).errors.txt │ ├── nodeModulesAllowJsTopLevelAwait(module=node16).js │ ├── nodeModulesAllowJsTopLevelAwait(module=node16).symbols │ ├── nodeModulesAllowJsTopLevelAwait(module=node16).types │ ├── nodeModulesAllowJsTopLevelAwait(module=node18).errors.txt │ ├── nodeModulesAllowJsTopLevelAwait(module=node18).js │ ├── nodeModulesAllowJsTopLevelAwait(module=node18).symbols │ ├── nodeModulesAllowJsTopLevelAwait(module=node18).types │ ├── nodeModulesAllowJsTopLevelAwait(module=node20).errors.txt │ ├── nodeModulesAllowJsTopLevelAwait(module=node20).js │ ├── nodeModulesAllowJsTopLevelAwait(module=node20).symbols │ ├── nodeModulesAllowJsTopLevelAwait(module=node20).types │ ├── nodeModulesAllowJsTopLevelAwait(module=nodenext).errors.txt │ ├── nodeModulesAllowJsTopLevelAwait(module=nodenext).js │ ├── nodeModulesAllowJsTopLevelAwait(module=nodenext).symbols │ ├── nodeModulesAllowJsTopLevelAwait(module=nodenext).types │ ├── nodeModulesAtTypesPriority.errors.txt │ ├── nodeModulesAtTypesPriority.symbols │ ├── nodeModulesAtTypesPriority.trace.json │ ├── nodeModulesAtTypesPriority.types │ ├── nodeModulesCJSEmit1(module=node18).errors.txt │ ├── nodeModulesCJSEmit1(module=node18).js │ ├── nodeModulesCJSEmit1(module=node20).errors.txt │ ├── nodeModulesCJSEmit1(module=node20).js │ ├── nodeModulesCJSEmit1(module=nodenext).errors.txt │ ├── nodeModulesCJSEmit1(module=nodenext).js │ ├── nodeModulesCJSResolvingToESM1_emptyPackageJson.errors.txt │ ├── nodeModulesCJSResolvingToESM2_cjsPackageJson.errors.txt │ ├── nodeModulesCJSResolvingToESM3_modulePackageJson.errors.txt │ ├── nodeModulesCJSResolvingToESM4_noPackageJson.errors.txt │ ├── nodeModulesCjsFormatFileAlwaysHasDefault(module=node16).js │ ├── nodeModulesCjsFormatFileAlwaysHasDefault(module=node16).symbols │ ├── nodeModulesCjsFormatFileAlwaysHasDefault(module=node16).types │ ├── nodeModulesCjsFormatFileAlwaysHasDefault(module=node18).js │ ├── nodeModulesCjsFormatFileAlwaysHasDefault(module=node18).symbols │ ├── nodeModulesCjsFormatFileAlwaysHasDefault(module=node18).types │ ├── nodeModulesCjsFormatFileAlwaysHasDefault(module=node20).js │ ├── nodeModulesCjsFormatFileAlwaysHasDefault(module=node20).symbols │ ├── nodeModulesCjsFormatFileAlwaysHasDefault(module=node20).types │ ├── nodeModulesCjsFormatFileAlwaysHasDefault(module=nodenext).js │ ├── nodeModulesCjsFormatFileAlwaysHasDefault(module=nodenext).symbols │ ├── nodeModulesCjsFormatFileAlwaysHasDefault(module=nodenext).types │ ├── nodeModulesConditionalPackageExports(module=node16).errors.txt │ ├── nodeModulesConditionalPackageExports(module=node16).js │ ├── nodeModulesConditionalPackageExports(module=node16).symbols │ ├── nodeModulesConditionalPackageExports(module=node16).types │ ├── nodeModulesConditionalPackageExports(module=node18).errors.txt │ ├── nodeModulesConditionalPackageExports(module=node18).js │ ├── nodeModulesConditionalPackageExports(module=node18).symbols │ ├── nodeModulesConditionalPackageExports(module=node18).types │ ├── nodeModulesConditionalPackageExports(module=node20).js │ ├── nodeModulesConditionalPackageExports(module=node20).symbols │ ├── nodeModulesConditionalPackageExports(module=node20).types │ ├── nodeModulesConditionalPackageExports(module=nodenext).js │ ├── nodeModulesConditionalPackageExports(module=nodenext).symbols │ ├── nodeModulesConditionalPackageExports(module=nodenext).types │ ├── nodeModulesDeclarationEmitDynamicImportWithPackageExports(module=node18).js │ ├── nodeModulesDeclarationEmitDynamicImportWithPackageExports(module=node18).symbols │ ├── nodeModulesDeclarationEmitDynamicImportWithPackageExports(module=node18).types │ ├── nodeModulesDeclarationEmitDynamicImportWithPackageExports(module=node20).js │ ├── nodeModulesDeclarationEmitDynamicImportWithPackageExports(module=node20).symbols │ ├── nodeModulesDeclarationEmitDynamicImportWithPackageExports(module=node20).types │ ├── nodeModulesDeclarationEmitDynamicImportWithPackageExports(module=nodenext).js │ ├── nodeModulesDeclarationEmitDynamicImportWithPackageExports(module=nodenext).symbols │ ├── nodeModulesDeclarationEmitDynamicImportWithPackageExports(module=nodenext).types │ ├── nodeModulesDeclarationEmitWithPackageExports(module=node16).errors.txt │ ├── nodeModulesDeclarationEmitWithPackageExports(module=node16).js │ ├── nodeModulesDeclarationEmitWithPackageExports(module=node16).symbols │ ├── nodeModulesDeclarationEmitWithPackageExports(module=node16).types │ ├── nodeModulesDeclarationEmitWithPackageExports(module=node18).errors.txt │ ├── nodeModulesDeclarationEmitWithPackageExports(module=node18).js │ ├── nodeModulesDeclarationEmitWithPackageExports(module=node18).symbols │ ├── nodeModulesDeclarationEmitWithPackageExports(module=node18).types │ ├── nodeModulesDeclarationEmitWithPackageExports(module=node20).errors.txt │ ├── nodeModulesDeclarationEmitWithPackageExports(module=node20).js │ ├── nodeModulesDeclarationEmitWithPackageExports(module=node20).symbols │ ├── nodeModulesDeclarationEmitWithPackageExports(module=node20).types │ ├── nodeModulesDeclarationEmitWithPackageExports(module=nodenext).errors.txt │ ├── nodeModulesDeclarationEmitWithPackageExports(module=nodenext).js │ ├── nodeModulesDeclarationEmitWithPackageExports(module=nodenext).symbols │ ├── nodeModulesDeclarationEmitWithPackageExports(module=nodenext).types │ ├── nodeModulesDynamicImport(module=node16).js │ ├── nodeModulesDynamicImport(module=node16).symbols │ ├── nodeModulesDynamicImport(module=node16).types │ ├── nodeModulesDynamicImport(module=node18).js │ ├── nodeModulesDynamicImport(module=node18).symbols │ ├── nodeModulesDynamicImport(module=node18).types │ ├── nodeModulesDynamicImport(module=node20).js │ ├── nodeModulesDynamicImport(module=node20).symbols │ ├── nodeModulesDynamicImport(module=node20).types │ ├── nodeModulesDynamicImport(module=nodenext).js │ ├── nodeModulesDynamicImport(module=nodenext).symbols │ ├── nodeModulesDynamicImport(module=nodenext).types │ ├── nodeModulesExportAssignments(module=node16).errors.txt │ ├── nodeModulesExportAssignments(module=node16).js │ ├── nodeModulesExportAssignments(module=node16).symbols │ ├── nodeModulesExportAssignments(module=node16).types │ ├── nodeModulesExportAssignments(module=node18).errors.txt │ ├── nodeModulesExportAssignments(module=node18).js │ ├── nodeModulesExportAssignments(module=node18).symbols │ ├── nodeModulesExportAssignments(module=node18).types │ ├── nodeModulesExportAssignments(module=node20).errors.txt │ ├── nodeModulesExportAssignments(module=node20).js │ ├── nodeModulesExportAssignments(module=node20).symbols │ ├── nodeModulesExportAssignments(module=node20).types │ ├── nodeModulesExportAssignments(module=nodenext).errors.txt │ ├── nodeModulesExportAssignments(module=nodenext).js │ ├── nodeModulesExportAssignments(module=nodenext).symbols │ ├── nodeModulesExportAssignments(module=nodenext).types │ ├── nodeModulesExportsBlocksSpecifierResolution(module=node16).errors.txt │ ├── nodeModulesExportsBlocksSpecifierResolution(module=node16).js │ ├── nodeModulesExportsBlocksSpecifierResolution(module=node16).symbols │ ├── nodeModulesExportsBlocksSpecifierResolution(module=node16).types │ ├── nodeModulesExportsBlocksSpecifierResolution(module=node18).errors.txt │ ├── nodeModulesExportsBlocksSpecifierResolution(module=node18).js │ ├── nodeModulesExportsBlocksSpecifierResolution(module=node18).symbols │ ├── nodeModulesExportsBlocksSpecifierResolution(module=node18).types │ ├── nodeModulesExportsBlocksSpecifierResolution(module=node20).errors.txt │ ├── nodeModulesExportsBlocksSpecifierResolution(module=node20).js │ ├── nodeModulesExportsBlocksSpecifierResolution(module=node20).symbols │ ├── nodeModulesExportsBlocksSpecifierResolution(module=node20).types │ ├── nodeModulesExportsBlocksSpecifierResolution(module=nodenext).errors.txt │ ├── nodeModulesExportsBlocksSpecifierResolution(module=nodenext).js │ ├── nodeModulesExportsBlocksSpecifierResolution(module=nodenext).symbols │ ├── nodeModulesExportsBlocksSpecifierResolution(module=nodenext).types │ ├── nodeModulesExportsBlocksTypesVersions(module=node16).errors.txt │ ├── nodeModulesExportsBlocksTypesVersions(module=node16).js │ ├── nodeModulesExportsBlocksTypesVersions(module=node16).symbols │ ├── nodeModulesExportsBlocksTypesVersions(module=node16).trace.json │ ├── nodeModulesExportsBlocksTypesVersions(module=node16).types │ ├── nodeModulesExportsBlocksTypesVersions(module=node18).errors.txt │ ├── nodeModulesExportsBlocksTypesVersions(module=node18).js │ ├── nodeModulesExportsBlocksTypesVersions(module=node18).symbols │ ├── nodeModulesExportsBlocksTypesVersions(module=node18).trace.json │ ├── nodeModulesExportsBlocksTypesVersions(module=node18).types │ ├── nodeModulesExportsBlocksTypesVersions(module=node20).errors.txt │ ├── nodeModulesExportsBlocksTypesVersions(module=node20).js │ ├── nodeModulesExportsBlocksTypesVersions(module=node20).symbols │ ├── nodeModulesExportsBlocksTypesVersions(module=node20).trace.json │ ├── nodeModulesExportsBlocksTypesVersions(module=node20).types │ ├── nodeModulesExportsBlocksTypesVersions(module=nodenext).errors.txt │ ├── nodeModulesExportsBlocksTypesVersions(module=nodenext).js │ ├── nodeModulesExportsBlocksTypesVersions(module=nodenext).symbols │ ├── nodeModulesExportsBlocksTypesVersions(module=nodenext).trace.json │ ├── nodeModulesExportsBlocksTypesVersions(module=nodenext).types │ ├── nodeModulesExportsDoubleAsterisk(module=node18).errors.txt │ ├── nodeModulesExportsDoubleAsterisk(module=node20).errors.txt │ ├── nodeModulesExportsDoubleAsterisk(module=nodenext).errors.txt │ ├── nodeModulesExportsSourceTs(module=node16).errors.txt │ ├── nodeModulesExportsSourceTs(module=node16).js │ ├── nodeModulesExportsSourceTs(module=node16).symbols │ ├── nodeModulesExportsSourceTs(module=node16).types │ ├── nodeModulesExportsSourceTs(module=node18).errors.txt │ ├── nodeModulesExportsSourceTs(module=node18).js │ ├── nodeModulesExportsSourceTs(module=node18).symbols │ ├── nodeModulesExportsSourceTs(module=node18).types │ ├── nodeModulesExportsSourceTs(module=node20).errors.txt │ ├── nodeModulesExportsSourceTs(module=node20).js │ ├── nodeModulesExportsSourceTs(module=node20).symbols │ ├── nodeModulesExportsSourceTs(module=node20).types │ ├── nodeModulesExportsSourceTs(module=nodenext).errors.txt │ ├── nodeModulesExportsSourceTs(module=nodenext).js │ ├── nodeModulesExportsSourceTs(module=nodenext).symbols │ ├── nodeModulesExportsSourceTs(module=nodenext).types │ ├── nodeModulesExportsSpecifierGenerationConditions(module=node16).errors.txt │ ├── nodeModulesExportsSpecifierGenerationConditions(module=node16).js │ ├── nodeModulesExportsSpecifierGenerationConditions(module=node16).symbols │ ├── nodeModulesExportsSpecifierGenerationConditions(module=node16).types │ ├── nodeModulesExportsSpecifierGenerationConditions(module=node18).errors.txt │ ├── nodeModulesExportsSpecifierGenerationConditions(module=node18).js │ ├── nodeModulesExportsSpecifierGenerationConditions(module=node18).symbols │ ├── nodeModulesExportsSpecifierGenerationConditions(module=node18).types │ ├── nodeModulesExportsSpecifierGenerationConditions(module=node20).errors.txt │ ├── nodeModulesExportsSpecifierGenerationConditions(module=node20).js │ ├── nodeModulesExportsSpecifierGenerationConditions(module=node20).symbols │ ├── nodeModulesExportsSpecifierGenerationConditions(module=node20).types │ ├── nodeModulesExportsSpecifierGenerationConditions(module=nodenext).errors.txt │ ├── nodeModulesExportsSpecifierGenerationConditions(module=nodenext).js │ ├── nodeModulesExportsSpecifierGenerationConditions(module=nodenext).symbols │ ├── nodeModulesExportsSpecifierGenerationConditions(module=nodenext).types │ ├── nodeModulesExportsSpecifierGenerationDirectory(module=node16).errors.txt │ ├── nodeModulesExportsSpecifierGenerationDirectory(module=node16).js │ ├── nodeModulesExportsSpecifierGenerationDirectory(module=node16).symbols │ ├── nodeModulesExportsSpecifierGenerationDirectory(module=node16).types │ ├── nodeModulesExportsSpecifierGenerationDirectory(module=node18).errors.txt │ ├── nodeModulesExportsSpecifierGenerationDirectory(module=node18).js │ ├── nodeModulesExportsSpecifierGenerationDirectory(module=node18).symbols │ ├── nodeModulesExportsSpecifierGenerationDirectory(module=node18).types │ ├── nodeModulesExportsSpecifierGenerationDirectory(module=node20).errors.txt │ ├── nodeModulesExportsSpecifierGenerationDirectory(module=node20).js │ ├── nodeModulesExportsSpecifierGenerationDirectory(module=node20).symbols │ ├── nodeModulesExportsSpecifierGenerationDirectory(module=node20).types │ ├── nodeModulesExportsSpecifierGenerationDirectory(module=nodenext).errors.txt │ ├── nodeModulesExportsSpecifierGenerationDirectory(module=nodenext).js │ ├── nodeModulesExportsSpecifierGenerationDirectory(module=nodenext).symbols │ ├── nodeModulesExportsSpecifierGenerationDirectory(module=nodenext).types │ ├── nodeModulesExportsSpecifierGenerationPattern(module=node16).errors.txt │ ├── nodeModulesExportsSpecifierGenerationPattern(module=node16).js │ ├── nodeModulesExportsSpecifierGenerationPattern(module=node16).symbols │ ├── nodeModulesExportsSpecifierGenerationPattern(module=node16).types │ ├── nodeModulesExportsSpecifierGenerationPattern(module=node18).errors.txt │ ├── nodeModulesExportsSpecifierGenerationPattern(module=node18).js │ ├── nodeModulesExportsSpecifierGenerationPattern(module=node18).symbols │ ├── nodeModulesExportsSpecifierGenerationPattern(module=node18).types │ ├── nodeModulesExportsSpecifierGenerationPattern(module=node20).errors.txt │ ├── nodeModulesExportsSpecifierGenerationPattern(module=node20).js │ ├── nodeModulesExportsSpecifierGenerationPattern(module=node20).symbols │ ├── nodeModulesExportsSpecifierGenerationPattern(module=node20).types │ ├── nodeModulesExportsSpecifierGenerationPattern(module=nodenext).errors.txt │ ├── nodeModulesExportsSpecifierGenerationPattern(module=nodenext).js │ ├── nodeModulesExportsSpecifierGenerationPattern(module=nodenext).symbols │ ├── nodeModulesExportsSpecifierGenerationPattern(module=nodenext).types │ ├── nodeModulesForbidenSyntax(module=node16).errors.txt │ ├── nodeModulesForbidenSyntax(module=node16).js │ ├── nodeModulesForbidenSyntax(module=node16).symbols │ ├── nodeModulesForbidenSyntax(module=node16).types │ ├── nodeModulesForbidenSyntax(module=node18).errors.txt │ ├── nodeModulesForbidenSyntax(module=node18).js │ ├── nodeModulesForbidenSyntax(module=node18).symbols │ ├── nodeModulesForbidenSyntax(module=node18).types │ ├── nodeModulesForbidenSyntax(module=node20).errors.txt │ ├── nodeModulesForbidenSyntax(module=node20).js │ ├── nodeModulesForbidenSyntax(module=node20).symbols │ ├── nodeModulesForbidenSyntax(module=node20).types │ ├── nodeModulesForbidenSyntax(module=nodenext).errors.txt │ ├── nodeModulesForbidenSyntax(module=nodenext).js │ ├── nodeModulesForbidenSyntax(module=nodenext).symbols │ ├── nodeModulesForbidenSyntax(module=nodenext).types │ ├── nodeModulesGeneratedNameCollisions(module=node16).errors.txt │ ├── nodeModulesGeneratedNameCollisions(module=node16).js │ ├── nodeModulesGeneratedNameCollisions(module=node16).symbols │ ├── nodeModulesGeneratedNameCollisions(module=node16).types │ ├── nodeModulesGeneratedNameCollisions(module=node18).errors.txt │ ├── nodeModulesGeneratedNameCollisions(module=node18).js │ ├── nodeModulesGeneratedNameCollisions(module=node18).symbols │ ├── nodeModulesGeneratedNameCollisions(module=node18).types │ ├── nodeModulesGeneratedNameCollisions(module=node20).errors.txt │ ├── nodeModulesGeneratedNameCollisions(module=node20).js │ ├── nodeModulesGeneratedNameCollisions(module=node20).symbols │ ├── nodeModulesGeneratedNameCollisions(module=node20).types │ ├── nodeModulesGeneratedNameCollisions(module=nodenext).errors.txt │ ├── nodeModulesGeneratedNameCollisions(module=nodenext).js │ ├── nodeModulesGeneratedNameCollisions(module=nodenext).symbols │ ├── nodeModulesGeneratedNameCollisions(module=nodenext).types │ ├── nodeModulesImportAssertions(module=node16).errors.txt │ ├── nodeModulesImportAssertions(module=node16).js │ ├── nodeModulesImportAssertions(module=node16).symbols │ ├── nodeModulesImportAssertions(module=node16).types │ ├── nodeModulesImportAssertions(module=node18).errors.txt │ ├── nodeModulesImportAssertions(module=node18).js │ ├── nodeModulesImportAssertions(module=node18).symbols │ ├── nodeModulesImportAssertions(module=node18).types │ ├── nodeModulesImportAssertions(module=node20).errors.txt │ ├── nodeModulesImportAssertions(module=node20).js │ ├── nodeModulesImportAssertions(module=node20).symbols │ ├── nodeModulesImportAssertions(module=node20).types │ ├── nodeModulesImportAssertions(module=nodenext).errors.txt │ ├── nodeModulesImportAssertions(module=nodenext).js │ ├── nodeModulesImportAssertions(module=nodenext).symbols │ ├── nodeModulesImportAssertions(module=nodenext).types │ ├── nodeModulesImportAssignments(module=node16).js │ ├── nodeModulesImportAssignments(module=node16).symbols │ ├── nodeModulesImportAssignments(module=node16).types │ ├── nodeModulesImportAssignments(module=node18).js │ ├── nodeModulesImportAssignments(module=node18).symbols │ ├── nodeModulesImportAssignments(module=node18).types │ ├── nodeModulesImportAssignments(module=node20).js │ ├── nodeModulesImportAssignments(module=node20).symbols │ ├── nodeModulesImportAssignments(module=node20).types │ ├── nodeModulesImportAssignments(module=nodenext).js │ ├── nodeModulesImportAssignments(module=nodenext).symbols │ ├── nodeModulesImportAssignments(module=nodenext).types │ ├── nodeModulesImportAttributes(module=node16).errors.txt │ ├── nodeModulesImportAttributes(module=node16).js │ ├── nodeModulesImportAttributes(module=node16).symbols │ ├── nodeModulesImportAttributes(module=node16).types │ ├── nodeModulesImportAttributes(module=node18).errors.txt │ ├── nodeModulesImportAttributes(module=node18).js │ ├── nodeModulesImportAttributes(module=node18).symbols │ ├── nodeModulesImportAttributes(module=node18).types │ ├── nodeModulesImportAttributes(module=node20).errors.txt │ ├── nodeModulesImportAttributes(module=node20).js │ ├── nodeModulesImportAttributes(module=node20).symbols │ ├── nodeModulesImportAttributes(module=node20).types │ ├── nodeModulesImportAttributes(module=nodenext).errors.txt │ ├── nodeModulesImportAttributes(module=nodenext).js │ ├── nodeModulesImportAttributes(module=nodenext).symbols │ ├── nodeModulesImportAttributes(module=nodenext).types │ ├── nodeModulesImportAttributesModeDeclarationEmit1(module=node16).errors.txt │ ├── nodeModulesImportAttributesModeDeclarationEmit1(module=node16).js │ ├── nodeModulesImportAttributesModeDeclarationEmit1(module=node16).symbols │ ├── nodeModulesImportAttributesModeDeclarationEmit1(module=node16).types │ ├── nodeModulesImportAttributesModeDeclarationEmit1(module=node18).errors.txt │ ├── nodeModulesImportAttributesModeDeclarationEmit1(module=node18).js │ ├── nodeModulesImportAttributesModeDeclarationEmit1(module=node18).symbols │ ├── nodeModulesImportAttributesModeDeclarationEmit1(module=node18).types │ ├── nodeModulesImportAttributesModeDeclarationEmit1(module=node20).errors.txt │ ├── nodeModulesImportAttributesModeDeclarationEmit1(module=node20).js │ ├── nodeModulesImportAttributesModeDeclarationEmit1(module=node20).symbols │ ├── nodeModulesImportAttributesModeDeclarationEmit1(module=node20).types │ ├── nodeModulesImportAttributesModeDeclarationEmit1(module=nodenext).errors.txt │ ├── nodeModulesImportAttributesModeDeclarationEmit1(module=nodenext).js │ ├── nodeModulesImportAttributesModeDeclarationEmit1(module=nodenext).symbols │ ├── nodeModulesImportAttributesModeDeclarationEmit1(module=nodenext).types │ ├── nodeModulesImportAttributesModeDeclarationEmit2(module=node16).errors.txt │ ├── nodeModulesImportAttributesModeDeclarationEmit2(module=node16).js │ ├── nodeModulesImportAttributesModeDeclarationEmit2(module=node16).symbols │ ├── nodeModulesImportAttributesModeDeclarationEmit2(module=node16).types │ ├── nodeModulesImportAttributesModeDeclarationEmit2(module=node18).errors.txt │ ├── nodeModulesImportAttributesModeDeclarationEmit2(module=node18).js │ ├── nodeModulesImportAttributesModeDeclarationEmit2(module=node18).symbols │ ├── nodeModulesImportAttributesModeDeclarationEmit2(module=node18).types │ ├── nodeModulesImportAttributesModeDeclarationEmit2(module=node20).errors.txt │ ├── nodeModulesImportAttributesModeDeclarationEmit2(module=node20).js │ ├── nodeModulesImportAttributesModeDeclarationEmit2(module=node20).symbols │ ├── nodeModulesImportAttributesModeDeclarationEmit2(module=node20).types │ ├── nodeModulesImportAttributesModeDeclarationEmit2(module=nodenext).errors.txt │ ├── nodeModulesImportAttributesModeDeclarationEmit2(module=nodenext).js │ ├── nodeModulesImportAttributesModeDeclarationEmit2(module=nodenext).symbols │ ├── nodeModulesImportAttributesModeDeclarationEmit2(module=nodenext).types │ ├── nodeModulesImportAttributesModeDeclarationEmitErrors(module=node16).errors.txt │ ├── nodeModulesImportAttributesModeDeclarationEmitErrors(module=node16).js │ ├── nodeModulesImportAttributesModeDeclarationEmitErrors(module=node16).symbols │ ├── nodeModulesImportAttributesModeDeclarationEmitErrors(module=node16).types │ ├── nodeModulesImportAttributesModeDeclarationEmitErrors(module=node18).errors.txt │ ├── nodeModulesImportAttributesModeDeclarationEmitErrors(module=node18).js │ ├── nodeModulesImportAttributesModeDeclarationEmitErrors(module=node18).symbols │ ├── nodeModulesImportAttributesModeDeclarationEmitErrors(module=node18).types │ ├── nodeModulesImportAttributesModeDeclarationEmitErrors(module=node20).errors.txt │ ├── nodeModulesImportAttributesModeDeclarationEmitErrors(module=node20).js │ ├── nodeModulesImportAttributesModeDeclarationEmitErrors(module=node20).symbols │ ├── nodeModulesImportAttributesModeDeclarationEmitErrors(module=node20).types │ ├── nodeModulesImportAttributesModeDeclarationEmitErrors(module=nodenext).errors.txt │ ├── nodeModulesImportAttributesModeDeclarationEmitErrors(module=nodenext).js │ ├── nodeModulesImportAttributesModeDeclarationEmitErrors(module=nodenext).symbols │ ├── nodeModulesImportAttributesModeDeclarationEmitErrors(module=nodenext).types │ ├── nodeModulesImportAttributesTypeModeDeclarationEmit(module=node16).js │ ├── nodeModulesImportAttributesTypeModeDeclarationEmit(module=node16).symbols │ ├── nodeModulesImportAttributesTypeModeDeclarationEmit(module=node16).types │ ├── nodeModulesImportAttributesTypeModeDeclarationEmit(module=node18).js │ ├── nodeModulesImportAttributesTypeModeDeclarationEmit(module=node18).symbols │ ├── nodeModulesImportAttributesTypeModeDeclarationEmit(module=node18).types │ ├── nodeModulesImportAttributesTypeModeDeclarationEmit(module=node20).js │ ├── nodeModulesImportAttributesTypeModeDeclarationEmit(module=node20).symbols │ ├── nodeModulesImportAttributesTypeModeDeclarationEmit(module=node20).types │ ├── nodeModulesImportAttributesTypeModeDeclarationEmit(module=nodenext).js │ ├── nodeModulesImportAttributesTypeModeDeclarationEmit(module=nodenext).symbols │ ├── nodeModulesImportAttributesTypeModeDeclarationEmit(module=nodenext).types │ ├── nodeModulesImportAttributesTypeModeDeclarationEmitErrors(module=node16).errors.txt │ ├── nodeModulesImportAttributesTypeModeDeclarationEmitErrors(module=node16).js │ ├── nodeModulesImportAttributesTypeModeDeclarationEmitErrors(module=node16).symbols │ ├── nodeModulesImportAttributesTypeModeDeclarationEmitErrors(module=node16).types │ ├── nodeModulesImportAttributesTypeModeDeclarationEmitErrors(module=node18).errors.txt │ ├── nodeModulesImportAttributesTypeModeDeclarationEmitErrors(module=node18).js │ ├── nodeModulesImportAttributesTypeModeDeclarationEmitErrors(module=node18).symbols │ ├── nodeModulesImportAttributesTypeModeDeclarationEmitErrors(module=node18).types │ ├── nodeModulesImportAttributesTypeModeDeclarationEmitErrors(module=node20).errors.txt │ ├── nodeModulesImportAttributesTypeModeDeclarationEmitErrors(module=node20).js │ ├── nodeModulesImportAttributesTypeModeDeclarationEmitErrors(module=node20).symbols │ ├── nodeModulesImportAttributesTypeModeDeclarationEmitErrors(module=node20).types │ ├── nodeModulesImportAttributesTypeModeDeclarationEmitErrors(module=nodenext).errors.txt │ ├── nodeModulesImportAttributesTypeModeDeclarationEmitErrors(module=nodenext).js │ ├── nodeModulesImportAttributesTypeModeDeclarationEmitErrors(module=nodenext).symbols │ ├── nodeModulesImportAttributesTypeModeDeclarationEmitErrors(module=nodenext).types │ ├── nodeModulesImportHelpersCollisions(module=node16).errors.txt │ ├── nodeModulesImportHelpersCollisions(module=node16).js │ ├── nodeModulesImportHelpersCollisions(module=node16).symbols │ ├── nodeModulesImportHelpersCollisions(module=node16).types │ ├── nodeModulesImportHelpersCollisions(module=node18).errors.txt │ ├── nodeModulesImportHelpersCollisions(module=node18).js │ ├── nodeModulesImportHelpersCollisions(module=node18).symbols │ ├── nodeModulesImportHelpersCollisions(module=node18).types │ ├── nodeModulesImportHelpersCollisions(module=node20).errors.txt │ ├── nodeModulesImportHelpersCollisions(module=node20).js │ ├── nodeModulesImportHelpersCollisions(module=node20).symbols │ ├── nodeModulesImportHelpersCollisions(module=node20).types │ ├── nodeModulesImportHelpersCollisions(module=nodenext).errors.txt │ ├── nodeModulesImportHelpersCollisions(module=nodenext).js │ ├── nodeModulesImportHelpersCollisions(module=nodenext).symbols │ ├── nodeModulesImportHelpersCollisions(module=nodenext).types │ ├── nodeModulesImportHelpersCollisions2(module=node16).errors.txt │ ├── nodeModulesImportHelpersCollisions2(module=node16).js │ ├── nodeModulesImportHelpersCollisions2(module=node16).symbols │ ├── nodeModulesImportHelpersCollisions2(module=node16).types │ ├── nodeModulesImportHelpersCollisions2(module=node18).errors.txt │ ├── nodeModulesImportHelpersCollisions2(module=node18).js │ ├── nodeModulesImportHelpersCollisions2(module=node18).symbols │ ├── nodeModulesImportHelpersCollisions2(module=node18).types │ ├── nodeModulesImportHelpersCollisions2(module=node20).errors.txt │ ├── nodeModulesImportHelpersCollisions2(module=node20).js │ ├── nodeModulesImportHelpersCollisions2(module=node20).symbols │ ├── nodeModulesImportHelpersCollisions2(module=node20).types │ ├── nodeModulesImportHelpersCollisions2(module=nodenext).errors.txt │ ├── nodeModulesImportHelpersCollisions2(module=nodenext).js │ ├── nodeModulesImportHelpersCollisions2(module=nodenext).symbols │ ├── nodeModulesImportHelpersCollisions2(module=nodenext).types │ ├── nodeModulesImportHelpersCollisions3(module=node16,target=es2015).errors.txt │ ├── nodeModulesImportHelpersCollisions3(module=node16,target=es2015).js │ ├── nodeModulesImportHelpersCollisions3(module=node16,target=es2015).symbols │ ├── nodeModulesImportHelpersCollisions3(module=node16,target=es2015).types │ ├── nodeModulesImportHelpersCollisions3(module=node16,target=es5).errors.txt │ ├── nodeModulesImportHelpersCollisions3(module=node16,target=es5).js │ ├── nodeModulesImportHelpersCollisions3(module=node16,target=es5).symbols │ ├── nodeModulesImportHelpersCollisions3(module=node16,target=es5).types │ ├── nodeModulesImportHelpersCollisions3(module=node18,target=es2015).errors.txt │ ├── nodeModulesImportHelpersCollisions3(module=node18,target=es2015).js │ ├── nodeModulesImportHelpersCollisions3(module=node18,target=es2015).symbols │ ├── nodeModulesImportHelpersCollisions3(module=node18,target=es2015).types │ ├── nodeModulesImportHelpersCollisions3(module=node18,target=es5).errors.txt │ ├── nodeModulesImportHelpersCollisions3(module=node18,target=es5).js │ ├── nodeModulesImportHelpersCollisions3(module=node18,target=es5).symbols │ ├── nodeModulesImportHelpersCollisions3(module=node18,target=es5).types │ ├── nodeModulesImportHelpersCollisions3(module=node20,target=es2015).errors.txt │ ├── nodeModulesImportHelpersCollisions3(module=node20,target=es2015).js │ ├── nodeModulesImportHelpersCollisions3(module=node20,target=es2015).symbols │ ├── nodeModulesImportHelpersCollisions3(module=node20,target=es2015).types │ ├── nodeModulesImportHelpersCollisions3(module=node20,target=es5).errors.txt │ ├── nodeModulesImportHelpersCollisions3(module=node20,target=es5).js │ ├── nodeModulesImportHelpersCollisions3(module=node20,target=es5).symbols │ ├── nodeModulesImportHelpersCollisions3(module=node20,target=es5).types │ ├── nodeModulesImportHelpersCollisions3(module=nodenext,target=es2015).errors.txt │ ├── nodeModulesImportHelpersCollisions3(module=nodenext,target=es2015).js │ ├── nodeModulesImportHelpersCollisions3(module=nodenext,target=es2015).symbols │ ├── nodeModulesImportHelpersCollisions3(module=nodenext,target=es2015).types │ ├── nodeModulesImportHelpersCollisions3(module=nodenext,target=es5).errors.txt │ ├── nodeModulesImportHelpersCollisions3(module=nodenext,target=es5).js │ ├── nodeModulesImportHelpersCollisions3(module=nodenext,target=es5).symbols │ ├── nodeModulesImportHelpersCollisions3(module=nodenext,target=es5).types │ ├── nodeModulesImportMeta(module=node16).errors.txt │ ├── nodeModulesImportMeta(module=node16).js │ ├── nodeModulesImportMeta(module=node16).symbols │ ├── nodeModulesImportMeta(module=node16).types │ ├── nodeModulesImportMeta(module=node18).errors.txt │ ├── nodeModulesImportMeta(module=node18).js │ ├── nodeModulesImportMeta(module=node18).symbols │ ├── nodeModulesImportMeta(module=node18).types │ ├── nodeModulesImportMeta(module=node20).errors.txt │ ├── nodeModulesImportMeta(module=node20).js │ ├── nodeModulesImportMeta(module=node20).symbols │ ├── nodeModulesImportMeta(module=node20).types │ ├── nodeModulesImportMeta(module=nodenext).errors.txt │ ├── nodeModulesImportMeta(module=nodenext).js │ ├── nodeModulesImportMeta(module=nodenext).symbols │ ├── nodeModulesImportMeta(module=nodenext).types │ ├── nodeModulesImportModeDeclarationEmit1(module=node16).errors.txt │ ├── nodeModulesImportModeDeclarationEmit1(module=node16).js │ ├── nodeModulesImportModeDeclarationEmit1(module=node16).symbols │ ├── nodeModulesImportModeDeclarationEmit1(module=node16).types │ ├── nodeModulesImportModeDeclarationEmit1(module=node18).errors.txt │ ├── nodeModulesImportModeDeclarationEmit1(module=node18).js │ ├── nodeModulesImportModeDeclarationEmit1(module=node18).symbols │ ├── nodeModulesImportModeDeclarationEmit1(module=node18).types │ ├── nodeModulesImportModeDeclarationEmit1(module=node20).errors.txt │ ├── nodeModulesImportModeDeclarationEmit1(module=node20).js │ ├── nodeModulesImportModeDeclarationEmit1(module=node20).symbols │ ├── nodeModulesImportModeDeclarationEmit1(module=node20).types │ ├── nodeModulesImportModeDeclarationEmit1(module=nodenext).errors.txt │ ├── nodeModulesImportModeDeclarationEmit1(module=nodenext).js │ ├── nodeModulesImportModeDeclarationEmit1(module=nodenext).symbols │ ├── nodeModulesImportModeDeclarationEmit1(module=nodenext).types │ ├── nodeModulesImportModeDeclarationEmit2(module=node16).errors.txt │ ├── nodeModulesImportModeDeclarationEmit2(module=node16).js │ ├── nodeModulesImportModeDeclarationEmit2(module=node16).symbols │ ├── nodeModulesImportModeDeclarationEmit2(module=node16).types │ ├── nodeModulesImportModeDeclarationEmit2(module=node18).errors.txt │ ├── nodeModulesImportModeDeclarationEmit2(module=node18).js │ ├── nodeModulesImportModeDeclarationEmit2(module=node18).symbols │ ├── nodeModulesImportModeDeclarationEmit2(module=node18).types │ ├── nodeModulesImportModeDeclarationEmit2(module=node20).errors.txt │ ├── nodeModulesImportModeDeclarationEmit2(module=node20).js │ ├── nodeModulesImportModeDeclarationEmit2(module=node20).symbols │ ├── nodeModulesImportModeDeclarationEmit2(module=node20).types │ ├── nodeModulesImportModeDeclarationEmit2(module=nodenext).errors.txt │ ├── nodeModulesImportModeDeclarationEmit2(module=nodenext).js │ ├── nodeModulesImportModeDeclarationEmit2(module=nodenext).symbols │ ├── nodeModulesImportModeDeclarationEmit2(module=nodenext).types │ ├── nodeModulesImportModeDeclarationEmitErrors1(module=node16).errors.txt │ ├── nodeModulesImportModeDeclarationEmitErrors1(module=node16).js │ ├── nodeModulesImportModeDeclarationEmitErrors1(module=node16).symbols │ ├── nodeModulesImportModeDeclarationEmitErrors1(module=node16).types │ ├── nodeModulesImportModeDeclarationEmitErrors1(module=node18).errors.txt │ ├── nodeModulesImportModeDeclarationEmitErrors1(module=node18).js │ ├── nodeModulesImportModeDeclarationEmitErrors1(module=node18).symbols │ ├── nodeModulesImportModeDeclarationEmitErrors1(module=node18).types │ ├── nodeModulesImportModeDeclarationEmitErrors1(module=node20).errors.txt │ ├── nodeModulesImportModeDeclarationEmitErrors1(module=node20).js │ ├── nodeModulesImportModeDeclarationEmitErrors1(module=node20).symbols │ ├── nodeModulesImportModeDeclarationEmitErrors1(module=node20).types │ ├── nodeModulesImportModeDeclarationEmitErrors1(module=nodenext).errors.txt │ ├── nodeModulesImportModeDeclarationEmitErrors1(module=nodenext).js │ ├── nodeModulesImportModeDeclarationEmitErrors1(module=nodenext).symbols │ ├── nodeModulesImportModeDeclarationEmitErrors1(module=nodenext).types │ ├── nodeModulesImportResolutionIntoExport(module=node16).js │ ├── nodeModulesImportResolutionIntoExport(module=node16).symbols │ ├── nodeModulesImportResolutionIntoExport(module=node16).types │ ├── nodeModulesImportResolutionIntoExport(module=node18).js │ ├── nodeModulesImportResolutionIntoExport(module=node18).symbols │ ├── nodeModulesImportResolutionIntoExport(module=node18).types │ ├── nodeModulesImportResolutionIntoExport(module=node20).js │ ├── nodeModulesImportResolutionIntoExport(module=node20).symbols │ ├── nodeModulesImportResolutionIntoExport(module=node20).types │ ├── nodeModulesImportResolutionIntoExport(module=nodenext).js │ ├── nodeModulesImportResolutionIntoExport(module=nodenext).symbols │ ├── nodeModulesImportResolutionIntoExport(module=nodenext).types │ ├── nodeModulesImportResolutionNoCycle(module=node16).errors.txt │ ├── nodeModulesImportResolutionNoCycle(module=node16).js │ ├── nodeModulesImportResolutionNoCycle(module=node16).symbols │ ├── nodeModulesImportResolutionNoCycle(module=node16).types │ ├── nodeModulesImportResolutionNoCycle(module=node18).errors.txt │ ├── nodeModulesImportResolutionNoCycle(module=node18).js │ ├── nodeModulesImportResolutionNoCycle(module=node18).symbols │ ├── nodeModulesImportResolutionNoCycle(module=node18).types │ ├── nodeModulesImportResolutionNoCycle(module=node20).errors.txt │ ├── nodeModulesImportResolutionNoCycle(module=node20).js │ ├── nodeModulesImportResolutionNoCycle(module=node20).symbols │ ├── nodeModulesImportResolutionNoCycle(module=node20).types │ ├── nodeModulesImportResolutionNoCycle(module=nodenext).errors.txt │ ├── nodeModulesImportResolutionNoCycle(module=nodenext).js │ ├── nodeModulesImportResolutionNoCycle(module=nodenext).symbols │ ├── nodeModulesImportResolutionNoCycle(module=nodenext).types │ ├── nodeModulesImportTypeModeDeclarationEmit1(module=node16).js │ ├── nodeModulesImportTypeModeDeclarationEmit1(module=node16).symbols │ ├── nodeModulesImportTypeModeDeclarationEmit1(module=node16).types │ ├── nodeModulesImportTypeModeDeclarationEmit1(module=node18).js │ ├── nodeModulesImportTypeModeDeclarationEmit1(module=node18).symbols │ ├── nodeModulesImportTypeModeDeclarationEmit1(module=node18).types │ ├── nodeModulesImportTypeModeDeclarationEmit1(module=node20).js │ ├── nodeModulesImportTypeModeDeclarationEmit1(module=node20).symbols │ ├── nodeModulesImportTypeModeDeclarationEmit1(module=node20).types │ ├── nodeModulesImportTypeModeDeclarationEmit1(module=nodenext).js │ ├── nodeModulesImportTypeModeDeclarationEmit1(module=nodenext).symbols │ ├── nodeModulesImportTypeModeDeclarationEmit1(module=nodenext).types │ ├── nodeModulesImportTypeModeDeclarationEmitErrors1(module=node16).errors.txt │ ├── nodeModulesImportTypeModeDeclarationEmitErrors1(module=node16).js │ ├── nodeModulesImportTypeModeDeclarationEmitErrors1(module=node16).symbols │ ├── nodeModulesImportTypeModeDeclarationEmitErrors1(module=node16).types │ ├── nodeModulesImportTypeModeDeclarationEmitErrors1(module=node18).errors.txt │ ├── nodeModulesImportTypeModeDeclarationEmitErrors1(module=node18).js │ ├── nodeModulesImportTypeModeDeclarationEmitErrors1(module=node18).symbols │ ├── nodeModulesImportTypeModeDeclarationEmitErrors1(module=node18).types │ ├── nodeModulesImportTypeModeDeclarationEmitErrors1(module=node20).errors.txt │ ├── nodeModulesImportTypeModeDeclarationEmitErrors1(module=node20).js │ ├── nodeModulesImportTypeModeDeclarationEmitErrors1(module=node20).symbols │ ├── nodeModulesImportTypeModeDeclarationEmitErrors1(module=node20).types │ ├── nodeModulesImportTypeModeDeclarationEmitErrors1(module=nodenext).errors.txt │ ├── nodeModulesImportTypeModeDeclarationEmitErrors1(module=nodenext).js │ ├── nodeModulesImportTypeModeDeclarationEmitErrors1(module=nodenext).symbols │ ├── nodeModulesImportTypeModeDeclarationEmitErrors1(module=nodenext).types │ ├── nodeModulesJson(module=node16).errors.txt │ ├── nodeModulesJson(module=node16).symbols │ ├── nodeModulesJson(module=node16).types │ ├── nodeModulesJson(module=node18).errors.txt │ ├── nodeModulesJson(module=node18).symbols │ ├── nodeModulesJson(module=node18).types │ ├── nodeModulesJson(module=node20).errors.txt │ ├── nodeModulesJson(module=node20).symbols │ ├── nodeModulesJson(module=node20).types │ ├── nodeModulesJson(module=nodenext).errors.txt │ ├── nodeModulesJson(module=nodenext).symbols │ ├── nodeModulesJson(module=nodenext).types │ ├── nodeModulesNoDirectoryModule.errors.txt │ ├── nodeModulesPackageExports(module=node16).errors.txt │ ├── nodeModulesPackageExports(module=node16).js │ ├── nodeModulesPackageExports(module=node16).symbols │ ├── nodeModulesPackageExports(module=node16).types │ ├── nodeModulesPackageExports(module=node18).errors.txt │ ├── nodeModulesPackageExports(module=node18).js │ ├── nodeModulesPackageExports(module=node18).symbols │ ├── nodeModulesPackageExports(module=node18).types │ ├── nodeModulesPackageExports(module=node20).js │ ├── nodeModulesPackageExports(module=node20).symbols │ ├── nodeModulesPackageExports(module=node20).types │ ├── nodeModulesPackageExports(module=nodenext).js │ ├── nodeModulesPackageExports(module=nodenext).symbols │ ├── nodeModulesPackageExports(module=nodenext).types │ ├── nodeModulesPackageImports(module=node16).errors.txt │ ├── nodeModulesPackageImports(module=node16).js │ ├── nodeModulesPackageImports(module=node16).symbols │ ├── nodeModulesPackageImports(module=node16).trace.json │ ├── nodeModulesPackageImports(module=node16).types │ ├── nodeModulesPackageImports(module=node18).errors.txt │ ├── nodeModulesPackageImports(module=node18).js │ ├── nodeModulesPackageImports(module=node18).symbols │ ├── nodeModulesPackageImports(module=node18).trace.json │ ├── nodeModulesPackageImports(module=node18).types │ ├── nodeModulesPackageImports(module=node20).js │ ├── nodeModulesPackageImports(module=node20).symbols │ ├── nodeModulesPackageImports(module=node20).trace.json │ ├── nodeModulesPackageImports(module=node20).types │ ├── nodeModulesPackageImports(module=nodenext).js │ ├── nodeModulesPackageImports(module=nodenext).symbols │ ├── nodeModulesPackageImports(module=nodenext).trace.json │ ├── nodeModulesPackageImports(module=nodenext).types │ ├── nodeModulesPackageImportsRootWildcard.js │ ├── nodeModulesPackageImportsRootWildcard.symbols │ ├── nodeModulesPackageImportsRootWildcard.trace.json │ ├── nodeModulesPackageImportsRootWildcard.types │ ├── nodeModulesPackageImportsRootWildcardNode16.errors.txt │ ├── nodeModulesPackageImportsRootWildcardNode16.js │ ├── nodeModulesPackageImportsRootWildcardNode16.symbols │ ├── nodeModulesPackageImportsRootWildcardNode16.trace.json │ ├── nodeModulesPackageImportsRootWildcardNode16.types │ ├── nodeModulesPackagePatternExports(module=node16).errors.txt │ ├── nodeModulesPackagePatternExports(module=node16).js │ ├── nodeModulesPackagePatternExports(module=node16).symbols │ ├── nodeModulesPackagePatternExports(module=node16).types │ ├── nodeModulesPackagePatternExports(module=node18).errors.txt │ ├── nodeModulesPackagePatternExports(module=node18).js │ ├── nodeModulesPackagePatternExports(module=node18).symbols │ ├── nodeModulesPackagePatternExports(module=node18).types │ ├── nodeModulesPackagePatternExports(module=node20).js │ ├── nodeModulesPackagePatternExports(module=node20).symbols │ ├── nodeModulesPackagePatternExports(module=node20).types │ ├── nodeModulesPackagePatternExports(module=nodenext).js │ ├── nodeModulesPackagePatternExports(module=nodenext).symbols │ ├── nodeModulesPackagePatternExports(module=nodenext).types │ ├── nodeModulesPackagePatternExportsExclude(module=node16).errors.txt │ ├── nodeModulesPackagePatternExportsExclude(module=node16).js │ ├── nodeModulesPackagePatternExportsExclude(module=node16).symbols │ ├── nodeModulesPackagePatternExportsExclude(module=node16).types │ ├── nodeModulesPackagePatternExportsExclude(module=node18).errors.txt │ ├── nodeModulesPackagePatternExportsExclude(module=node18).js │ ├── nodeModulesPackagePatternExportsExclude(module=node18).symbols │ ├── nodeModulesPackagePatternExportsExclude(module=node18).types │ ├── nodeModulesPackagePatternExportsExclude(module=node20).errors.txt │ ├── nodeModulesPackagePatternExportsExclude(module=node20).js │ ├── nodeModulesPackagePatternExportsExclude(module=node20).symbols │ ├── nodeModulesPackagePatternExportsExclude(module=node20).types │ ├── nodeModulesPackagePatternExportsExclude(module=nodenext).errors.txt │ ├── nodeModulesPackagePatternExportsExclude(module=nodenext).js │ ├── nodeModulesPackagePatternExportsExclude(module=nodenext).symbols │ ├── nodeModulesPackagePatternExportsExclude(module=nodenext).types │ ├── nodeModulesPackagePatternExportsTrailers(module=node16).errors.txt │ ├── nodeModulesPackagePatternExportsTrailers(module=node16).js │ ├── nodeModulesPackagePatternExportsTrailers(module=node16).symbols │ ├── nodeModulesPackagePatternExportsTrailers(module=node16).trace.json │ ├── nodeModulesPackagePatternExportsTrailers(module=node16).types │ ├── nodeModulesPackagePatternExportsTrailers(module=node18).errors.txt │ ├── nodeModulesPackagePatternExportsTrailers(module=node18).js │ ├── nodeModulesPackagePatternExportsTrailers(module=node18).symbols │ ├── nodeModulesPackagePatternExportsTrailers(module=node18).trace.json │ ├── nodeModulesPackagePatternExportsTrailers(module=node18).types │ ├── nodeModulesPackagePatternExportsTrailers(module=node20).js │ ├── nodeModulesPackagePatternExportsTrailers(module=node20).symbols │ ├── nodeModulesPackagePatternExportsTrailers(module=node20).trace.json │ ├── nodeModulesPackagePatternExportsTrailers(module=node20).types │ ├── nodeModulesPackagePatternExportsTrailers(module=nodenext).js │ ├── nodeModulesPackagePatternExportsTrailers(module=nodenext).symbols │ ├── nodeModulesPackagePatternExportsTrailers(module=nodenext).trace.json │ ├── nodeModulesPackagePatternExportsTrailers(module=nodenext).types │ ├── nodeModulesResolveJsonModule(module=node16).errors.txt │ ├── nodeModulesResolveJsonModule(module=node16).js │ ├── nodeModulesResolveJsonModule(module=node16).symbols │ ├── nodeModulesResolveJsonModule(module=node16).types │ ├── nodeModulesResolveJsonModule(module=node18).js │ ├── nodeModulesResolveJsonModule(module=node18).symbols │ ├── nodeModulesResolveJsonModule(module=node18).types │ ├── nodeModulesResolveJsonModule(module=node20).js │ ├── nodeModulesResolveJsonModule(module=node20).symbols │ ├── nodeModulesResolveJsonModule(module=node20).types │ ├── nodeModulesResolveJsonModule(module=nodenext).js │ ├── nodeModulesResolveJsonModule(module=nodenext).symbols │ ├── nodeModulesResolveJsonModule(module=nodenext).types │ ├── nodeModulesSynchronousCallErrors(module=node16).errors.txt │ ├── nodeModulesSynchronousCallErrors(module=node16).js │ ├── nodeModulesSynchronousCallErrors(module=node16).symbols │ ├── nodeModulesSynchronousCallErrors(module=node16).types │ ├── nodeModulesSynchronousCallErrors(module=node18).errors.txt │ ├── nodeModulesSynchronousCallErrors(module=node18).js │ ├── nodeModulesSynchronousCallErrors(module=node18).symbols │ ├── nodeModulesSynchronousCallErrors(module=node18).types │ ├── nodeModulesSynchronousCallErrors(module=node20).js │ ├── nodeModulesSynchronousCallErrors(module=node20).symbols │ ├── nodeModulesSynchronousCallErrors(module=node20).types │ ├── nodeModulesSynchronousCallErrors(module=nodenext).js │ ├── nodeModulesSynchronousCallErrors(module=nodenext).symbols │ ├── nodeModulesSynchronousCallErrors(module=nodenext).types │ ├── nodeModulesTopLevelAwait(module=node16).errors.txt │ ├── nodeModulesTopLevelAwait(module=node16).js │ ├── nodeModulesTopLevelAwait(module=node16).symbols │ ├── nodeModulesTopLevelAwait(module=node16).types │ ├── nodeModulesTopLevelAwait(module=node18).errors.txt │ ├── nodeModulesTopLevelAwait(module=node18).js │ ├── nodeModulesTopLevelAwait(module=node18).symbols │ ├── nodeModulesTopLevelAwait(module=node18).types │ ├── nodeModulesTopLevelAwait(module=node20).errors.txt │ ├── nodeModulesTopLevelAwait(module=node20).js │ ├── nodeModulesTopLevelAwait(module=node20).symbols │ ├── nodeModulesTopLevelAwait(module=node20).types │ ├── nodeModulesTopLevelAwait(module=nodenext).errors.txt │ ├── nodeModulesTopLevelAwait(module=nodenext).js │ ├── nodeModulesTopLevelAwait(module=nodenext).symbols │ ├── nodeModulesTopLevelAwait(module=nodenext).types │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit1(module=node16).js │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit1(module=node16).symbols │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit1(module=node16).types │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit1(module=node18).js │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit1(module=node18).symbols │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit1(module=node18).types │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit1(module=node20).js │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit1(module=node20).symbols │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit1(module=node20).types │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit1(module=nodenext).js │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit1(module=nodenext).symbols │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit1(module=nodenext).types │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit2(module=node16).js │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit2(module=node16).symbols │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit2(module=node16).types │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit2(module=node18).js │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit2(module=node18).symbols │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit2(module=node18).types │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit2(module=node20).js │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit2(module=node20).symbols │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit2(module=node20).types │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit2(module=nodenext).js │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit2(module=nodenext).symbols │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit2(module=nodenext).types │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit3(module=node16).js │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit3(module=node16).symbols │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit3(module=node16).types │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit3(module=node18).js │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit3(module=node18).symbols │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit3(module=node18).types │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit3(module=node20).js │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit3(module=node20).symbols │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit3(module=node20).types │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit3(module=nodenext).js │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit3(module=nodenext).symbols │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit3(module=nodenext).types │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit4(module=node16).js │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit4(module=node16).symbols │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit4(module=node16).types │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit4(module=node18).js │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit4(module=node18).symbols │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit4(module=node18).types │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit4(module=node20).js │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit4(module=node20).symbols │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit4(module=node20).types │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit4(module=nodenext).js │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit4(module=nodenext).symbols │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit4(module=nodenext).types │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit5(module=node16).js │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit5(module=node16).symbols │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit5(module=node16).types │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit5(module=node18).js │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit5(module=node18).symbols │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit5(module=node18).types │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit5(module=node20).js │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit5(module=node20).symbols │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit5(module=node20).types │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit5(module=nodenext).js │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit5(module=nodenext).symbols │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit5(module=nodenext).types │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit6(module=node16).js │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit6(module=node16).symbols │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit6(module=node16).types │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit6(module=node18).js │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit6(module=node18).symbols │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit6(module=node18).types │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit6(module=node20).js │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit6(module=node20).symbols │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit6(module=node20).types │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit6(module=nodenext).js │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit6(module=nodenext).symbols │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit6(module=nodenext).types │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit7(module=node16).js │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit7(module=node16).symbols │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit7(module=node16).types │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit7(module=node18).js │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit7(module=node18).symbols │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit7(module=node18).types │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit7(module=node20).js │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit7(module=node20).symbols │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit7(module=node20).types │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit7(module=nodenext).js │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit7(module=nodenext).symbols │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit7(module=nodenext).types │ ├── nodeModulesTripleSlashReferenceModeOverride1(module=node16).errors.txt │ ├── nodeModulesTripleSlashReferenceModeOverride1(module=node16).js │ ├── nodeModulesTripleSlashReferenceModeOverride1(module=node16).symbols │ ├── nodeModulesTripleSlashReferenceModeOverride1(module=node16).types │ ├── nodeModulesTripleSlashReferenceModeOverride1(module=node18).errors.txt │ ├── nodeModulesTripleSlashReferenceModeOverride1(module=node18).js │ ├── nodeModulesTripleSlashReferenceModeOverride1(module=node18).symbols │ ├── nodeModulesTripleSlashReferenceModeOverride1(module=node18).types │ ├── nodeModulesTripleSlashReferenceModeOverride1(module=node20).errors.txt │ ├── nodeModulesTripleSlashReferenceModeOverride1(module=node20).js │ ├── nodeModulesTripleSlashReferenceModeOverride1(module=node20).symbols │ ├── nodeModulesTripleSlashReferenceModeOverride1(module=node20).types │ ├── nodeModulesTripleSlashReferenceModeOverride1(module=nodenext).errors.txt │ ├── nodeModulesTripleSlashReferenceModeOverride1(module=nodenext).js │ ├── nodeModulesTripleSlashReferenceModeOverride1(module=nodenext).symbols │ ├── nodeModulesTripleSlashReferenceModeOverride1(module=nodenext).types │ ├── nodeModulesTripleSlashReferenceModeOverride2(module=node16).errors.txt │ ├── nodeModulesTripleSlashReferenceModeOverride2(module=node16).js │ ├── nodeModulesTripleSlashReferenceModeOverride2(module=node16).symbols │ ├── nodeModulesTripleSlashReferenceModeOverride2(module=node16).types │ ├── nodeModulesTripleSlashReferenceModeOverride2(module=node18).errors.txt │ ├── nodeModulesTripleSlashReferenceModeOverride2(module=node18).js │ ├── nodeModulesTripleSlashReferenceModeOverride2(module=node18).symbols │ ├── nodeModulesTripleSlashReferenceModeOverride2(module=node18).types │ ├── nodeModulesTripleSlashReferenceModeOverride2(module=node20).errors.txt │ ├── nodeModulesTripleSlashReferenceModeOverride2(module=node20).js │ ├── nodeModulesTripleSlashReferenceModeOverride2(module=node20).symbols │ ├── nodeModulesTripleSlashReferenceModeOverride2(module=node20).types │ ├── nodeModulesTripleSlashReferenceModeOverride2(module=nodenext).errors.txt │ ├── nodeModulesTripleSlashReferenceModeOverride2(module=nodenext).js │ ├── nodeModulesTripleSlashReferenceModeOverride2(module=nodenext).symbols │ ├── nodeModulesTripleSlashReferenceModeOverride2(module=nodenext).types │ ├── nodeModulesTripleSlashReferenceModeOverride3(module=node16).errors.txt │ ├── nodeModulesTripleSlashReferenceModeOverride3(module=node16).js │ ├── nodeModulesTripleSlashReferenceModeOverride3(module=node16).symbols │ ├── nodeModulesTripleSlashReferenceModeOverride3(module=node16).types │ ├── nodeModulesTripleSlashReferenceModeOverride3(module=node18).errors.txt │ ├── nodeModulesTripleSlashReferenceModeOverride3(module=node18).js │ ├── nodeModulesTripleSlashReferenceModeOverride3(module=node18).symbols │ ├── nodeModulesTripleSlashReferenceModeOverride3(module=node18).types │ ├── nodeModulesTripleSlashReferenceModeOverride3(module=node20).errors.txt │ ├── nodeModulesTripleSlashReferenceModeOverride3(module=node20).js │ ├── nodeModulesTripleSlashReferenceModeOverride3(module=node20).symbols │ ├── nodeModulesTripleSlashReferenceModeOverride3(module=node20).types │ ├── nodeModulesTripleSlashReferenceModeOverride3(module=nodenext).errors.txt │ ├── nodeModulesTripleSlashReferenceModeOverride3(module=nodenext).js │ ├── nodeModulesTripleSlashReferenceModeOverride3(module=nodenext).symbols │ ├── nodeModulesTripleSlashReferenceModeOverride3(module=nodenext).types │ ├── nodeModulesTripleSlashReferenceModeOverride4(module=node16).errors.txt │ ├── nodeModulesTripleSlashReferenceModeOverride4(module=node16).js │ ├── nodeModulesTripleSlashReferenceModeOverride4(module=node16).symbols │ ├── nodeModulesTripleSlashReferenceModeOverride4(module=node16).types │ ├── nodeModulesTripleSlashReferenceModeOverride4(module=node18).errors.txt │ ├── nodeModulesTripleSlashReferenceModeOverride4(module=node18).js │ ├── nodeModulesTripleSlashReferenceModeOverride4(module=node18).symbols │ ├── nodeModulesTripleSlashReferenceModeOverride4(module=node18).types │ ├── nodeModulesTripleSlashReferenceModeOverride4(module=node20).errors.txt │ ├── nodeModulesTripleSlashReferenceModeOverride4(module=node20).js │ ├── nodeModulesTripleSlashReferenceModeOverride4(module=node20).symbols │ ├── nodeModulesTripleSlashReferenceModeOverride4(module=node20).types │ ├── nodeModulesTripleSlashReferenceModeOverride4(module=nodenext).errors.txt │ ├── nodeModulesTripleSlashReferenceModeOverride4(module=nodenext).js │ ├── nodeModulesTripleSlashReferenceModeOverride4(module=nodenext).symbols │ ├── nodeModulesTripleSlashReferenceModeOverride4(module=nodenext).types │ ├── nodeModulesTripleSlashReferenceModeOverride5(module=node16).js │ ├── nodeModulesTripleSlashReferenceModeOverride5(module=node16).symbols │ ├── nodeModulesTripleSlashReferenceModeOverride5(module=node16).types │ ├── nodeModulesTripleSlashReferenceModeOverride5(module=node18).js │ ├── nodeModulesTripleSlashReferenceModeOverride5(module=node18).symbols │ ├── nodeModulesTripleSlashReferenceModeOverride5(module=node18).types │ ├── nodeModulesTripleSlashReferenceModeOverride5(module=node20).js │ ├── nodeModulesTripleSlashReferenceModeOverride5(module=node20).symbols │ ├── nodeModulesTripleSlashReferenceModeOverride5(module=node20).types │ ├── nodeModulesTripleSlashReferenceModeOverride5(module=nodenext).js │ ├── nodeModulesTripleSlashReferenceModeOverride5(module=nodenext).symbols │ ├── nodeModulesTripleSlashReferenceModeOverride5(module=nodenext).types │ ├── nodeModulesTripleSlashReferenceModeOverrideModeError(module=node16).errors.txt │ ├── nodeModulesTripleSlashReferenceModeOverrideModeError(module=node16).js │ ├── nodeModulesTripleSlashReferenceModeOverrideModeError(module=node16).symbols │ ├── nodeModulesTripleSlashReferenceModeOverrideModeError(module=node16).types │ ├── nodeModulesTripleSlashReferenceModeOverrideModeError(module=node18).errors.txt │ ├── nodeModulesTripleSlashReferenceModeOverrideModeError(module=node18).js │ ├── nodeModulesTripleSlashReferenceModeOverrideModeError(module=node18).symbols │ ├── nodeModulesTripleSlashReferenceModeOverrideModeError(module=node18).types │ ├── nodeModulesTripleSlashReferenceModeOverrideModeError(module=node20).errors.txt │ ├── nodeModulesTripleSlashReferenceModeOverrideModeError(module=node20).js │ ├── nodeModulesTripleSlashReferenceModeOverrideModeError(module=node20).symbols │ ├── nodeModulesTripleSlashReferenceModeOverrideModeError(module=node20).types │ ├── nodeModulesTripleSlashReferenceModeOverrideModeError(module=nodenext).errors.txt │ ├── nodeModulesTripleSlashReferenceModeOverrideModeError(module=nodenext).js │ ├── nodeModulesTripleSlashReferenceModeOverrideModeError(module=nodenext).symbols │ ├── nodeModulesTripleSlashReferenceModeOverrideModeError(module=nodenext).types │ ├── nodeModulesTripleSlashReferenceModeOverrideOldResolutionError.js │ ├── nodeModulesTripleSlashReferenceModeOverrideOldResolutionError.symbols │ ├── nodeModulesTripleSlashReferenceModeOverrideOldResolutionError.types │ ├── nodeModulesTypesVersionPackageExports(module=node16).js │ ├── nodeModulesTypesVersionPackageExports(module=node16).symbols │ ├── nodeModulesTypesVersionPackageExports(module=node16).types │ ├── nodeModulesTypesVersionPackageExports(module=node18).js │ ├── nodeModulesTypesVersionPackageExports(module=node18).symbols │ ├── nodeModulesTypesVersionPackageExports(module=node18).types │ ├── nodeModulesTypesVersionPackageExports(module=node20).js │ ├── nodeModulesTypesVersionPackageExports(module=node20).symbols │ ├── nodeModulesTypesVersionPackageExports(module=node20).types │ ├── nodeModulesTypesVersionPackageExports(module=nodenext).js │ ├── nodeModulesTypesVersionPackageExports(module=nodenext).symbols │ ├── nodeModulesTypesVersionPackageExports(module=nodenext).types │ ├── nodeNextCjsNamespaceImportDefault1.js │ ├── nodeNextCjsNamespaceImportDefault1.symbols │ ├── nodeNextCjsNamespaceImportDefault1.types │ ├── nodeNextCjsNamespaceImportDefault2.js │ ├── nodeNextCjsNamespaceImportDefault2.symbols │ ├── nodeNextCjsNamespaceImportDefault2.types │ ├── nodeNextEsmImportsOfPackagesWithExtensionlessMains.js │ ├── nodeNextEsmImportsOfPackagesWithExtensionlessMains.symbols │ ├── nodeNextEsmImportsOfPackagesWithExtensionlessMains.types │ ├── nodeNextImportModeImplicitIndexResolution.errors.txt │ ├── nodeNextImportModeImplicitIndexResolution.js │ ├── nodeNextImportModeImplicitIndexResolution.symbols │ ├── nodeNextImportModeImplicitIndexResolution.types │ ├── nodeNextImportModeImplicitIndexResolution2.errors.txt │ ├── nodeNextImportModeImplicitIndexResolution2.js │ ├── nodeNextImportModeImplicitIndexResolution2.symbols │ ├── nodeNextImportModeImplicitIndexResolution2.types │ ├── nodeNextModuleResolution1.errors.txt │ ├── nodeNextModuleResolution1.js │ ├── nodeNextModuleResolution1.symbols │ ├── nodeNextModuleResolution1.trace.json │ ├── nodeNextModuleResolution1.types │ ├── nodeNextModuleResolution2.errors.txt │ ├── nodeNextModuleResolution2.js │ ├── nodeNextModuleResolution2.symbols │ ├── nodeNextModuleResolution2.trace.json │ ├── nodeNextModuleResolution2.types │ ├── nodeNextPackageImportMapRootDir.js │ ├── nodeNextPackageImportMapRootDir.symbols │ ├── nodeNextPackageImportMapRootDir.types │ ├── nodeNextPackageSelfNameWithOutDir.errors.txt │ ├── nodeNextPackageSelfNameWithOutDir.js │ ├── nodeNextPackageSelfNameWithOutDir.symbols │ ├── nodeNextPackageSelfNameWithOutDir.types │ ├── nodeNextPackageSelfNameWithOutDirDeclDir.errors.txt │ ├── nodeNextPackageSelfNameWithOutDirDeclDir.js │ ├── nodeNextPackageSelfNameWithOutDirDeclDir.symbols │ ├── nodeNextPackageSelfNameWithOutDirDeclDir.types │ ├── nodeNextPackageSelfNameWithOutDirDeclDirComposite.js │ ├── nodeNextPackageSelfNameWithOutDirDeclDirComposite.symbols │ ├── nodeNextPackageSelfNameWithOutDirDeclDirComposite.types │ ├── nodeNextPackageSelfNameWithOutDirDeclDirCompositeNestedDirs.js │ ├── nodeNextPackageSelfNameWithOutDirDeclDirCompositeNestedDirs.symbols │ ├── nodeNextPackageSelfNameWithOutDirDeclDirCompositeNestedDirs.types │ ├── nodeNextPackageSelfNameWithOutDirDeclDirNestedDirs.js │ ├── nodeNextPackageSelfNameWithOutDirDeclDirNestedDirs.symbols │ ├── nodeNextPackageSelfNameWithOutDirDeclDirNestedDirs.types │ ├── nodeNextPackageSelfNameWithOutDirDeclDirRootDir.js │ ├── nodeNextPackageSelfNameWithOutDirDeclDirRootDir.symbols │ ├── nodeNextPackageSelfNameWithOutDirDeclDirRootDir.types │ ├── nodeNextPackageSelfNameWithOutDirRootDir.js │ ├── nodeNextPackageSelfNameWithOutDirRootDir.symbols │ ├── nodeNextPackageSelfNameWithOutDirRootDir.types │ ├── nodeNextPathCompletions.baseline │ ├── nodePackageSelfName(module=node16).errors.txt │ ├── nodePackageSelfName(module=node16).js │ ├── nodePackageSelfName(module=node16).symbols │ ├── nodePackageSelfName(module=node16).types │ ├── nodePackageSelfName(module=node18).errors.txt │ ├── nodePackageSelfName(module=node18).js │ ├── nodePackageSelfName(module=node18).symbols │ ├── nodePackageSelfName(module=node18).types │ ├── nodePackageSelfName(module=node20).js │ ├── nodePackageSelfName(module=node20).symbols │ ├── nodePackageSelfName(module=node20).types │ ├── nodePackageSelfName(module=nodenext).js │ ├── nodePackageSelfName(module=nodenext).symbols │ ├── nodePackageSelfName(module=nodenext).types │ ├── nodePackageSelfNameScoped(module=node16).errors.txt │ ├── nodePackageSelfNameScoped(module=node16).js │ ├── nodePackageSelfNameScoped(module=node16).symbols │ ├── nodePackageSelfNameScoped(module=node16).types │ ├── nodePackageSelfNameScoped(module=node18).errors.txt │ ├── nodePackageSelfNameScoped(module=node18).js │ ├── nodePackageSelfNameScoped(module=node18).symbols │ ├── nodePackageSelfNameScoped(module=node18).types │ ├── nodePackageSelfNameScoped(module=node20).js │ ├── nodePackageSelfNameScoped(module=node20).symbols │ ├── nodePackageSelfNameScoped(module=node20).types │ ├── nodePackageSelfNameScoped(module=nodenext).js │ ├── nodePackageSelfNameScoped(module=nodenext).symbols │ ├── nodePackageSelfNameScoped(module=nodenext).types │ ├── nodeResolution1.js │ ├── nodeResolution1.symbols │ ├── nodeResolution1.types │ ├── nodeResolution2.js │ ├── nodeResolution2.symbols │ ├── nodeResolution2.types │ ├── nodeResolution3.js │ ├── nodeResolution3.symbols │ ├── nodeResolution3.types │ ├── nodeResolution4.js │ ├── nodeResolution4.symbols │ ├── nodeResolution4.types │ ├── nodeResolution5.js │ ├── nodeResolution5.symbols │ ├── nodeResolution5.types │ ├── nodeResolution6.js │ ├── nodeResolution6.symbols │ ├── nodeResolution6.types │ ├── nodeResolution7.js │ ├── nodeResolution7.symbols │ ├── nodeResolution7.types │ ├── nodeResolution8.js │ ├── nodeResolution8.symbols │ ├── nodeResolution8.types │ ├── nominalSubtypeCheckOfTypeParameter.js │ ├── nominalSubtypeCheckOfTypeParameter.symbols │ ├── nominalSubtypeCheckOfTypeParameter.types │ ├── nominalSubtypeCheckOfTypeParameter2.js │ ├── nominalSubtypeCheckOfTypeParameter2.symbols │ ├── nominalSubtypeCheckOfTypeParameter2.types │ ├── nonArrayRestArgs.errors.txt │ ├── nonArrayRestArgs.js │ ├── nonArrayRestArgs.symbols │ ├── nonArrayRestArgs.types │ ├── nonConflictingRecursiveBaseTypeMembers.js │ ├── nonConflictingRecursiveBaseTypeMembers.symbols │ ├── nonConflictingRecursiveBaseTypeMembers.types │ ├── nonContextuallyTypedLogicalOr.js │ ├── nonContextuallyTypedLogicalOr.symbols │ ├── nonContextuallyTypedLogicalOr.types │ ├── nonExportedElementsOfMergedModules.errors.txt │ ├── nonExportedElementsOfMergedModules.js │ ├── nonExportedElementsOfMergedModules.symbols │ ├── nonExportedElementsOfMergedModules.types │ ├── nonGenericClassExtendingGenericClassWithAny.errors.txt │ ├── nonGenericClassExtendingGenericClassWithAny.js │ ├── nonGenericClassExtendingGenericClassWithAny.symbols │ ├── nonGenericClassExtendingGenericClassWithAny.types │ ├── nonGenericTypeReferenceWithTypeArguments.errors.txt │ ├── nonGenericTypeReferenceWithTypeArguments.js │ ├── nonGenericTypeReferenceWithTypeArguments.symbols │ ├── nonGenericTypeReferenceWithTypeArguments.types │ ├── nonIdenticalTypeConstraints.errors.txt │ ├── nonIdenticalTypeConstraints.js │ ├── nonIdenticalTypeConstraints.symbols │ ├── nonIdenticalTypeConstraints.types │ ├── nonInferrableTypePropagation1.js │ ├── nonInferrableTypePropagation1.symbols │ ├── nonInferrableTypePropagation1.types │ ├── nonInferrableTypePropagation2.js │ ├── nonInferrableTypePropagation2.symbols │ ├── nonInferrableTypePropagation2.types │ ├── nonInferrableTypePropagation3.symbols │ ├── nonInferrableTypePropagation3.types │ ├── nonInstantiatedModule.errors.txt │ ├── nonInstantiatedModule.js │ ├── nonInstantiatedModule.symbols │ ├── nonInstantiatedModule.types │ ├── nonIterableRestElement1.js │ ├── nonIterableRestElement1.symbols │ ├── nonIterableRestElement1.types │ ├── nonIterableRestElement2.js │ ├── nonIterableRestElement2.symbols │ ├── nonIterableRestElement2.types │ ├── nonIterableRestElement3.errors.txt │ ├── nonIterableRestElement3.js │ ├── nonIterableRestElement3.symbols │ ├── nonIterableRestElement3.types │ ├── nonJsDeclarationFilePathCompletions.baseline │ ├── nonMergedDeclarationsAndOverloads.errors.txt │ ├── nonMergedDeclarationsAndOverloads.js │ ├── nonMergedDeclarationsAndOverloads.symbols │ ├── nonMergedDeclarationsAndOverloads.types │ ├── nonMergedOverloads.errors.txt │ ├── nonMergedOverloads.js │ ├── nonMergedOverloads.symbols │ ├── nonMergedOverloads.types │ ├── nonNullFullInference.js │ ├── nonNullFullInference.symbols │ ├── nonNullFullInference.types │ ├── nonNullMappedType.js │ ├── nonNullMappedType.symbols │ ├── nonNullMappedType.types │ ├── nonNullParameterExtendingStringAssignableToString.js │ ├── nonNullParameterExtendingStringAssignableToString.symbols │ ├── nonNullParameterExtendingStringAssignableToString.types │ ├── nonNullReferenceMatching.js │ ├── nonNullReferenceMatching.symbols │ ├── nonNullReferenceMatching.types │ ├── nonNullableAndObjectIntersections(strict=false).js │ ├── nonNullableAndObjectIntersections(strict=false).symbols │ ├── nonNullableAndObjectIntersections(strict=false).types │ ├── nonNullableAndObjectIntersections(strict=true).js │ ├── nonNullableAndObjectIntersections(strict=true).symbols │ ├── nonNullableAndObjectIntersections(strict=true).types │ ├── nonNullableReduction.js │ ├── nonNullableReduction.symbols │ ├── nonNullableReduction.types │ ├── nonNullableReductionNonStrict.js │ ├── nonNullableReductionNonStrict.symbols │ ├── nonNullableReductionNonStrict.types │ ├── nonNullableTypes1.js │ ├── nonNullableTypes1.symbols │ ├── nonNullableTypes1.types │ ├── nonNullableWithNullableGenericIndexedAccessArg.symbols │ ├── nonNullableWithNullableGenericIndexedAccessArg.types │ ├── nonObjectUnionNestedExcessPropertyCheck.errors.txt │ ├── nonObjectUnionNestedExcessPropertyCheck.js │ ├── nonObjectUnionNestedExcessPropertyCheck.symbols │ ├── nonObjectUnionNestedExcessPropertyCheck.types │ ├── nonPrimitiveAccessProperty.errors.txt │ ├── nonPrimitiveAccessProperty.js │ ├── nonPrimitiveAccessProperty.symbols │ ├── nonPrimitiveAccessProperty.types │ ├── nonPrimitiveAndEmptyObject.js │ ├── nonPrimitiveAndEmptyObject.symbols │ ├── nonPrimitiveAndEmptyObject.types │ ├── nonPrimitiveAndTypeVariables.errors.txt │ ├── nonPrimitiveAndTypeVariables.js │ ├── nonPrimitiveAndTypeVariables.symbols │ ├── nonPrimitiveAndTypeVariables.types │ ├── nonPrimitiveAsProperty.errors.txt │ ├── nonPrimitiveAsProperty.js │ ├── nonPrimitiveAsProperty.symbols │ ├── nonPrimitiveAsProperty.types │ ├── nonPrimitiveAssignError.errors.txt │ ├── nonPrimitiveAssignError.js │ ├── nonPrimitiveAssignError.symbols │ ├── nonPrimitiveAssignError.types │ ├── nonPrimitiveConstraintOfIndexAccessType.errors.txt │ ├── nonPrimitiveConstraintOfIndexAccessType.js │ ├── nonPrimitiveConstraintOfIndexAccessType.symbols │ ├── nonPrimitiveConstraintOfIndexAccessType.types │ ├── nonPrimitiveInFunction.errors.txt │ ├── nonPrimitiveInFunction.js │ ├── nonPrimitiveInFunction.symbols │ ├── nonPrimitiveInFunction.types │ ├── nonPrimitiveInGeneric.errors.txt │ ├── nonPrimitiveInGeneric.js │ ├── nonPrimitiveInGeneric.symbols │ ├── nonPrimitiveInGeneric.types │ ├── nonPrimitiveIndexingWithForIn.js │ ├── nonPrimitiveIndexingWithForIn.symbols │ ├── nonPrimitiveIndexingWithForIn.types │ ├── nonPrimitiveIndexingWithForInNoImplicitAny.js │ ├── nonPrimitiveIndexingWithForInNoImplicitAny.symbols │ ├── nonPrimitiveIndexingWithForInNoImplicitAny.types │ ├── nonPrimitiveIndexingWithForInSupressError.errors.txt │ ├── nonPrimitiveIndexingWithForInSupressError.js │ ├── nonPrimitiveIndexingWithForInSupressError.symbols │ ├── nonPrimitiveIndexingWithForInSupressError.types │ ├── nonPrimitiveNarrow.errors.txt │ ├── nonPrimitiveNarrow.js │ ├── nonPrimitiveNarrow.symbols │ ├── nonPrimitiveNarrow.types │ ├── nonPrimitiveRhsSideOfInExpression.js │ ├── nonPrimitiveRhsSideOfInExpression.symbols │ ├── nonPrimitiveRhsSideOfInExpression.types │ ├── nonPrimitiveStrictNull.errors.txt │ ├── nonPrimitiveStrictNull.js │ ├── nonPrimitiveStrictNull.symbols │ ├── nonPrimitiveStrictNull.types │ ├── nonPrimitiveUnionIntersection.errors.txt │ ├── nonPrimitiveUnionIntersection.js │ ├── nonPrimitiveUnionIntersection.symbols │ ├── nonPrimitiveUnionIntersection.types │ ├── nonTSExtensions(module=node18).js │ ├── nonTSExtensions(module=node20).js │ ├── nonTSExtensions(module=nodenext).js │ ├── nondistributiveConditionalTypeInfer.js │ ├── nondistributiveConditionalTypeInfer.symbols │ ├── nondistributiveConditionalTypeInfer.types │ ├── nonexistentPropertyOnUnion.errors.txt │ ├── nonexistentPropertyOnUnion.js │ ├── nonexistentPropertyOnUnion.symbols │ ├── nonexistentPropertyOnUnion.types │ ├── nonexistentPropertyUnavailableOnPromisedType.errors.txt │ ├── nonexistentPropertyUnavailableOnPromisedType.js │ ├── nonexistentPropertyUnavailableOnPromisedType.symbols │ ├── nonexistentPropertyUnavailableOnPromisedType.types │ ├── nongenericConditionalNotPartiallyComputed.js │ ├── nongenericConditionalNotPartiallyComputed.symbols │ ├── nongenericConditionalNotPartiallyComputed.types │ ├── nongenericPartialInstantiationsRelatedInBothDirections.js │ ├── nongenericPartialInstantiationsRelatedInBothDirections.symbols │ ├── nongenericPartialInstantiationsRelatedInBothDirections.types │ ├── nonnullAssertionPropegatesContextualType.js │ ├── nonnullAssertionPropegatesContextualType.symbols │ ├── nonnullAssertionPropegatesContextualType.types │ ├── nonstrictTemplateWithNotOctalPrintsAsIs.js │ ├── nonstrictTemplateWithNotOctalPrintsAsIs.symbols │ ├── nonstrictTemplateWithNotOctalPrintsAsIs.types │ ├── normalizedIntersectionTooComplex.errors.txt │ ├── normalizedIntersectionTooComplex.js │ ├── normalizedIntersectionTooComplex.symbols │ ├── normalizedIntersectionTooComplex.types │ ├── nounusedTypeParameterConstraint.js │ ├── nounusedTypeParameterConstraint.symbols │ ├── nounusedTypeParameterConstraint.types │ ├── null.errors.txt │ ├── null.js │ ├── null.symbols │ ├── null.types │ ├── nullAssignableToEveryType.js │ ├── nullAssignableToEveryType.symbols │ ├── nullAssignableToEveryType.types │ ├── nullAssignedToUndefined.errors.txt │ ├── nullAssignedToUndefined.js │ ├── nullAssignedToUndefined.symbols │ ├── nullAssignedToUndefined.types │ ├── nullIsSubtypeOfEverythingButUndefined.js │ ├── nullIsSubtypeOfEverythingButUndefined.symbols │ ├── nullIsSubtypeOfEverythingButUndefined.types │ ├── nullKeyword.errors.txt │ ├── nullKeyword.js │ ├── nullKeyword.symbols │ ├── nullKeyword.types │ ├── nullOrUndefinedTypeGuardIsOrderIndependent.js │ ├── nullOrUndefinedTypeGuardIsOrderIndependent.symbols │ ├── nullOrUndefinedTypeGuardIsOrderIndependent.types │ ├── nullPropertyName.js │ ├── nullPropertyName.symbols │ ├── nullPropertyName.types │ ├── nullableFunctionError.errors.txt │ ├── nullableFunctionError.js │ ├── nullableFunctionError.symbols │ ├── nullableFunctionError.types │ ├── nullishCoalescingAssignmentVsPrivateFieldsJsEmit1.js │ ├── nullishCoalescingAssignmentVsPrivateFieldsJsEmit1.symbols │ ├── nullishCoalescingAssignmentVsPrivateFieldsJsEmit1.types │ ├── nullishCoalescingOperator1.errors.txt │ ├── nullishCoalescingOperator1.js │ ├── nullishCoalescingOperator1.symbols │ ├── nullishCoalescingOperator1.types │ ├── nullishCoalescingOperator10.js │ ├── nullishCoalescingOperator10.symbols │ ├── nullishCoalescingOperator10.types │ ├── nullishCoalescingOperator11.errors.txt │ ├── nullishCoalescingOperator11.js │ ├── nullishCoalescingOperator11.symbols │ ├── nullishCoalescingOperator11.types │ ├── nullishCoalescingOperator12.js │ ├── nullishCoalescingOperator12.symbols │ ├── nullishCoalescingOperator12.types │ ├── nullishCoalescingOperator2.js │ ├── nullishCoalescingOperator2.symbols │ ├── nullishCoalescingOperator2.types │ ├── nullishCoalescingOperator3.js │ ├── nullishCoalescingOperator3.symbols │ ├── nullishCoalescingOperator3.types │ ├── nullishCoalescingOperator4.errors.txt │ ├── nullishCoalescingOperator4.js │ ├── nullishCoalescingOperator4.symbols │ ├── nullishCoalescingOperator4.types │ ├── nullishCoalescingOperator5.errors.txt │ ├── nullishCoalescingOperator5.js │ ├── nullishCoalescingOperator5.symbols │ ├── nullishCoalescingOperator5.types │ ├── nullishCoalescingOperator6.js │ ├── nullishCoalescingOperator6.symbols │ ├── nullishCoalescingOperator6.types │ ├── nullishCoalescingOperator7.js │ ├── nullishCoalescingOperator7.symbols │ ├── nullishCoalescingOperator7.types │ ├── nullishCoalescingOperator8.js │ ├── nullishCoalescingOperator8.symbols │ ├── nullishCoalescingOperator8.types │ ├── nullishCoalescingOperator9.js │ ├── nullishCoalescingOperator9.symbols │ ├── nullishCoalescingOperator9.types │ ├── nullishCoalescingOperatorInAsyncGenerator(target=es2015).js │ ├── nullishCoalescingOperatorInAsyncGenerator(target=es5).errors.txt │ ├── nullishCoalescingOperatorInAsyncGenerator(target=es5).js │ ├── nullishCoalescingOperatorInAsyncGenerator(target=esnext).js │ ├── nullishCoalescingOperatorInParameterBindingPattern(target=es2015).js │ ├── nullishCoalescingOperatorInParameterBindingPattern(target=es5).errors.txt │ ├── nullishCoalescingOperatorInParameterBindingPattern(target=es5).js │ ├── nullishCoalescingOperatorInParameterBindingPattern(target=esnext).js │ ├── nullishCoalescingOperatorInParameterBindingPattern.2(target=es2015).errors.txt │ ├── nullishCoalescingOperatorInParameterBindingPattern.2(target=es5).errors.txt │ ├── nullishCoalescingOperatorInParameterInitializer(target=es2015).js │ ├── nullishCoalescingOperatorInParameterInitializer(target=es5).errors.txt │ ├── nullishCoalescingOperatorInParameterInitializer(target=es5).js │ ├── nullishCoalescingOperatorInParameterInitializer(target=esnext).js │ ├── nullishCoalescingOperatorInParameterInitializer.2(target=es2015).errors.txt │ ├── nullishCoalescingOperatorInParameterInitializer.2(target=es5).errors.txt │ ├── nullishCoalescingOperator_es2020.js │ ├── nullishCoalescingOperator_es2020.symbols │ ├── nullishCoalescingOperator_es2020.types │ ├── nullishCoalescingOperator_not_strict.js │ ├── nullishCoalescingOperator_not_strict.symbols │ ├── nullishCoalescingOperator_not_strict.types │ ├── numberAsInLHS.js │ ├── numberAsInLHS.symbols │ ├── numberAsInLHS.types │ ├── numberAssignableToEnum.errors.txt │ ├── numberAssignableToEnum.js │ ├── numberAssignableToEnum.symbols │ ├── numberAssignableToEnum.types │ ├── numberAssignableToEnumInsideUnion.errors.txt │ ├── numberAssignableToEnumInsideUnion.js │ ├── numberAssignableToEnumInsideUnion.symbols │ ├── numberAssignableToEnumInsideUnion.types │ ├── numberLiteralsWithLeadingZeros.errors.txt │ ├── numberLiteralsWithLeadingZeros.js │ ├── numberLiteralsWithLeadingZeros.symbols │ ├── numberLiteralsWithLeadingZeros.types │ ├── numberOnLeftSideOfInExpression.errors.txt │ ├── numberOnLeftSideOfInExpression.js │ ├── numberOnLeftSideOfInExpression.symbols │ ├── numberOnLeftSideOfInExpression.types │ ├── numberPropertyAccess.js │ ├── numberPropertyAccess.symbols │ ├── numberPropertyAccess.types │ ├── numberToString.errors.txt │ ├── numberToString.js │ ├── numberToString.symbols │ ├── numberToString.types │ ├── numberVsBigIntOperations.errors.txt │ ├── numberVsBigIntOperations.js │ ├── numberVsBigIntOperations.symbols │ ├── numberVsBigIntOperations.types │ ├── numericClassMembers1.errors.txt │ ├── numericClassMembers1.js │ ├── numericClassMembers1.symbols │ ├── numericClassMembers1.types │ ├── numericEnumMappedType.js │ ├── numericEnumMappedType.symbols │ ├── numericEnumMappedType.types │ ├── numericIndexExpressions.errors.txt │ ├── numericIndexExpressions.js │ ├── numericIndexExpressions.symbols │ ├── numericIndexExpressions.types │ ├── numericIndexerConstrainsPropertyDeclarations.errors.txt │ ├── numericIndexerConstrainsPropertyDeclarations.js │ ├── numericIndexerConstrainsPropertyDeclarations.symbols │ ├── numericIndexerConstrainsPropertyDeclarations.types │ ├── numericIndexerConstrainsPropertyDeclarations2.errors.txt │ ├── numericIndexerConstrainsPropertyDeclarations2.js │ ├── numericIndexerConstrainsPropertyDeclarations2.symbols │ ├── numericIndexerConstrainsPropertyDeclarations2.types │ ├── numericIndexerConstraint.errors.txt │ ├── numericIndexerConstraint.js │ ├── numericIndexerConstraint.symbols │ ├── numericIndexerConstraint.types │ ├── numericIndexerConstraint1.errors.txt │ ├── numericIndexerConstraint1.js │ ├── numericIndexerConstraint1.symbols │ ├── numericIndexerConstraint1.types │ ├── numericIndexerConstraint2.errors.txt │ ├── numericIndexerConstraint2.js │ ├── numericIndexerConstraint2.symbols │ ├── numericIndexerConstraint2.types │ ├── numericIndexerConstraint3.errors.txt │ ├── numericIndexerConstraint3.js │ ├── numericIndexerConstraint3.symbols │ ├── numericIndexerConstraint3.types │ ├── numericIndexerConstraint4.errors.txt │ ├── numericIndexerConstraint4.js │ ├── numericIndexerConstraint4.symbols │ ├── numericIndexerConstraint4.types │ ├── numericIndexerConstraint5.errors.txt │ ├── numericIndexerConstraint5.js │ ├── numericIndexerConstraint5.symbols │ ├── numericIndexerConstraint5.types │ ├── numericIndexerTyping1.errors.txt │ ├── numericIndexerTyping1.js │ ├── numericIndexerTyping1.symbols │ ├── numericIndexerTyping1.types │ ├── numericIndexerTyping2.errors.txt │ ├── numericIndexerTyping2.js │ ├── numericIndexerTyping2.symbols │ ├── numericIndexerTyping2.types │ ├── numericIndexingResults.errors.txt │ ├── numericIndexingResults.js │ ├── numericIndexingResults.symbols │ ├── numericIndexingResults.types │ ├── numericLiteralTypes1.js │ ├── numericLiteralTypes1.symbols │ ├── numericLiteralTypes1.types │ ├── numericLiteralTypes2.js │ ├── numericLiteralTypes2.symbols │ ├── numericLiteralTypes2.types │ ├── numericLiteralTypes3.errors.txt │ ├── numericLiteralTypes3.js │ ├── numericLiteralTypes3.symbols │ ├── numericLiteralTypes3.types │ ├── numericLiteralsWithTrailingDecimalPoints01.errors.txt │ ├── numericLiteralsWithTrailingDecimalPoints01.js │ ├── numericLiteralsWithTrailingDecimalPoints01.symbols │ ├── numericLiteralsWithTrailingDecimalPoints01.types │ ├── numericLiteralsWithTrailingDecimalPoints02.errors.txt │ ├── numericLiteralsWithTrailingDecimalPoints02.js │ ├── numericLiteralsWithTrailingDecimalPoints02.symbols │ ├── numericLiteralsWithTrailingDecimalPoints02.types │ ├── numericMethodName1.js │ ├── numericMethodName1.symbols │ ├── numericMethodName1.types │ ├── numericNamedPropertyDuplicates.errors.txt │ ├── numericNamedPropertyDuplicates.js │ ├── numericNamedPropertyDuplicates.symbols │ ├── numericNamedPropertyDuplicates.types │ ├── numericStringLiteralTypes.js │ ├── numericStringLiteralTypes.symbols │ ├── numericStringLiteralTypes.types │ ├── numericStringNamedPropertyEquivalence.errors.txt │ ├── numericStringNamedPropertyEquivalence.js │ ├── numericStringNamedPropertyEquivalence.symbols │ ├── numericStringNamedPropertyEquivalence.types │ ├── numericUnderscoredSeparator(target=es2015).js │ ├── numericUnderscoredSeparator(target=es2015).symbols │ ├── numericUnderscoredSeparator(target=es2015).types │ ├── numericUnderscoredSeparator(target=es2016).js │ ├── numericUnderscoredSeparator(target=es2016).symbols │ ├── numericUnderscoredSeparator(target=es2016).types │ ├── numericUnderscoredSeparator(target=es2017).js │ ├── numericUnderscoredSeparator(target=es2017).symbols │ ├── numericUnderscoredSeparator(target=es2017).types │ ├── numericUnderscoredSeparator(target=es2018).js │ ├── numericUnderscoredSeparator(target=es2018).symbols │ ├── numericUnderscoredSeparator(target=es2018).types │ ├── numericUnderscoredSeparator(target=es2019).js │ ├── numericUnderscoredSeparator(target=es2019).symbols │ ├── numericUnderscoredSeparator(target=es2019).types │ ├── numericUnderscoredSeparator(target=es5).errors.txt │ ├── numericUnderscoredSeparator(target=es5).js │ ├── numericUnderscoredSeparator(target=es5).symbols │ ├── numericUnderscoredSeparator(target=es5).types │ ├── numericUnderscoredSeparator(target=esnext).js │ ├── numericUnderscoredSeparator(target=esnext).symbols │ ├── numericUnderscoredSeparator(target=esnext).types │ ├── objectAssignLikeNonUnionResult.js │ ├── objectAssignLikeNonUnionResult.symbols │ ├── objectAssignLikeNonUnionResult.types │ ├── objectBindingPatternContextuallyTypesArgument.js │ ├── objectBindingPatternContextuallyTypesArgument.symbols │ ├── objectBindingPatternContextuallyTypesArgument.types │ ├── objectBindingPatternKeywordIdentifiers01.errors.txt │ ├── objectBindingPatternKeywordIdentifiers01.js │ ├── objectBindingPatternKeywordIdentifiers01.symbols │ ├── objectBindingPatternKeywordIdentifiers01.types │ ├── objectBindingPatternKeywordIdentifiers02.errors.txt │ ├── objectBindingPatternKeywordIdentifiers02.js │ ├── objectBindingPatternKeywordIdentifiers02.symbols │ ├── objectBindingPatternKeywordIdentifiers02.types │ ├── objectBindingPatternKeywordIdentifiers03.errors.txt │ ├── objectBindingPatternKeywordIdentifiers03.js │ ├── objectBindingPatternKeywordIdentifiers03.symbols │ ├── objectBindingPatternKeywordIdentifiers03.types │ ├── objectBindingPatternKeywordIdentifiers04.errors.txt │ ├── objectBindingPatternKeywordIdentifiers04.js │ ├── objectBindingPatternKeywordIdentifiers04.symbols │ ├── objectBindingPatternKeywordIdentifiers04.types │ ├── objectBindingPatternKeywordIdentifiers05.js │ ├── objectBindingPatternKeywordIdentifiers05.symbols │ ├── objectBindingPatternKeywordIdentifiers05.types │ ├── objectBindingPatternKeywordIdentifiers06.js │ ├── objectBindingPatternKeywordIdentifiers06.symbols │ ├── objectBindingPatternKeywordIdentifiers06.types │ ├── objectBindingPattern_restElementWithPropertyName.errors.txt │ ├── objectBindingPattern_restElementWithPropertyName.js │ ├── objectBindingPattern_restElementWithPropertyName.symbols │ ├── objectBindingPattern_restElementWithPropertyName.types │ ├── objectCreate-errors.errors.txt │ ├── objectCreate-errors.js │ ├── objectCreate-errors.symbols │ ├── objectCreate-errors.types │ ├── objectCreate.js │ ├── objectCreate.symbols │ ├── objectCreate.types │ ├── objectCreate2.js │ ├── objectCreate2.symbols │ ├── objectCreate2.types │ ├── objectCreationExpressionInFunctionParameter.errors.txt │ ├── objectCreationExpressionInFunctionParameter.js │ ├── objectCreationExpressionInFunctionParameter.symbols │ ├── objectCreationExpressionInFunctionParameter.types │ ├── objectCreationOfElementAccessExpression.errors.txt │ ├── objectCreationOfElementAccessExpression.js │ ├── objectCreationOfElementAccessExpression.symbols │ ├── objectCreationOfElementAccessExpression.types │ ├── objectFreeze.errors.txt │ ├── objectFreeze.js │ ├── objectFreeze.symbols │ ├── objectFreeze.types │ ├── objectFreezeLiteralsDontWiden.errors.txt │ ├── objectFreezeLiteralsDontWiden.js │ ├── objectFreezeLiteralsDontWiden.symbols │ ├── objectFreezeLiteralsDontWiden.types │ ├── objectFromEntries.js │ ├── objectFromEntries.symbols │ ├── objectFromEntries.types │ ├── objectGroupBy.errors.txt │ ├── objectGroupBy.js │ ├── objectGroupBy.symbols │ ├── objectGroupBy.types │ ├── objectIndexer.errors.txt │ ├── objectIndexer.js │ ├── objectIndexer.symbols │ ├── objectIndexer.types │ ├── objectInstantiationFromUnionSpread.js │ ├── objectInstantiationFromUnionSpread.symbols │ ├── objectInstantiationFromUnionSpread.types │ ├── objectLitArrayDeclNoNew.errors.txt │ ├── objectLitArrayDeclNoNew.js │ ├── objectLitArrayDeclNoNew.symbols │ ├── objectLitArrayDeclNoNew.types │ ├── objectLitGetterSetter.js │ ├── objectLitGetterSetter.symbols │ ├── objectLitGetterSetter.types │ ├── objectLitIndexerContextualType.errors.txt │ ├── objectLitIndexerContextualType.js │ ├── objectLitIndexerContextualType.symbols │ ├── objectLitIndexerContextualType.types │ ├── objectLitPropertyScoping.js │ ├── objectLitPropertyScoping.symbols │ ├── objectLitPropertyScoping.types │ ├── objectLitStructuralTypeMismatch.errors.txt │ ├── objectLitStructuralTypeMismatch.js │ ├── objectLitStructuralTypeMismatch.symbols │ ├── objectLitStructuralTypeMismatch.types │ ├── objectLitTargetTypeCallSite.errors.txt │ ├── objectLitTargetTypeCallSite.js │ ├── objectLitTargetTypeCallSite.symbols │ ├── objectLitTargetTypeCallSite.types │ ├── objectLiteral1.js │ ├── objectLiteral1.symbols │ ├── objectLiteral1.types │ ├── objectLiteral2.js │ ├── objectLiteral2.symbols │ ├── objectLiteral2.types │ ├── objectLiteralArraySpecialization.js │ ├── objectLiteralArraySpecialization.symbols │ ├── objectLiteralArraySpecialization.types │ ├── objectLiteralComputedNameNoDeclarationError.js │ ├── objectLiteralComputedNameNoDeclarationError.symbols │ ├── objectLiteralComputedNameNoDeclarationError.types │ ├── objectLiteralContextualTyping.errors.txt │ ├── objectLiteralContextualTyping.js │ ├── objectLiteralContextualTyping.symbols │ ├── objectLiteralContextualTyping.types │ ├── objectLiteralDeclarationGeneration1.js │ ├── objectLiteralDeclarationGeneration1.symbols │ ├── objectLiteralDeclarationGeneration1.types │ ├── objectLiteralEnumPropertyNames.js │ ├── objectLiteralEnumPropertyNames.symbols │ ├── objectLiteralEnumPropertyNames.types │ ├── objectLiteralErrors(target=es2015).errors.txt │ ├── objectLiteralErrors(target=es2015).js │ ├── objectLiteralErrors(target=es2015).symbols │ ├── objectLiteralErrors(target=es2015).types │ ├── objectLiteralErrors(target=es5).errors.txt │ ├── objectLiteralErrors(target=es5).js │ ├── objectLiteralErrors(target=es5).symbols │ ├── objectLiteralErrors(target=es5).types │ ├── objectLiteralExcessProperties.errors.txt │ ├── objectLiteralExcessProperties.js │ ├── objectLiteralExcessProperties.symbols │ ├── objectLiteralExcessProperties.types │ ├── objectLiteralFreshnessWithSpread.errors.txt │ ├── objectLiteralFreshnessWithSpread.js │ ├── objectLiteralFreshnessWithSpread.symbols │ ├── objectLiteralFreshnessWithSpread.types │ ├── objectLiteralFunctionArgContextualTyping.errors.txt │ ├── objectLiteralFunctionArgContextualTyping.js │ ├── objectLiteralFunctionArgContextualTyping.symbols │ ├── objectLiteralFunctionArgContextualTyping.types │ ├── objectLiteralFunctionArgContextualTyping2.errors.txt │ ├── objectLiteralFunctionArgContextualTyping2.js │ ├── objectLiteralFunctionArgContextualTyping2.symbols │ ├── objectLiteralFunctionArgContextualTyping2.types │ ├── objectLiteralGettersAndSetters.js │ ├── objectLiteralGettersAndSetters.symbols │ ├── objectLiteralGettersAndSetters.types │ ├── objectLiteralIndexerErrors.errors.txt │ ├── objectLiteralIndexerErrors.js │ ├── objectLiteralIndexerErrors.symbols │ ├── objectLiteralIndexerErrors.types │ ├── objectLiteralIndexerNoImplicitAny.js │ ├── objectLiteralIndexerNoImplicitAny.symbols │ ├── objectLiteralIndexerNoImplicitAny.types │ ├── objectLiteralIndexers.errors.txt │ ├── objectLiteralIndexers.js │ ├── objectLiteralIndexers.symbols │ ├── objectLiteralIndexers.types │ ├── objectLiteralMemberWithModifiers1.errors.txt │ ├── objectLiteralMemberWithModifiers1.js │ ├── objectLiteralMemberWithModifiers1.symbols │ ├── objectLiteralMemberWithModifiers1.types │ ├── objectLiteralMemberWithModifiers2.errors.txt │ ├── objectLiteralMemberWithModifiers2.js │ ├── objectLiteralMemberWithModifiers2.symbols │ ├── objectLiteralMemberWithModifiers2.types │ ├── objectLiteralMemberWithQuestionMark1.errors.txt │ ├── objectLiteralMemberWithQuestionMark1.js │ ├── objectLiteralMemberWithQuestionMark1.symbols │ ├── objectLiteralMemberWithQuestionMark1.types │ ├── objectLiteralMemberWithoutBlock1.errors.txt │ ├── objectLiteralMemberWithoutBlock1.js │ ├── objectLiteralMemberWithoutBlock1.symbols │ ├── objectLiteralMemberWithoutBlock1.types │ ├── objectLiteralNormalization.errors.txt │ ├── objectLiteralNormalization.js │ ├── objectLiteralNormalization.symbols │ ├── objectLiteralNormalization.types │ ├── objectLiteralParameterResolution.errors.txt │ ├── objectLiteralParameterResolution.js │ ├── objectLiteralParameterResolution.symbols │ ├── objectLiteralParameterResolution.types │ ├── objectLiteralPropertyImplicitlyAny.js │ ├── objectLiteralPropertyImplicitlyAny.symbols │ ├── objectLiteralPropertyImplicitlyAny.types │ ├── objectLiteralReferencingInternalProperties.errors.txt │ ├── objectLiteralReferencingInternalProperties.js │ ├── objectLiteralReferencingInternalProperties.symbols │ ├── objectLiteralReferencingInternalProperties.types │ ├── objectLiteralShorthandProperties(target=es2015).js │ ├── objectLiteralShorthandProperties(target=es2015).symbols │ ├── objectLiteralShorthandProperties(target=es2015).types │ ├── objectLiteralShorthandProperties(target=es5).errors.txt │ ├── objectLiteralShorthandProperties(target=es5).js │ ├── objectLiteralShorthandProperties(target=es5).symbols │ ├── objectLiteralShorthandProperties(target=es5).types │ ├── objectLiteralShorthandPropertiesAssignment.js │ ├── objectLiteralShorthandPropertiesAssignment.symbols │ ├── objectLiteralShorthandPropertiesAssignment.types │ ├── objectLiteralShorthandPropertiesAssignmentES6.js │ ├── objectLiteralShorthandPropertiesAssignmentES6.symbols │ ├── objectLiteralShorthandPropertiesAssignmentES6.types │ ├── objectLiteralShorthandPropertiesAssignmentError.errors.txt │ ├── objectLiteralShorthandPropertiesAssignmentError.js │ ├── objectLiteralShorthandPropertiesAssignmentError.symbols │ ├── objectLiteralShorthandPropertiesAssignmentError.types │ ├── objectLiteralShorthandPropertiesAssignmentErrorFromMissingIdentifier.errors.txt │ ├── objectLiteralShorthandPropertiesAssignmentErrorFromMissingIdentifier.js │ ├── objectLiteralShorthandPropertiesAssignmentErrorFromMissingIdentifier.symbols │ ├── objectLiteralShorthandPropertiesAssignmentErrorFromMissingIdentifier.types │ ├── objectLiteralShorthandPropertiesES6.js │ ├── objectLiteralShorthandPropertiesES6.symbols │ ├── objectLiteralShorthandPropertiesES6.types │ ├── objectLiteralShorthandPropertiesErrorFromNoneExistingIdentifier.errors.txt │ ├── objectLiteralShorthandPropertiesErrorFromNoneExistingIdentifier.js │ ├── objectLiteralShorthandPropertiesErrorFromNoneExistingIdentifier.symbols │ ├── objectLiteralShorthandPropertiesErrorFromNoneExistingIdentifier.types │ ├── objectLiteralShorthandPropertiesErrorFromNotUsingIdentifier.errors.txt │ ├── objectLiteralShorthandPropertiesErrorFromNotUsingIdentifier.js │ ├── objectLiteralShorthandPropertiesErrorFromNotUsingIdentifier.symbols │ ├── objectLiteralShorthandPropertiesErrorFromNotUsingIdentifier.types │ ├── objectLiteralShorthandPropertiesErrorWithModule.errors.txt │ ├── objectLiteralShorthandPropertiesErrorWithModule.js │ ├── objectLiteralShorthandPropertiesErrorWithModule.symbols │ ├── objectLiteralShorthandPropertiesErrorWithModule.types │ ├── objectLiteralShorthandPropertiesFunctionArgument.js │ ├── objectLiteralShorthandPropertiesFunctionArgument.symbols │ ├── objectLiteralShorthandPropertiesFunctionArgument.types │ ├── objectLiteralShorthandPropertiesFunctionArgument2.errors.txt │ ├── objectLiteralShorthandPropertiesFunctionArgument2.js │ ├── objectLiteralShorthandPropertiesFunctionArgument2.symbols │ ├── objectLiteralShorthandPropertiesFunctionArgument2.types │ ├── objectLiteralShorthandPropertiesWithModule.js │ ├── objectLiteralShorthandPropertiesWithModule.symbols │ ├── objectLiteralShorthandPropertiesWithModule.types │ ├── objectLiteralShorthandPropertiesWithModuleES6.js │ ├── objectLiteralShorthandPropertiesWithModuleES6.symbols │ ├── objectLiteralShorthandPropertiesWithModuleES6.types │ ├── objectLiteralThisWidenedOnUse.errors.txt │ ├── objectLiteralThisWidenedOnUse.js │ ├── objectLiteralThisWidenedOnUse.symbols │ ├── objectLiteralThisWidenedOnUse.types │ ├── objectLiteralWidened.js │ ├── objectLiteralWidened.symbols │ ├── objectLiteralWidened.types │ ├── objectLiteralWithGetAccessorInsideFunction.js │ ├── objectLiteralWithGetAccessorInsideFunction.symbols │ ├── objectLiteralWithGetAccessorInsideFunction.types │ ├── objectLiteralWithNumericPropertyName.errors.txt │ ├── objectLiteralWithNumericPropertyName.js │ ├── objectLiteralWithNumericPropertyName.symbols │ ├── objectLiteralWithNumericPropertyName.types │ ├── objectLiteralWithSemicolons1.errors.txt │ ├── objectLiteralWithSemicolons1.js │ ├── objectLiteralWithSemicolons1.symbols │ ├── objectLiteralWithSemicolons1.types │ ├── objectLiteralWithSemicolons2.errors.txt │ ├── objectLiteralWithSemicolons2.js │ ├── objectLiteralWithSemicolons2.symbols │ ├── objectLiteralWithSemicolons2.types │ ├── objectLiteralWithSemicolons3.errors.txt │ ├── objectLiteralWithSemicolons3.js │ ├── objectLiteralWithSemicolons3.symbols │ ├── objectLiteralWithSemicolons3.types │ ├── objectLiteralWithSemicolons4.errors.txt │ ├── objectLiteralWithSemicolons4.js │ ├── objectLiteralWithSemicolons4.symbols │ ├── objectLiteralWithSemicolons4.types │ ├── objectLiteralWithSemicolons5.errors.txt │ ├── objectLiteralWithSemicolons5.js │ ├── objectLiteralWithSemicolons5.symbols │ ├── objectLiteralWithSemicolons5.types │ ├── objectLiteralsAgainstUnionsOfArrays01.errors.txt │ ├── objectLiteralsAgainstUnionsOfArrays01.js │ ├── objectLiteralsAgainstUnionsOfArrays01.symbols │ ├── objectLiteralsAgainstUnionsOfArrays01.types │ ├── objectMembersOnTypes.errors.txt │ ├── objectMembersOnTypes.js │ ├── objectMembersOnTypes.symbols │ ├── objectMembersOnTypes.types │ ├── objectPropertyAsClass.symbols │ ├── objectPropertyAsClass.types │ ├── objectRest.errors.txt │ ├── objectRest.js │ ├── objectRest.symbols │ ├── objectRest.types │ ├── objectRest2.js │ ├── objectRest2.symbols │ ├── objectRest2.types │ ├── objectRestAssignment.js │ ├── objectRestAssignment.symbols │ ├── objectRestAssignment.types │ ├── objectRestBindingContextualInference.symbols │ ├── objectRestBindingContextualInference.types │ ├── objectRestCatchES5.js │ ├── objectRestCatchES5.symbols │ ├── objectRestCatchES5.types │ ├── objectRestForOf.js │ ├── objectRestForOf.symbols │ ├── objectRestForOf.types │ ├── objectRestNegative.errors.txt │ ├── objectRestNegative.js │ ├── objectRestNegative.symbols │ ├── objectRestNegative.types │ ├── objectRestParameter.js │ ├── objectRestParameter.symbols │ ├── objectRestParameter.types │ ├── objectRestParameterES5(target=es2015).js │ ├── objectRestParameterES5(target=es2015).symbols │ ├── objectRestParameterES5(target=es2015).types │ ├── objectRestParameterES5(target=es5).errors.txt │ ├── objectRestParameterES5(target=es5).js │ ├── objectRestParameterES5(target=es5).symbols │ ├── objectRestParameterES5(target=es5).types │ ├── objectRestPropertyMustBeLast.errors.txt │ ├── objectRestPropertyMustBeLast.js │ ├── objectRestPropertyMustBeLast.symbols │ ├── objectRestPropertyMustBeLast.types │ ├── objectRestReadonly.js │ ├── objectRestReadonly.symbols │ ├── objectRestReadonly.types │ ├── objectRestSpread.js │ ├── objectSpread(target=es2015).js │ ├── objectSpread(target=es2015).symbols │ ├── objectSpread(target=es2015).types │ ├── objectSpread(target=es5).errors.txt │ ├── objectSpread(target=es5).js │ ├── objectSpread(target=es5).symbols │ ├── objectSpread(target=es5).types │ ├── objectSpreadComputedProperty.js │ ├── objectSpreadComputedProperty.symbols │ ├── objectSpreadComputedProperty.types │ ├── objectSpreadIndexSignature.errors.txt │ ├── objectSpreadIndexSignature.js │ ├── objectSpreadIndexSignature.symbols │ ├── objectSpreadIndexSignature.types │ ├── objectSpreadNegative(target=es2015).errors.txt │ ├── objectSpreadNegative(target=es2015).js │ ├── objectSpreadNegative(target=es2015).symbols │ ├── objectSpreadNegative(target=es2015).types │ ├── objectSpreadNegative(target=es5).errors.txt │ ├── objectSpreadNegative(target=es5).js │ ├── objectSpreadNegative(target=es5).symbols │ ├── objectSpreadNegative(target=es5).types │ ├── objectSpreadNegativeParse.errors.txt │ ├── objectSpreadNegativeParse.js │ ├── objectSpreadNegativeParse.symbols │ ├── objectSpreadNegativeParse.types │ ├── objectSpreadNoTransform.js │ ├── objectSpreadNoTransform.symbols │ ├── objectSpreadNoTransform.types │ ├── objectSpreadRepeatedComplexity.js │ ├── objectSpreadRepeatedComplexity.symbols │ ├── objectSpreadRepeatedComplexity.types │ ├── objectSpreadRepeatedNullCheckPerf.js │ ├── objectSpreadRepeatedNullCheckPerf.symbols │ ├── objectSpreadRepeatedNullCheckPerf.types │ ├── objectSpreadSetonlyAccessor.errors.txt │ ├── objectSpreadSetonlyAccessor.js │ ├── objectSpreadSetonlyAccessor.symbols │ ├── objectSpreadSetonlyAccessor.types │ ├── objectSpreadStrictNull.errors.txt │ ├── objectSpreadStrictNull.js │ ├── objectSpreadStrictNull.symbols │ ├── objectSpreadStrictNull.types │ ├── objectSpreadWithinMethodWithinObjectWithSpread.js │ ├── objectSpreadWithinMethodWithinObjectWithSpread.symbols │ ├── objectSpreadWithinMethodWithinObjectWithSpread.types │ ├── objectTypeHidingMembersOfExtendedObject.errors.txt │ ├── objectTypeHidingMembersOfExtendedObject.js │ ├── objectTypeHidingMembersOfExtendedObject.symbols │ ├── objectTypeHidingMembersOfExtendedObject.types │ ├── objectTypeHidingMembersOfObject.errors.txt │ ├── objectTypeHidingMembersOfObject.js │ ├── objectTypeHidingMembersOfObject.symbols │ ├── objectTypeHidingMembersOfObject.types │ ├── objectTypeHidingMembersOfObjectAssignmentCompat.errors.txt │ ├── objectTypeHidingMembersOfObjectAssignmentCompat.js │ ├── objectTypeHidingMembersOfObjectAssignmentCompat.symbols │ ├── objectTypeHidingMembersOfObjectAssignmentCompat.types │ ├── objectTypeHidingMembersOfObjectAssignmentCompat2.errors.txt │ ├── objectTypeHidingMembersOfObjectAssignmentCompat2.js │ ├── objectTypeHidingMembersOfObjectAssignmentCompat2.symbols │ ├── objectTypeHidingMembersOfObjectAssignmentCompat2.types │ ├── objectTypeLiteralSyntax.js │ ├── objectTypeLiteralSyntax.symbols │ ├── objectTypeLiteralSyntax.types │ ├── objectTypeLiteralSyntax2.errors.txt │ ├── objectTypeLiteralSyntax2.js │ ├── objectTypeLiteralSyntax2.symbols │ ├── objectTypeLiteralSyntax2.types │ ├── objectTypePropertyAccess.errors.txt │ ├── objectTypePropertyAccess.js │ ├── objectTypePropertyAccess.symbols │ ├── objectTypePropertyAccess.types │ ├── objectTypeWithCallSignatureAppearsToBeFunctionType.errors.txt │ ├── objectTypeWithCallSignatureAppearsToBeFunctionType.js │ ├── objectTypeWithCallSignatureAppearsToBeFunctionType.symbols │ ├── objectTypeWithCallSignatureAppearsToBeFunctionType.types │ ├── objectTypeWithCallSignatureHidingMembersOfExtendedFunction.js │ ├── objectTypeWithCallSignatureHidingMembersOfExtendedFunction.symbols │ ├── objectTypeWithCallSignatureHidingMembersOfExtendedFunction.types │ ├── objectTypeWithCallSignatureHidingMembersOfFunction.errors.txt │ ├── objectTypeWithCallSignatureHidingMembersOfFunction.js │ ├── objectTypeWithCallSignatureHidingMembersOfFunction.symbols │ ├── objectTypeWithCallSignatureHidingMembersOfFunction.types │ ├── objectTypeWithCallSignatureHidingMembersOfFunctionAssignmentCompat.errors.txt │ ├── objectTypeWithCallSignatureHidingMembersOfFunctionAssignmentCompat.js │ ├── objectTypeWithCallSignatureHidingMembersOfFunctionAssignmentCompat.symbols │ ├── objectTypeWithCallSignatureHidingMembersOfFunctionAssignmentCompat.types │ ├── objectTypeWithConstructSignatureAppearsToBeFunctionType.errors.txt │ ├── objectTypeWithConstructSignatureAppearsToBeFunctionType.js │ ├── objectTypeWithConstructSignatureAppearsToBeFunctionType.symbols │ ├── objectTypeWithConstructSignatureAppearsToBeFunctionType.types │ ├── objectTypeWithConstructSignatureHidingMembersOfExtendedFunction.js │ ├── objectTypeWithConstructSignatureHidingMembersOfExtendedFunction.symbols │ ├── objectTypeWithConstructSignatureHidingMembersOfExtendedFunction.types │ ├── objectTypeWithConstructSignatureHidingMembersOfFunction.errors.txt │ ├── objectTypeWithConstructSignatureHidingMembersOfFunction.js │ ├── objectTypeWithConstructSignatureHidingMembersOfFunction.symbols │ ├── objectTypeWithConstructSignatureHidingMembersOfFunction.types │ ├── objectTypeWithConstructSignatureHidingMembersOfFunctionAssignmentCompat.errors.txt │ ├── objectTypeWithConstructSignatureHidingMembersOfFunctionAssignmentCompat.js │ ├── objectTypeWithConstructSignatureHidingMembersOfFunctionAssignmentCompat.symbols │ ├── objectTypeWithConstructSignatureHidingMembersOfFunctionAssignmentCompat.types │ ├── objectTypeWithDuplicateNumericProperty.errors.txt │ ├── objectTypeWithDuplicateNumericProperty.js │ ├── objectTypeWithDuplicateNumericProperty.symbols │ ├── objectTypeWithDuplicateNumericProperty.types │ ├── objectTypeWithNumericProperty.errors.txt │ ├── objectTypeWithNumericProperty.js │ ├── objectTypeWithNumericProperty.symbols │ ├── objectTypeWithNumericProperty.types │ ├── objectTypeWithOptionalProperty1.errors.txt │ ├── objectTypeWithOptionalProperty1.js │ ├── objectTypeWithOptionalProperty1.symbols │ ├── objectTypeWithOptionalProperty1.types │ ├── objectTypeWithRecursiveWrappedProperty.errors.txt │ ├── objectTypeWithRecursiveWrappedProperty.js │ ├── objectTypeWithRecursiveWrappedProperty.symbols │ ├── objectTypeWithRecursiveWrappedProperty.types │ ├── objectTypeWithRecursiveWrappedProperty2.errors.txt │ ├── objectTypeWithRecursiveWrappedProperty2.js │ ├── objectTypeWithRecursiveWrappedProperty2.symbols │ ├── objectTypeWithRecursiveWrappedProperty2.types │ ├── objectTypeWithRecursiveWrappedPropertyCheckedNominally.errors.txt │ ├── objectTypeWithRecursiveWrappedPropertyCheckedNominally.js │ ├── objectTypeWithRecursiveWrappedPropertyCheckedNominally.symbols │ ├── objectTypeWithRecursiveWrappedPropertyCheckedNominally.types │ ├── objectTypeWithStringAndNumberIndexSignatureToAny.errors.txt │ ├── objectTypeWithStringAndNumberIndexSignatureToAny.js │ ├── objectTypeWithStringAndNumberIndexSignatureToAny.symbols │ ├── objectTypeWithStringAndNumberIndexSignatureToAny.types │ ├── objectTypeWithStringIndexerHidingObjectIndexer.errors.txt │ ├── objectTypeWithStringIndexerHidingObjectIndexer.js │ ├── objectTypeWithStringIndexerHidingObjectIndexer.symbols │ ├── objectTypeWithStringIndexerHidingObjectIndexer.types │ ├── objectTypeWithStringNamedNumericProperty(target=es2015).errors.txt │ ├── objectTypeWithStringNamedNumericProperty(target=es2015).js │ ├── objectTypeWithStringNamedNumericProperty(target=es2015).symbols │ ├── objectTypeWithStringNamedNumericProperty(target=es2015).types │ ├── objectTypeWithStringNamedNumericProperty(target=es5).errors.txt │ ├── objectTypeWithStringNamedNumericProperty(target=es5).js │ ├── objectTypeWithStringNamedNumericProperty(target=es5).symbols │ ├── objectTypeWithStringNamedNumericProperty(target=es5).types │ ├── objectTypeWithStringNamedPropertyOfIllegalCharacters.js │ ├── objectTypeWithStringNamedPropertyOfIllegalCharacters.symbols │ ├── objectTypeWithStringNamedPropertyOfIllegalCharacters.types │ ├── objectTypesIdentity.js │ ├── objectTypesIdentity.symbols │ ├── objectTypesIdentity.types │ ├── objectTypesIdentity2.js │ ├── objectTypesIdentity2.symbols │ ├── objectTypesIdentity2.types │ ├── objectTypesIdentityWithCallSignatures.js │ ├── objectTypesIdentityWithCallSignatures.symbols │ ├── objectTypesIdentityWithCallSignatures.types │ ├── objectTypesIdentityWithCallSignatures2.js │ ├── objectTypesIdentityWithCallSignatures2.symbols │ ├── objectTypesIdentityWithCallSignatures2.types │ ├── objectTypesIdentityWithCallSignatures3.errors.txt │ ├── objectTypesIdentityWithCallSignatures3.js │ ├── objectTypesIdentityWithCallSignatures3.symbols │ ├── objectTypesIdentityWithCallSignatures3.types │ ├── objectTypesIdentityWithCallSignaturesDifferingParamCounts.js │ ├── objectTypesIdentityWithCallSignaturesDifferingParamCounts.symbols │ ├── objectTypesIdentityWithCallSignaturesDifferingParamCounts.types │ ├── objectTypesIdentityWithCallSignaturesDifferingParamCounts2.js │ ├── objectTypesIdentityWithCallSignaturesDifferingParamCounts2.symbols │ ├── objectTypesIdentityWithCallSignaturesDifferingParamCounts2.types │ ├── objectTypesIdentityWithCallSignaturesWithOverloads.js │ ├── objectTypesIdentityWithCallSignaturesWithOverloads.symbols │ ├── objectTypesIdentityWithCallSignaturesWithOverloads.types │ ├── objectTypesIdentityWithComplexConstraints.js │ ├── objectTypesIdentityWithComplexConstraints.symbols │ ├── objectTypesIdentityWithComplexConstraints.types │ ├── objectTypesIdentityWithConstructSignatures.js │ ├── objectTypesIdentityWithConstructSignatures.symbols │ ├── objectTypesIdentityWithConstructSignatures.types │ ├── objectTypesIdentityWithConstructSignatures2.js │ ├── objectTypesIdentityWithConstructSignatures2.symbols │ ├── objectTypesIdentityWithConstructSignatures2.types │ ├── objectTypesIdentityWithConstructSignaturesDifferingParamCounts.js │ ├── objectTypesIdentityWithConstructSignaturesDifferingParamCounts.symbols │ ├── objectTypesIdentityWithConstructSignaturesDifferingParamCounts.types │ ├── objectTypesIdentityWithGenericCallSignatures.js │ ├── objectTypesIdentityWithGenericCallSignatures.symbols │ ├── objectTypesIdentityWithGenericCallSignatures.types │ ├── objectTypesIdentityWithGenericCallSignatures2.js │ ├── objectTypesIdentityWithGenericCallSignatures2.symbols │ ├── objectTypesIdentityWithGenericCallSignatures2.types │ ├── objectTypesIdentityWithGenericCallSignaturesDifferingByConstraints.js │ ├── objectTypesIdentityWithGenericCallSignaturesDifferingByConstraints.symbols │ ├── objectTypesIdentityWithGenericCallSignaturesDifferingByConstraints.types │ ├── objectTypesIdentityWithGenericCallSignaturesDifferingByConstraints2.js │ ├── objectTypesIdentityWithGenericCallSignaturesDifferingByConstraints2.symbols │ ├── objectTypesIdentityWithGenericCallSignaturesDifferingByConstraints2.types │ ├── objectTypesIdentityWithGenericCallSignaturesDifferingByConstraints3.js │ ├── objectTypesIdentityWithGenericCallSignaturesDifferingByConstraints3.symbols │ ├── objectTypesIdentityWithGenericCallSignaturesDifferingByConstraints3.types │ ├── objectTypesIdentityWithGenericCallSignaturesDifferingByReturnType.js │ ├── objectTypesIdentityWithGenericCallSignaturesDifferingByReturnType.symbols │ ├── objectTypesIdentityWithGenericCallSignaturesDifferingByReturnType.types │ ├── objectTypesIdentityWithGenericCallSignaturesDifferingByReturnType2.js │ ├── objectTypesIdentityWithGenericCallSignaturesDifferingByReturnType2.symbols │ ├── objectTypesIdentityWithGenericCallSignaturesDifferingByReturnType2.types │ ├── objectTypesIdentityWithGenericCallSignaturesDifferingTypeParameterCounts.js │ ├── objectTypesIdentityWithGenericCallSignaturesDifferingTypeParameterCounts.symbols │ ├── objectTypesIdentityWithGenericCallSignaturesDifferingTypeParameterCounts.types │ ├── objectTypesIdentityWithGenericCallSignaturesDifferingTypeParameterCounts2.js │ ├── objectTypesIdentityWithGenericCallSignaturesDifferingTypeParameterCounts2.symbols │ ├── objectTypesIdentityWithGenericCallSignaturesDifferingTypeParameterCounts2.types │ ├── objectTypesIdentityWithGenericCallSignaturesDifferingTypeParameterNames.js │ ├── objectTypesIdentityWithGenericCallSignaturesDifferingTypeParameterNames.symbols │ ├── objectTypesIdentityWithGenericCallSignaturesDifferingTypeParameterNames.types │ ├── objectTypesIdentityWithGenericCallSignaturesOptionalParams.js │ ├── objectTypesIdentityWithGenericCallSignaturesOptionalParams.symbols │ ├── objectTypesIdentityWithGenericCallSignaturesOptionalParams.types │ ├── objectTypesIdentityWithGenericCallSignaturesOptionalParams2.js │ ├── objectTypesIdentityWithGenericCallSignaturesOptionalParams2.symbols │ ├── objectTypesIdentityWithGenericCallSignaturesOptionalParams2.types │ ├── objectTypesIdentityWithGenericCallSignaturesOptionalParams3.js │ ├── objectTypesIdentityWithGenericCallSignaturesOptionalParams3.symbols │ ├── objectTypesIdentityWithGenericCallSignaturesOptionalParams3.types │ ├── objectTypesIdentityWithGenericConstructSignaturesDifferingByConstraints.js │ ├── objectTypesIdentityWithGenericConstructSignaturesDifferingByConstraints.symbols │ ├── objectTypesIdentityWithGenericConstructSignaturesDifferingByConstraints.types │ ├── objectTypesIdentityWithGenericConstructSignaturesDifferingByConstraints2.js │ ├── objectTypesIdentityWithGenericConstructSignaturesDifferingByConstraints2.symbols │ ├── objectTypesIdentityWithGenericConstructSignaturesDifferingByConstraints2.types │ ├── objectTypesIdentityWithGenericConstructSignaturesDifferingByConstraints3.js │ ├── objectTypesIdentityWithGenericConstructSignaturesDifferingByConstraints3.symbols │ ├── objectTypesIdentityWithGenericConstructSignaturesDifferingByConstraints3.types │ ├── objectTypesIdentityWithGenericConstructSignaturesDifferingByReturnType.js │ ├── objectTypesIdentityWithGenericConstructSignaturesDifferingByReturnType.symbols │ ├── objectTypesIdentityWithGenericConstructSignaturesDifferingByReturnType.types │ ├── objectTypesIdentityWithGenericConstructSignaturesDifferingByReturnType2.js │ ├── objectTypesIdentityWithGenericConstructSignaturesDifferingByReturnType2.symbols │ ├── objectTypesIdentityWithGenericConstructSignaturesDifferingByReturnType2.types │ ├── objectTypesIdentityWithGenericConstructSignaturesDifferingTypeParameterCounts.js │ ├── objectTypesIdentityWithGenericConstructSignaturesDifferingTypeParameterCounts.symbols │ ├── objectTypesIdentityWithGenericConstructSignaturesDifferingTypeParameterCounts.types │ ├── objectTypesIdentityWithGenericConstructSignaturesDifferingTypeParameterNames.js │ ├── objectTypesIdentityWithGenericConstructSignaturesDifferingTypeParameterNames.symbols │ ├── objectTypesIdentityWithGenericConstructSignaturesDifferingTypeParameterNames.types │ ├── objectTypesIdentityWithGenericConstructSignaturesOptionalParams.js │ ├── objectTypesIdentityWithGenericConstructSignaturesOptionalParams.symbols │ ├── objectTypesIdentityWithGenericConstructSignaturesOptionalParams.types │ ├── objectTypesIdentityWithGenericConstructSignaturesOptionalParams2.js │ ├── objectTypesIdentityWithGenericConstructSignaturesOptionalParams2.symbols │ ├── objectTypesIdentityWithGenericConstructSignaturesOptionalParams2.types │ ├── objectTypesIdentityWithGenericConstructSignaturesOptionalParams3.js │ ├── objectTypesIdentityWithGenericConstructSignaturesOptionalParams3.symbols │ ├── objectTypesIdentityWithGenericConstructSignaturesOptionalParams3.types │ ├── objectTypesIdentityWithNumericIndexers1.js │ ├── objectTypesIdentityWithNumericIndexers1.symbols │ ├── objectTypesIdentityWithNumericIndexers1.types │ ├── objectTypesIdentityWithNumericIndexers2.js │ ├── objectTypesIdentityWithNumericIndexers2.symbols │ ├── objectTypesIdentityWithNumericIndexers2.types │ ├── objectTypesIdentityWithNumericIndexers3.js │ ├── objectTypesIdentityWithNumericIndexers3.symbols │ ├── objectTypesIdentityWithNumericIndexers3.types │ ├── objectTypesIdentityWithOptionality.js │ ├── objectTypesIdentityWithOptionality.symbols │ ├── objectTypesIdentityWithOptionality.types │ ├── objectTypesIdentityWithPrivates.js │ ├── objectTypesIdentityWithPrivates.symbols │ ├── objectTypesIdentityWithPrivates.types │ ├── objectTypesIdentityWithPrivates2.js │ ├── objectTypesIdentityWithPrivates2.symbols │ ├── objectTypesIdentityWithPrivates2.types │ ├── objectTypesIdentityWithPrivates3.errors.txt │ ├── objectTypesIdentityWithPrivates3.js │ ├── objectTypesIdentityWithPrivates3.symbols │ ├── objectTypesIdentityWithPrivates3.types │ ├── objectTypesIdentityWithPublics.js │ ├── objectTypesIdentityWithPublics.symbols │ ├── objectTypesIdentityWithPublics.types │ ├── objectTypesIdentityWithStringIndexers.js │ ├── objectTypesIdentityWithStringIndexers.symbols │ ├── objectTypesIdentityWithStringIndexers.types │ ├── objectTypesIdentityWithStringIndexers2.js │ ├── objectTypesIdentityWithStringIndexers2.symbols │ ├── objectTypesIdentityWithStringIndexers2.types │ ├── objectTypesWithOptionalProperties.errors.txt │ ├── objectTypesWithOptionalProperties.js │ ├── objectTypesWithOptionalProperties.symbols │ ├── objectTypesWithOptionalProperties.types │ ├── objectTypesWithOptionalProperties2.errors.txt │ ├── objectTypesWithOptionalProperties2.js │ ├── objectTypesWithOptionalProperties2.symbols │ ├── objectTypesWithOptionalProperties2.types │ ├── objectTypesWithPredefinedTypesAsName.errors.txt │ ├── objectTypesWithPredefinedTypesAsName.js │ ├── objectTypesWithPredefinedTypesAsName.symbols │ ├── objectTypesWithPredefinedTypesAsName.types │ ├── objectTypesWithPredefinedTypesAsName2.errors.txt │ ├── objectTypesWithPredefinedTypesAsName2.js │ ├── objectTypesWithPredefinedTypesAsName2.symbols │ ├── objectTypesWithPredefinedTypesAsName2.types │ ├── observableInferenceCanBeMade.js │ ├── observableInferenceCanBeMade.symbols │ ├── observableInferenceCanBeMade.types │ ├── occurrences01.baseline.jsonc │ ├── occurrences02.baseline.jsonc │ ├── octalIntegerLiteral(target=es2015).errors.txt │ ├── octalIntegerLiteral(target=es2015).js │ ├── octalIntegerLiteral(target=es2015).symbols │ ├── octalIntegerLiteral(target=es2015).types │ ├── octalIntegerLiteral(target=es5).errors.txt │ ├── octalIntegerLiteral(target=es5).js │ ├── octalIntegerLiteral(target=es5).symbols │ ├── octalIntegerLiteral(target=es5).types │ ├── octalIntegerLiteralES6.errors.txt │ ├── octalIntegerLiteralES6.js │ ├── octalIntegerLiteralES6.symbols │ ├── octalIntegerLiteralES6.types │ ├── octalIntegerLiteralError.errors.txt │ ├── octalIntegerLiteralError.js │ ├── octalIntegerLiteralError.symbols │ ├── octalIntegerLiteralError.types │ ├── octalLiteralAndEscapeSequence.errors.txt │ ├── octalLiteralAndEscapeSequence.js │ ├── octalLiteralAndEscapeSequence.symbols │ ├── octalLiteralAndEscapeSequence.types │ ├── octalLiteralInStrictModeES3.errors.txt │ ├── octalLiteralInStrictModeES3.js │ ├── octalLiteralInStrictModeES3.symbols │ ├── octalLiteralInStrictModeES3.types │ ├── omitTypeHelperModifiers01.errors.txt │ ├── omitTypeHelperModifiers01.js │ ├── omitTypeHelperModifiers01.symbols │ ├── omitTypeHelperModifiers01.types │ ├── omitTypeTestErrors01.errors.txt │ ├── omitTypeTestErrors01.js │ ├── omitTypeTestErrors01.symbols │ ├── omitTypeTestErrors01.types │ ├── omitTypeTests01.js │ ├── omitTypeTests01.symbols │ ├── omitTypeTests01.types │ ├── omittedExpressionForOfLoop.errors.txt │ ├── omittedExpressionForOfLoop.js │ ├── omittedExpressionForOfLoop.symbols │ ├── omittedExpressionForOfLoop.types │ ├── operationsAvailableOnPromisedType(target=es2015).errors.txt │ ├── operationsAvailableOnPromisedType(target=es2015).js │ ├── operationsAvailableOnPromisedType(target=es2015).symbols │ ├── operationsAvailableOnPromisedType(target=es2015).types │ ├── operationsAvailableOnPromisedType(target=es5).errors.txt │ ├── operationsAvailableOnPromisedType(target=es5).js │ ├── operationsAvailableOnPromisedType(target=es5).symbols │ ├── operationsAvailableOnPromisedType(target=es5).types │ ├── operatorAddNullUndefined.errors.txt │ ├── operatorAddNullUndefined.js │ ├── operatorAddNullUndefined.symbols │ ├── operatorAddNullUndefined.types │ ├── operatorsAndIntersectionTypes.js │ ├── operatorsAndIntersectionTypes.symbols │ ├── operatorsAndIntersectionTypes.types │ ├── optionalAccessorsInInterface1.js │ ├── optionalAccessorsInInterface1.symbols │ ├── optionalAccessorsInInterface1.types │ ├── optionalArgsWithDefaultValues.errors.txt │ ├── optionalArgsWithDefaultValues.js │ ├── optionalArgsWithDefaultValues.symbols │ ├── optionalArgsWithDefaultValues.types │ ├── optionalBindingParameters1.errors.txt │ ├── optionalBindingParameters1.js │ ├── optionalBindingParameters1.symbols │ ├── optionalBindingParameters1.types │ ├── optionalBindingParameters2.errors.txt │ ├── optionalBindingParameters2.js │ ├── optionalBindingParameters2.symbols │ ├── optionalBindingParameters2.types │ ├── optionalBindingParameters3.errors.txt │ ├── optionalBindingParameters3.symbols │ ├── optionalBindingParameters3.types │ ├── optionalBindingParameters4.symbols │ ├── optionalBindingParameters4.types │ ├── optionalBindingParametersInOverloads1.errors.txt │ ├── optionalBindingParametersInOverloads1.js │ ├── optionalBindingParametersInOverloads1.symbols │ ├── optionalBindingParametersInOverloads1.types │ ├── optionalBindingParametersInOverloads2.errors.txt │ ├── optionalBindingParametersInOverloads2.js │ ├── optionalBindingParametersInOverloads2.symbols │ ├── optionalBindingParametersInOverloads2.types │ ├── optionalChainWithInstantiationExpression1(target=es2019).errors.txt │ ├── optionalChainWithInstantiationExpression1(target=es2019).js │ ├── optionalChainWithInstantiationExpression1(target=es2019).symbols │ ├── optionalChainWithInstantiationExpression1(target=es2019).types │ ├── optionalChainWithInstantiationExpression1(target=es2020).errors.txt │ ├── optionalChainWithInstantiationExpression1(target=es2020).js │ ├── optionalChainWithInstantiationExpression1(target=es2020).symbols │ ├── optionalChainWithInstantiationExpression1(target=es2020).types │ ├── optionalChainWithInstantiationExpression2(target=es2019).js │ ├── optionalChainWithInstantiationExpression2(target=es2019).symbols │ ├── optionalChainWithInstantiationExpression2(target=es2019).types │ ├── optionalChainWithInstantiationExpression2(target=es2020).js │ ├── optionalChainWithInstantiationExpression2(target=es2020).symbols │ ├── optionalChainWithInstantiationExpression2(target=es2020).types │ ├── optionalChainingInArrow(target=es2015).js │ ├── optionalChainingInArrow(target=es5).errors.txt │ ├── optionalChainingInArrow(target=es5).js │ ├── optionalChainingInLoop(target=es2015).js │ ├── optionalChainingInLoop(target=es5).errors.txt │ ├── optionalChainingInLoop(target=es5).js │ ├── optionalChainingInParameterBindingPattern(target=es2015).js │ ├── optionalChainingInParameterBindingPattern(target=es5).errors.txt │ ├── optionalChainingInParameterBindingPattern(target=es5).js │ ├── optionalChainingInParameterBindingPattern(target=esnext).js │ ├── optionalChainingInParameterBindingPattern.2(target=es2015).errors.txt │ ├── optionalChainingInParameterBindingPattern.2(target=es5).errors.txt │ ├── optionalChainingInParameterInitializer(target=es2015).js │ ├── optionalChainingInParameterInitializer(target=es5).errors.txt │ ├── optionalChainingInParameterInitializer(target=es5).js │ ├── optionalChainingInParameterInitializer(target=esnext).js │ ├── optionalChainingInParameterInitializer.2(target=es2015).errors.txt │ ├── optionalChainingInParameterInitializer.2(target=es5).errors.txt │ ├── optionalChainingInTypeAssertions(target=es2015).js │ ├── optionalChainingInTypeAssertions(target=es2015).symbols │ ├── optionalChainingInTypeAssertions(target=es2015).types │ ├── optionalChainingInTypeAssertions(target=esnext).js │ ├── optionalChainingInTypeAssertions(target=esnext).symbols │ ├── optionalChainingInTypeAssertions(target=esnext).types │ ├── optionalChainingInference.js │ ├── optionalChainingInference.symbols │ ├── optionalChainingInference.types │ ├── optionalConstructorArgInSuper.js │ ├── optionalConstructorArgInSuper.symbols │ ├── optionalConstructorArgInSuper.types │ ├── optionalFunctionArgAssignability.errors.txt │ ├── optionalFunctionArgAssignability.js │ ├── optionalFunctionArgAssignability.symbols │ ├── optionalFunctionArgAssignability.types │ ├── optionalMethod.js │ ├── optionalMethodDeclarations(target=es2016).js │ ├── optionalMethodDeclarations(target=esnext).js │ ├── optionalMethods.js │ ├── optionalMethods.symbols │ ├── optionalMethods.types │ ├── optionalParamArgsTest.errors.txt │ ├── optionalParamArgsTest.js │ ├── optionalParamArgsTest.symbols │ ├── optionalParamArgsTest.types │ ├── optionalParamAssignmentCompat.errors.txt │ ├── optionalParamAssignmentCompat.js │ ├── optionalParamAssignmentCompat.symbols │ ├── optionalParamAssignmentCompat.types │ ├── optionalParamInOverride.js │ ├── optionalParamInOverride.symbols │ ├── optionalParamInOverride.types │ ├── optionalParamReferencingOtherParams1.js │ ├── optionalParamReferencingOtherParams1.symbols │ ├── optionalParamReferencingOtherParams1.types │ ├── optionalParamReferencingOtherParams2(target=es2015).errors.txt │ ├── optionalParamReferencingOtherParams2(target=es2015).js │ ├── optionalParamReferencingOtherParams2(target=es2015).symbols │ ├── optionalParamReferencingOtherParams2(target=es2015).types │ ├── optionalParamReferencingOtherParams2(target=es5).errors.txt │ ├── optionalParamReferencingOtherParams2(target=es5).js │ ├── optionalParamReferencingOtherParams2(target=es5).symbols │ ├── optionalParamReferencingOtherParams2(target=es5).types │ ├── optionalParamReferencingOtherParams3.errors.txt │ ├── optionalParamReferencingOtherParams3.js │ ├── optionalParamReferencingOtherParams3.symbols │ ├── optionalParamReferencingOtherParams3.types │ ├── optionalParamTypeComparison.errors.txt │ ├── optionalParamTypeComparison.js │ ├── optionalParamTypeComparison.symbols │ ├── optionalParamTypeComparison.types │ ├── optionalParameterInDestructuringWithInitializer.errors.txt │ ├── optionalParameterInDestructuringWithInitializer.js │ ├── optionalParameterInDestructuringWithInitializer.symbols │ ├── optionalParameterInDestructuringWithInitializer.types │ ├── optionalParameterProperty.errors.txt │ ├── optionalParameterProperty.js │ ├── optionalParameterProperty.symbols │ ├── optionalParameterProperty.types │ ├── optionalParameterRetainsNull.js │ ├── optionalParameterRetainsNull.symbols │ ├── optionalParameterRetainsNull.types │ ├── optionalParamterAndVariableDeclaration.errors.txt │ ├── optionalParamterAndVariableDeclaration.js │ ├── optionalParamterAndVariableDeclaration.symbols │ ├── optionalParamterAndVariableDeclaration.types │ ├── optionalParamterAndVariableDeclaration2.errors.txt │ ├── optionalParamterAndVariableDeclaration2.js │ ├── optionalParamterAndVariableDeclaration2.symbols │ ├── optionalParamterAndVariableDeclaration2.types │ ├── optionalProperties01.js │ ├── optionalProperties01.symbols │ ├── optionalProperties01.types │ ├── optionalProperties02.js │ ├── optionalProperties02.symbols │ ├── optionalProperties02.types │ ├── optionalPropertiesInClasses.errors.txt │ ├── optionalPropertiesInClasses.js │ ├── optionalPropertiesInClasses.symbols │ ├── optionalPropertiesInClasses.types │ ├── optionalPropertiesSyntax.errors.txt │ ├── optionalPropertiesSyntax.js │ ├── optionalPropertiesSyntax.symbols │ ├── optionalPropertiesSyntax.types │ ├── optionalPropertiesTest.errors.txt │ ├── optionalPropertiesTest.js │ ├── optionalPropertiesTest.symbols │ ├── optionalPropertiesTest.types │ ├── optionalProperty.js │ ├── optionalPropertyAssignableToStringIndexSignature.errors.txt │ ├── optionalPropertyAssignableToStringIndexSignature.js │ ├── optionalPropertyAssignableToStringIndexSignature.symbols │ ├── optionalPropertyAssignableToStringIndexSignature.types │ ├── optionalSetterParam.errors.txt │ ├── optionalSetterParam.js │ ├── optionalSetterParam.symbols │ ├── optionalSetterParam.types │ ├── optionalTupleElements1.errors.txt │ ├── optionalTupleElements1.js │ ├── optionalTupleElements1.symbols │ ├── optionalTupleElements1.types │ ├── optionalTupleElementsAndUndefined.js │ ├── optionalTupleElementsAndUndefined.symbols │ ├── optionalTupleElementsAndUndefined.types │ ├── optionsCompositeWithIncrementalFalse.errors.txt │ ├── optionsCompositeWithIncrementalFalse.js │ ├── optionsCompositeWithIncrementalFalse.symbols │ ├── optionsCompositeWithIncrementalFalse.types │ ├── optionsInlineSourceMapMapRoot.errors.txt │ ├── optionsInlineSourceMapMapRoot.js │ ├── optionsInlineSourceMapMapRoot.sourcemap.txt │ ├── optionsInlineSourceMapMapRoot.symbols │ ├── optionsInlineSourceMapMapRoot.types │ ├── optionsInlineSourceMapSourceRoot.js │ ├── optionsInlineSourceMapSourceRoot.sourcemap.txt │ ├── optionsInlineSourceMapSourceRoot.symbols │ ├── optionsInlineSourceMapSourceRoot.types │ ├── optionsInlineSourceMapSourcemap.errors.txt │ ├── optionsInlineSourceMapSourcemap.js │ ├── optionsInlineSourceMapSourcemap.sourcemap.txt │ ├── optionsInlineSourceMapSourcemap.symbols │ ├── optionsInlineSourceMapSourcemap.types │ ├── optionsOutAndNoModuleGen.errors.txt │ ├── optionsOutAndNoModuleGen.symbols │ ├── optionsOutAndNoModuleGen.types │ ├── optionsSourcemapInlineSources.js │ ├── optionsSourcemapInlineSources.sourcemap.txt │ ├── optionsSourcemapInlineSources.symbols │ ├── optionsSourcemapInlineSources.types │ ├── optionsSourcemapInlineSourcesMapRoot.js │ ├── optionsSourcemapInlineSourcesMapRoot.sourcemap.txt │ ├── optionsSourcemapInlineSourcesMapRoot.symbols │ ├── optionsSourcemapInlineSourcesMapRoot.types │ ├── optionsSourcemapInlineSourcesSourceRoot.js │ ├── optionsSourcemapInlineSourcesSourceRoot.sourcemap.txt │ ├── optionsSourcemapInlineSourcesSourceRoot.symbols │ ├── optionsSourcemapInlineSourcesSourceRoot.types │ ├── optionsStrictPropertyInitializationStrict.js │ ├── optionsStrictPropertyInitializationStrict.symbols │ ├── optionsStrictPropertyInitializationStrict.types │ ├── optionsStrictPropertyInitializationStrictNullChecks.js │ ├── optionsStrictPropertyInitializationStrictNullChecks.symbols │ ├── optionsStrictPropertyInitializationStrictNullChecks.types │ ├── optionsTsBuildInfoFileWithoutIncrementalAndComposite.js │ ├── optionsTsBuildInfoFileWithoutIncrementalAndComposite.symbols │ ├── optionsTsBuildInfoFileWithoutIncrementalAndComposite.types │ ├── orderMattersForSignatureGroupIdentity.errors.txt │ ├── orderMattersForSignatureGroupIdentity.js │ ├── orderMattersForSignatureGroupIdentity.symbols │ ├── orderMattersForSignatureGroupIdentity.types │ ├── organizeImports/ │ │ ├── AmbientModule.exports.ts │ │ ├── AmbientModule.ts │ │ ├── CoalesceMultipleModules.exports.ts │ │ ├── CoalesceMultipleModules.ts │ │ ├── CoalesceTrivia.exports.ts │ │ ├── CoalesceTrivia.ts │ │ ├── JsxFactoryUnusedJs.ts │ │ ├── JsxFactoryUnusedJsx.ts │ │ ├── JsxFactoryUnusedTs.ts │ │ ├── JsxFactoryUnusedTsx.ts │ │ ├── JsxFactoryUsedJs.ts │ │ ├── JsxFactoryUsedJsx.ts │ │ ├── JsxFactoryUsedTs.ts │ │ ├── JsxFactoryUsedTsx.ts │ │ ├── JsxFragmentPragmaTsx.ts │ │ ├── JsxPragmaTsx.ts │ │ ├── MoveToTop.exports.ts │ │ ├── MoveToTop.ts │ │ ├── MoveToTop_Invalid.exports.ts │ │ ├── MoveToTop_Invalid.ts │ │ ├── MoveToTop_WithExportsFirst.exports.ts │ │ ├── MoveToTop_WithImportsFirst.exports.ts │ │ ├── Renamed_used.ts │ │ ├── Simple.ts │ │ ├── SortHeaderComment.exports.ts │ │ ├── SortHeaderComment.ts │ │ ├── SortTrivia.exports.ts │ │ ├── SortTrivia.ts │ │ ├── Syntax_Error_Body.ts │ │ ├── Syntax_Error_Body_skipDestructiveCodeActions.ts │ │ ├── Syntax_Error_Imports.ts │ │ ├── Syntax_Error_Imports_skipDestructiveCodeActions.ts │ │ ├── TopLevelAndAmbientModule.exports.ts │ │ ├── TopLevelAndAmbientModule.ts │ │ ├── TypeOnly.ts │ │ ├── UnusedHeaderComment.ts │ │ ├── UnusedTrivia1.ts │ │ ├── UnusedTrivia2.ts │ │ ├── Unused_All.ts │ │ ├── Unused_Some.ts │ │ ├── Unused_false_positive_module_augmentation.ts │ │ ├── Unused_preserve_imports_for_module_augmentation_in_non_declaration_file.ts │ │ ├── detection1.ts │ │ ├── detection10.ts │ │ ├── detection2.ts │ │ ├── detection3.ts │ │ ├── detection4.ts │ │ ├── detection5.ts │ │ ├── detection6.ts │ │ ├── detection7.ts │ │ ├── detection8.ts │ │ ├── detection9.ts │ │ └── parseErrors.ts │ ├── out-flag(target=es2015).js │ ├── out-flag(target=es2015).sourcemap.txt │ ├── out-flag(target=es2015).symbols │ ├── out-flag(target=es2015).types │ ├── out-flag(target=es5).errors.txt │ ├── out-flag(target=es5).js │ ├── out-flag(target=es5).sourcemap.txt │ ├── out-flag(target=es5).symbols │ ├── out-flag(target=es5).types │ ├── out-flag2(target=es2015).errors.txt │ ├── out-flag2(target=es2015).js │ ├── out-flag2(target=es2015).sourcemap.txt │ ├── out-flag2(target=es2015).symbols │ ├── out-flag2(target=es2015).types │ ├── out-flag2(target=es5).errors.txt │ ├── out-flag2(target=es5).js │ ├── out-flag2(target=es5).sourcemap.txt │ ├── out-flag2(target=es5).symbols │ ├── out-flag2(target=es5).types │ ├── out-flag3(target=es2015).errors.txt │ ├── out-flag3(target=es2015).js │ ├── out-flag3(target=es2015).sourcemap.txt │ ├── out-flag3(target=es2015).symbols │ ├── out-flag3(target=es2015).types │ ├── out-flag3(target=es5).errors.txt │ ├── out-flag3(target=es5).js │ ├── out-flag3(target=es5).sourcemap.txt │ ├── out-flag3(target=es5).symbols │ ├── out-flag3(target=es5).types │ ├── outFileIsDeprecated.js │ ├── outFileIsDeprecated.symbols │ ├── outFileIsDeprecated.types │ ├── outFilerootDirModuleNamesAmd.errors.txt │ ├── outFilerootDirModuleNamesAmd.js │ ├── outFilerootDirModuleNamesAmd.symbols │ ├── outFilerootDirModuleNamesAmd.types │ ├── outFilerootDirModuleNamesSystem.errors.txt │ ├── outFilerootDirModuleNamesSystem.js │ ├── outFilerootDirModuleNamesSystem.symbols │ ├── outFilerootDirModuleNamesSystem.types │ ├── outModuleConcatAmd(target=es2015).errors.txt │ ├── outModuleConcatAmd(target=es2015).js │ ├── outModuleConcatAmd(target=es2015).sourcemap.txt │ ├── outModuleConcatAmd(target=es2015).symbols │ ├── outModuleConcatAmd(target=es2015).types │ ├── outModuleConcatAmd(target=es5).errors.txt │ ├── outModuleConcatAmd(target=es5).js │ ├── outModuleConcatAmd(target=es5).sourcemap.txt │ ├── outModuleConcatAmd(target=es5).symbols │ ├── outModuleConcatAmd(target=es5).types │ ├── outModuleConcatCommonjs(target=es2015).errors.txt │ ├── outModuleConcatCommonjs(target=es2015).symbols │ ├── outModuleConcatCommonjs(target=es2015).types │ ├── outModuleConcatCommonjs(target=es5).errors.txt │ ├── outModuleConcatCommonjs(target=es5).symbols │ ├── outModuleConcatCommonjs(target=es5).types │ ├── outModuleConcatCommonjsDeclarationOnly(target=es2015).errors.txt │ ├── outModuleConcatCommonjsDeclarationOnly(target=es2015).js │ ├── outModuleConcatCommonjsDeclarationOnly(target=es2015).symbols │ ├── outModuleConcatCommonjsDeclarationOnly(target=es2015).types │ ├── outModuleConcatCommonjsDeclarationOnly(target=es5).errors.txt │ ├── outModuleConcatCommonjsDeclarationOnly(target=es5).js │ ├── outModuleConcatCommonjsDeclarationOnly(target=es5).symbols │ ├── outModuleConcatCommonjsDeclarationOnly(target=es5).types │ ├── outModuleConcatES6.errors.txt │ ├── outModuleConcatES6.symbols │ ├── outModuleConcatES6.types │ ├── outModuleConcatSystem(target=es2015).errors.txt │ ├── outModuleConcatSystem(target=es2015).js │ ├── outModuleConcatSystem(target=es2015).sourcemap.txt │ ├── outModuleConcatSystem(target=es2015).symbols │ ├── outModuleConcatSystem(target=es2015).types │ ├── outModuleConcatSystem(target=es5).errors.txt │ ├── outModuleConcatSystem(target=es5).js │ ├── outModuleConcatSystem(target=es5).sourcemap.txt │ ├── outModuleConcatSystem(target=es5).symbols │ ├── outModuleConcatSystem(target=es5).types │ ├── outModuleConcatUmd(target=es2015).errors.txt │ ├── outModuleConcatUmd(target=es2015).symbols │ ├── outModuleConcatUmd(target=es2015).types │ ├── outModuleConcatUmd(target=es5).errors.txt │ ├── outModuleConcatUmd(target=es5).symbols │ ├── outModuleConcatUmd(target=es5).types │ ├── outModuleConcatUnspecifiedModuleKind(target=es2015).errors.txt │ ├── outModuleConcatUnspecifiedModuleKind(target=es2015).js │ ├── outModuleConcatUnspecifiedModuleKind(target=es2015).symbols │ ├── outModuleConcatUnspecifiedModuleKind(target=es2015).types │ ├── outModuleConcatUnspecifiedModuleKind(target=es5).errors.txt │ ├── outModuleConcatUnspecifiedModuleKind(target=es5).js │ ├── outModuleConcatUnspecifiedModuleKind(target=es5).symbols │ ├── outModuleConcatUnspecifiedModuleKind(target=es5).types │ ├── outModuleConcatUnspecifiedModuleKindDeclarationOnly(target=es2015).errors.txt │ ├── outModuleConcatUnspecifiedModuleKindDeclarationOnly(target=es2015).symbols │ ├── outModuleConcatUnspecifiedModuleKindDeclarationOnly(target=es2015).types │ ├── outModuleConcatUnspecifiedModuleKindDeclarationOnly(target=es5).errors.txt │ ├── outModuleConcatUnspecifiedModuleKindDeclarationOnly(target=es5).symbols │ ├── outModuleConcatUnspecifiedModuleKindDeclarationOnly(target=es5).types │ ├── outModuleTripleSlashRefs(target=es2015).errors.txt │ ├── outModuleTripleSlashRefs(target=es2015).js │ ├── outModuleTripleSlashRefs(target=es2015).sourcemap.txt │ ├── outModuleTripleSlashRefs(target=es2015).symbols │ ├── outModuleTripleSlashRefs(target=es2015).types │ ├── outModuleTripleSlashRefs(target=es5).errors.txt │ ├── outModuleTripleSlashRefs(target=es5).js │ ├── outModuleTripleSlashRefs(target=es5).sourcemap.txt │ ├── outModuleTripleSlashRefs(target=es5).symbols │ ├── outModuleTripleSlashRefs(target=es5).types │ ├── overEagerReturnTypeSpecialization.errors.txt │ ├── overEagerReturnTypeSpecialization.js │ ├── overEagerReturnTypeSpecialization.symbols │ ├── overEagerReturnTypeSpecialization.types │ ├── overload1.errors.txt │ ├── overload1.js │ ├── overload1.symbols │ ├── overload1.types │ ├── overload2.js │ ├── overload2.symbols │ ├── overload2.types │ ├── overloadAssignmentCompat.errors.txt │ ├── overloadAssignmentCompat.js │ ├── overloadAssignmentCompat.symbols │ ├── overloadAssignmentCompat.types │ ├── overloadBindingAcrossDeclarationBoundaries.errors.txt │ ├── overloadBindingAcrossDeclarationBoundaries.js │ ├── overloadBindingAcrossDeclarationBoundaries.symbols │ ├── overloadBindingAcrossDeclarationBoundaries.types │ ├── overloadBindingAcrossDeclarationBoundaries2.errors.txt │ ├── overloadBindingAcrossDeclarationBoundaries2.js │ ├── overloadBindingAcrossDeclarationBoundaries2.symbols │ ├── overloadBindingAcrossDeclarationBoundaries2.types │ ├── overloadCallTest.js │ ├── overloadCallTest.symbols │ ├── overloadCallTest.types │ ├── overloadConsecutiveness.errors.txt │ ├── overloadConsecutiveness.js │ ├── overloadConsecutiveness.symbols │ ├── overloadConsecutiveness.types │ ├── overloadCrash.js │ ├── overloadCrash.symbols │ ├── overloadCrash.types │ ├── overloadEquivalenceWithStatics.errors.txt │ ├── overloadEquivalenceWithStatics.js │ ├── overloadEquivalenceWithStatics.symbols │ ├── overloadEquivalenceWithStatics.types │ ├── overloadErrorMatchesImplementationElaboaration.errors.txt │ ├── overloadErrorMatchesImplementationElaboaration.js │ ├── overloadErrorMatchesImplementationElaboaration.symbols │ ├── overloadErrorMatchesImplementationElaboaration.types │ ├── overloadGenericFunctionWithRestArgs.errors.txt │ ├── overloadGenericFunctionWithRestArgs.js │ ├── overloadGenericFunctionWithRestArgs.symbols │ ├── overloadGenericFunctionWithRestArgs.types │ ├── overloadModifiersMustAgree.errors.txt │ ├── overloadModifiersMustAgree.js │ ├── overloadModifiersMustAgree.symbols │ ├── overloadModifiersMustAgree.types │ ├── overloadOnConstAsTypeAnnotation.js │ ├── overloadOnConstAsTypeAnnotation.symbols │ ├── overloadOnConstAsTypeAnnotation.types │ ├── overloadOnConstConstraintChecks1.errors.txt │ ├── overloadOnConstConstraintChecks1.js │ ├── overloadOnConstConstraintChecks1.symbols │ ├── overloadOnConstConstraintChecks1.types │ ├── overloadOnConstConstraintChecks2.errors.txt │ ├── overloadOnConstConstraintChecks2.js │ ├── overloadOnConstConstraintChecks2.symbols │ ├── overloadOnConstConstraintChecks2.types │ ├── overloadOnConstConstraintChecks3.errors.txt │ ├── overloadOnConstConstraintChecks3.js │ ├── overloadOnConstConstraintChecks3.symbols │ ├── overloadOnConstConstraintChecks3.types │ ├── overloadOnConstConstraintChecks4.errors.txt │ ├── overloadOnConstConstraintChecks4.js │ ├── overloadOnConstConstraintChecks4.symbols │ ├── overloadOnConstConstraintChecks4.types │ ├── overloadOnConstDuplicateOverloads1.js │ ├── overloadOnConstDuplicateOverloads1.symbols │ ├── overloadOnConstDuplicateOverloads1.types │ ├── overloadOnConstInBaseWithBadImplementationInDerived.js │ ├── overloadOnConstInBaseWithBadImplementationInDerived.symbols │ ├── overloadOnConstInBaseWithBadImplementationInDerived.types │ ├── overloadOnConstInCallback1.js │ ├── overloadOnConstInCallback1.symbols │ ├── overloadOnConstInCallback1.types │ ├── overloadOnConstInObjectLiteralImplementingAnInterface.js │ ├── overloadOnConstInObjectLiteralImplementingAnInterface.symbols │ ├── overloadOnConstInObjectLiteralImplementingAnInterface.types │ ├── overloadOnConstInheritance1.js │ ├── overloadOnConstInheritance1.symbols │ ├── overloadOnConstInheritance1.types │ ├── overloadOnConstInheritance2.errors.txt │ ├── overloadOnConstInheritance2.js │ ├── overloadOnConstInheritance2.symbols │ ├── overloadOnConstInheritance2.types │ ├── overloadOnConstInheritance3.js │ ├── overloadOnConstInheritance3.symbols │ ├── overloadOnConstInheritance3.types │ ├── overloadOnConstInheritance4.js │ ├── overloadOnConstInheritance4.symbols │ ├── overloadOnConstInheritance4.types │ ├── overloadOnConstNoAnyImplementation.errors.txt │ ├── overloadOnConstNoAnyImplementation.js │ ├── overloadOnConstNoAnyImplementation.symbols │ ├── overloadOnConstNoAnyImplementation.types │ ├── overloadOnConstNoAnyImplementation2.errors.txt │ ├── overloadOnConstNoAnyImplementation2.js │ ├── overloadOnConstNoAnyImplementation2.symbols │ ├── overloadOnConstNoAnyImplementation2.types │ ├── overloadOnConstNoNonSpecializedSignature.js │ ├── overloadOnConstNoNonSpecializedSignature.symbols │ ├── overloadOnConstNoNonSpecializedSignature.types │ ├── overloadOnConstNoStringImplementation.js │ ├── overloadOnConstNoStringImplementation.symbols │ ├── overloadOnConstNoStringImplementation.types │ ├── overloadOnConstNoStringImplementation2.errors.txt │ ├── overloadOnConstNoStringImplementation2.js │ ├── overloadOnConstNoStringImplementation2.symbols │ ├── overloadOnConstNoStringImplementation2.types │ ├── overloadOnConstantsInvalidOverload1.errors.txt │ ├── overloadOnConstantsInvalidOverload1.js │ ├── overloadOnConstantsInvalidOverload1.symbols │ ├── overloadOnConstantsInvalidOverload1.types │ ├── overloadOnGenericArity.js │ ├── overloadOnGenericArity.symbols │ ├── overloadOnGenericArity.types │ ├── overloadOnGenericClassAndNonGenericClass.js │ ├── overloadOnGenericClassAndNonGenericClass.symbols │ ├── overloadOnGenericClassAndNonGenericClass.types │ ├── overloadResolution.errors.txt │ ├── overloadResolution.js │ ├── overloadResolution.symbols │ ├── overloadResolution.types │ ├── overloadResolutionClassConstructors.errors.txt │ ├── overloadResolutionClassConstructors.js │ ├── overloadResolutionClassConstructors.symbols │ ├── overloadResolutionClassConstructors.types │ ├── overloadResolutionConstructors.errors.txt │ ├── overloadResolutionConstructors.js │ ├── overloadResolutionConstructors.symbols │ ├── overloadResolutionConstructors.types │ ├── overloadResolutionOnDefaultConstructor1.errors.txt │ ├── overloadResolutionOnDefaultConstructor1.js │ ├── overloadResolutionOnDefaultConstructor1.symbols │ ├── overloadResolutionOnDefaultConstructor1.types │ ├── overloadResolutionOverCTLambda.errors.txt │ ├── overloadResolutionOverCTLambda.js │ ├── overloadResolutionOverCTLambda.symbols │ ├── overloadResolutionOverCTLambda.types │ ├── overloadResolutionOverNonCTLambdas.js │ ├── overloadResolutionOverNonCTLambdas.symbols │ ├── overloadResolutionOverNonCTLambdas.types │ ├── overloadResolutionOverNonCTObjectLit.js │ ├── overloadResolutionOverNonCTObjectLit.symbols │ ├── overloadResolutionOverNonCTObjectLit.types │ ├── overloadResolutionTest1.errors.txt │ ├── overloadResolutionTest1.js │ ├── overloadResolutionTest1.symbols │ ├── overloadResolutionTest1.types │ ├── overloadResolutionWithAny.js │ ├── overloadResolutionWithAny.symbols │ ├── overloadResolutionWithAny.types │ ├── overloadRet.js │ ├── overloadRet.symbols │ ├── overloadRet.types │ ├── overloadReturnTypes.js │ ├── overloadReturnTypes.symbols │ ├── overloadReturnTypes.types │ ├── overloadTag1.errors.txt │ ├── overloadTag1.js │ ├── overloadTag1.symbols │ ├── overloadTag1.types │ ├── overloadTag2.errors.txt │ ├── overloadTag2.js │ ├── overloadTag2.symbols │ ├── overloadTag2.types │ ├── overloadTag3.symbols │ ├── overloadTag3.types │ ├── overloadWithCallbacksWithDifferingOptionalityOnArgs.js │ ├── overloadWithCallbacksWithDifferingOptionalityOnArgs.symbols │ ├── overloadWithCallbacksWithDifferingOptionalityOnArgs.types │ ├── overloadedConstructorFixesInferencesAppropriately.js │ ├── overloadedConstructorFixesInferencesAppropriately.symbols │ ├── overloadedConstructorFixesInferencesAppropriately.types │ ├── overloadedStaticMethodSpecialization.errors.txt │ ├── overloadedStaticMethodSpecialization.js │ ├── overloadedStaticMethodSpecialization.symbols │ ├── overloadedStaticMethodSpecialization.types │ ├── overloadingOnConstants1.errors.txt │ ├── overloadingOnConstants1.js │ ├── overloadingOnConstants1.symbols │ ├── overloadingOnConstants1.types │ ├── overloadingOnConstants2.errors.txt │ ├── overloadingOnConstants2.js │ ├── overloadingOnConstants2.symbols │ ├── overloadingOnConstants2.types │ ├── overloadingOnConstantsInImplementation.js │ ├── overloadingOnConstantsInImplementation.symbols │ ├── overloadingOnConstantsInImplementation.types │ ├── overloadingStaticFunctionsInFunctions.errors.txt │ ├── overloadingStaticFunctionsInFunctions.js │ ├── overloadingStaticFunctionsInFunctions.symbols │ ├── overloadingStaticFunctionsInFunctions.types │ ├── overloadresolutionWithConstraintCheckingDeferred.errors.txt │ ├── overloadresolutionWithConstraintCheckingDeferred.js │ ├── overloadresolutionWithConstraintCheckingDeferred.symbols │ ├── overloadresolutionWithConstraintCheckingDeferred.types │ ├── overloadsAndTypeArgumentArity.js │ ├── overloadsAndTypeArgumentArity.symbols │ ├── overloadsAndTypeArgumentArity.types │ ├── overloadsAndTypeArgumentArityErrors.errors.txt │ ├── overloadsAndTypeArgumentArityErrors.js │ ├── overloadsAndTypeArgumentArityErrors.symbols │ ├── overloadsAndTypeArgumentArityErrors.types │ ├── overloadsInDifferentContainersDisagreeOnAmbient.errors.txt │ ├── overloadsInDifferentContainersDisagreeOnAmbient.js │ ├── overloadsInDifferentContainersDisagreeOnAmbient.symbols │ ├── overloadsInDifferentContainersDisagreeOnAmbient.types │ ├── overloadsWithComputedNames.errors.txt │ ├── overloadsWithComputedNames.js │ ├── overloadsWithComputedNames.symbols │ ├── overloadsWithComputedNames.types │ ├── overloadsWithConstraints.js │ ├── overloadsWithConstraints.symbols │ ├── overloadsWithConstraints.types │ ├── overloadsWithProvisionalErrors.errors.txt │ ├── overloadsWithProvisionalErrors.js │ ├── overloadsWithProvisionalErrors.symbols │ ├── overloadsWithProvisionalErrors.types │ ├── overloadsWithinClasses.errors.txt │ ├── overloadsWithinClasses.js │ ├── overloadsWithinClasses.symbols │ ├── overloadsWithinClasses.types │ ├── override1.errors.txt │ ├── override1.js │ ├── override1.symbols │ ├── override1.types │ ├── override10.js │ ├── override10.symbols │ ├── override10.types │ ├── override11.errors.txt │ ├── override11.js │ ├── override11.symbols │ ├── override11.types │ ├── override12(target=es2015).js │ ├── override12(target=es2015).symbols │ ├── override12(target=es2015).types │ ├── override12(target=esnext).js │ ├── override12(target=esnext).symbols │ ├── override12(target=esnext).types │ ├── override13.errors.txt │ ├── override13.js │ ├── override13.symbols │ ├── override13.types │ ├── override14.js │ ├── override14.symbols │ ├── override14.types │ ├── override15.errors.txt │ ├── override15.js │ ├── override15.symbols │ ├── override15.types │ ├── override16(target=es2015).js │ ├── override16(target=es2015).symbols │ ├── override16(target=es2015).types │ ├── override16(target=esnext).js │ ├── override16(target=esnext).symbols │ ├── override16(target=esnext).types │ ├── override17(target=es2015).js │ ├── override17(target=es2015).symbols │ ├── override17(target=es2015).types │ ├── override17(target=esnext).js │ ├── override17(target=esnext).symbols │ ├── override17(target=esnext).types │ ├── override18(target=es2015).js │ ├── override18(target=es2015).symbols │ ├── override18(target=es2015).types │ ├── override18(target=esnext).js │ ├── override18(target=esnext).symbols │ ├── override18(target=esnext).types │ ├── override19.errors.txt │ ├── override19.js │ ├── override19.symbols │ ├── override19.types │ ├── override2.errors.txt │ ├── override2.js │ ├── override2.symbols │ ├── override2.types │ ├── override20.errors.txt │ ├── override20.js │ ├── override20.symbols │ ├── override20.types │ ├── override21.errors.txt │ ├── override21.js │ ├── override21.symbols │ ├── override21.types │ ├── override3.errors.txt │ ├── override3.js │ ├── override3.symbols │ ├── override3.types │ ├── override4.errors.txt │ ├── override4.js │ ├── override4.symbols │ ├── override4.types │ ├── override5.errors.txt │ ├── override5.js │ ├── override5.symbols │ ├── override5.types │ ├── override6.errors.txt │ ├── override6.js │ ├── override6.symbols │ ├── override6.types │ ├── override7.errors.txt │ ├── override7.js │ ├── override7.symbols │ ├── override7.types │ ├── override8.errors.txt │ ├── override8.js │ ├── override8.symbols │ ├── override8.types │ ├── override9.errors.txt │ ├── override9.js │ ├── override9.symbols │ ├── override9.types │ ├── overrideBaseIntersectionMethod.js │ ├── overrideBaseIntersectionMethod.symbols │ ├── overrideBaseIntersectionMethod.types │ ├── overrideDynamicName1(noimplicitoverride=false).errors.txt │ ├── overrideDynamicName1(noimplicitoverride=false).js │ ├── overrideDynamicName1(noimplicitoverride=false).symbols │ ├── overrideDynamicName1(noimplicitoverride=false).types │ ├── overrideDynamicName1(noimplicitoverride=true).errors.txt │ ├── overrideDynamicName1(noimplicitoverride=true).js │ ├── overrideDynamicName1(noimplicitoverride=true).symbols │ ├── overrideDynamicName1(noimplicitoverride=true).types │ ├── overrideInterfaceProperty.js │ ├── overrideInterfaceProperty.symbols │ ├── overrideInterfaceProperty.types │ ├── overrideKeywordOrder.errors.txt │ ├── overrideLateBindableIndexSignature1(noimplicitoverride=false).errors.txt │ ├── overrideLateBindableIndexSignature1(noimplicitoverride=false).js │ ├── overrideLateBindableIndexSignature1(noimplicitoverride=false).symbols │ ├── overrideLateBindableIndexSignature1(noimplicitoverride=false).types │ ├── overrideLateBindableIndexSignature1(noimplicitoverride=true).errors.txt │ ├── overrideLateBindableIndexSignature1(noimplicitoverride=true).js │ ├── overrideLateBindableIndexSignature1(noimplicitoverride=true).symbols │ ├── overrideLateBindableIndexSignature1(noimplicitoverride=true).types │ ├── overrideLateBindableName1(noimplicitoverride=false).errors.txt │ ├── overrideLateBindableName1(noimplicitoverride=false).js │ ├── overrideLateBindableName1(noimplicitoverride=false).symbols │ ├── overrideLateBindableName1(noimplicitoverride=false).types │ ├── overrideLateBindableName1(noimplicitoverride=true).errors.txt │ ├── overrideLateBindableName1(noimplicitoverride=true).js │ ├── overrideLateBindableName1(noimplicitoverride=true).symbols │ ├── overrideLateBindableName1(noimplicitoverride=true).types │ ├── overrideParameterProperty.errors.txt │ ├── overrideParameterProperty.js │ ├── overrideParameterProperty.symbols │ ├── overrideParameterProperty.types │ ├── overrideWithoutNoImplicitOverride1.errors.txt │ ├── overrideWithoutNoImplicitOverride1.js │ ├── overrideWithoutNoImplicitOverride1.symbols │ ├── overrideWithoutNoImplicitOverride1.types │ ├── override_js1.symbols │ ├── override_js1.types │ ├── override_js2.errors.txt │ ├── override_js2.symbols │ ├── override_js2.types │ ├── override_js3.errors.txt │ ├── override_js3.symbols │ ├── override_js3.types │ ├── override_js4.errors.txt │ ├── override_js4.symbols │ ├── override_js4.types │ ├── overridingPrivateStaticMembers.errors.txt │ ├── overridingPrivateStaticMembers.js │ ├── overridingPrivateStaticMembers.symbols │ ├── overridingPrivateStaticMembers.types │ ├── overshifts.errors.txt │ ├── overshifts.js │ ├── overshifts.symbols │ ├── overshifts.types │ ├── packageJsonExportsOptionsCompat.errors.txt │ ├── packageJsonImportsErrors(module=node18).errors.txt │ ├── packageJsonImportsErrors(module=node18).js │ ├── packageJsonImportsErrors(module=node20).errors.txt │ ├── packageJsonImportsErrors(module=node20).js │ ├── packageJsonImportsErrors(module=nodenext).errors.txt │ ├── packageJsonImportsErrors(module=nodenext).js │ ├── packageJsonImportsExportsOptionCompat(moduleresolution=classic).errors.txt │ ├── packageJsonImportsExportsOptionCompat(moduleresolution=node).errors.txt │ ├── packageJsonImportsExportsOptionCompat(moduleresolution=node16).errors.txt │ ├── packageJsonImportsExportsOptionCompat(moduleresolution=nodenext).errors.txt │ ├── packageJsonMain.js │ ├── packageJsonMain.symbols │ ├── packageJsonMain.trace.json │ ├── packageJsonMain.types │ ├── packageJsonMain_isNonRecursive.errors.txt │ ├── packageJsonMain_isNonRecursive.js │ ├── packageJsonMain_isNonRecursive.symbols │ ├── packageJsonMain_isNonRecursive.trace.json │ ├── packageJsonMain_isNonRecursive.types │ ├── paramPropertiesInSignatures.errors.txt │ ├── paramPropertiesInSignatures.js │ ├── paramPropertiesInSignatures.symbols │ ├── paramPropertiesInSignatures.types │ ├── paramTagBracketsAddOptionalUndefined.symbols │ ├── paramTagBracketsAddOptionalUndefined.types │ ├── paramTagNestedWithoutTopLevelObject.errors.txt │ ├── paramTagNestedWithoutTopLevelObject.symbols │ ├── paramTagNestedWithoutTopLevelObject.types │ ├── paramTagNestedWithoutTopLevelObject2.errors.txt │ ├── paramTagNestedWithoutTopLevelObject2.symbols │ ├── paramTagNestedWithoutTopLevelObject2.types │ ├── paramTagNestedWithoutTopLevelObject3.errors.txt │ ├── paramTagNestedWithoutTopLevelObject3.symbols │ ├── paramTagNestedWithoutTopLevelObject3.types │ ├── paramTagNestedWithoutTopLevelObject4.errors.txt │ ├── paramTagNestedWithoutTopLevelObject4.symbols │ ├── paramTagNestedWithoutTopLevelObject4.types │ ├── paramTagOnCallExpression.symbols │ ├── paramTagOnCallExpression.types │ ├── paramTagOnFunctionUsingArguments.errors.txt │ ├── paramTagOnFunctionUsingArguments.symbols │ ├── paramTagOnFunctionUsingArguments.types │ ├── paramTagTypeResolution.symbols │ ├── paramTagTypeResolution.types │ ├── paramTagTypeResolution2.symbols │ ├── paramTagTypeResolution2.types │ ├── paramTagWrapping.errors.txt │ ├── paramTagWrapping.symbols │ ├── paramTagWrapping.types │ ├── parameterDecoratorsEmitCrash.errors.txt │ ├── parameterDecoratorsEmitCrash.js │ ├── parameterDestructuringObjectLiteral.js │ ├── parameterDestructuringObjectLiteral.symbols │ ├── parameterDestructuringObjectLiteral.types │ ├── parameterInitializerBeforeDestructuringEmit.js │ ├── parameterInitializerBeforeDestructuringEmit.symbols │ ├── parameterInitializerBeforeDestructuringEmit.types │ ├── parameterInitializersBackwardReferencing(target=es5).errors.txt │ ├── parameterInitializersForwardReferencing(target=es2015).errors.txt │ ├── parameterInitializersForwardReferencing(target=es2015).js │ ├── parameterInitializersForwardReferencing(target=es2015).symbols │ ├── parameterInitializersForwardReferencing(target=es2015).types │ ├── parameterInitializersForwardReferencing(target=es5).errors.txt │ ├── parameterInitializersForwardReferencing(target=es5).js │ ├── parameterInitializersForwardReferencing(target=es5).symbols │ ├── parameterInitializersForwardReferencing(target=es5).types │ ├── parameterInitializersForwardReferencing.2(target=es2015).errors.txt │ ├── parameterInitializersForwardReferencing.2(target=es5).errors.txt │ ├── parameterInitializersForwardReferencing1(target=es2015).errors.txt │ ├── parameterInitializersForwardReferencing1(target=es2015).js │ ├── parameterInitializersForwardReferencing1(target=es2015).symbols │ ├── parameterInitializersForwardReferencing1(target=es2015).types │ ├── parameterInitializersForwardReferencing1(target=es5).errors.txt │ ├── parameterInitializersForwardReferencing1(target=es5).js │ ├── parameterInitializersForwardReferencing1(target=es5).symbols │ ├── parameterInitializersForwardReferencing1(target=es5).types │ ├── parameterInitializersForwardReferencing1_es6.errors.txt │ ├── parameterInitializersForwardReferencing1_es6.js │ ├── parameterInitializersForwardReferencing1_es6.symbols │ ├── parameterInitializersForwardReferencing1_es6.types │ ├── parameterListAsTupleType.errors.txt │ ├── parameterListAsTupleType.js │ ├── parameterListAsTupleType.symbols │ ├── parameterListAsTupleType.types │ ├── parameterNamesInTypeParameterList.errors.txt │ ├── parameterNamesInTypeParameterList.js │ ├── parameterNamesInTypeParameterList.symbols │ ├── parameterNamesInTypeParameterList.types │ ├── parameterPropertyInConstructor1.errors.txt │ ├── parameterPropertyInConstructor1.js │ ├── parameterPropertyInConstructor1.symbols │ ├── parameterPropertyInConstructor1.types │ ├── parameterPropertyInConstructor2.errors.txt │ ├── parameterPropertyInConstructor2.js │ ├── parameterPropertyInConstructor2.symbols │ ├── parameterPropertyInConstructor2.types │ ├── parameterPropertyInConstructor3.errors.txt │ ├── parameterPropertyInConstructor3.js │ ├── parameterPropertyInConstructor3.symbols │ ├── parameterPropertyInConstructor3.types │ ├── parameterPropertyInConstructor4.js │ ├── parameterPropertyInConstructor4.symbols │ ├── parameterPropertyInConstructor4.types │ ├── parameterPropertyInConstructorWithPrologues.js │ ├── parameterPropertyInConstructorWithPrologues.symbols │ ├── parameterPropertyInConstructorWithPrologues.types │ ├── parameterPropertyInitializerInInitializers.js │ ├── parameterPropertyInitializerInInitializers.symbols │ ├── parameterPropertyInitializerInInitializers.types │ ├── parameterPropertyOutsideConstructor.errors.txt │ ├── parameterPropertyOutsideConstructor.js │ ├── parameterPropertyOutsideConstructor.symbols │ ├── parameterPropertyOutsideConstructor.types │ ├── parameterPropertyReferencingOtherParameter.js │ ├── parameterPropertyReferencingOtherParameter.symbols │ ├── parameterPropertyReferencingOtherParameter.types │ ├── parameterReferenceInInitializer1.errors.txt │ ├── parameterReferenceInInitializer1.js │ ├── parameterReferenceInInitializer1.symbols │ ├── parameterReferenceInInitializer1.types │ ├── parameterReferenceInInitializer2.js │ ├── parameterReferenceInInitializer2.symbols │ ├── parameterReferenceInInitializer2.types │ ├── parameterReferencesOtherParameter1.errors.txt │ ├── parameterReferencesOtherParameter1.js │ ├── parameterReferencesOtherParameter1.symbols │ ├── parameterReferencesOtherParameter1.types │ ├── parameterReferencesOtherParameter2.errors.txt │ ├── parameterReferencesOtherParameter2.js │ ├── parameterReferencesOtherParameter2.symbols │ ├── parameterReferencesOtherParameter2.types │ ├── parametersSyntaxErrorNoCrash1.errors.txt │ ├── parametersSyntaxErrorNoCrash2.errors.txt │ ├── parametersSyntaxErrorNoCrash3.errors.txt │ ├── parametersWithNoAnnotationAreAny.js │ ├── parametersWithNoAnnotationAreAny.symbols │ ├── parametersWithNoAnnotationAreAny.types │ ├── paramsOnlyHaveLiteralTypesWhenAppropriatelyContextualized.errors.txt │ ├── paramsOnlyHaveLiteralTypesWhenAppropriatelyContextualized.js │ ├── paramsOnlyHaveLiteralTypesWhenAppropriatelyContextualized.symbols │ ├── paramsOnlyHaveLiteralTypesWhenAppropriatelyContextualized.types │ ├── paramterDestrcuturingDeclaration.errors.txt │ ├── paramterDestrcuturingDeclaration.js │ ├── paramterDestrcuturingDeclaration.symbols │ ├── paramterDestrcuturingDeclaration.types │ ├── parentheses.js │ ├── parenthesisDoesNotBlockAliasSymbolCreation.errors.txt │ ├── parenthesisDoesNotBlockAliasSymbolCreation.js │ ├── parenthesisDoesNotBlockAliasSymbolCreation.symbols │ ├── parenthesisDoesNotBlockAliasSymbolCreation.types │ ├── parenthesizedArrowExpressionASI.errors.txt │ ├── parenthesizedArrowExpressionASI.js │ ├── parenthesizedArrowExpressionASI.symbols │ ├── parenthesizedArrowExpressionASI.types │ ├── parenthesizedAsyncArrowFunction.js │ ├── parenthesizedAsyncArrowFunction.symbols │ ├── parenthesizedAsyncArrowFunction.types │ ├── parenthesizedContexualTyping1.errors.txt │ ├── parenthesizedContexualTyping1.js │ ├── parenthesizedContexualTyping1.symbols │ ├── parenthesizedContexualTyping1.types │ ├── parenthesizedContexualTyping2.errors.txt │ ├── parenthesizedContexualTyping2.js │ ├── parenthesizedContexualTyping2.symbols │ ├── parenthesizedContexualTyping2.types │ ├── parenthesizedContexualTyping3.js │ ├── parenthesizedContexualTyping3.symbols │ ├── parenthesizedContexualTyping3.types │ ├── parenthesizedExpressionInternalComments.js │ ├── parenthesizedExpressionInternalComments.symbols │ ├── parenthesizedExpressionInternalComments.types │ ├── parenthesizedJSDocCastAtReturnStatement.symbols │ ├── parenthesizedJSDocCastAtReturnStatement.types │ ├── parenthesizedJSDocCastDoesNotNarrow.errors.txt │ ├── parenthesizedJSDocCastDoesNotNarrow.symbols │ ├── parenthesizedJSDocCastDoesNotNarrow.types │ ├── parenthesizedSatisfiesExpressionWithComments.js │ ├── parenthesizedSatisfiesExpressionWithComments.symbols │ ├── parenthesizedSatisfiesExpressionWithComments.types │ ├── parenthesizedTypes.js │ ├── parenthesizedTypes.symbols │ ├── parenthesizedTypes.types │ ├── parse1.errors.txt │ ├── parse1.js │ ├── parse1.symbols │ ├── parse1.types │ ├── parse2.errors.txt │ ├── parse2.js │ ├── parse2.symbols │ ├── parse2.types │ ├── parseArrowFunctionWithFunctionReturnType.js │ ├── parseArrowFunctionWithFunctionReturnType.symbols │ ├── parseArrowFunctionWithFunctionReturnType.types │ ├── parseAssertEntriesError.errors.txt │ ├── parseAssertEntriesError.js │ ├── parseAssertEntriesError.symbols │ ├── parseAssertEntriesError.types │ ├── parseBigInt.errors.txt │ ├── parseBigInt.js │ ├── parseBigInt.symbols │ ├── parseBigInt.types │ ├── parseClassDeclarationInStrictModeByDefaultInES6.errors.txt │ ├── parseClassDeclarationInStrictModeByDefaultInES6.js │ ├── parseClassDeclarationInStrictModeByDefaultInES6.symbols │ ├── parseClassDeclarationInStrictModeByDefaultInES6.types │ ├── parseCommaSeparatedNewlineNew.errors.txt │ ├── parseCommaSeparatedNewlineNew.js │ ├── parseCommaSeparatedNewlineNew.symbols │ ├── parseCommaSeparatedNewlineNew.types │ ├── parseCommaSeparatedNewlineNumber.errors.txt │ ├── parseCommaSeparatedNewlineNumber.js │ ├── parseCommaSeparatedNewlineNumber.symbols │ ├── parseCommaSeparatedNewlineNumber.types │ ├── parseCommaSeparatedNewlineString.errors.txt │ ├── parseCommaSeparatedNewlineString.js │ ├── parseCommaSeparatedNewlineString.symbols │ ├── parseCommaSeparatedNewlineString.types │ ├── parseEntityNameWithReservedWord.js │ ├── parseEntityNameWithReservedWord.symbols │ ├── parseEntityNameWithReservedWord.types │ ├── parseErrorDoubleCommaInCall.errors.txt │ ├── parseErrorDoubleCommaInCall.js │ ├── parseErrorDoubleCommaInCall.symbols │ ├── parseErrorDoubleCommaInCall.types │ ├── parseErrorInHeritageClause1.errors.txt │ ├── parseErrorInHeritageClause1.js │ ├── parseErrorInHeritageClause1.symbols │ ├── parseErrorInHeritageClause1.types │ ├── parseErrorIncorrectReturnToken.errors.txt │ ├── parseErrorIncorrectReturnToken.js │ ├── parseErrorIncorrectReturnToken.symbols │ ├── parseErrorIncorrectReturnToken.types │ ├── parseGenericArrowRatherThanLeftShift.js │ ├── parseGenericArrowRatherThanLeftShift.symbols │ ├── parseGenericArrowRatherThanLeftShift.types │ ├── parseImportAttributesError.errors.txt │ ├── parseImportAttributesError.js │ ├── parseImportAttributesError.symbols │ ├── parseImportAttributesError.types │ ├── parseIncompleteBinaryExpression1.errors.txt │ ├── parseIncompleteBinaryExpression1.js │ ├── parseIncompleteBinaryExpression1.symbols │ ├── parseIncompleteBinaryExpression1.types │ ├── parseInvalidNames.errors.txt │ ├── parseInvalidNames.js │ ├── parseInvalidNames.symbols │ ├── parseInvalidNames.types │ ├── parseInvalidNonNullableTypes.errors.txt │ ├── parseInvalidNonNullableTypes.js │ ├── parseInvalidNonNullableTypes.symbols │ ├── parseInvalidNonNullableTypes.types │ ├── parseInvalidNullableTypes.errors.txt │ ├── parseInvalidNullableTypes.js │ ├── parseInvalidNullableTypes.symbols │ ├── parseInvalidNullableTypes.types │ ├── parseJsxElementInUnaryExpressionNoCrash1.errors.txt │ ├── parseJsxElementInUnaryExpressionNoCrash1.js │ ├── parseJsxElementInUnaryExpressionNoCrash1.symbols │ ├── parseJsxElementInUnaryExpressionNoCrash1.types │ ├── parseJsxElementInUnaryExpressionNoCrash2.errors.txt │ ├── parseJsxElementInUnaryExpressionNoCrash2.js │ ├── parseJsxElementInUnaryExpressionNoCrash2.symbols │ ├── parseJsxElementInUnaryExpressionNoCrash2.types │ ├── parseJsxElementInUnaryExpressionNoCrash3.errors.txt │ ├── parseJsxElementInUnaryExpressionNoCrash3.js │ ├── parseJsxElementInUnaryExpressionNoCrash3.symbols │ ├── parseJsxElementInUnaryExpressionNoCrash3.types │ ├── parseJsxExtends1.js │ ├── parseJsxExtends1.symbols │ ├── parseJsxExtends1.types │ ├── parseJsxExtends2.errors.txt │ ├── parseJsxExtends2.js │ ├── parseJsxExtends2.symbols │ ├── parseJsxExtends2.types │ ├── parseLinkTag.js │ ├── parseLinkTag.symbols │ ├── parseLinkTag.types │ ├── parseObjectLiteralsWithoutTypes.js │ ├── parseObjectLiteralsWithoutTypes.symbols │ ├── parseObjectLiteralsWithoutTypes.types │ ├── parseRegularExpressionMixedWithComments.errors.txt │ ├── parseRegularExpressionMixedWithComments.js │ ├── parseRegularExpressionMixedWithComments.symbols │ ├── parseRegularExpressionMixedWithComments.types │ ├── parseReplacementCharacter.js │ ├── parseReplacementCharacter.symbols │ ├── parseReplacementCharacter.types │ ├── parseShortform.js │ ├── parseShortform.symbols │ ├── parseShortform.types │ ├── parseThrowsTag.js │ ├── parseThrowsTag.symbols │ ├── parseThrowsTag.types │ ├── parseTypes.errors.txt │ ├── parseTypes.js │ ├── parseTypes.symbols │ ├── parseTypes.types │ ├── parseUnaryExpressionNoTypeAssertionInJsx1.errors.txt │ ├── parseUnaryExpressionNoTypeAssertionInJsx1.symbols │ ├── parseUnaryExpressionNoTypeAssertionInJsx1.types │ ├── parseUnaryExpressionNoTypeAssertionInJsx2.errors.txt │ ├── parseUnaryExpressionNoTypeAssertionInJsx2.symbols │ ├── parseUnaryExpressionNoTypeAssertionInJsx2.types │ ├── parseUnaryExpressionNoTypeAssertionInJsx3.errors.txt │ ├── parseUnaryExpressionNoTypeAssertionInJsx3.symbols │ ├── parseUnaryExpressionNoTypeAssertionInJsx3.types │ ├── parseUnaryExpressionNoTypeAssertionInJsx4.errors.txt │ ├── parseUnaryExpressionNoTypeAssertionInJsx4.js │ ├── parseUnaryExpressionNoTypeAssertionInJsx4.symbols │ ├── parseUnaryExpressionNoTypeAssertionInJsx4.types │ ├── parseUnmatchedTypeAssertion.errors.txt │ ├── parseUnmatchedTypeAssertion.js │ ├── parseUnmatchedTypeAssertion.symbols │ ├── parseUnmatchedTypeAssertion.types │ ├── parser.asyncGenerators.classMethods.es2018(alwaysstrict=false).errors.txt │ ├── parser.asyncGenerators.classMethods.es2018(alwaysstrict=false).symbols │ ├── parser.asyncGenerators.classMethods.es2018(alwaysstrict=false).types │ ├── parser.asyncGenerators.classMethods.es2018(alwaysstrict=true).errors.txt │ ├── parser.asyncGenerators.classMethods.es2018(alwaysstrict=true).symbols │ ├── parser.asyncGenerators.classMethods.es2018(alwaysstrict=true).types │ ├── parser.asyncGenerators.functionDeclarations.es2018(alwaysstrict=false).errors.txt │ ├── parser.asyncGenerators.functionDeclarations.es2018(alwaysstrict=false).symbols │ ├── parser.asyncGenerators.functionDeclarations.es2018(alwaysstrict=false).types │ ├── parser.asyncGenerators.functionDeclarations.es2018(alwaysstrict=true).errors.txt │ ├── parser.asyncGenerators.functionDeclarations.es2018(alwaysstrict=true).symbols │ ├── parser.asyncGenerators.functionDeclarations.es2018(alwaysstrict=true).types │ ├── parser.asyncGenerators.functionExpressions.es2018(alwaysstrict=false).errors.txt │ ├── parser.asyncGenerators.functionExpressions.es2018(alwaysstrict=false).symbols │ ├── parser.asyncGenerators.functionExpressions.es2018(alwaysstrict=false).types │ ├── parser.asyncGenerators.functionExpressions.es2018(alwaysstrict=true).errors.txt │ ├── parser.asyncGenerators.functionExpressions.es2018(alwaysstrict=true).symbols │ ├── parser.asyncGenerators.functionExpressions.es2018(alwaysstrict=true).types │ ├── parser.asyncGenerators.objectLiteralMethods.es2018(alwaysstrict=false).errors.txt │ ├── parser.asyncGenerators.objectLiteralMethods.es2018(alwaysstrict=false).symbols │ ├── parser.asyncGenerators.objectLiteralMethods.es2018(alwaysstrict=false).types │ ├── parser.asyncGenerators.objectLiteralMethods.es2018(alwaysstrict=true).errors.txt │ ├── parser.asyncGenerators.objectLiteralMethods.es2018(alwaysstrict=true).symbols │ ├── parser.asyncGenerators.objectLiteralMethods.es2018(alwaysstrict=true).types │ ├── parser.forAwait.es2018.errors.txt │ ├── parser.forAwait.es2018.symbols │ ├── parser.forAwait.es2018.types │ ├── parser.numericSeparators.binary.js │ ├── parser.numericSeparators.binary.symbols │ ├── parser.numericSeparators.binary.types │ ├── parser.numericSeparators.binaryNegative.errors.txt │ ├── parser.numericSeparators.binaryNegative.js │ ├── parser.numericSeparators.binaryNegative.symbols │ ├── parser.numericSeparators.binaryNegative.types │ ├── parser.numericSeparators.decimal(target=es2020).js │ ├── parser.numericSeparators.decimal(target=es2020).symbols │ ├── parser.numericSeparators.decimal(target=es2020).types │ ├── parser.numericSeparators.decimal(target=es2021).js │ ├── parser.numericSeparators.decimal(target=es2021).symbols │ ├── parser.numericSeparators.decimal(target=es2021).types │ ├── parser.numericSeparators.decimal(target=es5).errors.txt │ ├── parser.numericSeparators.decimal(target=es5).js │ ├── parser.numericSeparators.decimal(target=es5).symbols │ ├── parser.numericSeparators.decimal(target=es5).types │ ├── parser.numericSeparators.decmialNegative.errors.txt │ ├── parser.numericSeparators.decmialNegative.js │ ├── parser.numericSeparators.decmialNegative.symbols │ ├── parser.numericSeparators.decmialNegative.types │ ├── parser.numericSeparators.hex.js │ ├── parser.numericSeparators.hex.symbols │ ├── parser.numericSeparators.hex.types │ ├── parser.numericSeparators.hexNegative.errors.txt │ ├── parser.numericSeparators.hexNegative.js │ ├── parser.numericSeparators.hexNegative.symbols │ ├── parser.numericSeparators.hexNegative.types │ ├── parser.numericSeparators.octal.js │ ├── parser.numericSeparators.octal.symbols │ ├── parser.numericSeparators.octal.types │ ├── parser.numericSeparators.octalNegative.errors.txt │ ├── parser.numericSeparators.octalNegative.js │ ├── parser.numericSeparators.octalNegative.symbols │ ├── parser.numericSeparators.octalNegative.types │ ├── parser.numericSeparators.unicodeEscape.errors.txt │ ├── parser.numericSeparators.unicodeEscape.js │ ├── parser.numericSeparators.unicodeEscape.symbols │ ├── parser.numericSeparators.unicodeEscape.types │ ├── parser0_004152.errors.txt │ ├── parser0_004152.js │ ├── parser0_004152.symbols │ ├── parser0_004152.types │ ├── parser10.1.1-8gs.errors.txt │ ├── parser10.1.1-8gs.js │ ├── parser10.1.1-8gs.symbols │ ├── parser10.1.1-8gs.types │ ├── parser15.4.4.14-9-2.errors.txt │ ├── parser15.4.4.14-9-2.js │ ├── parser15.4.4.14-9-2.symbols │ ├── parser15.4.4.14-9-2.types │ ├── parser509534.errors.txt │ ├── parser509534.js │ ├── parser509534.symbols │ ├── parser509534.types │ ├── parser509546.js │ ├── parser509546.symbols │ ├── parser509546.types │ ├── parser509546_1.js │ ├── parser509546_1.symbols │ ├── parser509546_1.types │ ├── parser509546_2.js │ ├── parser509546_2.symbols │ ├── parser509546_2.types │ ├── parser509618.errors.txt │ ├── parser509618.js │ ├── parser509618.symbols │ ├── parser509618.types │ ├── parser509630.errors.txt │ ├── parser509630.js │ ├── parser509630.symbols │ ├── parser509630.types │ ├── parser509667.errors.txt │ ├── parser509667.js │ ├── parser509667.symbols │ ├── parser509667.types │ ├── parser509668.errors.txt │ ├── parser509668.js │ ├── parser509668.symbols │ ├── parser509668.types │ ├── parser509669.errors.txt │ ├── parser509669.js │ ├── parser509669.symbols │ ├── parser509669.types │ ├── parser509677.js │ ├── parser509677.symbols │ ├── parser509677.types │ ├── parser509693.errors.txt │ ├── parser509693.js │ ├── parser509693.symbols │ ├── parser509693.types │ ├── parser509698.errors.txt │ ├── parser509698.js │ ├── parser509698.symbols │ ├── parser509698.types │ ├── parser512084.errors.txt │ ├── parser512084.js │ ├── parser512084.symbols │ ├── parser512084.types │ ├── parser512097.errors.txt │ ├── parser512097.js │ ├── parser512097.symbols │ ├── parser512097.types │ ├── parser512325.errors.txt │ ├── parser512325.js │ ├── parser512325.symbols │ ├── parser512325.types │ ├── parser519458.errors.txt │ ├── parser519458.js │ ├── parser519458.symbols │ ├── parser519458.types │ ├── parser521128.errors.txt │ ├── parser521128.js │ ├── parser521128.symbols │ ├── parser521128.types │ ├── parser536727.errors.txt │ ├── parser536727.js │ ├── parser536727.symbols │ ├── parser536727.types │ ├── parser553699.errors.txt │ ├── parser553699.js │ ├── parser553699.symbols │ ├── parser553699.types │ ├── parser566700.errors.txt │ ├── parser566700.js │ ├── parser566700.symbols │ ├── parser566700.types │ ├── parser579071.errors.txt │ ├── parser579071.js │ ├── parser579071.symbols │ ├── parser579071.types │ ├── parser585151.errors.txt │ ├── parser585151.js │ ├── parser585151.symbols │ ├── parser585151.types │ ├── parser596700.js │ ├── parser596700.symbols │ ├── parser596700.types │ ├── parser618973.errors.txt │ ├── parser618973.js │ ├── parser618973.symbols │ ├── parser618973.types │ ├── parser630933.js │ ├── parser630933.symbols │ ├── parser630933.types │ ├── parser642331.errors.txt │ ├── parser642331.js │ ├── parser642331.symbols │ ├── parser642331.types │ ├── parser642331_1.errors.txt │ ├── parser642331_1.js │ ├── parser642331_1.symbols │ ├── parser642331_1.types │ ├── parser643728.js │ ├── parser643728.symbols │ ├── parser643728.types │ ├── parser645086_1.errors.txt │ ├── parser645086_1.js │ ├── parser645086_1.symbols │ ├── parser645086_1.types │ ├── parser645086_2.errors.txt │ ├── parser645086_2.js │ ├── parser645086_2.symbols │ ├── parser645086_2.types │ ├── parser645086_3.js │ ├── parser645086_3.symbols │ ├── parser645086_3.types │ ├── parser645086_4.js │ ├── parser645086_4.symbols │ ├── parser645086_4.types │ ├── parser645484.js │ ├── parser645484.symbols │ ├── parser645484.types │ ├── parser768531.js │ ├── parser768531.symbols │ ├── parser768531.types │ ├── parserAccessibilityAfterStatic1.errors.txt │ ├── parserAccessibilityAfterStatic1.js │ ├── parserAccessibilityAfterStatic1.symbols │ ├── parserAccessibilityAfterStatic1.types │ ├── parserAccessibilityAfterStatic10.errors.txt │ ├── parserAccessibilityAfterStatic10.js │ ├── parserAccessibilityAfterStatic10.symbols │ ├── parserAccessibilityAfterStatic10.types │ ├── parserAccessibilityAfterStatic11.js │ ├── parserAccessibilityAfterStatic11.symbols │ ├── parserAccessibilityAfterStatic11.types │ ├── parserAccessibilityAfterStatic14.js │ ├── parserAccessibilityAfterStatic14.symbols │ ├── parserAccessibilityAfterStatic14.types │ ├── parserAccessibilityAfterStatic2.js │ ├── parserAccessibilityAfterStatic2.symbols │ ├── parserAccessibilityAfterStatic2.types │ ├── parserAccessibilityAfterStatic3.js │ ├── parserAccessibilityAfterStatic3.symbols │ ├── parserAccessibilityAfterStatic3.types │ ├── parserAccessibilityAfterStatic4.js │ ├── parserAccessibilityAfterStatic4.symbols │ ├── parserAccessibilityAfterStatic4.types │ ├── parserAccessibilityAfterStatic5.js │ ├── parserAccessibilityAfterStatic5.symbols │ ├── parserAccessibilityAfterStatic5.types │ ├── parserAccessibilityAfterStatic6.errors.txt │ ├── parserAccessibilityAfterStatic6.js │ ├── parserAccessibilityAfterStatic6.symbols │ ├── parserAccessibilityAfterStatic6.types │ ├── parserAccessibilityAfterStatic7.errors.txt │ ├── parserAccessibilityAfterStatic7.js │ ├── parserAccessibilityAfterStatic7.symbols │ ├── parserAccessibilityAfterStatic7.types │ ├── parserAccessors1(target=es2015).errors.txt │ ├── parserAccessors1(target=es2015).js │ ├── parserAccessors1(target=es2015).symbols │ ├── parserAccessors1(target=es2015).types │ ├── parserAccessors1(target=es5).errors.txt │ ├── parserAccessors1(target=es5).js │ ├── parserAccessors1(target=es5).symbols │ ├── parserAccessors1(target=es5).types │ ├── parserAccessors10(target=es2015).errors.txt │ ├── parserAccessors10(target=es2015).js │ ├── parserAccessors10(target=es2015).symbols │ ├── parserAccessors10(target=es2015).types │ ├── parserAccessors10(target=es5).errors.txt │ ├── parserAccessors10(target=es5).js │ ├── parserAccessors10(target=es5).symbols │ ├── parserAccessors10(target=es5).types │ ├── parserAccessors2(target=es2015).js │ ├── parserAccessors2(target=es2015).symbols │ ├── parserAccessors2(target=es2015).types │ ├── parserAccessors2(target=es5).errors.txt │ ├── parserAccessors2(target=es5).js │ ├── parserAccessors2(target=es5).symbols │ ├── parserAccessors2(target=es5).types │ ├── parserAccessors3(target=es2015).errors.txt │ ├── parserAccessors3(target=es2015).js │ ├── parserAccessors3(target=es2015).symbols │ ├── parserAccessors3(target=es2015).types │ ├── parserAccessors3(target=es5).errors.txt │ ├── parserAccessors3(target=es5).js │ ├── parserAccessors3(target=es5).symbols │ ├── parserAccessors3(target=es5).types │ ├── parserAccessors4(target=es2015).js │ ├── parserAccessors4(target=es2015).symbols │ ├── parserAccessors4(target=es2015).types │ ├── parserAccessors4(target=es5).errors.txt │ ├── parserAccessors4(target=es5).js │ ├── parserAccessors4(target=es5).symbols │ ├── parserAccessors4(target=es5).types │ ├── parserAccessors5(target=es2015).errors.txt │ ├── parserAccessors5(target=es2015).js │ ├── parserAccessors5(target=es2015).symbols │ ├── parserAccessors5(target=es2015).types │ ├── parserAccessors5(target=es5).errors.txt │ ├── parserAccessors5(target=es5).js │ ├── parserAccessors5(target=es5).symbols │ ├── parserAccessors5(target=es5).types │ ├── parserAccessors6(target=es2015).errors.txt │ ├── parserAccessors6(target=es2015).js │ ├── parserAccessors6(target=es2015).symbols │ ├── parserAccessors6(target=es2015).types │ ├── parserAccessors6(target=es5).errors.txt │ ├── parserAccessors6(target=es5).js │ ├── parserAccessors6(target=es5).symbols │ ├── parserAccessors6(target=es5).types │ ├── parserAccessors7(target=es2015).errors.txt │ ├── parserAccessors7(target=es2015).js │ ├── parserAccessors7(target=es2015).symbols │ ├── parserAccessors7(target=es2015).types │ ├── parserAccessors7(target=es5).errors.txt │ ├── parserAccessors7(target=es5).js │ ├── parserAccessors7(target=es5).symbols │ ├── parserAccessors7(target=es5).types │ ├── parserAccessors8(target=es2015).errors.txt │ ├── parserAccessors8(target=es2015).js │ ├── parserAccessors8(target=es2015).symbols │ ├── parserAccessors8(target=es2015).types │ ├── parserAccessors8(target=es5).errors.txt │ ├── parserAccessors8(target=es5).js │ ├── parserAccessors8(target=es5).symbols │ ├── parserAccessors8(target=es5).types │ ├── parserAccessors9(target=es2015).errors.txt │ ├── parserAccessors9(target=es2015).js │ ├── parserAccessors9(target=es2015).symbols │ ├── parserAccessors9(target=es2015).types │ ├── parserAccessors9(target=es5).errors.txt │ ├── parserAccessors9(target=es5).js │ ├── parserAccessors9(target=es5).symbols │ ├── parserAccessors9(target=es5).types │ ├── parserAdditiveExpression1.errors.txt │ ├── parserAdditiveExpression1.js │ ├── parserAdditiveExpression1.symbols │ ├── parserAdditiveExpression1.types │ ├── parserAmbiguity1.errors.txt │ ├── parserAmbiguity1.js │ ├── parserAmbiguity1.symbols │ ├── parserAmbiguity1.types │ ├── parserAmbiguity2.errors.txt │ ├── parserAmbiguity2.js │ ├── parserAmbiguity2.symbols │ ├── parserAmbiguity2.types │ ├── parserAmbiguity3.errors.txt │ ├── parserAmbiguity3.js │ ├── parserAmbiguity3.symbols │ ├── parserAmbiguity3.types │ ├── parserAmbiguityWithBinaryOperator1.js │ ├── parserAmbiguityWithBinaryOperator1.symbols │ ├── parserAmbiguityWithBinaryOperator1.types │ ├── parserAmbiguityWithBinaryOperator2.js │ ├── parserAmbiguityWithBinaryOperator2.symbols │ ├── parserAmbiguityWithBinaryOperator2.types │ ├── parserAmbiguityWithBinaryOperator3.js │ ├── parserAmbiguityWithBinaryOperator3.symbols │ ├── parserAmbiguityWithBinaryOperator3.types │ ├── parserAmbiguityWithBinaryOperator4.errors.txt │ ├── parserAmbiguityWithBinaryOperator4.js │ ├── parserAmbiguityWithBinaryOperator4.symbols │ ├── parserAmbiguityWithBinaryOperator4.types │ ├── parserArgumentList1.errors.txt │ ├── parserArgumentList1.js │ ├── parserArgumentList1.symbols │ ├── parserArgumentList1.types │ ├── parserArrayLiteralExpression1.js │ ├── parserArrayLiteralExpression1.symbols │ ├── parserArrayLiteralExpression1.types │ ├── parserArrayLiteralExpression10.js │ ├── parserArrayLiteralExpression10.symbols │ ├── parserArrayLiteralExpression10.types │ ├── parserArrayLiteralExpression11.js │ ├── parserArrayLiteralExpression11.symbols │ ├── parserArrayLiteralExpression11.types │ ├── parserArrayLiteralExpression12.js │ ├── parserArrayLiteralExpression12.symbols │ ├── parserArrayLiteralExpression12.types │ ├── parserArrayLiteralExpression13.js │ ├── parserArrayLiteralExpression13.symbols │ ├── parserArrayLiteralExpression13.types │ ├── parserArrayLiteralExpression14.js │ ├── parserArrayLiteralExpression14.symbols │ ├── parserArrayLiteralExpression14.types │ ├── parserArrayLiteralExpression15.js │ ├── parserArrayLiteralExpression15.symbols │ ├── parserArrayLiteralExpression15.types │ ├── parserArrayLiteralExpression2.js │ ├── parserArrayLiteralExpression2.symbols │ ├── parserArrayLiteralExpression2.types │ ├── parserArrayLiteralExpression3.js │ ├── parserArrayLiteralExpression3.symbols │ ├── parserArrayLiteralExpression3.types │ ├── parserArrayLiteralExpression4.js │ ├── parserArrayLiteralExpression4.symbols │ ├── parserArrayLiteralExpression4.types │ ├── parserArrayLiteralExpression5.js │ ├── parserArrayLiteralExpression5.symbols │ ├── parserArrayLiteralExpression5.types │ ├── parserArrayLiteralExpression6.js │ ├── parserArrayLiteralExpression6.symbols │ ├── parserArrayLiteralExpression6.types │ ├── parserArrayLiteralExpression7.js │ ├── parserArrayLiteralExpression7.symbols │ ├── parserArrayLiteralExpression7.types │ ├── parserArrayLiteralExpression8.js │ ├── parserArrayLiteralExpression8.symbols │ ├── parserArrayLiteralExpression8.types │ ├── parserArrayLiteralExpression9.js │ ├── parserArrayLiteralExpression9.symbols │ ├── parserArrayLiteralExpression9.types │ ├── parserArrowFunctionExpression1.errors.txt │ ├── parserArrowFunctionExpression1.js │ ├── parserArrowFunctionExpression1.symbols │ ├── parserArrowFunctionExpression1.types │ ├── parserArrowFunctionExpression10.errors.txt │ ├── parserArrowFunctionExpression10.js │ ├── parserArrowFunctionExpression10.symbols │ ├── parserArrowFunctionExpression10.types │ ├── parserArrowFunctionExpression11.errors.txt │ ├── parserArrowFunctionExpression11.js │ ├── parserArrowFunctionExpression11.symbols │ ├── parserArrowFunctionExpression11.types │ ├── parserArrowFunctionExpression12.errors.txt │ ├── parserArrowFunctionExpression12.js │ ├── parserArrowFunctionExpression12.symbols │ ├── parserArrowFunctionExpression12.types │ ├── parserArrowFunctionExpression13.errors.txt │ ├── parserArrowFunctionExpression13.js │ ├── parserArrowFunctionExpression13.symbols │ ├── parserArrowFunctionExpression13.types │ ├── parserArrowFunctionExpression14.errors.txt │ ├── parserArrowFunctionExpression14.js │ ├── parserArrowFunctionExpression14.symbols │ ├── parserArrowFunctionExpression14.types │ ├── parserArrowFunctionExpression15.errors.txt │ ├── parserArrowFunctionExpression15.js │ ├── parserArrowFunctionExpression15.symbols │ ├── parserArrowFunctionExpression15.types │ ├── parserArrowFunctionExpression16.errors.txt │ ├── parserArrowFunctionExpression16.js │ ├── parserArrowFunctionExpression16.symbols │ ├── parserArrowFunctionExpression16.types │ ├── parserArrowFunctionExpression17.errors.txt │ ├── parserArrowFunctionExpression17.js │ ├── parserArrowFunctionExpression17.symbols │ ├── parserArrowFunctionExpression17.types │ ├── parserArrowFunctionExpression2.errors.txt │ ├── parserArrowFunctionExpression2.js │ ├── parserArrowFunctionExpression2.symbols │ ├── parserArrowFunctionExpression2.types │ ├── parserArrowFunctionExpression3.errors.txt │ ├── parserArrowFunctionExpression3.js │ ├── parserArrowFunctionExpression3.symbols │ ├── parserArrowFunctionExpression3.types │ ├── parserArrowFunctionExpression4.errors.txt │ ├── parserArrowFunctionExpression4.js │ ├── parserArrowFunctionExpression4.symbols │ ├── parserArrowFunctionExpression4.types │ ├── parserArrowFunctionExpression5.errors.txt │ ├── parserArrowFunctionExpression5.js │ ├── parserArrowFunctionExpression5.symbols │ ├── parserArrowFunctionExpression5.types │ ├── parserArrowFunctionExpression6.js │ ├── parserArrowFunctionExpression6.symbols │ ├── parserArrowFunctionExpression6.types │ ├── parserArrowFunctionExpression7.js │ ├── parserArrowFunctionExpression7.symbols │ ├── parserArrowFunctionExpression7.types │ ├── parserArrowFunctionExpression8.errors.txt │ ├── parserArrowFunctionExpression8.js │ ├── parserArrowFunctionExpression8.symbols │ ├── parserArrowFunctionExpression8.types │ ├── parserArrowFunctionExpression9.errors.txt │ ├── parserArrowFunctionExpression9.js │ ├── parserArrowFunctionExpression9.symbols │ ├── parserArrowFunctionExpression9.types │ ├── parserAssignmentExpression1.errors.txt │ ├── parserAssignmentExpression1.js │ ├── parserAssignmentExpression1.symbols │ ├── parserAssignmentExpression1.types │ ├── parserAstSpans1(target=es2015).errors.txt │ ├── parserAstSpans1(target=es2015).js │ ├── parserAstSpans1(target=es2015).symbols │ ├── parserAstSpans1(target=es2015).types │ ├── parserAstSpans1(target=es5).errors.txt │ ├── parserAstSpans1(target=es5).js │ ├── parserAstSpans1(target=es5).symbols │ ├── parserAstSpans1(target=es5).types │ ├── parserAutomaticSemicolonInsertion1.errors.txt │ ├── parserAutomaticSemicolonInsertion1.js │ ├── parserAutomaticSemicolonInsertion1.symbols │ ├── parserAutomaticSemicolonInsertion1.types │ ├── parserBlockStatement1.d.errors.txt │ ├── parserBlockStatement1.d.symbols │ ├── parserBlockStatement1.d.types │ ├── parserBreakStatement1.d.errors.txt │ ├── parserBreakStatement1.d.symbols │ ├── parserBreakStatement1.d.types │ ├── parserCastVersusArrowFunction1.errors.txt │ ├── parserCastVersusArrowFunction1.js │ ├── parserCastVersusArrowFunction1.symbols │ ├── parserCastVersusArrowFunction1.types │ ├── parserCatchClauseWithTypeAnnotation1.errors.txt │ ├── parserCatchClauseWithTypeAnnotation1.js │ ├── parserCatchClauseWithTypeAnnotation1.symbols │ ├── parserCatchClauseWithTypeAnnotation1.types │ ├── parserClass1.errors.txt │ ├── parserClass1.js │ ├── parserClass1.symbols │ ├── parserClass1.types │ ├── parserClass2.errors.txt │ ├── parserClass2.js │ ├── parserClass2.symbols │ ├── parserClass2.types │ ├── parserClassDeclaration1.errors.txt │ ├── parserClassDeclaration1.js │ ├── parserClassDeclaration1.symbols │ ├── parserClassDeclaration1.types │ ├── parserClassDeclaration10.errors.txt │ ├── parserClassDeclaration10.js │ ├── parserClassDeclaration10.symbols │ ├── parserClassDeclaration10.types │ ├── parserClassDeclaration11.errors.txt │ ├── parserClassDeclaration11.js │ ├── parserClassDeclaration11.symbols │ ├── parserClassDeclaration11.types │ ├── parserClassDeclaration12.errors.txt │ ├── parserClassDeclaration12.js │ ├── parserClassDeclaration12.symbols │ ├── parserClassDeclaration12.types │ ├── parserClassDeclaration13.errors.txt │ ├── parserClassDeclaration13.js │ ├── parserClassDeclaration13.symbols │ ├── parserClassDeclaration13.types │ ├── parserClassDeclaration14.errors.txt │ ├── parserClassDeclaration14.js │ ├── parserClassDeclaration14.symbols │ ├── parserClassDeclaration14.types │ ├── parserClassDeclaration15.errors.txt │ ├── parserClassDeclaration15.js │ ├── parserClassDeclaration15.symbols │ ├── parserClassDeclaration15.types │ ├── parserClassDeclaration16.js │ ├── parserClassDeclaration16.symbols │ ├── parserClassDeclaration16.types │ ├── parserClassDeclaration17.js │ ├── parserClassDeclaration17.symbols │ ├── parserClassDeclaration17.types │ ├── parserClassDeclaration18.errors.txt │ ├── parserClassDeclaration18.js │ ├── parserClassDeclaration18.symbols │ ├── parserClassDeclaration18.types │ ├── parserClassDeclaration19.js │ ├── parserClassDeclaration19.symbols │ ├── parserClassDeclaration19.types │ ├── parserClassDeclaration2.errors.txt │ ├── parserClassDeclaration2.js │ ├── parserClassDeclaration2.symbols │ ├── parserClassDeclaration2.types │ ├── parserClassDeclaration20.js │ ├── parserClassDeclaration20.symbols │ ├── parserClassDeclaration20.types │ ├── parserClassDeclaration21.errors.txt │ ├── parserClassDeclaration21.js │ ├── parserClassDeclaration21.symbols │ ├── parserClassDeclaration21.types │ ├── parserClassDeclaration22.errors.txt │ ├── parserClassDeclaration22.js │ ├── parserClassDeclaration22.symbols │ ├── parserClassDeclaration22.types │ ├── parserClassDeclaration23.js │ ├── parserClassDeclaration23.symbols │ ├── parserClassDeclaration23.types │ ├── parserClassDeclaration24.errors.txt │ ├── parserClassDeclaration24.js │ ├── parserClassDeclaration24.symbols │ ├── parserClassDeclaration24.types │ ├── parserClassDeclaration25.errors.txt │ ├── parserClassDeclaration25.js │ ├── parserClassDeclaration25.symbols │ ├── parserClassDeclaration25.types │ ├── parserClassDeclaration26.js │ ├── parserClassDeclaration26.symbols │ ├── parserClassDeclaration26.types │ ├── parserClassDeclaration3.errors.txt │ ├── parserClassDeclaration3.js │ ├── parserClassDeclaration3.symbols │ ├── parserClassDeclaration3.types │ ├── parserClassDeclaration4.errors.txt │ ├── parserClassDeclaration4.js │ ├── parserClassDeclaration4.symbols │ ├── parserClassDeclaration4.types │ ├── parserClassDeclaration5.errors.txt │ ├── parserClassDeclaration5.js │ ├── parserClassDeclaration5.symbols │ ├── parserClassDeclaration5.types │ ├── parserClassDeclaration6.errors.txt │ ├── parserClassDeclaration6.js │ ├── parserClassDeclaration6.symbols │ ├── parserClassDeclaration6.types │ ├── parserClassDeclaration7.d.symbols │ ├── parserClassDeclaration7.d.types │ ├── parserClassDeclaration7.errors.txt │ ├── parserClassDeclaration7.js │ ├── parserClassDeclaration7.symbols │ ├── parserClassDeclaration7.types │ ├── parserClassDeclaration8.errors.txt │ ├── parserClassDeclaration8.js │ ├── parserClassDeclaration8.symbols │ ├── parserClassDeclaration8.types │ ├── parserClassDeclaration9.errors.txt │ ├── parserClassDeclaration9.js │ ├── parserClassDeclaration9.symbols │ ├── parserClassDeclaration9.types │ ├── parserClassDeclarationIndexSignature1.js │ ├── parserClassDeclarationIndexSignature1.symbols │ ├── parserClassDeclarationIndexSignature1.types │ ├── parserCommaInTypeMemberList1.js │ ├── parserCommaInTypeMemberList1.symbols │ ├── parserCommaInTypeMemberList1.types │ ├── parserCommaInTypeMemberList2.errors.txt │ ├── parserCommaInTypeMemberList2.js │ ├── parserCommaInTypeMemberList2.symbols │ ├── parserCommaInTypeMemberList2.types │ ├── parserComputedPropertyName1.errors.txt │ ├── parserComputedPropertyName1.js │ ├── parserComputedPropertyName1.symbols │ ├── parserComputedPropertyName1.types │ ├── parserComputedPropertyName10.errors.txt │ ├── parserComputedPropertyName10.js │ ├── parserComputedPropertyName10.symbols │ ├── parserComputedPropertyName10.types │ ├── parserComputedPropertyName11.errors.txt │ ├── parserComputedPropertyName11.js │ ├── parserComputedPropertyName11.symbols │ ├── parserComputedPropertyName11.types │ ├── parserComputedPropertyName12.errors.txt │ ├── parserComputedPropertyName12.js │ ├── parserComputedPropertyName12.symbols │ ├── parserComputedPropertyName12.types │ ├── parserComputedPropertyName13.errors.txt │ ├── parserComputedPropertyName13.js │ ├── parserComputedPropertyName13.symbols │ ├── parserComputedPropertyName13.types │ ├── parserComputedPropertyName14.errors.txt │ ├── parserComputedPropertyName14.js │ ├── parserComputedPropertyName14.symbols │ ├── parserComputedPropertyName14.types │ ├── parserComputedPropertyName15.errors.txt │ ├── parserComputedPropertyName15.js │ ├── parserComputedPropertyName15.symbols │ ├── parserComputedPropertyName15.types │ ├── parserComputedPropertyName16.errors.txt │ ├── parserComputedPropertyName16.js │ ├── parserComputedPropertyName16.symbols │ ├── parserComputedPropertyName16.types │ ├── parserComputedPropertyName17.errors.txt │ ├── parserComputedPropertyName17.js │ ├── parserComputedPropertyName17.symbols │ ├── parserComputedPropertyName17.types │ ├── parserComputedPropertyName18.errors.txt │ ├── parserComputedPropertyName18.js │ ├── parserComputedPropertyName18.symbols │ ├── parserComputedPropertyName18.types │ ├── parserComputedPropertyName19.errors.txt │ ├── parserComputedPropertyName19.js │ ├── parserComputedPropertyName19.symbols │ ├── parserComputedPropertyName19.types │ ├── parserComputedPropertyName2.errors.txt │ ├── parserComputedPropertyName2.js │ ├── parserComputedPropertyName2.symbols │ ├── parserComputedPropertyName2.types │ ├── parserComputedPropertyName20.errors.txt │ ├── parserComputedPropertyName20.js │ ├── parserComputedPropertyName20.symbols │ ├── parserComputedPropertyName20.types │ ├── parserComputedPropertyName21.errors.txt │ ├── parserComputedPropertyName21.js │ ├── parserComputedPropertyName21.symbols │ ├── parserComputedPropertyName21.types │ ├── parserComputedPropertyName22.errors.txt │ ├── parserComputedPropertyName22.js │ ├── parserComputedPropertyName22.symbols │ ├── parserComputedPropertyName22.types │ ├── parserComputedPropertyName23.errors.txt │ ├── parserComputedPropertyName23.js │ ├── parserComputedPropertyName23.symbols │ ├── parserComputedPropertyName23.types │ ├── parserComputedPropertyName24.errors.txt │ ├── parserComputedPropertyName24.js │ ├── parserComputedPropertyName24.symbols │ ├── parserComputedPropertyName24.types │ ├── parserComputedPropertyName25.errors.txt │ ├── parserComputedPropertyName25.js │ ├── parserComputedPropertyName25.symbols │ ├── parserComputedPropertyName25.types │ ├── parserComputedPropertyName26.errors.txt │ ├── parserComputedPropertyName26.js │ ├── parserComputedPropertyName26.symbols │ ├── parserComputedPropertyName26.types │ ├── parserComputedPropertyName27.errors.txt │ ├── parserComputedPropertyName27.js │ ├── parserComputedPropertyName27.symbols │ ├── parserComputedPropertyName27.types │ ├── parserComputedPropertyName28.errors.txt │ ├── parserComputedPropertyName28.js │ ├── parserComputedPropertyName28.symbols │ ├── parserComputedPropertyName28.types │ ├── parserComputedPropertyName29.errors.txt │ ├── parserComputedPropertyName29.js │ ├── parserComputedPropertyName29.symbols │ ├── parserComputedPropertyName29.types │ ├── parserComputedPropertyName3.errors.txt │ ├── parserComputedPropertyName3.js │ ├── parserComputedPropertyName3.symbols │ ├── parserComputedPropertyName3.types │ ├── parserComputedPropertyName30.errors.txt │ ├── parserComputedPropertyName30.js │ ├── parserComputedPropertyName30.symbols │ ├── parserComputedPropertyName30.types │ ├── parserComputedPropertyName31.errors.txt │ ├── parserComputedPropertyName31.js │ ├── parserComputedPropertyName31.symbols │ ├── parserComputedPropertyName31.types │ ├── parserComputedPropertyName32.errors.txt │ ├── parserComputedPropertyName32.js │ ├── parserComputedPropertyName32.symbols │ ├── parserComputedPropertyName32.types │ ├── parserComputedPropertyName33.errors.txt │ ├── parserComputedPropertyName33.js │ ├── parserComputedPropertyName33.symbols │ ├── parserComputedPropertyName33.types │ ├── parserComputedPropertyName34.errors.txt │ ├── parserComputedPropertyName34.js │ ├── parserComputedPropertyName34.symbols │ ├── parserComputedPropertyName34.types │ ├── parserComputedPropertyName35.errors.txt │ ├── parserComputedPropertyName35.js │ ├── parserComputedPropertyName35.symbols │ ├── parserComputedPropertyName35.types │ ├── parserComputedPropertyName36.errors.txt │ ├── parserComputedPropertyName36.js │ ├── parserComputedPropertyName36.symbols │ ├── parserComputedPropertyName36.types │ ├── parserComputedPropertyName37.errors.txt │ ├── parserComputedPropertyName37.js │ ├── parserComputedPropertyName37.symbols │ ├── parserComputedPropertyName37.types │ ├── parserComputedPropertyName38.errors.txt │ ├── parserComputedPropertyName38.js │ ├── parserComputedPropertyName38.symbols │ ├── parserComputedPropertyName38.types │ ├── parserComputedPropertyName39.errors.txt │ ├── parserComputedPropertyName39.js │ ├── parserComputedPropertyName39.symbols │ ├── parserComputedPropertyName39.types │ ├── parserComputedPropertyName4.errors.txt │ ├── parserComputedPropertyName4.js │ ├── parserComputedPropertyName4.symbols │ ├── parserComputedPropertyName4.types │ ├── parserComputedPropertyName40.errors.txt │ ├── parserComputedPropertyName40.js │ ├── parserComputedPropertyName40.symbols │ ├── parserComputedPropertyName40.types │ ├── parserComputedPropertyName41.errors.txt │ ├── parserComputedPropertyName41.js │ ├── parserComputedPropertyName41.symbols │ ├── parserComputedPropertyName41.types │ ├── parserComputedPropertyName5.errors.txt │ ├── parserComputedPropertyName5.js │ ├── parserComputedPropertyName5.symbols │ ├── parserComputedPropertyName5.types │ ├── parserComputedPropertyName6.errors.txt │ ├── parserComputedPropertyName6.js │ ├── parserComputedPropertyName6.symbols │ ├── parserComputedPropertyName6.types │ ├── parserComputedPropertyName7.errors.txt │ ├── parserComputedPropertyName7.js │ ├── parserComputedPropertyName7.symbols │ ├── parserComputedPropertyName7.types │ ├── parserComputedPropertyName8.errors.txt │ ├── parserComputedPropertyName8.js │ ├── parserComputedPropertyName8.symbols │ ├── parserComputedPropertyName8.types │ ├── parserComputedPropertyName9.errors.txt │ ├── parserComputedPropertyName9.js │ ├── parserComputedPropertyName9.symbols │ ├── parserComputedPropertyName9.types │ ├── parserConditionalExpression1.errors.txt │ ├── parserConditionalExpression1.js │ ├── parserConditionalExpression1.symbols │ ├── parserConditionalExpression1.types │ ├── parserConstructorAmbiguity1.errors.txt │ ├── parserConstructorAmbiguity1.js │ ├── parserConstructorAmbiguity1.symbols │ ├── parserConstructorAmbiguity1.types │ ├── parserConstructorAmbiguity2.errors.txt │ ├── parserConstructorAmbiguity2.js │ ├── parserConstructorAmbiguity2.symbols │ ├── parserConstructorAmbiguity2.types │ ├── parserConstructorAmbiguity3.errors.txt │ ├── parserConstructorAmbiguity3.js │ ├── parserConstructorAmbiguity3.symbols │ ├── parserConstructorAmbiguity3.types │ ├── parserConstructorAmbiguity4.errors.txt │ ├── parserConstructorAmbiguity4.js │ ├── parserConstructorAmbiguity4.symbols │ ├── parserConstructorAmbiguity4.types │ ├── parserConstructorDeclaration1.js │ ├── parserConstructorDeclaration1.symbols │ ├── parserConstructorDeclaration1.types │ ├── parserConstructorDeclaration10.errors.txt │ ├── parserConstructorDeclaration10.js │ ├── parserConstructorDeclaration10.symbols │ ├── parserConstructorDeclaration10.types │ ├── parserConstructorDeclaration11.errors.txt │ ├── parserConstructorDeclaration11.js │ ├── parserConstructorDeclaration11.symbols │ ├── parserConstructorDeclaration11.types │ ├── parserConstructorDeclaration12.errors.txt │ ├── parserConstructorDeclaration12.js │ ├── parserConstructorDeclaration12.symbols │ ├── parserConstructorDeclaration12.types │ ├── parserConstructorDeclaration2.errors.txt │ ├── parserConstructorDeclaration2.js │ ├── parserConstructorDeclaration2.symbols │ ├── parserConstructorDeclaration2.types │ ├── parserConstructorDeclaration3.errors.txt │ ├── parserConstructorDeclaration3.js │ ├── parserConstructorDeclaration3.symbols │ ├── parserConstructorDeclaration3.types │ ├── parserConstructorDeclaration4.errors.txt │ ├── parserConstructorDeclaration4.js │ ├── parserConstructorDeclaration4.symbols │ ├── parserConstructorDeclaration4.types │ ├── parserConstructorDeclaration5.js │ ├── parserConstructorDeclaration5.symbols │ ├── parserConstructorDeclaration5.types │ ├── parserConstructorDeclaration6.errors.txt │ ├── parserConstructorDeclaration6.js │ ├── parserConstructorDeclaration6.symbols │ ├── parserConstructorDeclaration6.types │ ├── parserConstructorDeclaration7.errors.txt │ ├── parserConstructorDeclaration7.js │ ├── parserConstructorDeclaration7.symbols │ ├── parserConstructorDeclaration7.types │ ├── parserConstructorDeclaration8.errors.txt │ ├── parserConstructorDeclaration8.js │ ├── parserConstructorDeclaration8.symbols │ ├── parserConstructorDeclaration8.types │ ├── parserConstructorDeclaration9.errors.txt │ ├── parserConstructorDeclaration9.js │ ├── parserConstructorDeclaration9.symbols │ ├── parserConstructorDeclaration9.types │ ├── parserContinueStatement1.d.errors.txt │ ├── parserContinueStatement1.d.symbols │ ├── parserContinueStatement1.d.types │ ├── parserDebuggerStatement1.d.errors.txt │ ├── parserDebuggerStatement1.d.symbols │ ├── parserDebuggerStatement1.d.types │ ├── parserDebuggerStatement1.js │ ├── parserDebuggerStatement1.symbols │ ├── parserDebuggerStatement1.types │ ├── parserDebuggerStatement2.js │ ├── parserDebuggerStatement2.symbols │ ├── parserDebuggerStatement2.types │ ├── parserDoStatement1.d.errors.txt │ ├── parserDoStatement1.d.symbols │ ├── parserDoStatement1.d.types │ ├── parserDoStatement2.js │ ├── parserDoStatement2.symbols │ ├── parserDoStatement2.types │ ├── parserES3Accessors1.errors.txt │ ├── parserES3Accessors1.js │ ├── parserES3Accessors1.symbols │ ├── parserES3Accessors1.types │ ├── parserES3Accessors2.js │ ├── parserES3Accessors2.symbols │ ├── parserES3Accessors2.types │ ├── parserES3Accessors3.errors.txt │ ├── parserES3Accessors3.js │ ├── parserES3Accessors3.symbols │ ├── parserES3Accessors3.types │ ├── parserES3Accessors4.errors.txt │ ├── parserES3Accessors4.js │ ├── parserES3Accessors4.symbols │ ├── parserES3Accessors4.types │ ├── parserES5ComputedPropertyName1(target=es2015).errors.txt │ ├── parserES5ComputedPropertyName1(target=es2015).js │ ├── parserES5ComputedPropertyName1(target=es2015).symbols │ ├── parserES5ComputedPropertyName1(target=es2015).types │ ├── parserES5ComputedPropertyName1(target=es5).errors.txt │ ├── parserES5ComputedPropertyName1(target=es5).js │ ├── parserES5ComputedPropertyName1(target=es5).symbols │ ├── parserES5ComputedPropertyName1(target=es5).types │ ├── parserES5ComputedPropertyName10(target=es2015).errors.txt │ ├── parserES5ComputedPropertyName10(target=es2015).js │ ├── parserES5ComputedPropertyName10(target=es2015).symbols │ ├── parserES5ComputedPropertyName10(target=es2015).types │ ├── parserES5ComputedPropertyName10(target=es5).errors.txt │ ├── parserES5ComputedPropertyName10(target=es5).js │ ├── parserES5ComputedPropertyName10(target=es5).symbols │ ├── parserES5ComputedPropertyName10(target=es5).types │ ├── parserES5ComputedPropertyName11(target=es2015).errors.txt │ ├── parserES5ComputedPropertyName11(target=es2015).js │ ├── parserES5ComputedPropertyName11(target=es2015).symbols │ ├── parserES5ComputedPropertyName11(target=es2015).types │ ├── parserES5ComputedPropertyName11(target=es5).errors.txt │ ├── parserES5ComputedPropertyName11(target=es5).js │ ├── parserES5ComputedPropertyName11(target=es5).symbols │ ├── parserES5ComputedPropertyName11(target=es5).types │ ├── parserES5ComputedPropertyName2(target=es2015).errors.txt │ ├── parserES5ComputedPropertyName2(target=es2015).js │ ├── parserES5ComputedPropertyName2(target=es2015).symbols │ ├── parserES5ComputedPropertyName2(target=es2015).types │ ├── parserES5ComputedPropertyName2(target=es5).errors.txt │ ├── parserES5ComputedPropertyName2(target=es5).js │ ├── parserES5ComputedPropertyName2(target=es5).symbols │ ├── parserES5ComputedPropertyName2(target=es5).types │ ├── parserES5ComputedPropertyName3(target=es2015).errors.txt │ ├── parserES5ComputedPropertyName3(target=es2015).js │ ├── parserES5ComputedPropertyName3(target=es2015).symbols │ ├── parserES5ComputedPropertyName3(target=es2015).types │ ├── parserES5ComputedPropertyName3(target=es5).errors.txt │ ├── parserES5ComputedPropertyName3(target=es5).js │ ├── parserES5ComputedPropertyName3(target=es5).symbols │ ├── parserES5ComputedPropertyName3(target=es5).types │ ├── parserES5ComputedPropertyName4(target=es2015).errors.txt │ ├── parserES5ComputedPropertyName4(target=es2015).js │ ├── parserES5ComputedPropertyName4(target=es2015).symbols │ ├── parserES5ComputedPropertyName4(target=es2015).types │ ├── parserES5ComputedPropertyName4(target=es5).errors.txt │ ├── parserES5ComputedPropertyName4(target=es5).js │ ├── parserES5ComputedPropertyName4(target=es5).symbols │ ├── parserES5ComputedPropertyName4(target=es5).types │ ├── parserES5ComputedPropertyName5(target=es2015).errors.txt │ ├── parserES5ComputedPropertyName5(target=es2015).js │ ├── parserES5ComputedPropertyName5(target=es2015).symbols │ ├── parserES5ComputedPropertyName5(target=es2015).types │ ├── parserES5ComputedPropertyName5(target=es5).errors.txt │ ├── parserES5ComputedPropertyName5(target=es5).js │ ├── parserES5ComputedPropertyName5(target=es5).symbols │ ├── parserES5ComputedPropertyName5(target=es5).types │ ├── parserES5ComputedPropertyName6(target=es2015).errors.txt │ ├── parserES5ComputedPropertyName6(target=es2015).js │ ├── parserES5ComputedPropertyName6(target=es2015).symbols │ ├── parserES5ComputedPropertyName6(target=es2015).types │ ├── parserES5ComputedPropertyName6(target=es5).errors.txt │ ├── parserES5ComputedPropertyName6(target=es5).js │ ├── parserES5ComputedPropertyName6(target=es5).symbols │ ├── parserES5ComputedPropertyName6(target=es5).types │ ├── parserES5ComputedPropertyName7(target=es2015).errors.txt │ ├── parserES5ComputedPropertyName7(target=es2015).js │ ├── parserES5ComputedPropertyName7(target=es2015).symbols │ ├── parserES5ComputedPropertyName7(target=es2015).types │ ├── parserES5ComputedPropertyName7(target=es5).errors.txt │ ├── parserES5ComputedPropertyName7(target=es5).js │ ├── parserES5ComputedPropertyName7(target=es5).symbols │ ├── parserES5ComputedPropertyName7(target=es5).types │ ├── parserES5ComputedPropertyName8(target=es2015).errors.txt │ ├── parserES5ComputedPropertyName8(target=es2015).js │ ├── parserES5ComputedPropertyName8(target=es2015).symbols │ ├── parserES5ComputedPropertyName8(target=es2015).types │ ├── parserES5ComputedPropertyName8(target=es5).errors.txt │ ├── parserES5ComputedPropertyName8(target=es5).js │ ├── parserES5ComputedPropertyName8(target=es5).symbols │ ├── parserES5ComputedPropertyName8(target=es5).types │ ├── parserES5ComputedPropertyName9(target=es2015).errors.txt │ ├── parserES5ComputedPropertyName9(target=es2015).js │ ├── parserES5ComputedPropertyName9(target=es2015).symbols │ ├── parserES5ComputedPropertyName9(target=es2015).types │ ├── parserES5ComputedPropertyName9(target=es5).errors.txt │ ├── parserES5ComputedPropertyName9(target=es5).js │ ├── parserES5ComputedPropertyName9(target=es5).symbols │ ├── parserES5ComputedPropertyName9(target=es5).types │ ├── parserES5ForOfStatement1.d(target=es2015).errors.txt │ ├── parserES5ForOfStatement1.d(target=es2015).symbols │ ├── parserES5ForOfStatement1.d(target=es2015).types │ ├── parserES5ForOfStatement1.d(target=es5).errors.txt │ ├── parserES5ForOfStatement1.d(target=es5).symbols │ ├── parserES5ForOfStatement1.d(target=es5).types │ ├── parserES5ForOfStatement10(target=es2015).errors.txt │ ├── parserES5ForOfStatement10(target=es2015).js │ ├── parserES5ForOfStatement10(target=es2015).symbols │ ├── parserES5ForOfStatement10(target=es2015).types │ ├── parserES5ForOfStatement10(target=es5).errors.txt │ ├── parserES5ForOfStatement10(target=es5).js │ ├── parserES5ForOfStatement10(target=es5).symbols │ ├── parserES5ForOfStatement10(target=es5).types │ ├── parserES5ForOfStatement11(target=es2015).errors.txt │ ├── parserES5ForOfStatement11(target=es2015).js │ ├── parserES5ForOfStatement11(target=es2015).symbols │ ├── parserES5ForOfStatement11(target=es2015).types │ ├── parserES5ForOfStatement11(target=es5).errors.txt │ ├── parserES5ForOfStatement11(target=es5).js │ ├── parserES5ForOfStatement11(target=es5).symbols │ ├── parserES5ForOfStatement11(target=es5).types │ ├── parserES5ForOfStatement12(target=es2015).errors.txt │ ├── parserES5ForOfStatement12(target=es2015).js │ ├── parserES5ForOfStatement12(target=es2015).symbols │ ├── parserES5ForOfStatement12(target=es2015).types │ ├── parserES5ForOfStatement12(target=es5).errors.txt │ ├── parserES5ForOfStatement12(target=es5).js │ ├── parserES5ForOfStatement12(target=es5).symbols │ ├── parserES5ForOfStatement12(target=es5).types │ ├── parserES5ForOfStatement13(target=es2015).errors.txt │ ├── parserES5ForOfStatement13(target=es2015).js │ ├── parserES5ForOfStatement13(target=es2015).symbols │ ├── parserES5ForOfStatement13(target=es2015).types │ ├── parserES5ForOfStatement13(target=es5).errors.txt │ ├── parserES5ForOfStatement13(target=es5).js │ ├── parserES5ForOfStatement13(target=es5).symbols │ ├── parserES5ForOfStatement13(target=es5).types │ ├── parserES5ForOfStatement14(target=es2015).errors.txt │ ├── parserES5ForOfStatement14(target=es2015).js │ ├── parserES5ForOfStatement14(target=es2015).symbols │ ├── parserES5ForOfStatement14(target=es2015).types │ ├── parserES5ForOfStatement14(target=es5).errors.txt │ ├── parserES5ForOfStatement14(target=es5).js │ ├── parserES5ForOfStatement14(target=es5).symbols │ ├── parserES5ForOfStatement14(target=es5).types │ ├── parserES5ForOfStatement15(target=es2015).errors.txt │ ├── parserES5ForOfStatement15(target=es2015).js │ ├── parserES5ForOfStatement15(target=es2015).symbols │ ├── parserES5ForOfStatement15(target=es2015).types │ ├── parserES5ForOfStatement15(target=es5).errors.txt │ ├── parserES5ForOfStatement15(target=es5).js │ ├── parserES5ForOfStatement15(target=es5).symbols │ ├── parserES5ForOfStatement15(target=es5).types │ ├── parserES5ForOfStatement16(target=es2015).errors.txt │ ├── parserES5ForOfStatement16(target=es2015).js │ ├── parserES5ForOfStatement16(target=es2015).symbols │ ├── parserES5ForOfStatement16(target=es2015).types │ ├── parserES5ForOfStatement16(target=es5).errors.txt │ ├── parserES5ForOfStatement16(target=es5).js │ ├── parserES5ForOfStatement16(target=es5).symbols │ ├── parserES5ForOfStatement16(target=es5).types │ ├── parserES5ForOfStatement17(target=es2015).js │ ├── parserES5ForOfStatement17(target=es2015).symbols │ ├── parserES5ForOfStatement17(target=es2015).types │ ├── parserES5ForOfStatement17(target=es5).errors.txt │ ├── parserES5ForOfStatement17(target=es5).js │ ├── parserES5ForOfStatement17(target=es5).symbols │ ├── parserES5ForOfStatement17(target=es5).types │ ├── parserES5ForOfStatement18(target=es2015).js │ ├── parserES5ForOfStatement18(target=es2015).symbols │ ├── parserES5ForOfStatement18(target=es2015).types │ ├── parserES5ForOfStatement18(target=es5).errors.txt │ ├── parserES5ForOfStatement18(target=es5).js │ ├── parserES5ForOfStatement18(target=es5).symbols │ ├── parserES5ForOfStatement18(target=es5).types │ ├── parserES5ForOfStatement19(target=es2015).js │ ├── parserES5ForOfStatement19(target=es2015).symbols │ ├── parserES5ForOfStatement19(target=es2015).types │ ├── parserES5ForOfStatement19(target=es5).errors.txt │ ├── parserES5ForOfStatement19(target=es5).js │ ├── parserES5ForOfStatement19(target=es5).symbols │ ├── parserES5ForOfStatement19(target=es5).types │ ├── parserES5ForOfStatement2(target=es2015).errors.txt │ ├── parserES5ForOfStatement2(target=es2015).js │ ├── parserES5ForOfStatement2(target=es2015).symbols │ ├── parserES5ForOfStatement2(target=es2015).types │ ├── parserES5ForOfStatement2(target=es5).errors.txt │ ├── parserES5ForOfStatement2(target=es5).js │ ├── parserES5ForOfStatement2(target=es5).symbols │ ├── parserES5ForOfStatement2(target=es5).types │ ├── parserES5ForOfStatement20(target=es2015).errors.txt │ ├── parserES5ForOfStatement20(target=es2015).js │ ├── parserES5ForOfStatement20(target=es2015).symbols │ ├── parserES5ForOfStatement20(target=es2015).types │ ├── parserES5ForOfStatement20(target=es5).errors.txt │ ├── parserES5ForOfStatement20(target=es5).js │ ├── parserES5ForOfStatement20(target=es5).symbols │ ├── parserES5ForOfStatement20(target=es5).types │ ├── parserES5ForOfStatement21(target=es2015).errors.txt │ ├── parserES5ForOfStatement21(target=es2015).js │ ├── parserES5ForOfStatement21(target=es2015).symbols │ ├── parserES5ForOfStatement21(target=es2015).types │ ├── parserES5ForOfStatement21(target=es5).errors.txt │ ├── parserES5ForOfStatement21(target=es5).js │ ├── parserES5ForOfStatement21(target=es5).symbols │ ├── parserES5ForOfStatement21(target=es5).types │ ├── parserES5ForOfStatement3(target=es2015).errors.txt │ ├── parserES5ForOfStatement3(target=es2015).js │ ├── parserES5ForOfStatement3(target=es2015).symbols │ ├── parserES5ForOfStatement3(target=es2015).types │ ├── parserES5ForOfStatement3(target=es5).errors.txt │ ├── parserES5ForOfStatement3(target=es5).js │ ├── parserES5ForOfStatement3(target=es5).symbols │ ├── parserES5ForOfStatement3(target=es5).types │ ├── parserES5ForOfStatement4(target=es2015).errors.txt │ ├── parserES5ForOfStatement4(target=es2015).js │ ├── parserES5ForOfStatement4(target=es2015).symbols │ ├── parserES5ForOfStatement4(target=es2015).types │ ├── parserES5ForOfStatement4(target=es5).errors.txt │ ├── parserES5ForOfStatement4(target=es5).js │ ├── parserES5ForOfStatement4(target=es5).symbols │ ├── parserES5ForOfStatement4(target=es5).types │ ├── parserES5ForOfStatement5(target=es2015).errors.txt │ ├── parserES5ForOfStatement5(target=es2015).js │ ├── parserES5ForOfStatement5(target=es2015).symbols │ ├── parserES5ForOfStatement5(target=es2015).types │ ├── parserES5ForOfStatement5(target=es5).errors.txt │ ├── parserES5ForOfStatement5(target=es5).js │ ├── parserES5ForOfStatement5(target=es5).symbols │ ├── parserES5ForOfStatement5(target=es5).types │ ├── parserES5ForOfStatement6(target=es2015).errors.txt │ ├── parserES5ForOfStatement6(target=es2015).js │ ├── parserES5ForOfStatement6(target=es2015).symbols │ ├── parserES5ForOfStatement6(target=es2015).types │ ├── parserES5ForOfStatement6(target=es5).errors.txt │ ├── parserES5ForOfStatement6(target=es5).js │ ├── parserES5ForOfStatement6(target=es5).symbols │ ├── parserES5ForOfStatement6(target=es5).types │ ├── parserES5ForOfStatement7(target=es2015).errors.txt │ ├── parserES5ForOfStatement7(target=es2015).js │ ├── parserES5ForOfStatement7(target=es2015).symbols │ ├── parserES5ForOfStatement7(target=es2015).types │ ├── parserES5ForOfStatement7(target=es5).errors.txt │ ├── parserES5ForOfStatement7(target=es5).js │ ├── parserES5ForOfStatement7(target=es5).symbols │ ├── parserES5ForOfStatement7(target=es5).types │ ├── parserES5ForOfStatement8(target=es2015).errors.txt │ ├── parserES5ForOfStatement8(target=es2015).js │ ├── parserES5ForOfStatement8(target=es2015).symbols │ ├── parserES5ForOfStatement8(target=es2015).types │ ├── parserES5ForOfStatement8(target=es5).errors.txt │ ├── parserES5ForOfStatement8(target=es5).js │ ├── parserES5ForOfStatement8(target=es5).symbols │ ├── parserES5ForOfStatement8(target=es5).types │ ├── parserES5ForOfStatement9(target=es2015).errors.txt │ ├── parserES5ForOfStatement9(target=es2015).js │ ├── parserES5ForOfStatement9(target=es2015).symbols │ ├── parserES5ForOfStatement9(target=es2015).types │ ├── parserES5ForOfStatement9(target=es5).errors.txt │ ├── parserES5ForOfStatement9(target=es5).js │ ├── parserES5ForOfStatement9(target=es5).symbols │ ├── parserES5ForOfStatement9(target=es5).types │ ├── parserES5SymbolIndexer1(target=es2015).js │ ├── parserES5SymbolIndexer1(target=es2015).symbols │ ├── parserES5SymbolIndexer1(target=es2015).types │ ├── parserES5SymbolIndexer1(target=es5).errors.txt │ ├── parserES5SymbolIndexer1(target=es5).js │ ├── parserES5SymbolIndexer1(target=es5).symbols │ ├── parserES5SymbolIndexer1(target=es5).types │ ├── parserES5SymbolIndexer2(target=es2015).js │ ├── parserES5SymbolIndexer2(target=es2015).symbols │ ├── parserES5SymbolIndexer2(target=es2015).types │ ├── parserES5SymbolIndexer2(target=es5).errors.txt │ ├── parserES5SymbolIndexer2(target=es5).js │ ├── parserES5SymbolIndexer2(target=es5).symbols │ ├── parserES5SymbolIndexer2(target=es5).types │ ├── parserES5SymbolIndexer3(target=es2015).js │ ├── parserES5SymbolIndexer3(target=es2015).symbols │ ├── parserES5SymbolIndexer3(target=es2015).types │ ├── parserES5SymbolIndexer3(target=es5).errors.txt │ ├── parserES5SymbolIndexer3(target=es5).js │ ├── parserES5SymbolIndexer3(target=es5).symbols │ ├── parserES5SymbolIndexer3(target=es5).types │ ├── parserES5SymbolProperty1(target=es2015).js │ ├── parserES5SymbolProperty1(target=es2015).symbols │ ├── parserES5SymbolProperty1(target=es2015).types │ ├── parserES5SymbolProperty1(target=es5).errors.txt │ ├── parserES5SymbolProperty1(target=es5).js │ ├── parserES5SymbolProperty1(target=es5).symbols │ ├── parserES5SymbolProperty1(target=es5).types │ ├── parserES5SymbolProperty2(target=es2015).js │ ├── parserES5SymbolProperty2(target=es2015).symbols │ ├── parserES5SymbolProperty2(target=es2015).types │ ├── parserES5SymbolProperty2(target=es5).errors.txt │ ├── parserES5SymbolProperty2(target=es5).js │ ├── parserES5SymbolProperty2(target=es5).symbols │ ├── parserES5SymbolProperty2(target=es5).types │ ├── parserES5SymbolProperty3(target=es2015).js │ ├── parserES5SymbolProperty3(target=es2015).symbols │ ├── parserES5SymbolProperty3(target=es2015).types │ ├── parserES5SymbolProperty3(target=es5).errors.txt │ ├── parserES5SymbolProperty3(target=es5).js │ ├── parserES5SymbolProperty3(target=es5).symbols │ ├── parserES5SymbolProperty3(target=es5).types │ ├── parserES5SymbolProperty4(target=es2015).errors.txt │ ├── parserES5SymbolProperty4(target=es2015).js │ ├── parserES5SymbolProperty4(target=es2015).symbols │ ├── parserES5SymbolProperty4(target=es2015).types │ ├── parserES5SymbolProperty4(target=es5).errors.txt │ ├── parserES5SymbolProperty4(target=es5).js │ ├── parserES5SymbolProperty4(target=es5).symbols │ ├── parserES5SymbolProperty4(target=es5).types │ ├── parserES5SymbolProperty5(target=es2015).errors.txt │ ├── parserES5SymbolProperty5(target=es2015).js │ ├── parserES5SymbolProperty5(target=es2015).symbols │ ├── parserES5SymbolProperty5(target=es2015).types │ ├── parserES5SymbolProperty5(target=es5).errors.txt │ ├── parserES5SymbolProperty5(target=es5).js │ ├── parserES5SymbolProperty5(target=es5).symbols │ ├── parserES5SymbolProperty5(target=es5).types │ ├── parserES5SymbolProperty6(target=es2015).js │ ├── parserES5SymbolProperty6(target=es2015).symbols │ ├── parserES5SymbolProperty6(target=es2015).types │ ├── parserES5SymbolProperty6(target=es5).errors.txt │ ├── parserES5SymbolProperty6(target=es5).js │ ├── parserES5SymbolProperty6(target=es5).symbols │ ├── parserES5SymbolProperty6(target=es5).types │ ├── parserES5SymbolProperty7(target=es2015).js │ ├── parserES5SymbolProperty7(target=es2015).symbols │ ├── parserES5SymbolProperty7(target=es2015).types │ ├── parserES5SymbolProperty7(target=es5).errors.txt │ ├── parserES5SymbolProperty7(target=es5).js │ ├── parserES5SymbolProperty7(target=es5).symbols │ ├── parserES5SymbolProperty7(target=es5).types │ ├── parserES5SymbolProperty8(target=es2015).js │ ├── parserES5SymbolProperty8(target=es2015).symbols │ ├── parserES5SymbolProperty8(target=es2015).types │ ├── parserES5SymbolProperty8(target=es5).errors.txt │ ├── parserES5SymbolProperty8(target=es5).js │ ├── parserES5SymbolProperty8(target=es5).symbols │ ├── parserES5SymbolProperty8(target=es5).types │ ├── parserES5SymbolProperty9(target=es2015).js │ ├── parserES5SymbolProperty9(target=es2015).symbols │ ├── parserES5SymbolProperty9(target=es2015).types │ ├── parserES5SymbolProperty9(target=es5).errors.txt │ ├── parserES5SymbolProperty9(target=es5).js │ ├── parserES5SymbolProperty9(target=es5).symbols │ ├── parserES5SymbolProperty9(target=es5).types │ ├── parserEmptyFile1.js │ ├── parserEmptyFile1.symbols │ ├── parserEmptyFile1.types │ ├── parserEmptyParenthesizedExpression1.errors.txt │ ├── parserEmptyParenthesizedExpression1.js │ ├── parserEmptyParenthesizedExpression1.symbols │ ├── parserEmptyParenthesizedExpression1.types │ ├── parserEmptyStatement1.d.errors.txt │ ├── parserEmptyStatement1.d.symbols │ ├── parserEmptyStatement1.d.types │ ├── parserEmptyStatement1.js │ ├── parserEmptyStatement1.symbols │ ├── parserEmptyStatement1.types │ ├── parserEnum1.js │ ├── parserEnum1.symbols │ ├── parserEnum1.types │ ├── parserEnum2.js │ ├── parserEnum2.symbols │ ├── parserEnum2.types │ ├── parserEnum3.js │ ├── parserEnum3.symbols │ ├── parserEnum3.types │ ├── parserEnum4.errors.txt │ ├── parserEnum4.js │ ├── parserEnum4.symbols │ ├── parserEnum4.types │ ├── parserEnum5.errors.txt │ ├── parserEnum5.js │ ├── parserEnum5.symbols │ ├── parserEnum5.types │ ├── parserEnum6.js │ ├── parserEnum6.symbols │ ├── parserEnum6.types │ ├── parserEnum7.errors.txt │ ├── parserEnum7.js │ ├── parserEnum7.symbols │ ├── parserEnum7.types │ ├── parserEnumDeclaration1.js │ ├── parserEnumDeclaration1.symbols │ ├── parserEnumDeclaration1.types │ ├── parserEnumDeclaration2.d.symbols │ ├── parserEnumDeclaration2.d.types │ ├── parserEnumDeclaration2.errors.txt │ ├── parserEnumDeclaration2.js │ ├── parserEnumDeclaration2.symbols │ ├── parserEnumDeclaration2.types │ ├── parserEnumDeclaration3.d.errors.txt │ ├── parserEnumDeclaration3.d.symbols │ ├── parserEnumDeclaration3.d.types │ ├── parserEnumDeclaration3.js │ ├── parserEnumDeclaration3.symbols │ ├── parserEnumDeclaration3.types │ ├── parserEnumDeclaration4.errors.txt │ ├── parserEnumDeclaration4.js │ ├── parserEnumDeclaration4.symbols │ ├── parserEnumDeclaration4.types │ ├── parserEnumDeclaration5.js │ ├── parserEnumDeclaration5.symbols │ ├── parserEnumDeclaration5.types │ ├── parserEnumDeclaration6.js │ ├── parserEnumDeclaration6.symbols │ ├── parserEnumDeclaration6.types │ ├── parserEqualsGreaterThanAfterFunction1.errors.txt │ ├── parserEqualsGreaterThanAfterFunction1.js │ ├── parserEqualsGreaterThanAfterFunction1.symbols │ ├── parserEqualsGreaterThanAfterFunction1.types │ ├── parserEqualsGreaterThanAfterFunction2.errors.txt │ ├── parserEqualsGreaterThanAfterFunction2.js │ ├── parserEqualsGreaterThanAfterFunction2.symbols │ ├── parserEqualsGreaterThanAfterFunction2.types │ ├── parserErrantAccessibilityModifierInModule1.errors.txt │ ├── parserErrantAccessibilityModifierInModule1.js │ ├── parserErrantAccessibilityModifierInModule1.symbols │ ├── parserErrantAccessibilityModifierInModule1.types │ ├── parserErrantEqualsGreaterThanAfterFunction1.errors.txt │ ├── parserErrantEqualsGreaterThanAfterFunction1.js │ ├── parserErrantEqualsGreaterThanAfterFunction1.symbols │ ├── parserErrantEqualsGreaterThanAfterFunction1.types │ ├── parserErrantEqualsGreaterThanAfterFunction2.errors.txt │ ├── parserErrantEqualsGreaterThanAfterFunction2.js │ ├── parserErrantEqualsGreaterThanAfterFunction2.symbols │ ├── parserErrantEqualsGreaterThanAfterFunction2.types │ ├── parserErrantSemicolonInClass1.errors.txt │ ├── parserErrantSemicolonInClass1.js │ ├── parserErrantSemicolonInClass1.symbols │ ├── parserErrantSemicolonInClass1.types │ ├── parserErrorRecoveryArrayLiteralExpression1.errors.txt │ ├── parserErrorRecoveryArrayLiteralExpression1.js │ ├── parserErrorRecoveryArrayLiteralExpression1.symbols │ ├── parserErrorRecoveryArrayLiteralExpression1.types │ ├── parserErrorRecoveryArrayLiteralExpression2.errors.txt │ ├── parserErrorRecoveryArrayLiteralExpression2.js │ ├── parserErrorRecoveryArrayLiteralExpression2.symbols │ ├── parserErrorRecoveryArrayLiteralExpression2.types │ ├── parserErrorRecoveryArrayLiteralExpression3.errors.txt │ ├── parserErrorRecoveryArrayLiteralExpression3.js │ ├── parserErrorRecoveryArrayLiteralExpression3.symbols │ ├── parserErrorRecoveryArrayLiteralExpression3.types │ ├── parserErrorRecoveryIfStatement1.errors.txt │ ├── parserErrorRecoveryIfStatement1.js │ ├── parserErrorRecoveryIfStatement1.symbols │ ├── parserErrorRecoveryIfStatement1.types │ ├── parserErrorRecoveryIfStatement2.errors.txt │ ├── parserErrorRecoveryIfStatement2.js │ ├── parserErrorRecoveryIfStatement2.symbols │ ├── parserErrorRecoveryIfStatement2.types │ ├── parserErrorRecoveryIfStatement3.errors.txt │ ├── parserErrorRecoveryIfStatement3.js │ ├── parserErrorRecoveryIfStatement3.symbols │ ├── parserErrorRecoveryIfStatement3.types │ ├── parserErrorRecoveryIfStatement4.errors.txt │ ├── parserErrorRecoveryIfStatement4.js │ ├── parserErrorRecoveryIfStatement4.symbols │ ├── parserErrorRecoveryIfStatement4.types │ ├── parserErrorRecoveryIfStatement5.errors.txt │ ├── parserErrorRecoveryIfStatement5.js │ ├── parserErrorRecoveryIfStatement5.symbols │ ├── parserErrorRecoveryIfStatement5.types │ ├── parserErrorRecoveryIfStatement6.errors.txt │ ├── parserErrorRecoveryIfStatement6.js │ ├── parserErrorRecoveryIfStatement6.symbols │ ├── parserErrorRecoveryIfStatement6.types │ ├── parserErrorRecovery_ArgumentList1.errors.txt │ ├── parserErrorRecovery_ArgumentList1.js │ ├── parserErrorRecovery_ArgumentList1.symbols │ ├── parserErrorRecovery_ArgumentList1.types │ ├── parserErrorRecovery_ArgumentList2.errors.txt │ ├── parserErrorRecovery_ArgumentList2.js │ ├── parserErrorRecovery_ArgumentList2.symbols │ ├── parserErrorRecovery_ArgumentList2.types │ ├── parserErrorRecovery_ArgumentList3.errors.txt │ ├── parserErrorRecovery_ArgumentList3.js │ ├── parserErrorRecovery_ArgumentList3.symbols │ ├── parserErrorRecovery_ArgumentList3.types │ ├── parserErrorRecovery_ArgumentList4.errors.txt │ ├── parserErrorRecovery_ArgumentList4.js │ ├── parserErrorRecovery_ArgumentList4.symbols │ ├── parserErrorRecovery_ArgumentList4.types │ ├── parserErrorRecovery_ArgumentList6.errors.txt │ ├── parserErrorRecovery_ArgumentList6.js │ ├── parserErrorRecovery_ArgumentList6.symbols │ ├── parserErrorRecovery_ArgumentList6.types │ ├── parserErrorRecovery_ArgumentList7.errors.txt │ ├── parserErrorRecovery_ArgumentList7.js │ ├── parserErrorRecovery_ArgumentList7.symbols │ ├── parserErrorRecovery_ArgumentList7.types │ ├── parserErrorRecovery_Block1.errors.txt │ ├── parserErrorRecovery_Block1.js │ ├── parserErrorRecovery_Block1.symbols │ ├── parserErrorRecovery_Block1.types │ ├── parserErrorRecovery_Block2.errors.txt │ ├── parserErrorRecovery_Block2.js │ ├── parserErrorRecovery_Block2.symbols │ ├── parserErrorRecovery_Block2.types │ ├── parserErrorRecovery_Block3.errors.txt │ ├── parserErrorRecovery_Block3.js │ ├── parserErrorRecovery_Block3.symbols │ ├── parserErrorRecovery_Block3.types │ ├── parserErrorRecovery_ClassElement1.errors.txt │ ├── parserErrorRecovery_ClassElement1.js │ ├── parserErrorRecovery_ClassElement1.symbols │ ├── parserErrorRecovery_ClassElement1.types │ ├── parserErrorRecovery_ClassElement2.errors.txt │ ├── parserErrorRecovery_ClassElement2.js │ ├── parserErrorRecovery_ClassElement2.symbols │ ├── parserErrorRecovery_ClassElement2.types │ ├── parserErrorRecovery_ClassElement3.errors.txt │ ├── parserErrorRecovery_ClassElement3.js │ ├── parserErrorRecovery_ClassElement3.symbols │ ├── parserErrorRecovery_ClassElement3.types │ ├── parserErrorRecovery_Expression1.errors.txt │ ├── parserErrorRecovery_Expression1.js │ ├── parserErrorRecovery_Expression1.symbols │ ├── parserErrorRecovery_Expression1.types │ ├── parserErrorRecovery_ExtendsOrImplementsClause1.errors.txt │ ├── parserErrorRecovery_ExtendsOrImplementsClause1.js │ ├── parserErrorRecovery_ExtendsOrImplementsClause1.symbols │ ├── parserErrorRecovery_ExtendsOrImplementsClause1.types │ ├── parserErrorRecovery_ExtendsOrImplementsClause2.errors.txt │ ├── parserErrorRecovery_ExtendsOrImplementsClause2.js │ ├── parserErrorRecovery_ExtendsOrImplementsClause2.symbols │ ├── parserErrorRecovery_ExtendsOrImplementsClause2.types │ ├── parserErrorRecovery_ExtendsOrImplementsClause3.errors.txt │ ├── parserErrorRecovery_ExtendsOrImplementsClause3.js │ ├── parserErrorRecovery_ExtendsOrImplementsClause3.symbols │ ├── parserErrorRecovery_ExtendsOrImplementsClause3.types │ ├── parserErrorRecovery_ExtendsOrImplementsClause4.errors.txt │ ├── parserErrorRecovery_ExtendsOrImplementsClause4.js │ ├── parserErrorRecovery_ExtendsOrImplementsClause4.symbols │ ├── parserErrorRecovery_ExtendsOrImplementsClause4.types │ ├── parserErrorRecovery_ExtendsOrImplementsClause5.errors.txt │ ├── parserErrorRecovery_ExtendsOrImplementsClause5.js │ ├── parserErrorRecovery_ExtendsOrImplementsClause5.symbols │ ├── parserErrorRecovery_ExtendsOrImplementsClause5.types │ ├── parserErrorRecovery_ExtendsOrImplementsClause6.errors.txt │ ├── parserErrorRecovery_ExtendsOrImplementsClause6.js │ ├── parserErrorRecovery_ExtendsOrImplementsClause6.symbols │ ├── parserErrorRecovery_ExtendsOrImplementsClause6.types │ ├── parserErrorRecovery_IncompleteMemberVariable1.errors.txt │ ├── parserErrorRecovery_IncompleteMemberVariable1.js │ ├── parserErrorRecovery_IncompleteMemberVariable1.symbols │ ├── parserErrorRecovery_IncompleteMemberVariable1.types │ ├── parserErrorRecovery_IncompleteMemberVariable2.errors.txt │ ├── parserErrorRecovery_IncompleteMemberVariable2.js │ ├── parserErrorRecovery_IncompleteMemberVariable2.symbols │ ├── parserErrorRecovery_IncompleteMemberVariable2.types │ ├── parserErrorRecovery_LeftShift1.errors.txt │ ├── parserErrorRecovery_LeftShift1.js │ ├── parserErrorRecovery_LeftShift1.symbols │ ├── parserErrorRecovery_LeftShift1.types │ ├── parserErrorRecovery_ModuleElement1.errors.txt │ ├── parserErrorRecovery_ModuleElement1.js │ ├── parserErrorRecovery_ModuleElement1.symbols │ ├── parserErrorRecovery_ModuleElement1.types │ ├── parserErrorRecovery_ModuleElement2.errors.txt │ ├── parserErrorRecovery_ModuleElement2.js │ ├── parserErrorRecovery_ModuleElement2.symbols │ ├── parserErrorRecovery_ModuleElement2.types │ ├── parserErrorRecovery_ObjectLiteral1.errors.txt │ ├── parserErrorRecovery_ObjectLiteral1.js │ ├── parserErrorRecovery_ObjectLiteral1.symbols │ ├── parserErrorRecovery_ObjectLiteral1.types │ ├── parserErrorRecovery_ObjectLiteral2.errors.txt │ ├── parserErrorRecovery_ObjectLiteral2.js │ ├── parserErrorRecovery_ObjectLiteral2.symbols │ ├── parserErrorRecovery_ObjectLiteral2.types │ ├── parserErrorRecovery_ObjectLiteral3.errors.txt │ ├── parserErrorRecovery_ObjectLiteral3.js │ ├── parserErrorRecovery_ObjectLiteral3.symbols │ ├── parserErrorRecovery_ObjectLiteral3.types │ ├── parserErrorRecovery_ObjectLiteral4.errors.txt │ ├── parserErrorRecovery_ObjectLiteral4.js │ ├── parserErrorRecovery_ObjectLiteral4.symbols │ ├── parserErrorRecovery_ObjectLiteral4.types │ ├── parserErrorRecovery_ObjectLiteral5.errors.txt │ ├── parserErrorRecovery_ObjectLiteral5.js │ ├── parserErrorRecovery_ObjectLiteral5.symbols │ ├── parserErrorRecovery_ObjectLiteral5.types │ ├── parserErrorRecovery_ParameterList1.errors.txt │ ├── parserErrorRecovery_ParameterList1.js │ ├── parserErrorRecovery_ParameterList1.symbols │ ├── parserErrorRecovery_ParameterList1.types │ ├── parserErrorRecovery_ParameterList2.errors.txt │ ├── parserErrorRecovery_ParameterList2.js │ ├── parserErrorRecovery_ParameterList2.symbols │ ├── parserErrorRecovery_ParameterList2.types │ ├── parserErrorRecovery_ParameterList4.errors.txt │ ├── parserErrorRecovery_ParameterList4.js │ ├── parserErrorRecovery_ParameterList4.symbols │ ├── parserErrorRecovery_ParameterList4.types │ ├── parserErrorRecovery_ParameterList5.errors.txt │ ├── parserErrorRecovery_ParameterList5.js │ ├── parserErrorRecovery_ParameterList5.symbols │ ├── parserErrorRecovery_ParameterList5.types │ ├── parserErrorRecovery_ParameterList6.errors.txt │ ├── parserErrorRecovery_ParameterList6.js │ ├── parserErrorRecovery_ParameterList6.symbols │ ├── parserErrorRecovery_ParameterList6.types │ ├── parserErrorRecovery_SourceUnit1.errors.txt │ ├── parserErrorRecovery_SourceUnit1.js │ ├── parserErrorRecovery_SourceUnit1.symbols │ ├── parserErrorRecovery_SourceUnit1.types │ ├── parserErrorRecovery_SwitchStatement1.errors.txt │ ├── parserErrorRecovery_SwitchStatement1.js │ ├── parserErrorRecovery_SwitchStatement1.symbols │ ├── parserErrorRecovery_SwitchStatement1.types │ ├── parserErrorRecovery_SwitchStatement2.errors.txt │ ├── parserErrorRecovery_SwitchStatement2.js │ ├── parserErrorRecovery_SwitchStatement2.symbols │ ├── parserErrorRecovery_SwitchStatement2.types │ ├── parserErrorRecovery_VariableList1.errors.txt │ ├── parserErrorRecovery_VariableList1.js │ ├── parserErrorRecovery_VariableList1.symbols │ ├── parserErrorRecovery_VariableList1.types │ ├── parserExportAsFunctionIdentifier.errors.txt │ ├── parserExportAsFunctionIdentifier.js │ ├── parserExportAsFunctionIdentifier.symbols │ ├── parserExportAsFunctionIdentifier.types │ ├── parserExportAssignment1.errors.txt │ ├── parserExportAssignment1.js │ ├── parserExportAssignment1.symbols │ ├── parserExportAssignment1.types │ ├── parserExportAssignment2.errors.txt │ ├── parserExportAssignment2.js │ ├── parserExportAssignment2.symbols │ ├── parserExportAssignment2.types │ ├── parserExportAssignment3.errors.txt │ ├── parserExportAssignment3.js │ ├── parserExportAssignment3.symbols │ ├── parserExportAssignment3.types │ ├── parserExportAssignment4.errors.txt │ ├── parserExportAssignment4.js │ ├── parserExportAssignment4.symbols │ ├── parserExportAssignment4.types │ ├── parserExportAssignment5.errors.txt │ ├── parserExportAssignment5.js │ ├── parserExportAssignment5.symbols │ ├── parserExportAssignment5.types │ ├── parserExportAssignment6.errors.txt │ ├── parserExportAssignment6.js │ ├── parserExportAssignment6.symbols │ ├── parserExportAssignment6.types │ ├── parserExportAssignment7.errors.txt │ ├── parserExportAssignment7.js │ ├── parserExportAssignment7.symbols │ ├── parserExportAssignment7.types │ ├── parserExportAssignment8.errors.txt │ ├── parserExportAssignment8.js │ ├── parserExportAssignment8.symbols │ ├── parserExportAssignment8.types │ ├── parserExportAssignment9.errors.txt │ ├── parserExportAssignment9.js │ ├── parserExportAssignment9.symbols │ ├── parserExportAssignment9.types │ ├── parserExpressionStatement1.d.errors.txt │ ├── parserExpressionStatement1.d.symbols │ ├── parserExpressionStatement1.d.types │ ├── parserForInStatement1.d.errors.txt │ ├── parserForInStatement1.d.symbols │ ├── parserForInStatement1.d.types │ ├── parserForInStatement2.errors.txt │ ├── parserForInStatement2.js │ ├── parserForInStatement2.symbols │ ├── parserForInStatement2.types │ ├── parserForInStatement3.errors.txt │ ├── parserForInStatement3.js │ ├── parserForInStatement3.symbols │ ├── parserForInStatement3.types │ ├── parserForInStatement4.errors.txt │ ├── parserForInStatement4.js │ ├── parserForInStatement4.symbols │ ├── parserForInStatement4.types │ ├── parserForInStatement5.errors.txt │ ├── parserForInStatement5.js │ ├── parserForInStatement5.symbols │ ├── parserForInStatement5.types │ ├── parserForInStatement6.errors.txt │ ├── parserForInStatement6.js │ ├── parserForInStatement6.symbols │ ├── parserForInStatement6.types │ ├── parserForInStatement7.errors.txt │ ├── parserForInStatement7.js │ ├── parserForInStatement7.symbols │ ├── parserForInStatement7.types │ ├── parserForInStatement8(target=es2015).errors.txt │ ├── parserForInStatement8(target=es2015).js │ ├── parserForInStatement8(target=es2015).symbols │ ├── parserForInStatement8(target=es2015).types │ ├── parserForInStatement8(target=es5).errors.txt │ ├── parserForInStatement8(target=es5).js │ ├── parserForInStatement8(target=es5).symbols │ ├── parserForInStatement8(target=es5).types │ ├── parserForOfStatement1.d.errors.txt │ ├── parserForOfStatement1.d.symbols │ ├── parserForOfStatement1.d.types │ ├── parserForOfStatement10.errors.txt │ ├── parserForOfStatement10.js │ ├── parserForOfStatement10.symbols │ ├── parserForOfStatement10.types │ ├── parserForOfStatement11.errors.txt │ ├── parserForOfStatement11.js │ ├── parserForOfStatement11.symbols │ ├── parserForOfStatement11.types │ ├── parserForOfStatement12.errors.txt │ ├── parserForOfStatement12.js │ ├── parserForOfStatement12.symbols │ ├── parserForOfStatement12.types │ ├── parserForOfStatement13.errors.txt │ ├── parserForOfStatement13.js │ ├── parserForOfStatement13.symbols │ ├── parserForOfStatement13.types │ ├── parserForOfStatement14.errors.txt │ ├── parserForOfStatement14.js │ ├── parserForOfStatement14.symbols │ ├── parserForOfStatement14.types │ ├── parserForOfStatement15.errors.txt │ ├── parserForOfStatement15.js │ ├── parserForOfStatement15.symbols │ ├── parserForOfStatement15.types │ ├── parserForOfStatement16.errors.txt │ ├── parserForOfStatement16.js │ ├── parserForOfStatement16.symbols │ ├── parserForOfStatement16.types │ ├── parserForOfStatement17.js │ ├── parserForOfStatement17.symbols │ ├── parserForOfStatement17.types │ ├── parserForOfStatement18.js │ ├── parserForOfStatement18.symbols │ ├── parserForOfStatement18.types │ ├── parserForOfStatement19.js │ ├── parserForOfStatement19.symbols │ ├── parserForOfStatement19.types │ ├── parserForOfStatement2.errors.txt │ ├── parserForOfStatement2.js │ ├── parserForOfStatement2.symbols │ ├── parserForOfStatement2.types │ ├── parserForOfStatement20.errors.txt │ ├── parserForOfStatement20.js │ ├── parserForOfStatement20.symbols │ ├── parserForOfStatement20.types │ ├── parserForOfStatement21.errors.txt │ ├── parserForOfStatement21.js │ ├── parserForOfStatement21.symbols │ ├── parserForOfStatement21.types │ ├── parserForOfStatement22.errors.txt │ ├── parserForOfStatement22.js │ ├── parserForOfStatement22.symbols │ ├── parserForOfStatement22.types │ ├── parserForOfStatement23.js │ ├── parserForOfStatement23.symbols │ ├── parserForOfStatement23.types │ ├── parserForOfStatement24.js │ ├── parserForOfStatement24.symbols │ ├── parserForOfStatement24.types │ ├── parserForOfStatement25.js │ ├── parserForOfStatement25.symbols │ ├── parserForOfStatement25.types │ ├── parserForOfStatement3.errors.txt │ ├── parserForOfStatement3.js │ ├── parserForOfStatement3.symbols │ ├── parserForOfStatement3.types │ ├── parserForOfStatement4.errors.txt │ ├── parserForOfStatement4.js │ ├── parserForOfStatement4.symbols │ ├── parserForOfStatement4.types │ ├── parserForOfStatement5.errors.txt │ ├── parserForOfStatement5.js │ ├── parserForOfStatement5.symbols │ ├── parserForOfStatement5.types │ ├── parserForOfStatement6.errors.txt │ ├── parserForOfStatement6.js │ ├── parserForOfStatement6.symbols │ ├── parserForOfStatement6.types │ ├── parserForOfStatement7.errors.txt │ ├── parserForOfStatement7.js │ ├── parserForOfStatement7.symbols │ ├── parserForOfStatement7.types │ ├── parserForOfStatement8.errors.txt │ ├── parserForOfStatement8.js │ ├── parserForOfStatement8.symbols │ ├── parserForOfStatement8.types │ ├── parserForOfStatement9.errors.txt │ ├── parserForOfStatement9.js │ ├── parserForOfStatement9.symbols │ ├── parserForOfStatement9.types │ ├── parserForStatement1.d.errors.txt │ ├── parserForStatement1.d.symbols │ ├── parserForStatement1.d.types │ ├── parserForStatement2.errors.txt │ ├── parserForStatement2.js │ ├── parserForStatement2.symbols │ ├── parserForStatement2.types │ ├── parserForStatement3.errors.txt │ ├── parserForStatement3.js │ ├── parserForStatement3.symbols │ ├── parserForStatement3.types │ ├── parserForStatement4.errors.txt │ ├── parserForStatement4.js │ ├── parserForStatement4.symbols │ ├── parserForStatement4.types │ ├── parserForStatement5.errors.txt │ ├── parserForStatement5.js │ ├── parserForStatement5.symbols │ ├── parserForStatement5.types │ ├── parserForStatement6.errors.txt │ ├── parserForStatement6.js │ ├── parserForStatement6.symbols │ ├── parserForStatement6.types │ ├── parserForStatement7.errors.txt │ ├── parserForStatement7.js │ ├── parserForStatement7.symbols │ ├── parserForStatement7.types │ ├── parserForStatement8.errors.txt │ ├── parserForStatement8.js │ ├── parserForStatement8.symbols │ ├── parserForStatement8.types │ ├── parserForStatement9.js │ ├── parserForStatement9.symbols │ ├── parserForStatement9.types │ ├── parserFunctionDeclaration1.d.errors.txt │ ├── parserFunctionDeclaration1.d.symbols │ ├── parserFunctionDeclaration1.d.types │ ├── parserFunctionDeclaration1.errors.txt │ ├── parserFunctionDeclaration1.js │ ├── parserFunctionDeclaration1.symbols │ ├── parserFunctionDeclaration1.types │ ├── parserFunctionDeclaration2.d.errors.txt │ ├── parserFunctionDeclaration2.d.symbols │ ├── parserFunctionDeclaration2.d.types │ ├── parserFunctionDeclaration2.errors.txt │ ├── parserFunctionDeclaration2.js │ ├── parserFunctionDeclaration2.symbols │ ├── parserFunctionDeclaration2.types │ ├── parserFunctionDeclaration3.errors.txt │ ├── parserFunctionDeclaration3.js │ ├── parserFunctionDeclaration3.symbols │ ├── parserFunctionDeclaration3.types │ ├── parserFunctionDeclaration4.errors.txt │ ├── parserFunctionDeclaration4.js │ ├── parserFunctionDeclaration4.symbols │ ├── parserFunctionDeclaration4.types │ ├── parserFunctionDeclaration5.js │ ├── parserFunctionDeclaration5.symbols │ ├── parserFunctionDeclaration5.types │ ├── parserFunctionDeclaration6.errors.txt │ ├── parserFunctionDeclaration6.js │ ├── parserFunctionDeclaration6.symbols │ ├── parserFunctionDeclaration6.types │ ├── parserFunctionDeclaration7.errors.txt │ ├── parserFunctionDeclaration7.js │ ├── parserFunctionDeclaration7.symbols │ ├── parserFunctionDeclaration7.types │ ├── parserFunctionDeclaration8.js │ ├── parserFunctionDeclaration8.symbols │ ├── parserFunctionDeclaration8.types │ ├── parserFunctionPropertyAssignment1.js │ ├── parserFunctionPropertyAssignment1.symbols │ ├── parserFunctionPropertyAssignment1.types │ ├── parserFunctionPropertyAssignment2.js │ ├── parserFunctionPropertyAssignment2.symbols │ ├── parserFunctionPropertyAssignment2.types │ ├── parserFunctionPropertyAssignment3.js │ ├── parserFunctionPropertyAssignment3.symbols │ ├── parserFunctionPropertyAssignment3.types │ ├── parserFunctionPropertyAssignment4.js │ ├── parserFunctionPropertyAssignment4.symbols │ ├── parserFunctionPropertyAssignment4.types │ ├── parserFuzz1.errors.txt │ ├── parserFuzz1.js │ ├── parserFuzz1.symbols │ ├── parserFuzz1.types │ ├── parserGenericClass1.js │ ├── parserGenericClass1.symbols │ ├── parserGenericClass1.types │ ├── parserGenericClass2.js │ ├── parserGenericClass2.symbols │ ├── parserGenericClass2.types │ ├── parserGenericConstraint1.js │ ├── parserGenericConstraint1.symbols │ ├── parserGenericConstraint1.types │ ├── parserGenericConstraint2.errors.txt │ ├── parserGenericConstraint2.js │ ├── parserGenericConstraint2.symbols │ ├── parserGenericConstraint2.types │ ├── parserGenericConstraint3.errors.txt │ ├── parserGenericConstraint3.js │ ├── parserGenericConstraint3.symbols │ ├── parserGenericConstraint3.types │ ├── parserGenericConstraint4.errors.txt │ ├── parserGenericConstraint4.js │ ├── parserGenericConstraint4.symbols │ ├── parserGenericConstraint4.types │ ├── parserGenericConstraint5.errors.txt │ ├── parserGenericConstraint5.js │ ├── parserGenericConstraint5.symbols │ ├── parserGenericConstraint5.types │ ├── parserGenericConstraint6.errors.txt │ ├── parserGenericConstraint6.js │ ├── parserGenericConstraint6.symbols │ ├── parserGenericConstraint6.types │ ├── parserGenericConstraint7.errors.txt │ ├── parserGenericConstraint7.js │ ├── parserGenericConstraint7.symbols │ ├── parserGenericConstraint7.types │ ├── parserGenericsInInterfaceDeclaration1.errors.txt │ ├── parserGenericsInInterfaceDeclaration1.js │ ├── parserGenericsInInterfaceDeclaration1.symbols │ ├── parserGenericsInInterfaceDeclaration1.types │ ├── parserGenericsInTypeContexts1.errors.txt │ ├── parserGenericsInTypeContexts1.js │ ├── parserGenericsInTypeContexts1.symbols │ ├── parserGenericsInTypeContexts1.types │ ├── parserGenericsInTypeContexts2.errors.txt │ ├── parserGenericsInTypeContexts2.js │ ├── parserGenericsInTypeContexts2.symbols │ ├── parserGenericsInTypeContexts2.types │ ├── parserGenericsInVariableDeclaration1.errors.txt │ ├── parserGenericsInVariableDeclaration1.js │ ├── parserGenericsInVariableDeclaration1.symbols │ ├── parserGenericsInVariableDeclaration1.types │ ├── parserGetAccessorWithTypeParameters1(target=es2015).errors.txt │ ├── parserGetAccessorWithTypeParameters1(target=es2015).js │ ├── parserGetAccessorWithTypeParameters1(target=es2015).symbols │ ├── parserGetAccessorWithTypeParameters1(target=es2015).types │ ├── parserGetAccessorWithTypeParameters1(target=es5).errors.txt │ ├── parserGetAccessorWithTypeParameters1(target=es5).js │ ├── parserGetAccessorWithTypeParameters1(target=es5).symbols │ ├── parserGetAccessorWithTypeParameters1(target=es5).types │ ├── parserGreaterThanTokenAmbiguity1.js │ ├── parserGreaterThanTokenAmbiguity1.symbols │ ├── parserGreaterThanTokenAmbiguity1.types │ ├── parserGreaterThanTokenAmbiguity10.js │ ├── parserGreaterThanTokenAmbiguity10.symbols │ ├── parserGreaterThanTokenAmbiguity10.types │ ├── parserGreaterThanTokenAmbiguity11.errors.txt │ ├── parserGreaterThanTokenAmbiguity11.js │ ├── parserGreaterThanTokenAmbiguity11.symbols │ ├── parserGreaterThanTokenAmbiguity11.types │ ├── parserGreaterThanTokenAmbiguity12.errors.txt │ ├── parserGreaterThanTokenAmbiguity12.js │ ├── parserGreaterThanTokenAmbiguity12.symbols │ ├── parserGreaterThanTokenAmbiguity12.types │ ├── parserGreaterThanTokenAmbiguity13.errors.txt │ ├── parserGreaterThanTokenAmbiguity13.js │ ├── parserGreaterThanTokenAmbiguity13.symbols │ ├── parserGreaterThanTokenAmbiguity13.types │ ├── parserGreaterThanTokenAmbiguity14.errors.txt │ ├── parserGreaterThanTokenAmbiguity14.js │ ├── parserGreaterThanTokenAmbiguity14.symbols │ ├── parserGreaterThanTokenAmbiguity14.types │ ├── parserGreaterThanTokenAmbiguity15.errors.txt │ ├── parserGreaterThanTokenAmbiguity15.js │ ├── parserGreaterThanTokenAmbiguity15.symbols │ ├── parserGreaterThanTokenAmbiguity15.types │ ├── parserGreaterThanTokenAmbiguity16.errors.txt │ ├── parserGreaterThanTokenAmbiguity16.js │ ├── parserGreaterThanTokenAmbiguity16.symbols │ ├── parserGreaterThanTokenAmbiguity16.types │ ├── parserGreaterThanTokenAmbiguity17.errors.txt │ ├── parserGreaterThanTokenAmbiguity17.js │ ├── parserGreaterThanTokenAmbiguity17.symbols │ ├── parserGreaterThanTokenAmbiguity17.types │ ├── parserGreaterThanTokenAmbiguity18.errors.txt │ ├── parserGreaterThanTokenAmbiguity18.js │ ├── parserGreaterThanTokenAmbiguity18.symbols │ ├── parserGreaterThanTokenAmbiguity18.types │ ├── parserGreaterThanTokenAmbiguity19.errors.txt │ ├── parserGreaterThanTokenAmbiguity19.js │ ├── parserGreaterThanTokenAmbiguity19.symbols │ ├── parserGreaterThanTokenAmbiguity19.types │ ├── parserGreaterThanTokenAmbiguity2.errors.txt │ ├── parserGreaterThanTokenAmbiguity2.js │ ├── parserGreaterThanTokenAmbiguity2.symbols │ ├── parserGreaterThanTokenAmbiguity2.types │ ├── parserGreaterThanTokenAmbiguity20.errors.txt │ ├── parserGreaterThanTokenAmbiguity20.js │ ├── parserGreaterThanTokenAmbiguity20.symbols │ ├── parserGreaterThanTokenAmbiguity20.types │ ├── parserGreaterThanTokenAmbiguity3.errors.txt │ ├── parserGreaterThanTokenAmbiguity3.js │ ├── parserGreaterThanTokenAmbiguity3.symbols │ ├── parserGreaterThanTokenAmbiguity3.types │ ├── parserGreaterThanTokenAmbiguity4.errors.txt │ ├── parserGreaterThanTokenAmbiguity4.js │ ├── parserGreaterThanTokenAmbiguity4.symbols │ ├── parserGreaterThanTokenAmbiguity4.types │ ├── parserGreaterThanTokenAmbiguity5.js │ ├── parserGreaterThanTokenAmbiguity5.symbols │ ├── parserGreaterThanTokenAmbiguity5.types │ ├── parserGreaterThanTokenAmbiguity6.js │ ├── parserGreaterThanTokenAmbiguity6.symbols │ ├── parserGreaterThanTokenAmbiguity6.types │ ├── parserGreaterThanTokenAmbiguity7.errors.txt │ ├── parserGreaterThanTokenAmbiguity7.js │ ├── parserGreaterThanTokenAmbiguity7.symbols │ ├── parserGreaterThanTokenAmbiguity7.types │ ├── parserGreaterThanTokenAmbiguity8.errors.txt │ ├── parserGreaterThanTokenAmbiguity8.js │ ├── parserGreaterThanTokenAmbiguity8.symbols │ ├── parserGreaterThanTokenAmbiguity8.types │ ├── parserGreaterThanTokenAmbiguity9.errors.txt │ ├── parserGreaterThanTokenAmbiguity9.js │ ├── parserGreaterThanTokenAmbiguity9.symbols │ ├── parserGreaterThanTokenAmbiguity9.types │ ├── parserIfStatement1.d.errors.txt │ ├── parserIfStatement1.d.symbols │ ├── parserIfStatement1.d.types │ ├── parserIfStatement2.errors.txt │ ├── parserIfStatement2.js │ ├── parserIfStatement2.symbols │ ├── parserIfStatement2.types │ ├── parserImportDeclaration1.errors.txt │ ├── parserImportDeclaration1.js │ ├── parserImportDeclaration1.symbols │ ├── parserImportDeclaration1.types │ ├── parserInExpression1.js │ ├── parserInExpression1.symbols │ ├── parserInExpression1.types │ ├── parserIndexMemberDeclaration1.js │ ├── parserIndexMemberDeclaration1.symbols │ ├── parserIndexMemberDeclaration1.types │ ├── parserIndexMemberDeclaration10.errors.txt │ ├── parserIndexMemberDeclaration10.js │ ├── parserIndexMemberDeclaration10.symbols │ ├── parserIndexMemberDeclaration10.types │ ├── parserIndexMemberDeclaration2.errors.txt │ ├── parserIndexMemberDeclaration2.js │ ├── parserIndexMemberDeclaration2.symbols │ ├── parserIndexMemberDeclaration2.types │ ├── parserIndexMemberDeclaration3.errors.txt │ ├── parserIndexMemberDeclaration3.js │ ├── parserIndexMemberDeclaration3.symbols │ ├── parserIndexMemberDeclaration3.types │ ├── parserIndexMemberDeclaration4.errors.txt │ ├── parserIndexMemberDeclaration4.js │ ├── parserIndexMemberDeclaration4.symbols │ ├── parserIndexMemberDeclaration4.types │ ├── parserIndexMemberDeclaration5.errors.txt │ ├── parserIndexMemberDeclaration5.js │ ├── parserIndexMemberDeclaration5.symbols │ ├── parserIndexMemberDeclaration5.types │ ├── parserIndexMemberDeclaration6.js │ ├── parserIndexMemberDeclaration6.symbols │ ├── parserIndexMemberDeclaration6.types │ ├── parserIndexMemberDeclaration7.errors.txt │ ├── parserIndexMemberDeclaration7.js │ ├── parserIndexMemberDeclaration7.symbols │ ├── parserIndexMemberDeclaration7.types │ ├── parserIndexMemberDeclaration8.errors.txt │ ├── parserIndexMemberDeclaration8.js │ ├── parserIndexMemberDeclaration8.symbols │ ├── parserIndexMemberDeclaration8.types │ ├── parserIndexMemberDeclaration9.errors.txt │ ├── parserIndexMemberDeclaration9.js │ ├── parserIndexMemberDeclaration9.symbols │ ├── parserIndexMemberDeclaration9.types │ ├── parserIndexSignature1.errors.txt │ ├── parserIndexSignature1.js │ ├── parserIndexSignature1.symbols │ ├── parserIndexSignature1.types │ ├── parserIndexSignature10.errors.txt │ ├── parserIndexSignature10.js │ ├── parserIndexSignature10.symbols │ ├── parserIndexSignature10.types │ ├── parserIndexSignature11.errors.txt │ ├── parserIndexSignature11.js │ ├── parserIndexSignature11.symbols │ ├── parserIndexSignature11.types │ ├── parserIndexSignature2.errors.txt │ ├── parserIndexSignature2.js │ ├── parserIndexSignature2.symbols │ ├── parserIndexSignature2.types │ ├── parserIndexSignature3.errors.txt │ ├── parserIndexSignature3.js │ ├── parserIndexSignature3.symbols │ ├── parserIndexSignature3.types │ ├── parserIndexSignature4.errors.txt │ ├── parserIndexSignature4.js │ ├── parserIndexSignature4.symbols │ ├── parserIndexSignature4.types │ ├── parserIndexSignature5.errors.txt │ ├── parserIndexSignature5.js │ ├── parserIndexSignature5.symbols │ ├── parserIndexSignature5.types │ ├── parserIndexSignature6.errors.txt │ ├── parserIndexSignature6.js │ ├── parserIndexSignature6.symbols │ ├── parserIndexSignature6.types │ ├── parserIndexSignature7.errors.txt │ ├── parserIndexSignature7.js │ ├── parserIndexSignature7.symbols │ ├── parserIndexSignature7.types │ ├── parserIndexSignature8.errors.txt │ ├── parserIndexSignature8.js │ ├── parserIndexSignature8.symbols │ ├── parserIndexSignature8.types │ ├── parserIndexSignature9.errors.txt │ ├── parserIndexSignature9.js │ ├── parserIndexSignature9.symbols │ ├── parserIndexSignature9.types │ ├── parserInterfaceDeclaration1.errors.txt │ ├── parserInterfaceDeclaration1.js │ ├── parserInterfaceDeclaration1.symbols │ ├── parserInterfaceDeclaration1.types │ ├── parserInterfaceDeclaration2.errors.txt │ ├── parserInterfaceDeclaration2.js │ ├── parserInterfaceDeclaration2.symbols │ ├── parserInterfaceDeclaration2.types │ ├── parserInterfaceDeclaration3.errors.txt │ ├── parserInterfaceDeclaration3.js │ ├── parserInterfaceDeclaration3.symbols │ ├── parserInterfaceDeclaration3.types │ ├── parserInterfaceDeclaration4.errors.txt │ ├── parserInterfaceDeclaration4.js │ ├── parserInterfaceDeclaration4.symbols │ ├── parserInterfaceDeclaration4.types │ ├── parserInterfaceDeclaration5.js │ ├── parserInterfaceDeclaration5.symbols │ ├── parserInterfaceDeclaration5.types │ ├── parserInterfaceDeclaration6.errors.txt │ ├── parserInterfaceDeclaration6.js │ ├── parserInterfaceDeclaration6.symbols │ ├── parserInterfaceDeclaration6.types │ ├── parserInterfaceDeclaration7.js │ ├── parserInterfaceDeclaration7.symbols │ ├── parserInterfaceDeclaration7.types │ ├── parserInterfaceDeclaration8.errors.txt │ ├── parserInterfaceDeclaration8.js │ ├── parserInterfaceDeclaration8.symbols │ ├── parserInterfaceDeclaration8.types │ ├── parserInterfaceDeclaration9.js │ ├── parserInterfaceDeclaration9.symbols │ ├── parserInterfaceDeclaration9.types │ ├── parserInterfaceKeywordInEnum.js │ ├── parserInterfaceKeywordInEnum.symbols │ ├── parserInterfaceKeywordInEnum.types │ ├── parserInterfaceKeywordInEnum1.js │ ├── parserInterfaceKeywordInEnum1.symbols │ ├── parserInterfaceKeywordInEnum1.types │ ├── parserInvalidIdentifiersInVariableStatements1.errors.txt │ ├── parserInvalidIdentifiersInVariableStatements1.js │ ├── parserInvalidIdentifiersInVariableStatements1.symbols │ ├── parserInvalidIdentifiersInVariableStatements1.types │ ├── parserInvocationOfMemberAccessOffOfObjectCreationExpression1.errors.txt │ ├── parserInvocationOfMemberAccessOffOfObjectCreationExpression1.js │ ├── parserInvocationOfMemberAccessOffOfObjectCreationExpression1.symbols │ ├── parserInvocationOfMemberAccessOffOfObjectCreationExpression1.types │ ├── parserIsClassMemberStart.js │ ├── parserIsClassMemberStart.symbols │ ├── parserIsClassMemberStart.types │ ├── parserKeywordsAsIdentifierName1.js │ ├── parserKeywordsAsIdentifierName1.symbols │ ├── parserKeywordsAsIdentifierName1.types │ ├── parserKeywordsAsIdentifierName2.errors.txt │ ├── parserKeywordsAsIdentifierName2.js │ ├── parserKeywordsAsIdentifierName2.symbols │ ├── parserKeywordsAsIdentifierName2.types │ ├── parserLabeledStatement1.d.errors.txt │ ├── parserLabeledStatement1.d.symbols │ ├── parserLabeledStatement1.d.types │ ├── parserMemberAccessAfterPostfixExpression1.errors.txt │ ├── parserMemberAccessAfterPostfixExpression1.js │ ├── parserMemberAccessAfterPostfixExpression1.symbols │ ├── parserMemberAccessAfterPostfixExpression1.types │ ├── parserMemberAccessExpression1.errors.txt │ ├── parserMemberAccessExpression1.js │ ├── parserMemberAccessExpression1.symbols │ ├── parserMemberAccessExpression1.types │ ├── parserMemberAccessOffOfGenericType1.errors.txt │ ├── parserMemberAccessOffOfGenericType1.js │ ├── parserMemberAccessOffOfGenericType1.symbols │ ├── parserMemberAccessOffOfGenericType1.types │ ├── parserMemberAccessor1(target=es2015).errors.txt │ ├── parserMemberAccessor1(target=es2015).js │ ├── parserMemberAccessor1(target=es2015).symbols │ ├── parserMemberAccessor1(target=es2015).types │ ├── parserMemberAccessor1(target=es5).errors.txt │ ├── parserMemberAccessor1(target=es5).js │ ├── parserMemberAccessor1(target=es5).symbols │ ├── parserMemberAccessor1(target=es5).types │ ├── parserMemberAccessorDeclaration1(target=es2015).errors.txt │ ├── parserMemberAccessorDeclaration1(target=es2015).js │ ├── parserMemberAccessorDeclaration1(target=es2015).symbols │ ├── parserMemberAccessorDeclaration1(target=es2015).types │ ├── parserMemberAccessorDeclaration1(target=es5).errors.txt │ ├── parserMemberAccessorDeclaration1(target=es5).js │ ├── parserMemberAccessorDeclaration1(target=es5).symbols │ ├── parserMemberAccessorDeclaration1(target=es5).types │ ├── parserMemberAccessorDeclaration10(target=es2015).errors.txt │ ├── parserMemberAccessorDeclaration10(target=es2015).js │ ├── parserMemberAccessorDeclaration10(target=es2015).symbols │ ├── parserMemberAccessorDeclaration10(target=es2015).types │ ├── parserMemberAccessorDeclaration10(target=es5).errors.txt │ ├── parserMemberAccessorDeclaration10(target=es5).js │ ├── parserMemberAccessorDeclaration10(target=es5).symbols │ ├── parserMemberAccessorDeclaration10(target=es5).types │ ├── parserMemberAccessorDeclaration11(target=es2015).errors.txt │ ├── parserMemberAccessorDeclaration11(target=es2015).js │ ├── parserMemberAccessorDeclaration11(target=es2015).symbols │ ├── parserMemberAccessorDeclaration11(target=es2015).types │ ├── parserMemberAccessorDeclaration11(target=es5).errors.txt │ ├── parserMemberAccessorDeclaration11(target=es5).js │ ├── parserMemberAccessorDeclaration11(target=es5).symbols │ ├── parserMemberAccessorDeclaration11(target=es5).types │ ├── parserMemberAccessorDeclaration12(target=es2015).errors.txt │ ├── parserMemberAccessorDeclaration12(target=es2015).js │ ├── parserMemberAccessorDeclaration12(target=es2015).symbols │ ├── parserMemberAccessorDeclaration12(target=es2015).types │ ├── parserMemberAccessorDeclaration12(target=es5).errors.txt │ ├── parserMemberAccessorDeclaration12(target=es5).js │ ├── parserMemberAccessorDeclaration12(target=es5).symbols │ ├── parserMemberAccessorDeclaration12(target=es5).types │ ├── parserMemberAccessorDeclaration13(target=es2015).errors.txt │ ├── parserMemberAccessorDeclaration13(target=es2015).js │ ├── parserMemberAccessorDeclaration13(target=es2015).symbols │ ├── parserMemberAccessorDeclaration13(target=es2015).types │ ├── parserMemberAccessorDeclaration13(target=es5).errors.txt │ ├── parserMemberAccessorDeclaration13(target=es5).js │ ├── parserMemberAccessorDeclaration13(target=es5).symbols │ ├── parserMemberAccessorDeclaration13(target=es5).types │ ├── parserMemberAccessorDeclaration14(target=es2015).errors.txt │ ├── parserMemberAccessorDeclaration14(target=es2015).js │ ├── parserMemberAccessorDeclaration14(target=es2015).symbols │ ├── parserMemberAccessorDeclaration14(target=es2015).types │ ├── parserMemberAccessorDeclaration14(target=es5).errors.txt │ ├── parserMemberAccessorDeclaration14(target=es5).js │ ├── parserMemberAccessorDeclaration14(target=es5).symbols │ ├── parserMemberAccessorDeclaration14(target=es5).types │ ├── parserMemberAccessorDeclaration15(target=es2015).errors.txt │ ├── parserMemberAccessorDeclaration15(target=es2015).js │ ├── parserMemberAccessorDeclaration15(target=es2015).symbols │ ├── parserMemberAccessorDeclaration15(target=es2015).types │ ├── parserMemberAccessorDeclaration15(target=es5).errors.txt │ ├── parserMemberAccessorDeclaration15(target=es5).js │ ├── parserMemberAccessorDeclaration15(target=es5).symbols │ ├── parserMemberAccessorDeclaration15(target=es5).types │ ├── parserMemberAccessorDeclaration16(target=es2015).errors.txt │ ├── parserMemberAccessorDeclaration16(target=es2015).js │ ├── parserMemberAccessorDeclaration16(target=es2015).symbols │ ├── parserMemberAccessorDeclaration16(target=es2015).types │ ├── parserMemberAccessorDeclaration16(target=es5).errors.txt │ ├── parserMemberAccessorDeclaration16(target=es5).js │ ├── parserMemberAccessorDeclaration16(target=es5).symbols │ ├── parserMemberAccessorDeclaration16(target=es5).types │ ├── parserMemberAccessorDeclaration17(target=es2015).errors.txt │ ├── parserMemberAccessorDeclaration17(target=es2015).js │ ├── parserMemberAccessorDeclaration17(target=es2015).symbols │ ├── parserMemberAccessorDeclaration17(target=es2015).types │ ├── parserMemberAccessorDeclaration17(target=es5).errors.txt │ ├── parserMemberAccessorDeclaration17(target=es5).js │ ├── parserMemberAccessorDeclaration17(target=es5).symbols │ ├── parserMemberAccessorDeclaration17(target=es5).types │ ├── parserMemberAccessorDeclaration18(target=es2015).errors.txt │ ├── parserMemberAccessorDeclaration18(target=es2015).js │ ├── parserMemberAccessorDeclaration18(target=es2015).symbols │ ├── parserMemberAccessorDeclaration18(target=es2015).types │ ├── parserMemberAccessorDeclaration18(target=es5).errors.txt │ ├── parserMemberAccessorDeclaration18(target=es5).js │ ├── parserMemberAccessorDeclaration18(target=es5).symbols │ ├── parserMemberAccessorDeclaration18(target=es5).types │ ├── parserMemberAccessorDeclaration2(target=es2015).errors.txt │ ├── parserMemberAccessorDeclaration2(target=es2015).js │ ├── parserMemberAccessorDeclaration2(target=es2015).symbols │ ├── parserMemberAccessorDeclaration2(target=es2015).types │ ├── parserMemberAccessorDeclaration2(target=es5).errors.txt │ ├── parserMemberAccessorDeclaration2(target=es5).js │ ├── parserMemberAccessorDeclaration2(target=es5).symbols │ ├── parserMemberAccessorDeclaration2(target=es5).types │ ├── parserMemberAccessorDeclaration3(target=es2015).errors.txt │ ├── parserMemberAccessorDeclaration3(target=es2015).js │ ├── parserMemberAccessorDeclaration3(target=es2015).symbols │ ├── parserMemberAccessorDeclaration3(target=es2015).types │ ├── parserMemberAccessorDeclaration3(target=es5).errors.txt │ ├── parserMemberAccessorDeclaration3(target=es5).js │ ├── parserMemberAccessorDeclaration3(target=es5).symbols │ ├── parserMemberAccessorDeclaration3(target=es5).types │ ├── parserMemberAccessorDeclaration4(target=es2015).js │ ├── parserMemberAccessorDeclaration4(target=es2015).symbols │ ├── parserMemberAccessorDeclaration4(target=es2015).types │ ├── parserMemberAccessorDeclaration4(target=es5).errors.txt │ ├── parserMemberAccessorDeclaration4(target=es5).js │ ├── parserMemberAccessorDeclaration4(target=es5).symbols │ ├── parserMemberAccessorDeclaration4(target=es5).types │ ├── parserMemberAccessorDeclaration5(target=es2015).js │ ├── parserMemberAccessorDeclaration5(target=es2015).symbols │ ├── parserMemberAccessorDeclaration5(target=es2015).types │ ├── parserMemberAccessorDeclaration5(target=es5).errors.txt │ ├── parserMemberAccessorDeclaration5(target=es5).js │ ├── parserMemberAccessorDeclaration5(target=es5).symbols │ ├── parserMemberAccessorDeclaration5(target=es5).types │ ├── parserMemberAccessorDeclaration6(target=es2015).js │ ├── parserMemberAccessorDeclaration6(target=es2015).symbols │ ├── parserMemberAccessorDeclaration6(target=es2015).types │ ├── parserMemberAccessorDeclaration6(target=es5).errors.txt │ ├── parserMemberAccessorDeclaration6(target=es5).js │ ├── parserMemberAccessorDeclaration6(target=es5).symbols │ ├── parserMemberAccessorDeclaration6(target=es5).types │ ├── parserMemberAccessorDeclaration7(target=es2015).errors.txt │ ├── parserMemberAccessorDeclaration7(target=es2015).js │ ├── parserMemberAccessorDeclaration7(target=es2015).symbols │ ├── parserMemberAccessorDeclaration7(target=es2015).types │ ├── parserMemberAccessorDeclaration7(target=es5).errors.txt │ ├── parserMemberAccessorDeclaration7(target=es5).js │ ├── parserMemberAccessorDeclaration7(target=es5).symbols │ ├── parserMemberAccessorDeclaration7(target=es5).types │ ├── parserMemberAccessorDeclaration8(target=es2015).errors.txt │ ├── parserMemberAccessorDeclaration8(target=es2015).js │ ├── parserMemberAccessorDeclaration8(target=es2015).symbols │ ├── parserMemberAccessorDeclaration8(target=es2015).types │ ├── parserMemberAccessorDeclaration8(target=es5).errors.txt │ ├── parserMemberAccessorDeclaration8(target=es5).js │ ├── parserMemberAccessorDeclaration8(target=es5).symbols │ ├── parserMemberAccessorDeclaration8(target=es5).types │ ├── parserMemberAccessorDeclaration9(target=es2015).errors.txt │ ├── parserMemberAccessorDeclaration9(target=es2015).js │ ├── parserMemberAccessorDeclaration9(target=es2015).symbols │ ├── parserMemberAccessorDeclaration9(target=es2015).types │ ├── parserMemberAccessorDeclaration9(target=es5).errors.txt │ ├── parserMemberAccessorDeclaration9(target=es5).js │ ├── parserMemberAccessorDeclaration9(target=es5).symbols │ ├── parserMemberAccessorDeclaration9(target=es5).types │ ├── parserMemberFunctionDeclaration1.errors.txt │ ├── parserMemberFunctionDeclaration1.js │ ├── parserMemberFunctionDeclaration1.symbols │ ├── parserMemberFunctionDeclaration1.types │ ├── parserMemberFunctionDeclaration2.errors.txt │ ├── parserMemberFunctionDeclaration2.js │ ├── parserMemberFunctionDeclaration2.symbols │ ├── parserMemberFunctionDeclaration2.types │ ├── parserMemberFunctionDeclaration3.errors.txt │ ├── parserMemberFunctionDeclaration3.js │ ├── parserMemberFunctionDeclaration3.symbols │ ├── parserMemberFunctionDeclaration3.types │ ├── parserMemberFunctionDeclaration4.errors.txt │ ├── parserMemberFunctionDeclaration4.js │ ├── parserMemberFunctionDeclaration4.symbols │ ├── parserMemberFunctionDeclaration4.types │ ├── parserMemberFunctionDeclaration5.errors.txt │ ├── parserMemberFunctionDeclaration5.js │ ├── parserMemberFunctionDeclaration5.symbols │ ├── parserMemberFunctionDeclaration5.types │ ├── parserMemberFunctionDeclarationAmbiguities1.errors.txt │ ├── parserMemberFunctionDeclarationAmbiguities1.js │ ├── parserMemberFunctionDeclarationAmbiguities1.symbols │ ├── parserMemberFunctionDeclarationAmbiguities1.types │ ├── parserMemberVariableDeclaration1.errors.txt │ ├── parserMemberVariableDeclaration1.js │ ├── parserMemberVariableDeclaration1.symbols │ ├── parserMemberVariableDeclaration1.types │ ├── parserMemberVariableDeclaration2.errors.txt │ ├── parserMemberVariableDeclaration2.js │ ├── parserMemberVariableDeclaration2.symbols │ ├── parserMemberVariableDeclaration2.types │ ├── parserMemberVariableDeclaration3.errors.txt │ ├── parserMemberVariableDeclaration3.js │ ├── parserMemberVariableDeclaration3.symbols │ ├── parserMemberVariableDeclaration3.types │ ├── parserMemberVariableDeclaration4.errors.txt │ ├── parserMemberVariableDeclaration4.js │ ├── parserMemberVariableDeclaration4.symbols │ ├── parserMemberVariableDeclaration4.types │ ├── parserMemberVariableDeclaration5.js │ ├── parserMemberVariableDeclaration5.symbols │ ├── parserMemberVariableDeclaration5.types │ ├── parserMethodSignature1.js │ ├── parserMethodSignature1.symbols │ ├── parserMethodSignature1.types │ ├── parserMethodSignature10.js │ ├── parserMethodSignature10.symbols │ ├── parserMethodSignature10.types │ ├── parserMethodSignature11.js │ ├── parserMethodSignature11.symbols │ ├── parserMethodSignature11.types │ ├── parserMethodSignature12.js │ ├── parserMethodSignature12.symbols │ ├── parserMethodSignature12.types │ ├── parserMethodSignature2.js │ ├── parserMethodSignature2.symbols │ ├── parserMethodSignature2.types │ ├── parserMethodSignature3.js │ ├── parserMethodSignature3.symbols │ ├── parserMethodSignature3.types │ ├── parserMethodSignature4.js │ ├── parserMethodSignature4.symbols │ ├── parserMethodSignature4.types │ ├── parserMethodSignature5.js │ ├── parserMethodSignature5.symbols │ ├── parserMethodSignature5.types │ ├── parserMethodSignature6.js │ ├── parserMethodSignature6.symbols │ ├── parserMethodSignature6.types │ ├── parserMethodSignature7.js │ ├── parserMethodSignature7.symbols │ ├── parserMethodSignature7.types │ ├── parserMethodSignature8.js │ ├── parserMethodSignature8.symbols │ ├── parserMethodSignature8.types │ ├── parserMethodSignature9.js │ ├── parserMethodSignature9.symbols │ ├── parserMethodSignature9.types │ ├── parserMissingLambdaOpenBrace1.errors.txt │ ├── parserMissingLambdaOpenBrace1.js │ ├── parserMissingLambdaOpenBrace1.symbols │ ├── parserMissingLambdaOpenBrace1.types │ ├── parserMissingToken1.errors.txt │ ├── parserMissingToken1.js │ ├── parserMissingToken1.symbols │ ├── parserMissingToken1.types │ ├── parserMissingToken2.errors.txt │ ├── parserMissingToken2.js │ ├── parserMissingToken2.symbols │ ├── parserMissingToken2.types │ ├── parserModifierOnPropertySignature1.errors.txt │ ├── parserModifierOnPropertySignature1.js │ ├── parserModifierOnPropertySignature1.symbols │ ├── parserModifierOnPropertySignature1.types │ ├── parserModifierOnPropertySignature2.js │ ├── parserModifierOnPropertySignature2.symbols │ ├── parserModifierOnPropertySignature2.types │ ├── parserModifierOnStatementInBlock1.errors.txt │ ├── parserModifierOnStatementInBlock1.js │ ├── parserModifierOnStatementInBlock1.symbols │ ├── parserModifierOnStatementInBlock1.types │ ├── parserModifierOnStatementInBlock2.errors.txt │ ├── parserModifierOnStatementInBlock2.js │ ├── parserModifierOnStatementInBlock2.symbols │ ├── parserModifierOnStatementInBlock2.types │ ├── parserModifierOnStatementInBlock3.errors.txt │ ├── parserModifierOnStatementInBlock3.js │ ├── parserModifierOnStatementInBlock3.symbols │ ├── parserModifierOnStatementInBlock3.types │ ├── parserModifierOnStatementInBlock4.errors.txt │ ├── parserModifierOnStatementInBlock4.js │ ├── parserModifierOnStatementInBlock4.symbols │ ├── parserModifierOnStatementInBlock4.types │ ├── parserModule1.errors.txt │ ├── parserModule1.js │ ├── parserModule1.symbols │ ├── parserModule1.types │ ├── parserModuleDeclaration1.d.errors.txt │ ├── parserModuleDeclaration1.d.symbols │ ├── parserModuleDeclaration1.d.types │ ├── parserModuleDeclaration1.errors.txt │ ├── parserModuleDeclaration1.js │ ├── parserModuleDeclaration1.symbols │ ├── parserModuleDeclaration1.types │ ├── parserModuleDeclaration10.errors.txt │ ├── parserModuleDeclaration10.js │ ├── parserModuleDeclaration10.symbols │ ├── parserModuleDeclaration10.types │ ├── parserModuleDeclaration11.js │ ├── parserModuleDeclaration11.symbols │ ├── parserModuleDeclaration11.types │ ├── parserModuleDeclaration12.js │ ├── parserModuleDeclaration12.symbols │ ├── parserModuleDeclaration12.types │ ├── parserModuleDeclaration2.d.errors.txt │ ├── parserModuleDeclaration2.d.symbols │ ├── parserModuleDeclaration2.d.types │ ├── parserModuleDeclaration2.js │ ├── parserModuleDeclaration2.symbols │ ├── parserModuleDeclaration2.types │ ├── parserModuleDeclaration3.d.symbols │ ├── parserModuleDeclaration3.d.types │ ├── parserModuleDeclaration3.errors.txt │ ├── parserModuleDeclaration3.js │ ├── parserModuleDeclaration3.symbols │ ├── parserModuleDeclaration3.types │ ├── parserModuleDeclaration4.d.errors.txt │ ├── parserModuleDeclaration4.d.symbols │ ├── parserModuleDeclaration4.d.types │ ├── parserModuleDeclaration4.js │ ├── parserModuleDeclaration4.symbols │ ├── parserModuleDeclaration4.types │ ├── parserModuleDeclaration5.errors.txt │ ├── parserModuleDeclaration5.js │ ├── parserModuleDeclaration5.symbols │ ├── parserModuleDeclaration5.types │ ├── parserModuleDeclaration6.js │ ├── parserModuleDeclaration6.symbols │ ├── parserModuleDeclaration6.types │ ├── parserModuleDeclaration7.js │ ├── parserModuleDeclaration7.symbols │ ├── parserModuleDeclaration7.types │ ├── parserModuleDeclaration8.js │ ├── parserModuleDeclaration8.symbols │ ├── parserModuleDeclaration8.types │ ├── parserModuleDeclaration9.js │ ├── parserModuleDeclaration9.symbols │ ├── parserModuleDeclaration9.types │ ├── parserNoASIOnCallAfterFunctionExpression1.errors.txt │ ├── parserNoASIOnCallAfterFunctionExpression1.js │ ├── parserNoASIOnCallAfterFunctionExpression1.symbols │ ├── parserNoASIOnCallAfterFunctionExpression1.types │ ├── parserNotHexLiteral1.js │ ├── parserNotHexLiteral1.symbols │ ├── parserNotHexLiteral1.types │ ├── parserNotRegex1.errors.txt │ ├── parserNotRegex1.js │ ├── parserNotRegex1.symbols │ ├── parserNotRegex1.types │ ├── parserNotRegex2.js │ ├── parserNotRegex2.symbols │ ├── parserNotRegex2.types │ ├── parserObjectCreation1.errors.txt │ ├── parserObjectCreation1.js │ ├── parserObjectCreation1.symbols │ ├── parserObjectCreation1.types │ ├── parserObjectCreation2.errors.txt │ ├── parserObjectCreation2.js │ ├── parserObjectCreation2.symbols │ ├── parserObjectCreation2.types │ ├── parserObjectCreationArrayLiteral1.errors.txt │ ├── parserObjectCreationArrayLiteral1.js │ ├── parserObjectCreationArrayLiteral1.symbols │ ├── parserObjectCreationArrayLiteral1.types │ ├── parserObjectCreationArrayLiteral2.errors.txt │ ├── parserObjectCreationArrayLiteral2.js │ ├── parserObjectCreationArrayLiteral2.symbols │ ├── parserObjectCreationArrayLiteral2.types │ ├── parserObjectCreationArrayLiteral3.errors.txt │ ├── parserObjectCreationArrayLiteral3.js │ ├── parserObjectCreationArrayLiteral3.symbols │ ├── parserObjectCreationArrayLiteral3.types │ ├── parserObjectCreationArrayLiteral4.errors.txt │ ├── parserObjectCreationArrayLiteral4.js │ ├── parserObjectCreationArrayLiteral4.symbols │ ├── parserObjectCreationArrayLiteral4.types │ ├── parserObjectLiterals1.js │ ├── parserObjectLiterals1.symbols │ ├── parserObjectLiterals1.types │ ├── parserObjectType1.js │ ├── parserObjectType1.symbols │ ├── parserObjectType1.types │ ├── parserObjectType2.js │ ├── parserObjectType2.symbols │ ├── parserObjectType2.types │ ├── parserObjectType3.js │ ├── parserObjectType3.symbols │ ├── parserObjectType3.types │ ├── parserObjectType4.js │ ├── parserObjectType4.symbols │ ├── parserObjectType4.types │ ├── parserObjectType5.errors.txt │ ├── parserObjectType5.js │ ├── parserObjectType5.symbols │ ├── parserObjectType5.types │ ├── parserObjectType6.errors.txt │ ├── parserObjectType6.js │ ├── parserObjectType6.symbols │ ├── parserObjectType6.types │ ├── parserOptionalTypeMembers1.js │ ├── parserOptionalTypeMembers1.symbols │ ├── parserOptionalTypeMembers1.types │ ├── parserOverloadOnConstants1.js │ ├── parserOverloadOnConstants1.symbols │ ├── parserOverloadOnConstants1.types │ ├── parserParameterList1.errors.txt │ ├── parserParameterList1.js │ ├── parserParameterList1.symbols │ ├── parserParameterList1.types │ ├── parserParameterList10.errors.txt │ ├── parserParameterList10.js │ ├── parserParameterList10.symbols │ ├── parserParameterList10.types │ ├── parserParameterList11.errors.txt │ ├── parserParameterList11.js │ ├── parserParameterList11.symbols │ ├── parserParameterList11.types │ ├── parserParameterList12.js │ ├── parserParameterList12.symbols │ ├── parserParameterList12.types │ ├── parserParameterList13.errors.txt │ ├── parserParameterList13.js │ ├── parserParameterList13.symbols │ ├── parserParameterList13.types │ ├── parserParameterList14.errors.txt │ ├── parserParameterList14.js │ ├── parserParameterList14.symbols │ ├── parserParameterList14.types │ ├── parserParameterList15.errors.txt │ ├── parserParameterList15.js │ ├── parserParameterList15.symbols │ ├── parserParameterList15.types │ ├── parserParameterList16.errors.txt │ ├── parserParameterList16.js │ ├── parserParameterList16.symbols │ ├── parserParameterList16.types │ ├── parserParameterList17.errors.txt │ ├── parserParameterList17.js │ ├── parserParameterList17.symbols │ ├── parserParameterList17.types │ ├── parserParameterList2.errors.txt │ ├── parserParameterList2.js │ ├── parserParameterList2.symbols │ ├── parserParameterList2.types │ ├── parserParameterList3.errors.txt │ ├── parserParameterList3.js │ ├── parserParameterList3.symbols │ ├── parserParameterList3.types │ ├── parserParameterList4.errors.txt │ ├── parserParameterList4.js │ ├── parserParameterList4.symbols │ ├── parserParameterList4.types │ ├── parserParameterList5.errors.txt │ ├── parserParameterList5.js │ ├── parserParameterList5.symbols │ ├── parserParameterList5.types │ ├── parserParameterList6.errors.txt │ ├── parserParameterList6.js │ ├── parserParameterList6.symbols │ ├── parserParameterList6.types │ ├── parserParameterList7.errors.txt │ ├── parserParameterList7.js │ ├── parserParameterList7.symbols │ ├── parserParameterList7.types │ ├── parserParameterList8.errors.txt │ ├── parserParameterList8.js │ ├── parserParameterList8.symbols │ ├── parserParameterList8.types │ ├── parserParameterList9.errors.txt │ ├── parserParameterList9.js │ ├── parserParameterList9.symbols │ ├── parserParameterList9.types │ ├── parserParenthesizedVariableAndFunctionInTernary.js │ ├── parserParenthesizedVariableAndFunctionInTernary.symbols │ ├── parserParenthesizedVariableAndFunctionInTernary.types │ ├── parserParenthesizedVariableAndParenthesizedFunctionInTernary.js │ ├── parserParenthesizedVariableAndParenthesizedFunctionInTernary.symbols │ ├── parserParenthesizedVariableAndParenthesizedFunctionInTernary.types │ ├── parserPostfixPostfixExpression1.errors.txt │ ├── parserPostfixPostfixExpression1.js │ ├── parserPostfixPostfixExpression1.symbols │ ├── parserPostfixPostfixExpression1.types │ ├── parserPostfixUnaryExpression1.errors.txt │ ├── parserPostfixUnaryExpression1.js │ ├── parserPostfixUnaryExpression1.symbols │ ├── parserPostfixUnaryExpression1.types │ ├── parserPrivateIdentifierInArrayAssignment.errors.txt │ ├── parserPrivateIdentifierInArrayAssignment.js │ ├── parserPrivateIdentifierInArrayAssignment.symbols │ ├── parserPrivateIdentifierInArrayAssignment.types │ ├── parserPropertySignature1.js │ ├── parserPropertySignature1.symbols │ ├── parserPropertySignature1.types │ ├── parserPropertySignature10.js │ ├── parserPropertySignature10.symbols │ ├── parserPropertySignature10.types │ ├── parserPropertySignature11.js │ ├── parserPropertySignature11.symbols │ ├── parserPropertySignature11.types │ ├── parserPropertySignature12.js │ ├── parserPropertySignature12.symbols │ ├── parserPropertySignature12.types │ ├── parserPropertySignature2.js │ ├── parserPropertySignature2.symbols │ ├── parserPropertySignature2.types │ ├── parserPropertySignature3.js │ ├── parserPropertySignature3.symbols │ ├── parserPropertySignature3.types │ ├── parserPropertySignature4.js │ ├── parserPropertySignature4.symbols │ ├── parserPropertySignature4.types │ ├── parserPropertySignature5.js │ ├── parserPropertySignature5.symbols │ ├── parserPropertySignature5.types │ ├── parserPropertySignature6.js │ ├── parserPropertySignature6.symbols │ ├── parserPropertySignature6.types │ ├── parserPropertySignature7.js │ ├── parserPropertySignature7.symbols │ ├── parserPropertySignature7.types │ ├── parserPropertySignature8.js │ ├── parserPropertySignature8.symbols │ ├── parserPropertySignature8.types │ ├── parserPropertySignature9.js │ ├── parserPropertySignature9.symbols │ ├── parserPropertySignature9.types │ ├── parserPublicBreak1.errors.txt │ ├── parserPublicBreak1.js │ ├── parserPublicBreak1.symbols │ ├── parserPublicBreak1.types │ ├── parserRealSource1.errors.txt │ ├── parserRealSource1.js │ ├── parserRealSource1.symbols │ ├── parserRealSource1.types │ ├── parserRealSource10.errors.txt │ ├── parserRealSource10.js │ ├── parserRealSource10.symbols │ ├── parserRealSource10.types │ ├── parserRealSource11.errors.txt │ ├── parserRealSource11.js │ ├── parserRealSource11.symbols │ ├── parserRealSource11.types │ ├── parserRealSource12.errors.txt │ ├── parserRealSource12.js │ ├── parserRealSource12.symbols │ ├── parserRealSource12.types │ ├── parserRealSource13.errors.txt │ ├── parserRealSource13.js │ ├── parserRealSource13.symbols │ ├── parserRealSource13.types │ ├── parserRealSource14.errors.txt │ ├── parserRealSource14.js │ ├── parserRealSource14.symbols │ ├── parserRealSource14.types │ ├── parserRealSource2.errors.txt │ ├── parserRealSource2.js │ ├── parserRealSource2.symbols │ ├── parserRealSource2.types │ ├── parserRealSource3.errors.txt │ ├── parserRealSource3.js │ ├── parserRealSource3.symbols │ ├── parserRealSource3.types │ ├── parserRealSource4.errors.txt │ ├── parserRealSource4.js │ ├── parserRealSource4.symbols │ ├── parserRealSource4.types │ ├── parserRealSource5.errors.txt │ ├── parserRealSource5.js │ ├── parserRealSource5.symbols │ ├── parserRealSource5.types │ ├── parserRealSource6.errors.txt │ ├── parserRealSource6.js │ ├── parserRealSource6.symbols │ ├── parserRealSource6.types │ ├── parserRealSource7.errors.txt │ ├── parserRealSource7.js │ ├── parserRealSource7.symbols │ ├── parserRealSource7.types │ ├── parserRealSource8.errors.txt │ ├── parserRealSource8.js │ ├── parserRealSource8.symbols │ ├── parserRealSource8.types │ ├── parserRealSource9.errors.txt │ ├── parserRealSource9.js │ ├── parserRealSource9.symbols │ ├── parserRealSource9.types │ ├── parserRegularExpression1.js │ ├── parserRegularExpression1.symbols │ ├── parserRegularExpression1.types │ ├── parserRegularExpression2.errors.txt │ ├── parserRegularExpression2.js │ ├── parserRegularExpression2.symbols │ ├── parserRegularExpression2.types │ ├── parserRegularExpression3.errors.txt │ ├── parserRegularExpression3.js │ ├── parserRegularExpression3.symbols │ ├── parserRegularExpression3.types │ ├── parserRegularExpression4.errors.txt │ ├── parserRegularExpression4.js │ ├── parserRegularExpression4.symbols │ ├── parserRegularExpression4.types │ ├── parserRegularExpression5.errors.txt │ ├── parserRegularExpression5.js │ ├── parserRegularExpression5.symbols │ ├── parserRegularExpression5.types │ ├── parserRegularExpression6.js │ ├── parserRegularExpression6.symbols │ ├── parserRegularExpression6.types │ ├── parserRegularExpressionDivideAmbiguity1.errors.txt │ ├── parserRegularExpressionDivideAmbiguity1.js │ ├── parserRegularExpressionDivideAmbiguity1.symbols │ ├── parserRegularExpressionDivideAmbiguity1.types │ ├── parserRegularExpressionDivideAmbiguity2.errors.txt │ ├── parserRegularExpressionDivideAmbiguity2.js │ ├── parserRegularExpressionDivideAmbiguity2.symbols │ ├── parserRegularExpressionDivideAmbiguity2.types │ ├── parserRegularExpressionDivideAmbiguity3.errors.txt │ ├── parserRegularExpressionDivideAmbiguity3.js │ ├── parserRegularExpressionDivideAmbiguity3.symbols │ ├── parserRegularExpressionDivideAmbiguity3.types │ ├── parserRegularExpressionDivideAmbiguity4.errors.txt │ ├── parserRegularExpressionDivideAmbiguity4.js │ ├── parserRegularExpressionDivideAmbiguity4.symbols │ ├── parserRegularExpressionDivideAmbiguity4.types │ ├── parserRegularExpressionDivideAmbiguity5.errors.txt │ ├── parserRegularExpressionDivideAmbiguity5.js │ ├── parserRegularExpressionDivideAmbiguity5.symbols │ ├── parserRegularExpressionDivideAmbiguity5.types │ ├── parserRegularExpressionDivideAmbiguity6.js │ ├── parserRegularExpressionDivideAmbiguity6.symbols │ ├── parserRegularExpressionDivideAmbiguity6.types │ ├── parserRegularExpressionDivideAmbiguity7.errors.txt │ ├── parserRegularExpressionDivideAmbiguity7.js │ ├── parserRegularExpressionDivideAmbiguity7.symbols │ ├── parserRegularExpressionDivideAmbiguity7.types │ ├── parserReturnStatement1.d.errors.txt │ ├── parserReturnStatement1.d.symbols │ ├── parserReturnStatement1.d.types │ ├── parserReturnStatement1.errors.txt │ ├── parserReturnStatement1.js │ ├── parserReturnStatement1.symbols │ ├── parserReturnStatement1.types │ ├── parserReturnStatement2.errors.txt │ ├── parserReturnStatement2.js │ ├── parserReturnStatement2.symbols │ ├── parserReturnStatement2.types │ ├── parserReturnStatement3.js │ ├── parserReturnStatement3.symbols │ ├── parserReturnStatement3.types │ ├── parserReturnStatement4.js │ ├── parserReturnStatement4.symbols │ ├── parserReturnStatement4.types │ ├── parserS12.11_A3_T4.errors.txt │ ├── parserS12.11_A3_T4.js │ ├── parserS12.11_A3_T4.symbols │ ├── parserS12.11_A3_T4.types │ ├── parserS7.2_A1.5_T2.errors.txt │ ├── parserS7.2_A1.5_T2.js │ ├── parserS7.2_A1.5_T2.symbols │ ├── parserS7.2_A1.5_T2.types │ ├── parserS7.3_A1.1_T2.errors.txt │ ├── parserS7.3_A1.1_T2.js │ ├── parserS7.3_A1.1_T2.symbols │ ├── parserS7.3_A1.1_T2.types │ ├── parserS7.6.1.1_A1.10.js │ ├── parserS7.6.1.1_A1.10.symbols │ ├── parserS7.6.1.1_A1.10.types │ ├── parserS7.6_A4.2_T1.errors.txt │ ├── parserS7.6_A4.2_T1.js │ ├── parserS7.6_A4.2_T1.symbols │ ├── parserS7.6_A4.2_T1.types │ ├── parserS7.9_A5.7_T1.errors.txt │ ├── parserS7.9_A5.7_T1.js │ ├── parserS7.9_A5.7_T1.symbols │ ├── parserS7.9_A5.7_T1.types │ ├── parserSbp_7.9_A9_T3.js │ ├── parserSbp_7.9_A9_T3.symbols │ ├── parserSbp_7.9_A9_T3.types │ ├── parserSetAccessorWithTypeAnnotation1(target=es2015).errors.txt │ ├── parserSetAccessorWithTypeAnnotation1(target=es2015).js │ ├── parserSetAccessorWithTypeAnnotation1(target=es2015).symbols │ ├── parserSetAccessorWithTypeAnnotation1(target=es2015).types │ ├── parserSetAccessorWithTypeAnnotation1(target=es5).errors.txt │ ├── parserSetAccessorWithTypeAnnotation1(target=es5).js │ ├── parserSetAccessorWithTypeAnnotation1(target=es5).symbols │ ├── parserSetAccessorWithTypeAnnotation1(target=es5).types │ ├── parserSetAccessorWithTypeParameters1(target=es2015).errors.txt │ ├── parserSetAccessorWithTypeParameters1(target=es2015).js │ ├── parserSetAccessorWithTypeParameters1(target=es2015).symbols │ ├── parserSetAccessorWithTypeParameters1(target=es2015).types │ ├── parserSetAccessorWithTypeParameters1(target=es5).errors.txt │ ├── parserSetAccessorWithTypeParameters1(target=es5).js │ ├── parserSetAccessorWithTypeParameters1(target=es5).symbols │ ├── parserSetAccessorWithTypeParameters1(target=es5).types │ ├── parserShorthandPropertyAssignment1.errors.txt │ ├── parserShorthandPropertyAssignment1.js │ ├── parserShorthandPropertyAssignment1.symbols │ ├── parserShorthandPropertyAssignment1.types │ ├── parserShorthandPropertyAssignment2.errors.txt │ ├── parserShorthandPropertyAssignment2.js │ ├── parserShorthandPropertyAssignment2.symbols │ ├── parserShorthandPropertyAssignment2.types │ ├── parserShorthandPropertyAssignment3.errors.txt │ ├── parserShorthandPropertyAssignment3.js │ ├── parserShorthandPropertyAssignment3.symbols │ ├── parserShorthandPropertyAssignment3.types │ ├── parserShorthandPropertyAssignment4.errors.txt │ ├── parserShorthandPropertyAssignment4.js │ ├── parserShorthandPropertyAssignment4.symbols │ ├── parserShorthandPropertyAssignment4.types │ ├── parserShorthandPropertyAssignment5.errors.txt │ ├── parserShorthandPropertyAssignment5.js │ ├── parserShorthandPropertyAssignment5.symbols │ ├── parserShorthandPropertyAssignment5.types │ ├── parserSkippedTokens1.errors.txt │ ├── parserSkippedTokens1.js │ ├── parserSkippedTokens1.symbols │ ├── parserSkippedTokens1.types │ ├── parserSkippedTokens10.errors.txt │ ├── parserSkippedTokens10.js │ ├── parserSkippedTokens10.symbols │ ├── parserSkippedTokens10.types │ ├── parserSkippedTokens11.errors.txt │ ├── parserSkippedTokens11.js │ ├── parserSkippedTokens11.symbols │ ├── parserSkippedTokens11.types │ ├── parserSkippedTokens12.errors.txt │ ├── parserSkippedTokens12.js │ ├── parserSkippedTokens12.symbols │ ├── parserSkippedTokens12.types │ ├── parserSkippedTokens13.errors.txt │ ├── parserSkippedTokens13.js │ ├── parserSkippedTokens13.symbols │ ├── parserSkippedTokens13.types │ ├── parserSkippedTokens14.errors.txt │ ├── parserSkippedTokens14.js │ ├── parserSkippedTokens14.symbols │ ├── parserSkippedTokens14.types │ ├── parserSkippedTokens15.errors.txt │ ├── parserSkippedTokens15.js │ ├── parserSkippedTokens15.symbols │ ├── parserSkippedTokens15.types │ ├── parserSkippedTokens16.errors.txt │ ├── parserSkippedTokens16.js │ ├── parserSkippedTokens16.symbols │ ├── parserSkippedTokens16.types │ ├── parserSkippedTokens17.errors.txt │ ├── parserSkippedTokens17.js │ ├── parserSkippedTokens17.symbols │ ├── parserSkippedTokens17.types │ ├── parserSkippedTokens18.errors.txt │ ├── parserSkippedTokens18.js │ ├── parserSkippedTokens18.symbols │ ├── parserSkippedTokens18.types │ ├── parserSkippedTokens19.errors.txt │ ├── parserSkippedTokens19.js │ ├── parserSkippedTokens19.symbols │ ├── parserSkippedTokens19.types │ ├── parserSkippedTokens2.errors.txt │ ├── parserSkippedTokens2.js │ ├── parserSkippedTokens2.symbols │ ├── parserSkippedTokens2.types │ ├── parserSkippedTokens20.errors.txt │ ├── parserSkippedTokens20.js │ ├── parserSkippedTokens20.symbols │ ├── parserSkippedTokens20.types │ ├── parserSkippedTokens3.errors.txt │ ├── parserSkippedTokens3.js │ ├── parserSkippedTokens3.symbols │ ├── parserSkippedTokens3.types │ ├── parserSkippedTokens4.errors.txt │ ├── parserSkippedTokens4.js │ ├── parserSkippedTokens4.symbols │ ├── parserSkippedTokens4.types │ ├── parserSkippedTokens5.errors.txt │ ├── parserSkippedTokens5.js │ ├── parserSkippedTokens5.symbols │ ├── parserSkippedTokens5.types │ ├── parserSkippedTokens6.errors.txt │ ├── parserSkippedTokens6.js │ ├── parserSkippedTokens6.symbols │ ├── parserSkippedTokens6.types │ ├── parserSkippedTokens7.errors.txt │ ├── parserSkippedTokens7.js │ ├── parserSkippedTokens7.symbols │ ├── parserSkippedTokens7.types │ ├── parserSkippedTokens8.errors.txt │ ├── parserSkippedTokens8.js │ ├── parserSkippedTokens8.symbols │ ├── parserSkippedTokens8.types │ ├── parserSkippedTokens9.errors.txt │ ├── parserSkippedTokens9.js │ ├── parserSkippedTokens9.symbols │ ├── parserSkippedTokens9.types │ ├── parserStatementIsNotAMemberVariableDeclaration1(alwaysstrict=false).errors.txt │ ├── parserStatementIsNotAMemberVariableDeclaration1(alwaysstrict=false).js │ ├── parserStatementIsNotAMemberVariableDeclaration1(alwaysstrict=false).symbols │ ├── parserStatementIsNotAMemberVariableDeclaration1(alwaysstrict=false).types │ ├── parserStatementIsNotAMemberVariableDeclaration1(alwaysstrict=true).errors.txt │ ├── parserStatementIsNotAMemberVariableDeclaration1(alwaysstrict=true).js │ ├── parserStatementIsNotAMemberVariableDeclaration1(alwaysstrict=true).symbols │ ├── parserStatementIsNotAMemberVariableDeclaration1(alwaysstrict=true).types │ ├── parserStrictMode1.errors.txt │ ├── parserStrictMode1.js │ ├── parserStrictMode1.symbols │ ├── parserStrictMode1.types │ ├── parserStrictMode10.errors.txt │ ├── parserStrictMode10.js │ ├── parserStrictMode10.symbols │ ├── parserStrictMode10.types │ ├── parserStrictMode11.errors.txt │ ├── parserStrictMode11.js │ ├── parserStrictMode11.symbols │ ├── parserStrictMode11.types │ ├── parserStrictMode12(target=es2015).errors.txt │ ├── parserStrictMode12(target=es2015).js │ ├── parserStrictMode12(target=es2015).symbols │ ├── parserStrictMode12(target=es2015).types │ ├── parserStrictMode12(target=es5).errors.txt │ ├── parserStrictMode12(target=es5).js │ ├── parserStrictMode12(target=es5).symbols │ ├── parserStrictMode12(target=es5).types │ ├── parserStrictMode13.errors.txt │ ├── parserStrictMode13.js │ ├── parserStrictMode13.symbols │ ├── parserStrictMode13.types │ ├── parserStrictMode14.errors.txt │ ├── parserStrictMode14.js │ ├── parserStrictMode14.symbols │ ├── parserStrictMode14.types │ ├── parserStrictMode15-negative.errors.txt │ ├── parserStrictMode15-negative.js │ ├── parserStrictMode15-negative.symbols │ ├── parserStrictMode15-negative.types │ ├── parserStrictMode15.errors.txt │ ├── parserStrictMode15.js │ ├── parserStrictMode15.symbols │ ├── parserStrictMode15.types │ ├── parserStrictMode16.errors.txt │ ├── parserStrictMode16.js │ ├── parserStrictMode16.symbols │ ├── parserStrictMode16.types │ ├── parserStrictMode2.errors.txt │ ├── parserStrictMode2.js │ ├── parserStrictMode2.symbols │ ├── parserStrictMode2.types │ ├── parserStrictMode3-negative.errors.txt │ ├── parserStrictMode3-negative.js │ ├── parserStrictMode3-negative.symbols │ ├── parserStrictMode3-negative.types │ ├── parserStrictMode3.errors.txt │ ├── parserStrictMode3.js │ ├── parserStrictMode3.symbols │ ├── parserStrictMode3.types │ ├── parserStrictMode4.errors.txt │ ├── parserStrictMode4.js │ ├── parserStrictMode4.symbols │ ├── parserStrictMode4.types │ ├── parserStrictMode5.errors.txt │ ├── parserStrictMode5.js │ ├── parserStrictMode5.symbols │ ├── parserStrictMode5.types │ ├── parserStrictMode6-negative.errors.txt │ ├── parserStrictMode6-negative.js │ ├── parserStrictMode6-negative.symbols │ ├── parserStrictMode6-negative.types │ ├── parserStrictMode6.errors.txt │ ├── parserStrictMode6.js │ ├── parserStrictMode6.symbols │ ├── parserStrictMode6.types │ ├── parserStrictMode7.errors.txt │ ├── parserStrictMode7.js │ ├── parserStrictMode7.symbols │ ├── parserStrictMode7.types │ ├── parserStrictMode8.errors.txt │ ├── parserStrictMode8.js │ ├── parserStrictMode8.symbols │ ├── parserStrictMode8.types │ ├── parserStrictMode9.errors.txt │ ├── parserStrictMode9.js │ ├── parserStrictMode9.symbols │ ├── parserStrictMode9.types │ ├── parserSuperExpression1.errors.txt │ ├── parserSuperExpression1.js │ ├── parserSuperExpression1.symbols │ ├── parserSuperExpression1.types │ ├── parserSuperExpression2.errors.txt │ ├── parserSuperExpression2.js │ ├── parserSuperExpression2.symbols │ ├── parserSuperExpression2.types │ ├── parserSuperExpression3.errors.txt │ ├── parserSuperExpression3.js │ ├── parserSuperExpression3.symbols │ ├── parserSuperExpression3.types │ ├── parserSuperExpression4.errors.txt │ ├── parserSuperExpression4.js │ ├── parserSuperExpression4.symbols │ ├── parserSuperExpression4.types │ ├── parserSwitchStatement1.d.errors.txt │ ├── parserSwitchStatement1.d.symbols │ ├── parserSwitchStatement1.d.types │ ├── parserSymbolIndexer1.js │ ├── parserSymbolIndexer1.symbols │ ├── parserSymbolIndexer1.types │ ├── parserSymbolIndexer2.js │ ├── parserSymbolIndexer2.symbols │ ├── parserSymbolIndexer2.types │ ├── parserSymbolIndexer3.js │ ├── parserSymbolIndexer3.symbols │ ├── parserSymbolIndexer3.types │ ├── parserSymbolIndexer4.js │ ├── parserSymbolIndexer4.symbols │ ├── parserSymbolIndexer4.types │ ├── parserSymbolIndexer5.errors.txt │ ├── parserSymbolIndexer5.js │ ├── parserSymbolIndexer5.symbols │ ├── parserSymbolIndexer5.types │ ├── parserSymbolProperty1.js │ ├── parserSymbolProperty1.symbols │ ├── parserSymbolProperty1.types │ ├── parserSymbolProperty2.js │ ├── parserSymbolProperty2.symbols │ ├── parserSymbolProperty2.types │ ├── parserSymbolProperty3.js │ ├── parserSymbolProperty3.symbols │ ├── parserSymbolProperty3.types │ ├── parserSymbolProperty4.js │ ├── parserSymbolProperty4.symbols │ ├── parserSymbolProperty4.types │ ├── parserSymbolProperty5.errors.txt │ ├── parserSymbolProperty5.js │ ├── parserSymbolProperty5.symbols │ ├── parserSymbolProperty5.types │ ├── parserSymbolProperty6.js │ ├── parserSymbolProperty6.symbols │ ├── parserSymbolProperty6.types │ ├── parserSymbolProperty7.js │ ├── parserSymbolProperty7.symbols │ ├── parserSymbolProperty7.types │ ├── parserSymbolProperty8.js │ ├── parserSymbolProperty8.symbols │ ├── parserSymbolProperty8.types │ ├── parserSymbolProperty9.js │ ├── parserSymbolProperty9.symbols │ ├── parserSymbolProperty9.types │ ├── parserSyntaxWalker.generated.js │ ├── parserSyntaxWalker.generated.symbols │ ├── parserSyntaxWalker.generated.types │ ├── parserTernaryAndCommaOperators1.errors.txt │ ├── parserTernaryAndCommaOperators1.js │ ├── parserTernaryAndCommaOperators1.symbols │ ├── parserTernaryAndCommaOperators1.types │ ├── parserThrowStatement1.d.errors.txt │ ├── parserThrowStatement1.d.symbols │ ├── parserThrowStatement1.d.types │ ├── parserTryStatement1.d.errors.txt │ ├── parserTryStatement1.d.symbols │ ├── parserTryStatement1.d.types │ ├── parserTypeAssertionInObjectCreationExpression1.errors.txt │ ├── parserTypeAssertionInObjectCreationExpression1.js │ ├── parserTypeAssertionInObjectCreationExpression1.symbols │ ├── parserTypeAssertionInObjectCreationExpression1.types │ ├── parserTypeQuery1.errors.txt │ ├── parserTypeQuery1.js │ ├── parserTypeQuery1.symbols │ ├── parserTypeQuery1.types │ ├── parserTypeQuery2.errors.txt │ ├── parserTypeQuery2.js │ ├── parserTypeQuery2.symbols │ ├── parserTypeQuery2.types │ ├── parserTypeQuery3.errors.txt │ ├── parserTypeQuery3.js │ ├── parserTypeQuery3.symbols │ ├── parserTypeQuery3.types │ ├── parserTypeQuery4.errors.txt │ ├── parserTypeQuery4.js │ ├── parserTypeQuery4.symbols │ ├── parserTypeQuery4.types │ ├── parserTypeQuery5.errors.txt │ ├── parserTypeQuery5.js │ ├── parserTypeQuery5.symbols │ ├── parserTypeQuery5.types │ ├── parserTypeQuery6.errors.txt │ ├── parserTypeQuery6.js │ ├── parserTypeQuery6.symbols │ ├── parserTypeQuery6.types │ ├── parserTypeQuery7.errors.txt │ ├── parserTypeQuery7.js │ ├── parserTypeQuery7.symbols │ ├── parserTypeQuery7.types │ ├── parserTypeQuery8.errors.txt │ ├── parserTypeQuery8.js │ ├── parserTypeQuery8.symbols │ ├── parserTypeQuery8.types │ ├── parserTypeQuery9.errors.txt │ ├── parserTypeQuery9.js │ ├── parserTypeQuery9.symbols │ ├── parserTypeQuery9.types │ ├── parserUnaryExpression1.errors.txt │ ├── parserUnaryExpression1.js │ ├── parserUnaryExpression1.symbols │ ├── parserUnaryExpression1.types │ ├── parserUnaryExpression2.errors.txt │ ├── parserUnaryExpression2.js │ ├── parserUnaryExpression2.symbols │ ├── parserUnaryExpression2.types │ ├── parserUnaryExpression3.errors.txt │ ├── parserUnaryExpression3.js │ ├── parserUnaryExpression3.symbols │ ├── parserUnaryExpression3.types │ ├── parserUnaryExpression4.errors.txt │ ├── parserUnaryExpression4.js │ ├── parserUnaryExpression4.symbols │ ├── parserUnaryExpression4.types │ ├── parserUnaryExpression5.errors.txt │ ├── parserUnaryExpression5.js │ ├── parserUnaryExpression5.symbols │ ├── parserUnaryExpression5.types │ ├── parserUnaryExpression6.js │ ├── parserUnaryExpression6.symbols │ ├── parserUnaryExpression6.types │ ├── parserUnaryExpression7.errors.txt │ ├── parserUnaryExpression7.js │ ├── parserUnaryExpression7.symbols │ ├── parserUnaryExpression7.types │ ├── parserUnfinishedTypeNameBeforeKeyword1.errors.txt │ ├── parserUnfinishedTypeNameBeforeKeyword1.js │ ├── parserUnfinishedTypeNameBeforeKeyword1.symbols │ ├── parserUnfinishedTypeNameBeforeKeyword1.types │ ├── parserUnicode1.errors.txt │ ├── parserUnicode1.js │ ├── parserUnicode1.symbols │ ├── parserUnicode1.types │ ├── parserUnicode2.js │ ├── parserUnicode2.symbols │ ├── parserUnicode2.types │ ├── parserUnicode3.js │ ├── parserUnicode3.symbols │ ├── parserUnicode3.types │ ├── parserUnicodeWhitespaceCharacter1.js │ ├── parserUnicodeWhitespaceCharacter1.symbols │ ├── parserUnicodeWhitespaceCharacter1.types │ ├── parserUnparsedTokenCrash1.errors.txt │ ├── parserUnparsedTokenCrash1.js │ ├── parserUnparsedTokenCrash1.symbols │ ├── parserUnparsedTokenCrash1.types │ ├── parserUnparsedTokenCrash2.errors.txt │ ├── parserUnparsedTokenCrash2.js │ ├── parserUnparsedTokenCrash2.symbols │ ├── parserUnparsedTokenCrash2.types │ ├── parserUnterminatedGeneric1.errors.txt │ ├── parserUnterminatedGeneric1.js │ ├── parserUnterminatedGeneric1.symbols │ ├── parserUnterminatedGeneric1.types │ ├── parserUnterminatedGeneric2.errors.txt │ ├── parserUnterminatedGeneric2.js │ ├── parserUnterminatedGeneric2.symbols │ ├── parserUnterminatedGeneric2.types │ ├── parserUsingConstructorAsIdentifier.errors.txt │ ├── parserUsingConstructorAsIdentifier.js │ ├── parserUsingConstructorAsIdentifier.symbols │ ├── parserUsingConstructorAsIdentifier.types │ ├── parserVariableDeclaration1.errors.txt │ ├── parserVariableDeclaration1.js │ ├── parserVariableDeclaration1.symbols │ ├── parserVariableDeclaration1.types │ ├── parserVariableDeclaration10.errors.txt │ ├── parserVariableDeclaration10.js │ ├── parserVariableDeclaration10.symbols │ ├── parserVariableDeclaration10.types │ ├── parserVariableDeclaration11.js │ ├── parserVariableDeclaration11.symbols │ ├── parserVariableDeclaration11.types │ ├── parserVariableDeclaration2.errors.txt │ ├── parserVariableDeclaration2.js │ ├── parserVariableDeclaration2.symbols │ ├── parserVariableDeclaration2.types │ ├── parserVariableDeclaration3.errors.txt │ ├── parserVariableDeclaration3.js │ ├── parserVariableDeclaration3.symbols │ ├── parserVariableDeclaration3.types │ ├── parserVariableDeclaration4.d.errors.txt │ ├── parserVariableDeclaration4.d.symbols │ ├── parserVariableDeclaration4.d.types │ ├── parserVariableDeclaration4.errors.txt │ ├── parserVariableDeclaration4.js │ ├── parserVariableDeclaration4.symbols │ ├── parserVariableDeclaration4.types │ ├── parserVariableDeclaration5.errors.txt │ ├── parserVariableDeclaration5.js │ ├── parserVariableDeclaration5.symbols │ ├── parserVariableDeclaration5.types │ ├── parserVariableDeclaration6.errors.txt │ ├── parserVariableDeclaration6.js │ ├── parserVariableDeclaration6.symbols │ ├── parserVariableDeclaration6.types │ ├── parserVariableDeclaration7.js │ ├── parserVariableDeclaration7.symbols │ ├── parserVariableDeclaration7.types │ ├── parserVariableDeclaration8.errors.txt │ ├── parserVariableDeclaration8.js │ ├── parserVariableDeclaration8.symbols │ ├── parserVariableDeclaration8.types │ ├── parserVariableDeclaration9.js │ ├── parserVariableDeclaration9.symbols │ ├── parserVariableDeclaration9.types │ ├── parserVariableStatement1.d.errors.txt │ ├── parserVariableStatement1.d.symbols │ ├── parserVariableStatement1.d.types │ ├── parserVariableStatement1.js │ ├── parserVariableStatement1.symbols │ ├── parserVariableStatement1.types │ ├── parserVariableStatement2.d.errors.txt │ ├── parserVariableStatement2.d.symbols │ ├── parserVariableStatement2.d.types │ ├── parserVariableStatement2.js │ ├── parserVariableStatement2.symbols │ ├── parserVariableStatement2.types │ ├── parserVariableStatement3.js │ ├── parserVariableStatement3.symbols │ ├── parserVariableStatement3.types │ ├── parserVariableStatement4.js │ ├── parserVariableStatement4.symbols │ ├── parserVariableStatement4.types │ ├── parserVoidExpression1.js │ ├── parserVoidExpression1.symbols │ ├── parserVoidExpression1.types │ ├── parserWhileStatement1.d.errors.txt │ ├── parserWhileStatement1.d.symbols │ ├── parserWhileStatement1.d.types │ ├── parserWithStatement1.d.errors.txt │ ├── parserWithStatement1.d.symbols │ ├── parserWithStatement1.d.types │ ├── parserWithStatement2.errors.txt │ ├── parserWithStatement2.js │ ├── parserWithStatement2.symbols │ ├── parserWithStatement2.types │ ├── parserX_ArrowFunction1.errors.txt │ ├── parserX_ArrowFunction1.js │ ├── parserX_ArrowFunction1.symbols │ ├── parserX_ArrowFunction1.types │ ├── parserX_ArrowFunction3.errors.txt │ ├── parserX_ArrowFunction3.js │ ├── parserX_ArrowFunction3.symbols │ ├── parserX_ArrowFunction3.types │ ├── parserX_ArrowFunction4.js │ ├── parserX_ArrowFunction4.symbols │ ├── parserX_ArrowFunction4.types │ ├── parserX_TypeArgumentList1.errors.txt │ ├── parserX_TypeArgumentList1.js │ ├── parserX_TypeArgumentList1.symbols │ ├── parserX_TypeArgumentList1.types │ ├── parser_breakInIterationOrSwitchStatement1.js │ ├── parser_breakInIterationOrSwitchStatement1.symbols │ ├── parser_breakInIterationOrSwitchStatement1.types │ ├── parser_breakInIterationOrSwitchStatement2.js │ ├── parser_breakInIterationOrSwitchStatement2.symbols │ ├── parser_breakInIterationOrSwitchStatement2.types │ ├── parser_breakInIterationOrSwitchStatement3.js │ ├── parser_breakInIterationOrSwitchStatement3.symbols │ ├── parser_breakInIterationOrSwitchStatement3.types │ ├── parser_breakInIterationOrSwitchStatement4.errors.txt │ ├── parser_breakInIterationOrSwitchStatement4.js │ ├── parser_breakInIterationOrSwitchStatement4.symbols │ ├── parser_breakInIterationOrSwitchStatement4.types │ ├── parser_breakNotInIterationOrSwitchStatement1.errors.txt │ ├── parser_breakNotInIterationOrSwitchStatement1.js │ ├── parser_breakNotInIterationOrSwitchStatement1.symbols │ ├── parser_breakNotInIterationOrSwitchStatement1.types │ ├── parser_breakNotInIterationOrSwitchStatement2.errors.txt │ ├── parser_breakNotInIterationOrSwitchStatement2.js │ ├── parser_breakNotInIterationOrSwitchStatement2.symbols │ ├── parser_breakNotInIterationOrSwitchStatement2.types │ ├── parser_breakTarget1.js │ ├── parser_breakTarget1.symbols │ ├── parser_breakTarget1.types │ ├── parser_breakTarget2.js │ ├── parser_breakTarget2.symbols │ ├── parser_breakTarget2.types │ ├── parser_breakTarget3.js │ ├── parser_breakTarget3.symbols │ ├── parser_breakTarget3.types │ ├── parser_breakTarget4.js │ ├── parser_breakTarget4.symbols │ ├── parser_breakTarget4.types │ ├── parser_breakTarget5.errors.txt │ ├── parser_breakTarget5.js │ ├── parser_breakTarget5.symbols │ ├── parser_breakTarget5.types │ ├── parser_breakTarget6.errors.txt │ ├── parser_breakTarget6.js │ ├── parser_breakTarget6.symbols │ ├── parser_breakTarget6.types │ ├── parser_continueInIterationStatement1.js │ ├── parser_continueInIterationStatement1.symbols │ ├── parser_continueInIterationStatement1.types │ ├── parser_continueInIterationStatement2.js │ ├── parser_continueInIterationStatement2.symbols │ ├── parser_continueInIterationStatement2.types │ ├── parser_continueInIterationStatement3.js │ ├── parser_continueInIterationStatement3.symbols │ ├── parser_continueInIterationStatement3.types │ ├── parser_continueInIterationStatement4.errors.txt │ ├── parser_continueInIterationStatement4.js │ ├── parser_continueInIterationStatement4.symbols │ ├── parser_continueInIterationStatement4.types │ ├── parser_continueLabel.js │ ├── parser_continueLabel.symbols │ ├── parser_continueLabel.types │ ├── parser_continueNotInIterationStatement1.errors.txt │ ├── parser_continueNotInIterationStatement1.js │ ├── parser_continueNotInIterationStatement1.symbols │ ├── parser_continueNotInIterationStatement1.types │ ├── parser_continueNotInIterationStatement2.errors.txt │ ├── parser_continueNotInIterationStatement2.js │ ├── parser_continueNotInIterationStatement2.symbols │ ├── parser_continueNotInIterationStatement2.types │ ├── parser_continueNotInIterationStatement3.errors.txt │ ├── parser_continueNotInIterationStatement3.js │ ├── parser_continueNotInIterationStatement3.symbols │ ├── parser_continueNotInIterationStatement3.types │ ├── parser_continueNotInIterationStatement4.errors.txt │ ├── parser_continueNotInIterationStatement4.js │ ├── parser_continueNotInIterationStatement4.symbols │ ├── parser_continueNotInIterationStatement4.types │ ├── parser_continueTarget1.errors.txt │ ├── parser_continueTarget1.js │ ├── parser_continueTarget1.symbols │ ├── parser_continueTarget1.types │ ├── parser_continueTarget2.js │ ├── parser_continueTarget2.symbols │ ├── parser_continueTarget2.types │ ├── parser_continueTarget3.js │ ├── parser_continueTarget3.symbols │ ├── parser_continueTarget3.types │ ├── parser_continueTarget4.js │ ├── parser_continueTarget4.symbols │ ├── parser_continueTarget4.types │ ├── parser_continueTarget5.errors.txt │ ├── parser_continueTarget5.js │ ├── parser_continueTarget5.symbols │ ├── parser_continueTarget5.types │ ├── parser_continueTarget6.errors.txt │ ├── parser_continueTarget6.js │ ├── parser_continueTarget6.symbols │ ├── parser_continueTarget6.types │ ├── parser_duplicateLabel1.errors.txt │ ├── parser_duplicateLabel1.js │ ├── parser_duplicateLabel1.symbols │ ├── parser_duplicateLabel1.types │ ├── parser_duplicateLabel2.errors.txt │ ├── parser_duplicateLabel2.js │ ├── parser_duplicateLabel2.symbols │ ├── parser_duplicateLabel2.types │ ├── parser_duplicateLabel3.js │ ├── parser_duplicateLabel3.symbols │ ├── parser_duplicateLabel3.types │ ├── parser_duplicateLabel4.js │ ├── parser_duplicateLabel4.symbols │ ├── parser_duplicateLabel4.types │ ├── parserharness.errors.txt │ ├── parserharness.js │ ├── parserharness.symbols │ ├── parserharness.types │ ├── parserindenter.errors.txt │ ├── parserindenter.js │ ├── parserindenter.symbols │ ├── parserindenter.types │ ├── parservoidInQualifiedName0.js │ ├── parservoidInQualifiedName0.symbols │ ├── parservoidInQualifiedName0.types │ ├── parservoidInQualifiedName1.errors.txt │ ├── parservoidInQualifiedName1.js │ ├── parservoidInQualifiedName1.symbols │ ├── parservoidInQualifiedName1.types │ ├── parservoidInQualifiedName2.errors.txt │ ├── parservoidInQualifiedName2.js │ ├── parservoidInQualifiedName2.symbols │ ├── parservoidInQualifiedName2.types │ ├── parsingClassRecoversWhenHittingUnexpectedSemicolon.js │ ├── parsingClassRecoversWhenHittingUnexpectedSemicolon.symbols │ ├── parsingClassRecoversWhenHittingUnexpectedSemicolon.types │ ├── parsingDeepParenthensizedExpression.symbols │ ├── parsingDeepParenthensizedExpression.types │ ├── partialDiscriminatedUnionMemberHasGoodError.errors.txt │ ├── partialDiscriminatedUnionMemberHasGoodError.js │ ├── partialDiscriminatedUnionMemberHasGoodError.symbols │ ├── partialDiscriminatedUnionMemberHasGoodError.types │ ├── partialOfLargeAPIIsAbleToBeWorkedWith.js │ ├── partialOfLargeAPIIsAbleToBeWorkedWith.symbols │ ├── partialOfLargeAPIIsAbleToBeWorkedWith.types │ ├── partialTypeNarrowedToByTypeGuard.js │ ├── partialTypeNarrowedToByTypeGuard.symbols │ ├── partialTypeNarrowedToByTypeGuard.types │ ├── partiallyAmbientClodule.js │ ├── partiallyAmbientClodule.symbols │ ├── partiallyAmbientClodule.types │ ├── partiallyAmbientFundule.js │ ├── partiallyAmbientFundule.symbols │ ├── partiallyAmbientFundule.types │ ├── partiallyAnnotatedFunctionInferenceError.errors.txt │ ├── partiallyAnnotatedFunctionInferenceError.js │ ├── partiallyAnnotatedFunctionInferenceError.symbols │ ├── partiallyAnnotatedFunctionInferenceError.types │ ├── partiallyAnnotatedFunctionInferenceWithTypeParameter.errors.txt │ ├── partiallyAnnotatedFunctionInferenceWithTypeParameter.js │ ├── partiallyAnnotatedFunctionInferenceWithTypeParameter.symbols │ ├── partiallyAnnotatedFunctionInferenceWithTypeParameter.types │ ├── partiallyAnnotatedFunctionWitoutTypeParameter.js │ ├── partiallyAnnotatedFunctionWitoutTypeParameter.symbols │ ├── partiallyAnnotatedFunctionWitoutTypeParameter.types │ ├── partiallyDiscriminantedUnions.errors.txt │ ├── partiallyDiscriminantedUnions.js │ ├── partiallyDiscriminantedUnions.symbols │ ├── partiallyDiscriminantedUnions.types │ ├── partiallyNamedTuples.js │ ├── partiallyNamedTuples.symbols │ ├── partiallyNamedTuples.types │ ├── partiallyNamedTuples2.js │ ├── partiallyNamedTuples2.symbols │ ├── partiallyNamedTuples2.types │ ├── partiallyNamedTuples3.js │ ├── partiallyNamedTuples3.symbols │ ├── partiallyNamedTuples3.types │ ├── pathMappingBasedModuleResolution1_amd.errors.txt │ ├── pathMappingBasedModuleResolution1_amd.js │ ├── pathMappingBasedModuleResolution1_amd.symbols │ ├── pathMappingBasedModuleResolution1_amd.trace.json │ ├── pathMappingBasedModuleResolution1_amd.types │ ├── pathMappingBasedModuleResolution1_node.errors.txt │ ├── pathMappingBasedModuleResolution1_node.js │ ├── pathMappingBasedModuleResolution1_node.symbols │ ├── pathMappingBasedModuleResolution1_node.trace.json │ ├── pathMappingBasedModuleResolution1_node.types │ ├── pathMappingBasedModuleResolution2_classic.errors.txt │ ├── pathMappingBasedModuleResolution2_classic.js │ ├── pathMappingBasedModuleResolution2_classic.symbols │ ├── pathMappingBasedModuleResolution2_classic.trace.json │ ├── pathMappingBasedModuleResolution2_classic.types │ ├── pathMappingBasedModuleResolution2_node.errors.txt │ ├── pathMappingBasedModuleResolution2_node.js │ ├── pathMappingBasedModuleResolution2_node.symbols │ ├── pathMappingBasedModuleResolution2_node.trace.json │ ├── pathMappingBasedModuleResolution2_node.types │ ├── pathMappingBasedModuleResolution3_classic.errors.txt │ ├── pathMappingBasedModuleResolution3_classic.js │ ├── pathMappingBasedModuleResolution3_classic.symbols │ ├── pathMappingBasedModuleResolution3_classic.trace.json │ ├── pathMappingBasedModuleResolution3_classic.types │ ├── pathMappingBasedModuleResolution3_node.errors.txt │ ├── pathMappingBasedModuleResolution3_node.js │ ├── pathMappingBasedModuleResolution3_node.symbols │ ├── pathMappingBasedModuleResolution3_node.trace.json │ ├── pathMappingBasedModuleResolution3_node.types │ ├── pathMappingBasedModuleResolution4_classic.errors.txt │ ├── pathMappingBasedModuleResolution4_classic.js │ ├── pathMappingBasedModuleResolution4_classic.symbols │ ├── pathMappingBasedModuleResolution4_classic.trace.json │ ├── pathMappingBasedModuleResolution4_classic.types │ ├── pathMappingBasedModuleResolution4_node.errors.txt │ ├── pathMappingBasedModuleResolution4_node.js │ ├── pathMappingBasedModuleResolution4_node.symbols │ ├── pathMappingBasedModuleResolution4_node.trace.json │ ├── pathMappingBasedModuleResolution4_node.types │ ├── pathMappingBasedModuleResolution5_classic.errors.txt │ ├── pathMappingBasedModuleResolution5_classic.js │ ├── pathMappingBasedModuleResolution5_classic.symbols │ ├── pathMappingBasedModuleResolution5_classic.trace.json │ ├── pathMappingBasedModuleResolution5_classic.types │ ├── pathMappingBasedModuleResolution5_node.errors.txt │ ├── pathMappingBasedModuleResolution5_node.js │ ├── pathMappingBasedModuleResolution5_node.symbols │ ├── pathMappingBasedModuleResolution5_node.trace.json │ ├── pathMappingBasedModuleResolution5_node.types │ ├── pathMappingBasedModuleResolution6_classic.errors.txt │ ├── pathMappingBasedModuleResolution6_classic.js │ ├── pathMappingBasedModuleResolution6_classic.symbols │ ├── pathMappingBasedModuleResolution6_classic.trace.json │ ├── pathMappingBasedModuleResolution6_classic.types │ ├── pathMappingBasedModuleResolution6_node.js │ ├── pathMappingBasedModuleResolution6_node.symbols │ ├── pathMappingBasedModuleResolution6_node.trace.json │ ├── pathMappingBasedModuleResolution6_node.types │ ├── pathMappingBasedModuleResolution7_classic.errors.txt │ ├── pathMappingBasedModuleResolution7_classic.js │ ├── pathMappingBasedModuleResolution7_classic.symbols │ ├── pathMappingBasedModuleResolution7_classic.trace.json │ ├── pathMappingBasedModuleResolution7_classic.types │ ├── pathMappingBasedModuleResolution7_node.errors.txt │ ├── pathMappingBasedModuleResolution7_node.js │ ├── pathMappingBasedModuleResolution7_node.symbols │ ├── pathMappingBasedModuleResolution7_node.trace.json │ ├── pathMappingBasedModuleResolution7_node.types │ ├── pathMappingBasedModuleResolution8_classic.errors.txt │ ├── pathMappingBasedModuleResolution8_classic.js │ ├── pathMappingBasedModuleResolution8_classic.symbols │ ├── pathMappingBasedModuleResolution8_classic.trace.json │ ├── pathMappingBasedModuleResolution8_classic.types │ ├── pathMappingBasedModuleResolution8_node.errors.txt │ ├── pathMappingBasedModuleResolution8_node.js │ ├── pathMappingBasedModuleResolution8_node.symbols │ ├── pathMappingBasedModuleResolution8_node.trace.json │ ├── pathMappingBasedModuleResolution8_node.types │ ├── pathMappingBasedModuleResolution_rootImport_aliasWithRoot.errors.txt │ ├── pathMappingBasedModuleResolution_rootImport_aliasWithRoot.js │ ├── pathMappingBasedModuleResolution_rootImport_aliasWithRoot.symbols │ ├── pathMappingBasedModuleResolution_rootImport_aliasWithRoot.trace.json │ ├── pathMappingBasedModuleResolution_rootImport_aliasWithRoot.types │ ├── pathMappingBasedModuleResolution_rootImport_aliasWithRoot_differentRootTypes.errors.txt │ ├── pathMappingBasedModuleResolution_rootImport_aliasWithRoot_differentRootTypes.js │ ├── pathMappingBasedModuleResolution_rootImport_aliasWithRoot_differentRootTypes.symbols │ ├── pathMappingBasedModuleResolution_rootImport_aliasWithRoot_differentRootTypes.trace.json │ ├── pathMappingBasedModuleResolution_rootImport_aliasWithRoot_differentRootTypes.types │ ├── pathMappingBasedModuleResolution_rootImport_aliasWithRoot_multipleAliases.errors.txt │ ├── pathMappingBasedModuleResolution_rootImport_aliasWithRoot_multipleAliases.js │ ├── pathMappingBasedModuleResolution_rootImport_aliasWithRoot_multipleAliases.symbols │ ├── pathMappingBasedModuleResolution_rootImport_aliasWithRoot_multipleAliases.trace.json │ ├── pathMappingBasedModuleResolution_rootImport_aliasWithRoot_multipleAliases.types │ ├── pathMappingBasedModuleResolution_rootImport_aliasWithRoot_realRootFile.errors.txt │ ├── pathMappingBasedModuleResolution_rootImport_aliasWithRoot_realRootFile.js │ ├── pathMappingBasedModuleResolution_rootImport_aliasWithRoot_realRootFile.symbols │ ├── pathMappingBasedModuleResolution_rootImport_aliasWithRoot_realRootFile.trace.json │ ├── pathMappingBasedModuleResolution_rootImport_aliasWithRoot_realRootFile.types │ ├── pathMappingBasedModuleResolution_rootImport_noAliasWithRoot.errors.txt │ ├── pathMappingBasedModuleResolution_rootImport_noAliasWithRoot.js │ ├── pathMappingBasedModuleResolution_rootImport_noAliasWithRoot.symbols │ ├── pathMappingBasedModuleResolution_rootImport_noAliasWithRoot.trace.json │ ├── pathMappingBasedModuleResolution_rootImport_noAliasWithRoot.types │ ├── pathMappingBasedModuleResolution_rootImport_noAliasWithRoot_realRootFile.errors.txt │ ├── pathMappingBasedModuleResolution_rootImport_noAliasWithRoot_realRootFile.js │ ├── pathMappingBasedModuleResolution_rootImport_noAliasWithRoot_realRootFile.symbols │ ├── pathMappingBasedModuleResolution_rootImport_noAliasWithRoot_realRootFile.trace.json │ ├── pathMappingBasedModuleResolution_rootImport_noAliasWithRoot_realRootFile.types │ ├── pathMappingBasedModuleResolution_withExtension.errors.txt │ ├── pathMappingBasedModuleResolution_withExtension.js │ ├── pathMappingBasedModuleResolution_withExtension.symbols │ ├── pathMappingBasedModuleResolution_withExtension.trace.json │ ├── pathMappingBasedModuleResolution_withExtension.types │ ├── pathMappingBasedModuleResolution_withExtensionInName.errors.txt │ ├── pathMappingBasedModuleResolution_withExtensionInName.js │ ├── pathMappingBasedModuleResolution_withExtensionInName.symbols │ ├── pathMappingBasedModuleResolution_withExtensionInName.trace.json │ ├── pathMappingBasedModuleResolution_withExtensionInName.types │ ├── pathMappingBasedModuleResolution_withExtension_MapedToNodeModules.errors.txt │ ├── pathMappingBasedModuleResolution_withExtension_MapedToNodeModules.js │ ├── pathMappingBasedModuleResolution_withExtension_MapedToNodeModules.symbols │ ├── pathMappingBasedModuleResolution_withExtension_MapedToNodeModules.trace.json │ ├── pathMappingBasedModuleResolution_withExtension_MapedToNodeModules.types │ ├── pathMappingBasedModuleResolution_withExtension_failedLookup.errors.txt │ ├── pathMappingBasedModuleResolution_withExtension_failedLookup.js │ ├── pathMappingBasedModuleResolution_withExtension_failedLookup.symbols │ ├── pathMappingBasedModuleResolution_withExtension_failedLookup.trace.json │ ├── pathMappingBasedModuleResolution_withExtension_failedLookup.types │ ├── pathMappingInheritedBaseUrl.errors.txt │ ├── pathMappingInheritedBaseUrl.js │ ├── pathMappingWithoutBaseUrl1.js │ ├── pathMappingWithoutBaseUrl2.js │ ├── pathsValidation1.errors.txt │ ├── pathsValidation1.js │ ├── pathsValidation1.symbols │ ├── pathsValidation1.types │ ├── pathsValidation2.errors.txt │ ├── pathsValidation2.js │ ├── pathsValidation2.symbols │ ├── pathsValidation2.types │ ├── pathsValidation3.errors.txt │ ├── pathsValidation3.js │ ├── pathsValidation3.symbols │ ├── pathsValidation3.types │ ├── pathsValidation4.errors.txt │ ├── pathsValidation4.js │ ├── pathsValidation4.trace.json │ ├── pathsValidation5.errors.txt │ ├── pathsValidation5.js │ ├── pathsValidation5.trace.json │ ├── performanceComparisonOfStructurallyIdenticalInterfacesWithGenericSignatures.js │ ├── performanceComparisonOfStructurallyIdenticalInterfacesWithGenericSignatures.symbols │ ├── performanceComparisonOfStructurallyIdenticalInterfacesWithGenericSignatures.types │ ├── pickOfLargeObjectUnionWorks.js │ ├── pickOfLargeObjectUnionWorks.symbols │ ├── pickOfLargeObjectUnionWorks.types │ ├── pinnedComments1.js │ ├── pinnedComments1.symbols │ ├── pinnedComments1.types │ ├── plainJSBinderErrors.errors.txt │ ├── plainJSBinderErrors.js │ ├── plainJSBinderErrors.symbols │ ├── plainJSBinderErrors.types │ ├── plainJSGrammarErrors.errors.txt │ ├── plainJSGrammarErrors.js │ ├── plainJSGrammarErrors.symbols │ ├── plainJSGrammarErrors.types │ ├── plainJSGrammarErrors2.js │ ├── plainJSGrammarErrors2.symbols │ ├── plainJSGrammarErrors2.types │ ├── plainJSGrammarErrors3.errors.txt │ ├── plainJSGrammarErrors3.js │ ├── plainJSGrammarErrors3.symbols │ ├── plainJSGrammarErrors3.types │ ├── plainJSGrammarErrors4.errors.txt │ ├── plainJSGrammarErrors4.js │ ├── plainJSGrammarErrors4.symbols │ ├── plainJSGrammarErrors4.types │ ├── plainJSRedeclare.errors.txt │ ├── plainJSRedeclare.js │ ├── plainJSRedeclare.symbols │ ├── plainJSRedeclare.types │ ├── plainJSRedeclare2.errors.txt │ ├── plainJSRedeclare2.js │ ├── plainJSRedeclare2.symbols │ ├── plainJSRedeclare2.types │ ├── plainJSRedeclare3.js │ ├── plainJSRedeclare3.symbols │ ├── plainJSRedeclare3.types │ ├── plainJSReservedStrict.errors.txt │ ├── plainJSReservedStrict.js │ ├── plainJSReservedStrict.symbols │ ├── plainJSReservedStrict.types │ ├── plainJSTypeErrors.errors.txt │ ├── plainJSTypeErrors.js │ ├── plainJSTypeErrors.symbols │ ├── plainJSTypeErrors.types │ ├── plusOperatorInvalidOperations.errors.txt │ ├── plusOperatorInvalidOperations.js │ ├── plusOperatorInvalidOperations.symbols │ ├── plusOperatorInvalidOperations.types │ ├── plusOperatorWithAnyOtherType.errors.txt │ ├── plusOperatorWithAnyOtherType.js │ ├── plusOperatorWithAnyOtherType.symbols │ ├── plusOperatorWithAnyOtherType.types │ ├── plusOperatorWithBooleanType.errors.txt │ ├── plusOperatorWithBooleanType.js │ ├── plusOperatorWithBooleanType.symbols │ ├── plusOperatorWithBooleanType.types │ ├── plusOperatorWithEnumType.errors.txt │ ├── plusOperatorWithEnumType.js │ ├── plusOperatorWithEnumType.symbols │ ├── plusOperatorWithEnumType.types │ ├── plusOperatorWithNumberType.errors.txt │ ├── plusOperatorWithNumberType.js │ ├── plusOperatorWithNumberType.symbols │ ├── plusOperatorWithNumberType.types │ ├── plusOperatorWithStringType.errors.txt │ ├── plusOperatorWithStringType.js │ ├── plusOperatorWithStringType.symbols │ ├── plusOperatorWithStringType.types │ ├── potentiallyUnassignedVariableInCatch.js │ ├── potentiallyUnassignedVariableInCatch.symbols │ ├── potentiallyUnassignedVariableInCatch.types │ ├── potentiallyUncalledDecorators.errors.txt │ ├── potentiallyUncalledDecorators.js │ ├── potentiallyUncalledDecorators.symbols │ ├── potentiallyUncalledDecorators.types │ ├── predicateSemantics.errors.txt │ ├── predicateSemantics.js │ ├── predicateSemantics.symbols │ ├── predicateSemantics.types │ ├── prefixIncrementAsOperandOfPlusExpression.js │ ├── prefixIncrementAsOperandOfPlusExpression.symbols │ ├── prefixIncrementAsOperandOfPlusExpression.types │ ├── prefixUnaryOperatorsOnExportedVariables(target=es2015).errors.txt │ ├── prefixUnaryOperatorsOnExportedVariables(target=es2015).js │ ├── prefixUnaryOperatorsOnExportedVariables(target=es2015).symbols │ ├── prefixUnaryOperatorsOnExportedVariables(target=es2015).types │ ├── prefixUnaryOperatorsOnExportedVariables(target=es5).errors.txt │ ├── prefixUnaryOperatorsOnExportedVariables(target=es5).js │ ├── prefixUnaryOperatorsOnExportedVariables(target=es5).symbols │ ├── prefixUnaryOperatorsOnExportedVariables(target=es5).types │ ├── prefixedNumberLiteralAssignToNumberLiteralType.js │ ├── prefixedNumberLiteralAssignToNumberLiteralType.symbols │ ├── prefixedNumberLiteralAssignToNumberLiteralType.types │ ├── preserveConstEnums.js │ ├── preserveConstEnums.symbols │ ├── preserveConstEnums.types │ ├── preserveUnusedImports.errors.txt │ ├── preserveUnusedImports.js │ ├── preserveUnusedImports.symbols │ ├── preserveUnusedImports.types │ ├── preserveValueImports(isolatedmodules=false).errors.txt │ ├── preserveValueImports(isolatedmodules=false).js │ ├── preserveValueImports(isolatedmodules=false).symbols │ ├── preserveValueImports(isolatedmodules=false).types │ ├── preserveValueImports(isolatedmodules=true).errors.txt │ ├── preserveValueImports(isolatedmodules=true).js │ ├── preserveValueImports(isolatedmodules=true).symbols │ ├── preserveValueImports(isolatedmodules=true).types │ ├── preserveValueImports_errors(isolatedmodules=false).errors.txt │ ├── preserveValueImports_errors(isolatedmodules=false).js │ ├── preserveValueImports_errors(isolatedmodules=false).symbols │ ├── preserveValueImports_errors(isolatedmodules=false).types │ ├── preserveValueImports_errors(isolatedmodules=true).errors.txt │ ├── preserveValueImports_errors(isolatedmodules=true).js │ ├── preserveValueImports_errors(isolatedmodules=true).symbols │ ├── preserveValueImports_errors(isolatedmodules=true).types │ ├── preserveValueImports_importsNotUsedAsValues.errors.txt │ ├── preserveValueImports_importsNotUsedAsValues.js │ ├── preserveValueImports_importsNotUsedAsValues.symbols │ ├── preserveValueImports_importsNotUsedAsValues.types │ ├── preserveValueImports_mixedImports.errors.txt │ ├── preserveValueImports_mixedImports.js │ ├── preserveValueImports_mixedImports.symbols │ ├── preserveValueImports_mixedImports.types │ ├── preserveValueImports_module(module=amd).errors.txt │ ├── preserveValueImports_module(module=amd).js │ ├── preserveValueImports_module(module=commonjs).errors.txt │ ├── preserveValueImports_module(module=commonjs).js │ ├── preserveValueImports_module(module=es2015).errors.txt │ ├── preserveValueImports_module(module=es2015).js │ ├── preserveValueImports_module(module=system).errors.txt │ ├── preserveValueImports_module(module=system).js │ ├── prespecializedGenericMembers1.js │ ├── prespecializedGenericMembers1.symbols │ ├── prespecializedGenericMembers1.types │ ├── prettyContextNotDebugAssertion.errors.txt │ ├── prettyContextNotDebugAssertion.js │ ├── prettyContextNotDebugAssertion.symbols │ ├── prettyContextNotDebugAssertion.types │ ├── prettyFileWithErrorsAndTabs.errors.txt │ ├── prettyFileWithErrorsAndTabs.js │ ├── prettyFileWithErrorsAndTabs.symbols │ ├── prettyFileWithErrorsAndTabs.types │ ├── primaryExpressionMods.errors.txt │ ├── primaryExpressionMods.js │ ├── primaryExpressionMods.symbols │ ├── primaryExpressionMods.types │ ├── primitiveConstraints1.errors.txt │ ├── primitiveConstraints1.js │ ├── primitiveConstraints1.symbols │ ├── primitiveConstraints1.types │ ├── primitiveConstraints2.errors.txt │ ├── primitiveConstraints2.js │ ├── primitiveConstraints2.symbols │ ├── primitiveConstraints2.types │ ├── primitiveMembers.errors.txt │ ├── primitiveMembers.js │ ├── primitiveMembers.symbols │ ├── primitiveMembers.types │ ├── primitiveTypeAsClassName.errors.txt │ ├── primitiveTypeAsClassName.js │ ├── primitiveTypeAsClassName.symbols │ ├── primitiveTypeAsClassName.types │ ├── primitiveTypeAsInterfaceName.errors.txt │ ├── primitiveTypeAsInterfaceName.js │ ├── primitiveTypeAsInterfaceName.symbols │ ├── primitiveTypeAsInterfaceName.types │ ├── primitiveTypeAsInterfaceNameGeneric.errors.txt │ ├── primitiveTypeAsInterfaceNameGeneric.js │ ├── primitiveTypeAsInterfaceNameGeneric.symbols │ ├── primitiveTypeAsInterfaceNameGeneric.types │ ├── primitiveTypeAsmoduleName.js │ ├── primitiveTypeAsmoduleName.symbols │ ├── primitiveTypeAsmoduleName.types │ ├── primitiveTypeAssignment.errors.txt │ ├── primitiveTypeAssignment.js │ ├── primitiveTypeAssignment.symbols │ ├── primitiveTypeAssignment.types │ ├── primitiveUnionDetection.js │ ├── primitiveUnionDetection.symbols │ ├── primitiveUnionDetection.types │ ├── primtiveTypesAreIdentical.js │ ├── primtiveTypesAreIdentical.symbols │ ├── primtiveTypesAreIdentical.types │ ├── printerApi/ │ │ ├── printsBundleCorrectly.default.js │ │ ├── printsBundleCorrectly.removeComments.js │ │ ├── printsFileCorrectly.classHeritageClauses.js │ │ ├── printsFileCorrectly.default.js │ │ ├── printsFileCorrectly.definiteAssignmentAssertions.js │ │ ├── printsFileCorrectly.importStatementRemoveComments.js │ │ ├── printsFileCorrectly.jsx attribute escaping.js │ │ ├── printsFileCorrectly.lambda type parameter lists in tsx.js │ │ ├── printsFileCorrectly.regularExpressionLiteral.js │ │ ├── printsFileCorrectly.removeComments.js │ │ ├── printsFileCorrectly.templateLiteral.js │ │ ├── printsNodeCorrectly.binaryAmpersandAmpersandExpressionWithLeftBinaryQuestionQuestionExpression.js │ │ ├── printsNodeCorrectly.binaryAmpersandAmpersandExpressionWithLeftConditionalExpression.js │ │ ├── printsNodeCorrectly.binaryAmpersandAmpersandExpressionWithRightBinaryQuestionQuestionExpression.js │ │ ├── printsNodeCorrectly.binaryBarBarExpressionWithLeftBinaryQuestionQuestionExpression.js │ │ ├── printsNodeCorrectly.binaryBarBarExpressionWithLeftConditionalExpression.js │ │ ├── printsNodeCorrectly.binaryBarBarExpressionWithRightBinaryQuestionQuestionExpression.js │ │ ├── printsNodeCorrectly.binaryCommaExpressionWithLeftBinaryQuestionQuestionExpression.js │ │ ├── printsNodeCorrectly.binaryCommaExpressionWithRightBinaryQuestionQuestionExpression.js │ │ ├── printsNodeCorrectly.binaryEqualsEqualsExpressionWithLeftBinaryQuestionQuestionExpression.js │ │ ├── printsNodeCorrectly.binaryEqualsEqualsExpressionWithRightBinaryQuestionQuestionExpression.js │ │ ├── printsNodeCorrectly.binaryQuestionQuestionExpressionWithLeftBinaryAmpersandAmpersandExpression.js │ │ ├── printsNodeCorrectly.binaryQuestionQuestionExpressionWithLeftBinaryBarBarExpression.js │ │ ├── printsNodeCorrectly.binaryQuestionQuestionExpressionWithLeftBinaryCommaExpression.js │ │ ├── printsNodeCorrectly.binaryQuestionQuestionExpressionWithLeftBinaryEqualsEqualsExpression.js │ │ ├── printsNodeCorrectly.binaryQuestionQuestionExpressionWithLeftBinaryQuestionQuestionExpression.js │ │ ├── printsNodeCorrectly.binaryQuestionQuestionExpressionWithLeftConditionalExpression.js │ │ ├── printsNodeCorrectly.binaryQuestionQuestionExpressionWithRightBinaryAmpersandAmpersandExpression.js │ │ ├── printsNodeCorrectly.binaryQuestionQuestionExpressionWithRightBinaryBarBarExpression.js │ │ ├── printsNodeCorrectly.binaryQuestionQuestionExpressionWithRightBinaryCommaExpression.js │ │ ├── printsNodeCorrectly.binaryQuestionQuestionExpressionWithRightBinaryEqualsEqualsExpression.js │ │ ├── printsNodeCorrectly.binaryQuestionQuestionExpressionWithRightBinaryQuestionQuestionExpression.js │ │ ├── printsNodeCorrectly.class.js │ │ ├── printsNodeCorrectly.classWithOptionalMethodAndProperty.js │ │ ├── printsNodeCorrectly.emptyGlobalAugmentation.js │ │ ├── printsNodeCorrectly.emptyGlobalAugmentationWithNoDeclareKeyword.js │ │ ├── printsNodeCorrectly.functionTypes.js │ │ ├── printsNodeCorrectly.namespaceExportDeclaration.js │ │ ├── printsNodeCorrectly.newExpressionOnConditionalExpression.js │ │ ├── printsNodeCorrectly.newExpressionWithPropertyAccessOnCallExpression.js │ │ └── printsNodeCorrectly.template string.js │ ├── privacyAccessorDeclFile(target=es2015).errors.txt │ ├── privacyAccessorDeclFile(target=es2015).js │ ├── privacyAccessorDeclFile(target=es2015).symbols │ ├── privacyAccessorDeclFile(target=es2015).types │ ├── privacyAccessorDeclFile(target=es5).errors.txt │ ├── privacyAccessorDeclFile(target=es5).js │ ├── privacyAccessorDeclFile(target=es5).symbols │ ├── privacyAccessorDeclFile(target=es5).types │ ├── privacyCannotNameAccessorDeclFile(target=es2015).js │ ├── privacyCannotNameAccessorDeclFile(target=es2015).symbols │ ├── privacyCannotNameAccessorDeclFile(target=es2015).types │ ├── privacyCannotNameAccessorDeclFile(target=es5).errors.txt │ ├── privacyCannotNameAccessorDeclFile(target=es5).js │ ├── privacyCannotNameAccessorDeclFile(target=es5).symbols │ ├── privacyCannotNameAccessorDeclFile(target=es5).types │ ├── privacyCannotNameVarTypeDeclFile.js │ ├── privacyCannotNameVarTypeDeclFile.symbols │ ├── privacyCannotNameVarTypeDeclFile.types │ ├── privacyCheckAnonymousFunctionParameter.errors.txt │ ├── privacyCheckAnonymousFunctionParameter.js │ ├── privacyCheckAnonymousFunctionParameter.symbols │ ├── privacyCheckAnonymousFunctionParameter.types │ ├── privacyCheckAnonymousFunctionParameter2.errors.txt │ ├── privacyCheckAnonymousFunctionParameter2.js │ ├── privacyCheckAnonymousFunctionParameter2.symbols │ ├── privacyCheckAnonymousFunctionParameter2.types │ ├── privacyCheckCallbackOfInterfaceMethodWithTypeParameter.errors.txt │ ├── privacyCheckCallbackOfInterfaceMethodWithTypeParameter.js │ ├── privacyCheckCallbackOfInterfaceMethodWithTypeParameter.symbols │ ├── privacyCheckCallbackOfInterfaceMethodWithTypeParameter.types │ ├── privacyCheckExportAssignmentOnExportedGenericInterface1.errors.txt │ ├── privacyCheckExportAssignmentOnExportedGenericInterface1.js │ ├── privacyCheckExportAssignmentOnExportedGenericInterface1.symbols │ ├── privacyCheckExportAssignmentOnExportedGenericInterface1.types │ ├── privacyCheckExportAssignmentOnExportedGenericInterface2.errors.txt │ ├── privacyCheckExportAssignmentOnExportedGenericInterface2.js │ ├── privacyCheckExportAssignmentOnExportedGenericInterface2.symbols │ ├── privacyCheckExportAssignmentOnExportedGenericInterface2.types │ ├── privacyCheckExternalModuleExportAssignmentOfGenericClass.js │ ├── privacyCheckExternalModuleExportAssignmentOfGenericClass.symbols │ ├── privacyCheckExternalModuleExportAssignmentOfGenericClass.types │ ├── privacyCheckOnTypeParameterReferenceInConstructorParameter.errors.txt │ ├── privacyCheckOnTypeParameterReferenceInConstructorParameter.js │ ├── privacyCheckOnTypeParameterReferenceInConstructorParameter.symbols │ ├── privacyCheckOnTypeParameterReferenceInConstructorParameter.types │ ├── privacyCheckTypeOfFunction.js │ ├── privacyCheckTypeOfFunction.symbols │ ├── privacyCheckTypeOfFunction.types │ ├── privacyCheckTypeOfInvisibleModuleError.js │ ├── privacyCheckTypeOfInvisibleModuleError.symbols │ ├── privacyCheckTypeOfInvisibleModuleError.types │ ├── privacyCheckTypeOfInvisibleModuleNoError.js │ ├── privacyCheckTypeOfInvisibleModuleNoError.symbols │ ├── privacyCheckTypeOfInvisibleModuleNoError.types │ ├── privacyClass.js │ ├── privacyClass.symbols │ ├── privacyClass.types │ ├── privacyClassExtendsClauseDeclFile.errors.txt │ ├── privacyClassExtendsClauseDeclFile.js │ ├── privacyClassExtendsClauseDeclFile.symbols │ ├── privacyClassExtendsClauseDeclFile.types │ ├── privacyClassImplementsClauseDeclFile.js │ ├── privacyClassImplementsClauseDeclFile.symbols │ ├── privacyClassImplementsClauseDeclFile.types │ ├── privacyFunc.js │ ├── privacyFunc.symbols │ ├── privacyFunc.types │ ├── privacyFunctionCannotNameParameterTypeDeclFile.js │ ├── privacyFunctionCannotNameParameterTypeDeclFile.symbols │ ├── privacyFunctionCannotNameParameterTypeDeclFile.types │ ├── privacyFunctionCannotNameReturnTypeDeclFile.js │ ├── privacyFunctionCannotNameReturnTypeDeclFile.symbols │ ├── privacyFunctionCannotNameReturnTypeDeclFile.types │ ├── privacyFunctionParameterDeclFile.js │ ├── privacyFunctionParameterDeclFile.symbols │ ├── privacyFunctionParameterDeclFile.types │ ├── privacyFunctionReturnTypeDeclFile.errors.txt │ ├── privacyFunctionReturnTypeDeclFile.js │ ├── privacyFunctionReturnTypeDeclFile.symbols │ ├── privacyFunctionReturnTypeDeclFile.types │ ├── privacyGetter(target=es2015).errors.txt │ ├── privacyGetter(target=es2015).js │ ├── privacyGetter(target=es2015).symbols │ ├── privacyGetter(target=es2015).types │ ├── privacyGetter(target=es5).errors.txt │ ├── privacyGetter(target=es5).js │ ├── privacyGetter(target=es5).symbols │ ├── privacyGetter(target=es5).types │ ├── privacyGloClass.js │ ├── privacyGloClass.symbols │ ├── privacyGloClass.types │ ├── privacyGloFunc.errors.txt │ ├── privacyGloFunc.js │ ├── privacyGloFunc.symbols │ ├── privacyGloFunc.types │ ├── privacyGloGetter(target=es2015).js │ ├── privacyGloGetter(target=es2015).symbols │ ├── privacyGloGetter(target=es2015).types │ ├── privacyGloGetter(target=es5).errors.txt │ ├── privacyGloGetter(target=es5).js │ ├── privacyGloGetter(target=es5).symbols │ ├── privacyGloGetter(target=es5).types │ ├── privacyGloImport.js │ ├── privacyGloImport.symbols │ ├── privacyGloImport.types │ ├── privacyGloImportParseErrors.errors.txt │ ├── privacyGloImportParseErrors.js │ ├── privacyGloImportParseErrors.symbols │ ├── privacyGloImportParseErrors.types │ ├── privacyGloInterface.js │ ├── privacyGloInterface.symbols │ ├── privacyGloInterface.types │ ├── privacyGloVar.errors.txt │ ├── privacyGloVar.js │ ├── privacyGloVar.symbols │ ├── privacyGloVar.types │ ├── privacyImport.js │ ├── privacyImport.symbols │ ├── privacyImport.types │ ├── privacyImportParseErrors.errors.txt │ ├── privacyImportParseErrors.js │ ├── privacyImportParseErrors.symbols │ ├── privacyImportParseErrors.types │ ├── privacyInterface.js │ ├── privacyInterface.symbols │ ├── privacyInterface.types │ ├── privacyInterfaceExtendsClauseDeclFile.js │ ├── privacyInterfaceExtendsClauseDeclFile.symbols │ ├── privacyInterfaceExtendsClauseDeclFile.types │ ├── privacyLocalInternalReferenceImportWithExport.js │ ├── privacyLocalInternalReferenceImportWithExport.symbols │ ├── privacyLocalInternalReferenceImportWithExport.types │ ├── privacyLocalInternalReferenceImportWithoutExport.errors.txt │ ├── privacyLocalInternalReferenceImportWithoutExport.js │ ├── privacyLocalInternalReferenceImportWithoutExport.symbols │ ├── privacyLocalInternalReferenceImportWithoutExport.types │ ├── privacyTopLevelAmbientExternalModuleImportWithExport.errors.txt │ ├── privacyTopLevelAmbientExternalModuleImportWithExport.js │ ├── privacyTopLevelAmbientExternalModuleImportWithExport.symbols │ ├── privacyTopLevelAmbientExternalModuleImportWithExport.types │ ├── privacyTopLevelAmbientExternalModuleImportWithoutExport.errors.txt │ ├── privacyTopLevelAmbientExternalModuleImportWithoutExport.js │ ├── privacyTopLevelAmbientExternalModuleImportWithoutExport.symbols │ ├── privacyTopLevelAmbientExternalModuleImportWithoutExport.types │ ├── privacyTopLevelInternalReferenceImportWithExport.errors.txt │ ├── privacyTopLevelInternalReferenceImportWithExport.js │ ├── privacyTopLevelInternalReferenceImportWithExport.symbols │ ├── privacyTopLevelInternalReferenceImportWithExport.types │ ├── privacyTopLevelInternalReferenceImportWithoutExport.errors.txt │ ├── privacyTopLevelInternalReferenceImportWithoutExport.js │ ├── privacyTopLevelInternalReferenceImportWithoutExport.symbols │ ├── privacyTopLevelInternalReferenceImportWithoutExport.types │ ├── privacyTypeParameterOfFunction.js │ ├── privacyTypeParameterOfFunction.symbols │ ├── privacyTypeParameterOfFunction.types │ ├── privacyTypeParameterOfFunctionDeclFile.js │ ├── privacyTypeParameterOfFunctionDeclFile.symbols │ ├── privacyTypeParameterOfFunctionDeclFile.types │ ├── privacyTypeParametersOfClass.js │ ├── privacyTypeParametersOfClass.symbols │ ├── privacyTypeParametersOfClass.types │ ├── privacyTypeParametersOfClassDeclFile.js │ ├── privacyTypeParametersOfClassDeclFile.symbols │ ├── privacyTypeParametersOfClassDeclFile.types │ ├── privacyTypeParametersOfInterface.js │ ├── privacyTypeParametersOfInterface.symbols │ ├── privacyTypeParametersOfInterface.types │ ├── privacyTypeParametersOfInterfaceDeclFile.js │ ├── privacyTypeParametersOfInterfaceDeclFile.symbols │ ├── privacyTypeParametersOfInterfaceDeclFile.types │ ├── privacyVar.errors.txt │ ├── privacyVar.js │ ├── privacyVar.symbols │ ├── privacyVar.types │ ├── privacyVarDeclFile.errors.txt │ ├── privacyVarDeclFile.js │ ├── privacyVarDeclFile.symbols │ ├── privacyVarDeclFile.types │ ├── privateAccessInSubclass1.errors.txt │ ├── privateAccessInSubclass1.js │ ├── privateAccessInSubclass1.symbols │ ├── privateAccessInSubclass1.types │ ├── privateClassPropertyAccessibleWithinClass.js │ ├── privateClassPropertyAccessibleWithinClass.symbols │ ├── privateClassPropertyAccessibleWithinClass.types │ ├── privateClassPropertyAccessibleWithinNestedClass(target=es2015).errors.txt │ ├── privateClassPropertyAccessibleWithinNestedClass(target=es2015).js │ ├── privateClassPropertyAccessibleWithinNestedClass(target=es2015).symbols │ ├── privateClassPropertyAccessibleWithinNestedClass(target=es2015).types │ ├── privateClassPropertyAccessibleWithinNestedClass(target=es5).errors.txt │ ├── privateClassPropertyAccessibleWithinNestedClass(target=es5).js │ ├── privateClassPropertyAccessibleWithinNestedClass(target=es5).symbols │ ├── privateClassPropertyAccessibleWithinNestedClass(target=es5).types │ ├── privateConstructorFunction.js │ ├── privateConstructorFunction.symbols │ ├── privateConstructorFunction.types │ ├── privateFieldAssignabilityFromUnknown(target=es2015).errors.txt │ ├── privateFieldAssignabilityFromUnknown(target=es2015).js │ ├── privateFieldAssignabilityFromUnknown(target=es2015).symbols │ ├── privateFieldAssignabilityFromUnknown(target=es2015).types │ ├── privateFieldAssignabilityFromUnknown(target=es5).errors.txt │ ├── privateFieldAssignabilityFromUnknown(target=es5).js │ ├── privateFieldAssignabilityFromUnknown(target=es5).symbols │ ├── privateFieldAssignabilityFromUnknown(target=es5).types │ ├── privateFieldsInClassExpressionDeclaration.errors.txt │ ├── privateFieldsInClassExpressionDeclaration.js │ ├── privateFieldsInClassExpressionDeclaration.symbols │ ├── privateFieldsInClassExpressionDeclaration.types │ ├── privateIdentifierChain.1.errors.txt │ ├── privateIdentifierChain.1.js │ ├── privateIdentifierChain.1.symbols │ ├── privateIdentifierChain.1.types │ ├── privateIdentifierExpando.js │ ├── privateIdentifierExpando.symbols │ ├── privateIdentifierExpando.types │ ├── privateIndexer.errors.txt │ ├── privateIndexer.js │ ├── privateIndexer.symbols │ ├── privateIndexer.types │ ├── privateIndexer2.errors.txt │ ├── privateIndexer2.js │ ├── privateIndexer2.symbols │ ├── privateIndexer2.types │ ├── privateInstanceMemberAccessibility(target=es2015).errors.txt │ ├── privateInstanceMemberAccessibility(target=es2015).js │ ├── privateInstanceMemberAccessibility(target=es2015).symbols │ ├── privateInstanceMemberAccessibility(target=es2015).types │ ├── privateInstanceMemberAccessibility(target=es5).errors.txt │ ├── privateInstanceMemberAccessibility(target=es5).js │ ├── privateInstanceMemberAccessibility(target=es5).symbols │ ├── privateInstanceMemberAccessibility(target=es5).types │ ├── privateInstanceVisibility.errors.txt │ ├── privateInstanceVisibility.js │ ├── privateInstanceVisibility.symbols │ ├── privateInstanceVisibility.types │ ├── privateInterfaceProperties.errors.txt │ ├── privateInterfaceProperties.js │ ├── privateInterfaceProperties.symbols │ ├── privateInterfaceProperties.types │ ├── privateNameAccessors.errors.txt │ ├── privateNameAccessors.js │ ├── privateNameAccessors.symbols │ ├── privateNameAccessors.types │ ├── privateNameAccessorsAccess.errors.txt │ ├── privateNameAccessorsAccess.js │ ├── privateNameAccessorsAccess.symbols │ ├── privateNameAccessorsAccess.types │ ├── privateNameAccessorsCallExpression.js │ ├── privateNameAccessorsCallExpression.symbols │ ├── privateNameAccessorsCallExpression.types │ ├── privateNameAccessorssDerivedClasses.errors.txt │ ├── privateNameAccessorssDerivedClasses.js │ ├── privateNameAccessorssDerivedClasses.symbols │ ├── privateNameAccessorssDerivedClasses.types │ ├── privateNameAmbientNoImplicitAny.errors.txt │ ├── privateNameAmbientNoImplicitAny.js │ ├── privateNameAmbientNoImplicitAny.symbols │ ├── privateNameAmbientNoImplicitAny.types │ ├── privateNameAndAny.errors.txt │ ├── privateNameAndAny.js │ ├── privateNameAndAny.symbols │ ├── privateNameAndAny.types │ ├── privateNameAndIndexSignature.errors.txt │ ├── privateNameAndIndexSignature.js │ ├── privateNameAndIndexSignature.symbols │ ├── privateNameAndIndexSignature.types │ ├── privateNameAndObjectRestSpread.errors.txt │ ├── privateNameAndObjectRestSpread.js │ ├── privateNameAndObjectRestSpread.symbols │ ├── privateNameAndObjectRestSpread.types │ ├── privateNameAndPropertySignature.errors.txt │ ├── privateNameAndPropertySignature.js │ ├── privateNameAndPropertySignature.symbols │ ├── privateNameAndPropertySignature.types │ ├── privateNameAndStaticInitializer(target=es2015).js │ ├── privateNameAndStaticInitializer(target=es2015).symbols │ ├── privateNameAndStaticInitializer(target=es2015).types │ ├── privateNameAndStaticInitializer(target=es2022).js │ ├── privateNameAndStaticInitializer(target=es2022).symbols │ ├── privateNameAndStaticInitializer(target=es2022).types │ ├── privateNameAndStaticInitializer(target=esnext).js │ ├── privateNameAndStaticInitializer(target=esnext).symbols │ ├── privateNameAndStaticInitializer(target=esnext).types │ ├── privateNameBadAssignment.errors.txt │ ├── privateNameBadAssignment.js │ ├── privateNameBadAssignment.symbols │ ├── privateNameBadAssignment.types │ ├── privateNameBadDeclaration(target=es2015).errors.txt │ ├── privateNameBadDeclaration(target=es2015).js │ ├── privateNameBadDeclaration(target=es2015).symbols │ ├── privateNameBadDeclaration(target=es2015).types │ ├── privateNameBadDeclaration(target=es5).errors.txt │ ├── privateNameBadDeclaration(target=es5).js │ ├── privateNameBadDeclaration(target=es5).symbols │ ├── privateNameBadDeclaration(target=es5).types │ ├── privateNameBadSuper.errors.txt │ ├── privateNameBadSuper.js │ ├── privateNameBadSuper.symbols │ ├── privateNameBadSuper.types │ ├── privateNameBadSuperUseDefineForClassFields(target=es2022).errors.txt │ ├── privateNameBadSuperUseDefineForClassFields(target=es2022).js │ ├── privateNameBadSuperUseDefineForClassFields(target=es2022).symbols │ ├── privateNameBadSuperUseDefineForClassFields(target=es2022).types │ ├── privateNameBadSuperUseDefineForClassFields(target=esnext).errors.txt │ ├── privateNameBadSuperUseDefineForClassFields(target=esnext).js │ ├── privateNameBadSuperUseDefineForClassFields(target=esnext).symbols │ ├── privateNameBadSuperUseDefineForClassFields(target=esnext).types │ ├── privateNameCircularReference.errors.txt │ ├── privateNameCircularReference.js │ ├── privateNameCircularReference.symbols │ ├── privateNameCircularReference.types │ ├── privateNameClassExpressionLoop.js │ ├── privateNameClassExpressionLoop.symbols │ ├── privateNameClassExpressionLoop.types │ ├── privateNameComputedPropertyName1(target=es2015).js │ ├── privateNameComputedPropertyName1(target=es2015).symbols │ ├── privateNameComputedPropertyName1(target=es2015).types │ ├── privateNameComputedPropertyName1(target=es2022).js │ ├── privateNameComputedPropertyName1(target=es2022).symbols │ ├── privateNameComputedPropertyName1(target=es2022).types │ ├── privateNameComputedPropertyName1(target=esnext).js │ ├── privateNameComputedPropertyName1(target=esnext).symbols │ ├── privateNameComputedPropertyName1(target=esnext).types │ ├── privateNameComputedPropertyName2(target=es2015).errors.txt │ ├── privateNameComputedPropertyName2(target=es2015).js │ ├── privateNameComputedPropertyName2(target=es2015).symbols │ ├── privateNameComputedPropertyName2(target=es2015).types │ ├── privateNameComputedPropertyName2(target=es2022).errors.txt │ ├── privateNameComputedPropertyName2(target=es2022).js │ ├── privateNameComputedPropertyName2(target=es2022).symbols │ ├── privateNameComputedPropertyName2(target=es2022).types │ ├── privateNameComputedPropertyName2(target=esnext).errors.txt │ ├── privateNameComputedPropertyName2(target=esnext).js │ ├── privateNameComputedPropertyName2(target=esnext).symbols │ ├── privateNameComputedPropertyName2(target=esnext).types │ ├── privateNameComputedPropertyName3(target=es2015).js │ ├── privateNameComputedPropertyName3(target=es2015).symbols │ ├── privateNameComputedPropertyName3(target=es2015).types │ ├── privateNameComputedPropertyName3(target=es2022).js │ ├── privateNameComputedPropertyName3(target=es2022).symbols │ ├── privateNameComputedPropertyName3(target=es2022).types │ ├── privateNameComputedPropertyName3(target=esnext).js │ ├── privateNameComputedPropertyName3(target=esnext).symbols │ ├── privateNameComputedPropertyName3(target=esnext).types │ ├── privateNameComputedPropertyName4(target=es2015).js │ ├── privateNameComputedPropertyName4(target=es2022).js │ ├── privateNameComputedPropertyName4(target=esnext).js │ ├── privateNameConstructorReserved.errors.txt │ ├── privateNameConstructorReserved.js │ ├── privateNameConstructorReserved.symbols │ ├── privateNameConstructorReserved.types │ ├── privateNameConstructorSignature.js │ ├── privateNameConstructorSignature.symbols │ ├── privateNameConstructorSignature.types │ ├── privateNameDeclaration.errors.txt │ ├── privateNameDeclaration.js │ ├── privateNameDeclaration.symbols │ ├── privateNameDeclaration.types │ ├── privateNameDeclarationMerging.errors.txt │ ├── privateNameDeclarationMerging.js │ ├── privateNameDeclarationMerging.symbols │ ├── privateNameDeclarationMerging.types │ ├── privateNameDuplicateField.errors.txt │ ├── privateNameDuplicateField.js │ ├── privateNameDuplicateField.symbols │ ├── privateNameDuplicateField.types │ ├── privateNameES5Ban(target=es2015).js │ ├── privateNameES5Ban(target=es2015).symbols │ ├── privateNameES5Ban(target=es2015).types │ ├── privateNameES5Ban(target=es5).errors.txt │ ├── privateNameES5Ban(target=es5).js │ ├── privateNameES5Ban(target=es5).symbols │ ├── privateNameES5Ban(target=es5).types │ ├── privateNameEmitHelpers.errors.txt │ ├── privateNameEmitHelpers.js │ ├── privateNameEmitHelpers.symbols │ ├── privateNameEmitHelpers.types │ ├── privateNameEnum.errors.txt │ ├── privateNameEnum.js │ ├── privateNameEnum.symbols │ ├── privateNameEnum.types │ ├── privateNameField.js │ ├── privateNameField.symbols │ ├── privateNameField.types │ ├── privateNameFieldAccess.js │ ├── privateNameFieldAccess.symbols │ ├── privateNameFieldAccess.types │ ├── privateNameFieldAssignment.js │ ├── privateNameFieldAssignment.symbols │ ├── privateNameFieldAssignment.types │ ├── privateNameFieldCallExpression.js │ ├── privateNameFieldCallExpression.symbols │ ├── privateNameFieldCallExpression.types │ ├── privateNameFieldClassExpression.js │ ├── privateNameFieldClassExpression.symbols │ ├── privateNameFieldClassExpression.types │ ├── privateNameFieldDerivedClasses.errors.txt │ ├── privateNameFieldDerivedClasses.js │ ├── privateNameFieldDerivedClasses.symbols │ ├── privateNameFieldDerivedClasses.types │ ├── privateNameFieldDestructuredBinding(target=es2015).js │ ├── privateNameFieldDestructuredBinding(target=es2015).symbols │ ├── privateNameFieldDestructuredBinding(target=es2015).types │ ├── privateNameFieldDestructuredBinding(target=es2022).js │ ├── privateNameFieldDestructuredBinding(target=es2022).symbols │ ├── privateNameFieldDestructuredBinding(target=es2022).types │ ├── privateNameFieldDestructuredBinding(target=esnext).js │ ├── privateNameFieldDestructuredBinding(target=esnext).symbols │ ├── privateNameFieldDestructuredBinding(target=esnext).types │ ├── privateNameFieldInitializer.js │ ├── privateNameFieldInitializer.symbols │ ├── privateNameFieldInitializer.types │ ├── privateNameFieldParenthesisLeftAssignment.js │ ├── privateNameFieldParenthesisLeftAssignment.symbols │ ├── privateNameFieldParenthesisLeftAssignment.types │ ├── privateNameFieldUnaryMutation.js │ ├── privateNameFieldUnaryMutation.symbols │ ├── privateNameFieldUnaryMutation.types │ ├── privateNameFieldsESNext(target=es2022).errors.txt │ ├── privateNameFieldsESNext(target=es2022).js │ ├── privateNameFieldsESNext(target=es2022).symbols │ ├── privateNameFieldsESNext(target=es2022).types │ ├── privateNameFieldsESNext(target=esnext).errors.txt │ ├── privateNameFieldsESNext(target=esnext).js │ ├── privateNameFieldsESNext(target=esnext).symbols │ ├── privateNameFieldsESNext(target=esnext).types │ ├── privateNameHashCharName.errors.txt │ ├── privateNameHashCharName.js │ ├── privateNameHashCharName.symbols │ ├── privateNameHashCharName.types │ ├── privateNameImplicitDeclaration.errors.txt │ ├── privateNameImplicitDeclaration.symbols │ ├── privateNameImplicitDeclaration.types │ ├── privateNameInInExpression(target=es2022).errors.txt │ ├── privateNameInInExpression(target=es2022).js │ ├── privateNameInInExpression(target=es2022).symbols │ ├── privateNameInInExpression(target=es2022).types │ ├── privateNameInInExpression(target=esnext).errors.txt │ ├── privateNameInInExpression(target=esnext).js │ ├── privateNameInInExpression(target=esnext).symbols │ ├── privateNameInInExpression(target=esnext).types │ ├── privateNameInInExpressionTransform(target=es2020).errors.txt │ ├── privateNameInInExpressionTransform(target=es2020).js │ ├── privateNameInInExpressionTransform(target=es2020).symbols │ ├── privateNameInInExpressionTransform(target=es2020).types │ ├── privateNameInInExpressionTransform(target=es2022).errors.txt │ ├── privateNameInInExpressionTransform(target=es2022).js │ ├── privateNameInInExpressionTransform(target=es2022).symbols │ ├── privateNameInInExpressionTransform(target=es2022).types │ ├── privateNameInInExpressionTransform(target=esnext).errors.txt │ ├── privateNameInInExpressionTransform(target=esnext).js │ ├── privateNameInInExpressionTransform(target=esnext).symbols │ ├── privateNameInInExpressionTransform(target=esnext).types │ ├── privateNameInInExpressionUnused(target=es2022).errors.txt │ ├── privateNameInInExpressionUnused(target=es2022).js │ ├── privateNameInInExpressionUnused(target=es2022).symbols │ ├── privateNameInInExpressionUnused(target=es2022).types │ ├── privateNameInInExpressionUnused(target=esnext).errors.txt │ ├── privateNameInInExpressionUnused(target=esnext).js │ ├── privateNameInInExpressionUnused(target=esnext).symbols │ ├── privateNameInInExpressionUnused(target=esnext).types │ ├── privateNameInLhsReceiverExpression.js │ ├── privateNameInLhsReceiverExpression.symbols │ ├── privateNameInLhsReceiverExpression.types │ ├── privateNameInObjectLiteral-1.errors.txt │ ├── privateNameInObjectLiteral-1.js │ ├── privateNameInObjectLiteral-1.symbols │ ├── privateNameInObjectLiteral-1.types │ ├── privateNameInObjectLiteral-2.errors.txt │ ├── privateNameInObjectLiteral-2.js │ ├── privateNameInObjectLiteral-2.symbols │ ├── privateNameInObjectLiteral-2.types │ ├── privateNameInObjectLiteral-3(target=es2015).errors.txt │ ├── privateNameInObjectLiteral-3(target=es2015).js │ ├── privateNameInObjectLiteral-3(target=es2015).symbols │ ├── privateNameInObjectLiteral-3(target=es2015).types │ ├── privateNameInObjectLiteral-3(target=es5).errors.txt │ ├── privateNameInObjectLiteral-3(target=es5).js │ ├── privateNameInObjectLiteral-3(target=es5).symbols │ ├── privateNameInObjectLiteral-3(target=es5).types │ ├── privateNameJsBadAssignment.errors.txt │ ├── privateNameJsBadAssignment.symbols │ ├── privateNameJsBadAssignment.types │ ├── privateNameJsBadDeclaration(target=es2015).errors.txt │ ├── privateNameJsBadDeclaration(target=es2015).symbols │ ├── privateNameJsBadDeclaration(target=es2015).types │ ├── privateNameJsBadDeclaration(target=es5).errors.txt │ ├── privateNameJsBadDeclaration(target=es5).symbols │ ├── privateNameJsBadDeclaration(target=es5).types │ ├── privateNameJsx.errors.txt │ ├── privateNameJsx.js │ ├── privateNameJsx.symbols │ ├── privateNameJsx.types │ ├── privateNameLateSuper.js │ ├── privateNameLateSuper.symbols │ ├── privateNameLateSuper.types │ ├── privateNameLateSuperUseDefineForClassFields(target=es2022).js │ ├── privateNameLateSuperUseDefineForClassFields(target=es2022).symbols │ ├── privateNameLateSuperUseDefineForClassFields(target=es2022).types │ ├── privateNameLateSuperUseDefineForClassFields(target=esnext).js │ ├── privateNameLateSuperUseDefineForClassFields(target=esnext).symbols │ ├── privateNameLateSuperUseDefineForClassFields(target=esnext).types │ ├── privateNameMethod.errors.txt │ ├── privateNameMethod.js │ ├── privateNameMethod.symbols │ ├── privateNameMethod.types │ ├── privateNameMethodAccess.errors.txt │ ├── privateNameMethodAccess.js │ ├── privateNameMethodAccess.symbols │ ├── privateNameMethodAccess.types │ ├── privateNameMethodAssignment.errors.txt │ ├── privateNameMethodAssignment.js │ ├── privateNameMethodAssignment.symbols │ ├── privateNameMethodAssignment.types │ ├── privateNameMethodAsync.js │ ├── privateNameMethodAsync.symbols │ ├── privateNameMethodAsync.types │ ├── privateNameMethodCallExpression.js │ ├── privateNameMethodCallExpression.symbols │ ├── privateNameMethodCallExpression.types │ ├── privateNameMethodClassExpression.errors.txt │ ├── privateNameMethodClassExpression.js │ ├── privateNameMethodClassExpression.symbols │ ├── privateNameMethodClassExpression.types │ ├── privateNameMethodInStaticFieldInit.js │ ├── privateNameMethodInStaticFieldInit.symbols │ ├── privateNameMethodInStaticFieldInit.types │ ├── privateNameMethodsDerivedClasses.errors.txt │ ├── privateNameMethodsDerivedClasses.js │ ├── privateNameMethodsDerivedClasses.symbols │ ├── privateNameMethodsDerivedClasses.types │ ├── privateNameNestedClassAccessorsShadowing.errors.txt │ ├── privateNameNestedClassAccessorsShadowing.js │ ├── privateNameNestedClassAccessorsShadowing.symbols │ ├── privateNameNestedClassAccessorsShadowing.types │ ├── privateNameNestedClassFieldShadowing.errors.txt │ ├── privateNameNestedClassFieldShadowing.js │ ├── privateNameNestedClassFieldShadowing.symbols │ ├── privateNameNestedClassFieldShadowing.types │ ├── privateNameNestedClassMethodShadowing.errors.txt │ ├── privateNameNestedClassMethodShadowing.js │ ├── privateNameNestedClassMethodShadowing.symbols │ ├── privateNameNestedClassMethodShadowing.types │ ├── privateNameNestedClassNameConflict.errors.txt │ ├── privateNameNestedClassNameConflict.js │ ├── privateNameNestedClassNameConflict.symbols │ ├── privateNameNestedClassNameConflict.types │ ├── privateNameNestedMethodAccess.errors.txt │ ├── privateNameNestedMethodAccess.js │ ├── privateNameNestedMethodAccess.symbols │ ├── privateNameNestedMethodAccess.types │ ├── privateNameNotAccessibleOutsideDefiningClass.errors.txt │ ├── privateNameNotAccessibleOutsideDefiningClass.js │ ├── privateNameNotAccessibleOutsideDefiningClass.symbols │ ├── privateNameNotAccessibleOutsideDefiningClass.types │ ├── privateNameNotAllowedOutsideClass.errors.txt │ ├── privateNameNotAllowedOutsideClass.js │ ├── privateNameNotAllowedOutsideClass.symbols │ ├── privateNameNotAllowedOutsideClass.types │ ├── privateNameReadonly.errors.txt │ ├── privateNameReadonly.js │ ├── privateNameReadonly.symbols │ ├── privateNameReadonly.types │ ├── privateNameSetterExprReturnValue.js │ ├── privateNameSetterExprReturnValue.symbols │ ├── privateNameSetterExprReturnValue.types │ ├── privateNameSetterNoGetter.errors.txt │ ├── privateNameSetterNoGetter.js │ ├── privateNameSetterNoGetter.symbols │ ├── privateNameSetterNoGetter.types │ ├── privateNameStaticAccessors.errors.txt │ ├── privateNameStaticAccessors.js │ ├── privateNameStaticAccessors.symbols │ ├── privateNameStaticAccessors.types │ ├── privateNameStaticAccessorsAccess.errors.txt │ ├── privateNameStaticAccessorsAccess.js │ ├── privateNameStaticAccessorsAccess.symbols │ ├── privateNameStaticAccessorsAccess.types │ ├── privateNameStaticAccessorsCallExpression.js │ ├── privateNameStaticAccessorsCallExpression.symbols │ ├── privateNameStaticAccessorsCallExpression.types │ ├── privateNameStaticAccessorssDerivedClasses.errors.txt │ ├── privateNameStaticAccessorssDerivedClasses.js │ ├── privateNameStaticAccessorssDerivedClasses.symbols │ ├── privateNameStaticAccessorssDerivedClasses.types │ ├── privateNameStaticAndStaticInitializer(target=es2015).js │ ├── privateNameStaticAndStaticInitializer(target=es2015).symbols │ ├── privateNameStaticAndStaticInitializer(target=es2015).types │ ├── privateNameStaticAndStaticInitializer(target=es2022).js │ ├── privateNameStaticAndStaticInitializer(target=es2022).symbols │ ├── privateNameStaticAndStaticInitializer(target=es2022).types │ ├── privateNameStaticAndStaticInitializer(target=esnext).js │ ├── privateNameStaticAndStaticInitializer(target=esnext).symbols │ ├── privateNameStaticAndStaticInitializer(target=esnext).types │ ├── privateNameStaticEmitHelpers.errors.txt │ ├── privateNameStaticEmitHelpers.js │ ├── privateNameStaticEmitHelpers.symbols │ ├── privateNameStaticEmitHelpers.types │ ├── privateNameStaticFieldAccess.errors.txt │ ├── privateNameStaticFieldAccess.js │ ├── privateNameStaticFieldAccess.symbols │ ├── privateNameStaticFieldAccess.types │ ├── privateNameStaticFieldAssignment.js │ ├── privateNameStaticFieldAssignment.symbols │ ├── privateNameStaticFieldAssignment.types │ ├── privateNameStaticFieldCallExpression.js │ ├── privateNameStaticFieldCallExpression.symbols │ ├── privateNameStaticFieldCallExpression.types │ ├── privateNameStaticFieldClassExpression.js │ ├── privateNameStaticFieldClassExpression.symbols │ ├── privateNameStaticFieldClassExpression.types │ ├── privateNameStaticFieldDerivedClasses.errors.txt │ ├── privateNameStaticFieldDerivedClasses.js │ ├── privateNameStaticFieldDerivedClasses.symbols │ ├── privateNameStaticFieldDerivedClasses.types │ ├── privateNameStaticFieldDestructuredBinding(target=es2015).js │ ├── privateNameStaticFieldDestructuredBinding(target=es2015).symbols │ ├── privateNameStaticFieldDestructuredBinding(target=es2015).types │ ├── privateNameStaticFieldDestructuredBinding(target=es2022).js │ ├── privateNameStaticFieldDestructuredBinding(target=es2022).symbols │ ├── privateNameStaticFieldDestructuredBinding(target=es2022).types │ ├── privateNameStaticFieldDestructuredBinding(target=esnext).js │ ├── privateNameStaticFieldDestructuredBinding(target=esnext).symbols │ ├── privateNameStaticFieldDestructuredBinding(target=esnext).types │ ├── privateNameStaticFieldInitializer(target=es2015).js │ ├── privateNameStaticFieldInitializer(target=es2015).symbols │ ├── privateNameStaticFieldInitializer(target=es2015).types │ ├── privateNameStaticFieldInitializer(target=es2022).js │ ├── privateNameStaticFieldInitializer(target=es2022).symbols │ ├── privateNameStaticFieldInitializer(target=es2022).types │ ├── privateNameStaticFieldInitializer(target=esnext).js │ ├── privateNameStaticFieldInitializer(target=esnext).symbols │ ├── privateNameStaticFieldInitializer(target=esnext).types │ ├── privateNameStaticFieldNoInitializer(target=es2015).js │ ├── privateNameStaticFieldNoInitializer(target=es2015).symbols │ ├── privateNameStaticFieldNoInitializer(target=es2015).types │ ├── privateNameStaticFieldNoInitializer(target=es2022).js │ ├── privateNameStaticFieldNoInitializer(target=es2022).symbols │ ├── privateNameStaticFieldNoInitializer(target=es2022).types │ ├── privateNameStaticFieldNoInitializer(target=esnext).js │ ├── privateNameStaticFieldNoInitializer(target=esnext).symbols │ ├── privateNameStaticFieldNoInitializer(target=esnext).types │ ├── privateNameStaticFieldUnaryMutation.js │ ├── privateNameStaticFieldUnaryMutation.symbols │ ├── privateNameStaticFieldUnaryMutation.types │ ├── privateNameStaticMethod.errors.txt │ ├── privateNameStaticMethod.js │ ├── privateNameStaticMethod.symbols │ ├── privateNameStaticMethod.types │ ├── privateNameStaticMethodAssignment.errors.txt │ ├── privateNameStaticMethodAssignment.js │ ├── privateNameStaticMethodAssignment.symbols │ ├── privateNameStaticMethodAssignment.types │ ├── privateNameStaticMethodAsync.errors.txt │ ├── privateNameStaticMethodAsync.js │ ├── privateNameStaticMethodAsync.symbols │ ├── privateNameStaticMethodAsync.types │ ├── privateNameStaticMethodCallExpression.js │ ├── privateNameStaticMethodCallExpression.symbols │ ├── privateNameStaticMethodCallExpression.types │ ├── privateNameStaticMethodClassExpression.errors.txt │ ├── privateNameStaticMethodClassExpression.js │ ├── privateNameStaticMethodClassExpression.symbols │ ├── privateNameStaticMethodClassExpression.types │ ├── privateNameStaticMethodInStaticFieldInit.js │ ├── privateNameStaticMethodInStaticFieldInit.symbols │ ├── privateNameStaticMethodInStaticFieldInit.types │ ├── privateNameStaticsAndStaticMethods(target=es2022).js │ ├── privateNameStaticsAndStaticMethods(target=es2022).symbols │ ├── privateNameStaticsAndStaticMethods(target=es2022).types │ ├── privateNameStaticsAndStaticMethods(target=esnext).js │ ├── privateNameStaticsAndStaticMethods(target=esnext).symbols │ ├── privateNameStaticsAndStaticMethods(target=esnext).types │ ├── privateNameUncheckedJsOptionalChain.errors.txt │ ├── privateNameUncheckedJsOptionalChain.symbols │ ├── privateNameUncheckedJsOptionalChain.types │ ├── privateNameUnused.errors.txt │ ├── privateNameUnused.symbols │ ├── privateNameUnused.types │ ├── privateNameWeakMapCollision.errors.txt │ ├── privateNameWeakMapCollision.js │ ├── privateNameWeakMapCollision.symbols │ ├── privateNameWeakMapCollision.types │ ├── privateNameWhenNotUseDefineForClassFieldsInEsNext(target=es2020).js │ ├── privateNameWhenNotUseDefineForClassFieldsInEsNext(target=es2020).symbols │ ├── privateNameWhenNotUseDefineForClassFieldsInEsNext(target=es2020).types │ ├── privateNameWhenNotUseDefineForClassFieldsInEsNext(target=esnext).js │ ├── privateNameWhenNotUseDefineForClassFieldsInEsNext(target=esnext).symbols │ ├── privateNameWhenNotUseDefineForClassFieldsInEsNext(target=esnext).types │ ├── privateNamesAndDecorators.errors.txt │ ├── privateNamesAndDecorators.js │ ├── privateNamesAndDecorators.symbols │ ├── privateNamesAndDecorators.types │ ├── privateNamesAndFields.js │ ├── privateNamesAndFields.symbols │ ├── privateNamesAndFields.types │ ├── privateNamesAndGenericClasses-2.errors.txt │ ├── privateNamesAndGenericClasses-2.js │ ├── privateNamesAndGenericClasses-2.symbols │ ├── privateNamesAndGenericClasses-2.types │ ├── privateNamesAndIndexedAccess.errors.txt │ ├── privateNamesAndIndexedAccess.js │ ├── privateNamesAndIndexedAccess.symbols │ ├── privateNamesAndIndexedAccess.types │ ├── privateNamesAndMethods(target=es2022).errors.txt │ ├── privateNamesAndMethods(target=es2022).js │ ├── privateNamesAndMethods(target=es2022).symbols │ ├── privateNamesAndMethods(target=es2022).types │ ├── privateNamesAndMethods(target=esnext).errors.txt │ ├── privateNamesAndMethods(target=esnext).js │ ├── privateNamesAndMethods(target=esnext).symbols │ ├── privateNamesAndMethods(target=esnext).types │ ├── privateNamesAndStaticFields.errors.txt │ ├── privateNamesAndStaticFields.js │ ├── privateNamesAndStaticFields.symbols │ ├── privateNamesAndStaticFields.types │ ├── privateNamesAndStaticMethods(target=es2022).js │ ├── privateNamesAndStaticMethods(target=es2022).symbols │ ├── privateNamesAndStaticMethods(target=es2022).types │ ├── privateNamesAndStaticMethods(target=esnext).js │ ├── privateNamesAndStaticMethods(target=esnext).symbols │ ├── privateNamesAndStaticMethods(target=esnext).types │ ├── privateNamesAndkeyof.errors.txt │ ├── privateNamesAndkeyof.js │ ├── privateNamesAndkeyof.symbols │ ├── privateNamesAndkeyof.types │ ├── privateNamesAssertion(target=es2022).js │ ├── privateNamesAssertion(target=es2022).symbols │ ├── privateNamesAssertion(target=es2022).types │ ├── privateNamesAssertion(target=esnext).js │ ├── privateNamesAssertion(target=esnext).symbols │ ├── privateNamesAssertion(target=esnext).types │ ├── privateNamesConstructorChain-1.errors.txt │ ├── privateNamesConstructorChain-1.js │ ├── privateNamesConstructorChain-1.symbols │ ├── privateNamesConstructorChain-1.types │ ├── privateNamesConstructorChain-2.errors.txt │ ├── privateNamesConstructorChain-2.js │ ├── privateNamesConstructorChain-2.symbols │ ├── privateNamesConstructorChain-2.types │ ├── privateNamesInGenericClasses.errors.txt │ ├── privateNamesInGenericClasses.js │ ├── privateNamesInGenericClasses.symbols │ ├── privateNamesInGenericClasses.types │ ├── privateNamesInNestedClasses-1.errors.txt │ ├── privateNamesInNestedClasses-1.js │ ├── privateNamesInNestedClasses-1.symbols │ ├── privateNamesInNestedClasses-1.types │ ├── privateNamesInNestedClasses-2.errors.txt │ ├── privateNamesInNestedClasses-2.js │ ├── privateNamesInNestedClasses-2.symbols │ ├── privateNamesInNestedClasses-2.types │ ├── privateNamesIncompatibleModifiers.errors.txt │ ├── privateNamesIncompatibleModifiers.js │ ├── privateNamesIncompatibleModifiers.symbols │ ├── privateNamesIncompatibleModifiers.types │ ├── privateNamesIncompatibleModifiersJs.errors.txt │ ├── privateNamesIncompatibleModifiersJs.js │ ├── privateNamesIncompatibleModifiersJs.symbols │ ├── privateNamesIncompatibleModifiersJs.types │ ├── privateNamesInterfaceExtendingClass.errors.txt │ ├── privateNamesInterfaceExtendingClass.js │ ├── privateNamesInterfaceExtendingClass.symbols │ ├── privateNamesInterfaceExtendingClass.types │ ├── privateNamesNoDelete.errors.txt │ ├── privateNamesNoDelete.js │ ├── privateNamesNoDelete.symbols │ ├── privateNamesNoDelete.types │ ├── privateNamesNotAllowedAsParameters.errors.txt │ ├── privateNamesNotAllowedAsParameters.js │ ├── privateNamesNotAllowedAsParameters.symbols │ ├── privateNamesNotAllowedAsParameters.types │ ├── privateNamesNotAllowedInVariableDeclarations.errors.txt │ ├── privateNamesNotAllowedInVariableDeclarations.js │ ├── privateNamesNotAllowedInVariableDeclarations.symbols │ ├── privateNamesNotAllowedInVariableDeclarations.types │ ├── privateNamesUnique-1.errors.txt │ ├── privateNamesUnique-1.js │ ├── privateNamesUnique-1.symbols │ ├── privateNamesUnique-1.types │ ├── privateNamesUnique-2.errors.txt │ ├── privateNamesUnique-2.js │ ├── privateNamesUnique-2.symbols │ ├── privateNamesUnique-2.types │ ├── privateNamesUnique-3.errors.txt │ ├── privateNamesUnique-3.js │ ├── privateNamesUnique-3.symbols │ ├── privateNamesUnique-3.types │ ├── privateNamesUnique-4.errors.txt │ ├── privateNamesUnique-4.js │ ├── privateNamesUnique-4.symbols │ ├── privateNamesUnique-4.types │ ├── privateNamesUnique-5.errors.txt │ ├── privateNamesUnique-5.js │ ├── privateNamesUnique-5.symbols │ ├── privateNamesUnique-5.types │ ├── privateNamesUseBeforeDef.errors.txt │ ├── privateNamesUseBeforeDef.js │ ├── privateNamesUseBeforeDef.symbols │ ├── privateNamesUseBeforeDef.types │ ├── privatePropertyInUnion.js │ ├── privatePropertyInUnion.symbols │ ├── privatePropertyInUnion.types │ ├── privatePropertyUsingObjectType.errors.txt │ ├── privatePropertyUsingObjectType.js │ ├── privatePropertyUsingObjectType.symbols │ ├── privatePropertyUsingObjectType.types │ ├── privateProtectedMembersAreNotAccessibleDestructuring.errors.txt │ ├── privateProtectedMembersAreNotAccessibleDestructuring.js │ ├── privateProtectedMembersAreNotAccessibleDestructuring.symbols │ ├── privateProtectedMembersAreNotAccessibleDestructuring.types │ ├── privateStaticMemberAccessibility.errors.txt │ ├── privateStaticMemberAccessibility.js │ ├── privateStaticMemberAccessibility.symbols │ ├── privateStaticMemberAccessibility.types │ ├── privateStaticNameShadowing.js │ ├── privateStaticNameShadowing.symbols │ ├── privateStaticNameShadowing.types │ ├── privateStaticNotAccessibleInClodule.errors.txt │ ├── privateStaticNotAccessibleInClodule.js │ ├── privateStaticNotAccessibleInClodule.symbols │ ├── privateStaticNotAccessibleInClodule.types │ ├── privateStaticNotAccessibleInClodule2.errors.txt │ ├── privateStaticNotAccessibleInClodule2.js │ ├── privateStaticNotAccessibleInClodule2.symbols │ ├── privateStaticNotAccessibleInClodule2.types │ ├── privateVisibility.errors.txt │ ├── privateVisibility.js │ ├── privateVisibility.symbols │ ├── privateVisibility.types │ ├── privateVisibles.js │ ├── privateVisibles.symbols │ ├── privateVisibles.types │ ├── privateWriteOnlyAccessorRead.errors.txt │ ├── privateWriteOnlyAccessorRead.js │ ├── privateWriteOnlyAccessorRead.symbols │ ├── privateWriteOnlyAccessorRead.types │ ├── processInvalidSyntax1.baseline.jsonc │ ├── project/ │ │ ├── baseline/ │ │ │ ├── amd/ │ │ │ │ ├── baseline.errors.txt │ │ │ │ ├── baseline.json │ │ │ │ ├── decl.js │ │ │ │ └── emit.js │ │ │ └── node/ │ │ │ ├── baseline.errors.txt │ │ │ ├── baseline.json │ │ │ ├── decl.js │ │ │ └── emit.js │ │ ├── baseline2/ │ │ │ ├── amd/ │ │ │ │ ├── baseline2.errors.txt │ │ │ │ ├── baseline2.json │ │ │ │ ├── decl.js │ │ │ │ └── dont_emit.js │ │ │ └── node/ │ │ │ ├── baseline2.errors.txt │ │ │ ├── baseline2.json │ │ │ ├── decl.js │ │ │ └── dont_emit.js │ │ ├── baseline3/ │ │ │ ├── amd/ │ │ │ │ ├── baseline3.errors.txt │ │ │ │ ├── baseline3.json │ │ │ │ └── nestedModule.js │ │ │ └── node/ │ │ │ ├── baseline3.errors.txt │ │ │ ├── baseline3.json │ │ │ └── nestedModule.js │ │ ├── cantFindTheModule/ │ │ │ ├── amd/ │ │ │ │ ├── cantFindTheModule.errors.txt │ │ │ │ └── cantFindTheModule.json │ │ │ └── node/ │ │ │ ├── cantFindTheModule.errors.txt │ │ │ └── cantFindTheModule.json │ │ ├── circularReferencing/ │ │ │ ├── amd/ │ │ │ │ ├── circularReferencing.errors.txt │ │ │ │ └── circularReferencing.json │ │ │ └── node/ │ │ │ ├── circularReferencing.errors.txt │ │ │ └── circularReferencing.json │ │ ├── circularReferencing2/ │ │ │ ├── amd/ │ │ │ │ ├── circularReferencing2.errors.txt │ │ │ │ └── circularReferencing2.json │ │ │ └── node/ │ │ │ ├── circularReferencing2.errors.txt │ │ │ └── circularReferencing2.json │ │ ├── declarationDir/ │ │ │ ├── amd/ │ │ │ │ ├── a.js │ │ │ │ ├── declarationDir.errors.txt │ │ │ │ ├── declarationDir.json │ │ │ │ ├── declarations/ │ │ │ │ │ ├── a.d.ts │ │ │ │ │ └── subfolder/ │ │ │ │ │ ├── b.d.ts │ │ │ │ │ └── c.d.ts │ │ │ │ └── subfolder/ │ │ │ │ ├── b.js │ │ │ │ └── c.js │ │ │ └── node/ │ │ │ ├── a.js │ │ │ ├── declarationDir.errors.txt │ │ │ ├── declarationDir.json │ │ │ ├── declarations/ │ │ │ │ ├── a.d.ts │ │ │ │ └── subfolder/ │ │ │ │ ├── b.d.ts │ │ │ │ └── c.d.ts │ │ │ └── subfolder/ │ │ │ ├── b.js │ │ │ └── c.js │ │ ├── declarationDir2/ │ │ │ ├── amd/ │ │ │ │ ├── declarationDir2.errors.txt │ │ │ │ ├── declarationDir2.json │ │ │ │ ├── declarations/ │ │ │ │ │ ├── a.d.ts │ │ │ │ │ └── subfolder/ │ │ │ │ │ ├── b.d.ts │ │ │ │ │ └── c.d.ts │ │ │ │ └── out/ │ │ │ │ ├── a.js │ │ │ │ └── subfolder/ │ │ │ │ ├── b.js │ │ │ │ └── c.js │ │ │ └── node/ │ │ │ ├── declarationDir2.errors.txt │ │ │ ├── declarationDir2.json │ │ │ ├── declarations/ │ │ │ │ ├── a.d.ts │ │ │ │ └── subfolder/ │ │ │ │ ├── b.d.ts │ │ │ │ └── c.d.ts │ │ │ └── out/ │ │ │ ├── a.js │ │ │ └── subfolder/ │ │ │ ├── b.js │ │ │ └── c.js │ │ ├── declarationDir3/ │ │ │ ├── amd/ │ │ │ │ ├── declarationDir3.errors.txt │ │ │ │ ├── declarationDir3.json │ │ │ │ ├── out.d.ts │ │ │ │ └── out.js │ │ │ └── node/ │ │ │ ├── declarationDir3.errors.txt │ │ │ └── declarationDir3.json │ │ ├── declarationsCascadingImports/ │ │ │ ├── amd/ │ │ │ │ ├── declarationsCascadingImports.errors.txt │ │ │ │ ├── declarationsCascadingImports.json │ │ │ │ ├── m4.d.ts │ │ │ │ ├── m4.js │ │ │ │ ├── useModule.d.ts │ │ │ │ └── useModule.js │ │ │ └── node/ │ │ │ ├── declarationsCascadingImports.errors.txt │ │ │ ├── declarationsCascadingImports.json │ │ │ ├── m4.d.ts │ │ │ ├── m4.js │ │ │ ├── useModule.d.ts │ │ │ └── useModule.js │ │ ├── declarationsExportNamespace/ │ │ │ ├── amd/ │ │ │ │ ├── declarationsExportNamespace.errors.txt │ │ │ │ ├── declarationsExportNamespace.json │ │ │ │ ├── useModule.d.ts │ │ │ │ └── useModule.js │ │ │ └── node/ │ │ │ ├── declarationsExportNamespace.errors.txt │ │ │ ├── declarationsExportNamespace.json │ │ │ ├── useModule.d.ts │ │ │ └── useModule.js │ │ ├── declarationsGlobalImport/ │ │ │ ├── amd/ │ │ │ │ ├── declarationsGlobalImport.errors.txt │ │ │ │ ├── declarationsGlobalImport.json │ │ │ │ ├── glo_m4.d.ts │ │ │ │ ├── glo_m4.js │ │ │ │ ├── useModule.d.ts │ │ │ │ └── useModule.js │ │ │ └── node/ │ │ │ ├── declarationsGlobalImport.errors.txt │ │ │ ├── declarationsGlobalImport.json │ │ │ ├── glo_m4.d.ts │ │ │ ├── glo_m4.js │ │ │ ├── useModule.d.ts │ │ │ └── useModule.js │ │ ├── declarationsImportedInPrivate/ │ │ │ ├── amd/ │ │ │ │ ├── declarationsImportedInPrivate.errors.txt │ │ │ │ ├── declarationsImportedInPrivate.json │ │ │ │ ├── private_m4.d.ts │ │ │ │ ├── private_m4.js │ │ │ │ ├── useModule.d.ts │ │ │ │ └── useModule.js │ │ │ └── node/ │ │ │ ├── declarationsImportedInPrivate.errors.txt │ │ │ ├── declarationsImportedInPrivate.json │ │ │ ├── private_m4.d.ts │ │ │ ├── private_m4.js │ │ │ ├── useModule.d.ts │ │ │ └── useModule.js │ │ ├── declarationsImportedUseInFunction/ │ │ │ ├── amd/ │ │ │ │ ├── declarationsImportedUseInFunction.errors.txt │ │ │ │ ├── declarationsImportedUseInFunction.json │ │ │ │ ├── fncOnly_m4.d.ts │ │ │ │ ├── fncOnly_m4.js │ │ │ │ ├── useModule.d.ts │ │ │ │ └── useModule.js │ │ │ └── node/ │ │ │ ├── declarationsImportedUseInFunction.errors.txt │ │ │ ├── declarationsImportedUseInFunction.json │ │ │ ├── fncOnly_m4.d.ts │ │ │ ├── fncOnly_m4.js │ │ │ ├── useModule.d.ts │ │ │ └── useModule.js │ │ ├── declarationsIndirectImportShouldResultInError/ │ │ │ ├── amd/ │ │ │ │ ├── declarationsIndirectImportShouldResultInError.errors.txt │ │ │ │ ├── declarationsIndirectImportShouldResultInError.json │ │ │ │ ├── m4.js │ │ │ │ ├── m5.js │ │ │ │ └── useModule.js │ │ │ └── node/ │ │ │ ├── declarationsIndirectImportShouldResultInError.errors.txt │ │ │ ├── declarationsIndirectImportShouldResultInError.json │ │ │ ├── m4.js │ │ │ ├── m5.js │ │ │ └── useModule.js │ │ ├── declarationsMultipleTimesImport/ │ │ │ ├── amd/ │ │ │ │ ├── declarationsMultipleTimesImport.errors.txt │ │ │ │ ├── declarationsMultipleTimesImport.json │ │ │ │ ├── m4.d.ts │ │ │ │ ├── m4.js │ │ │ │ ├── useModule.d.ts │ │ │ │ └── useModule.js │ │ │ └── node/ │ │ │ ├── declarationsMultipleTimesImport.errors.txt │ │ │ ├── declarationsMultipleTimesImport.json │ │ │ ├── m4.d.ts │ │ │ ├── m4.js │ │ │ ├── useModule.d.ts │ │ │ └── useModule.js │ │ ├── declarationsMultipleTimesMultipleImport/ │ │ │ ├── amd/ │ │ │ │ ├── declarationsMultipleTimesMultipleImport.errors.txt │ │ │ │ ├── declarationsMultipleTimesMultipleImport.json │ │ │ │ ├── m4.d.ts │ │ │ │ ├── m4.js │ │ │ │ ├── m5.d.ts │ │ │ │ ├── m5.js │ │ │ │ ├── useModule.d.ts │ │ │ │ └── useModule.js │ │ │ └── node/ │ │ │ ├── declarationsMultipleTimesMultipleImport.errors.txt │ │ │ ├── declarationsMultipleTimesMultipleImport.json │ │ │ ├── m4.d.ts │ │ │ ├── m4.js │ │ │ ├── m5.d.ts │ │ │ ├── m5.js │ │ │ ├── useModule.d.ts │ │ │ └── useModule.js │ │ ├── declarationsSimpleImport/ │ │ │ ├── amd/ │ │ │ │ ├── declarationsSimpleImport.errors.txt │ │ │ │ ├── declarationsSimpleImport.json │ │ │ │ ├── m4.d.ts │ │ │ │ ├── m4.js │ │ │ │ ├── useModule.d.ts │ │ │ │ └── useModule.js │ │ │ └── node/ │ │ │ ├── declarationsSimpleImport.errors.txt │ │ │ ├── declarationsSimpleImport.json │ │ │ ├── m4.d.ts │ │ │ ├── m4.js │ │ │ ├── useModule.d.ts │ │ │ └── useModule.js │ │ ├── declareExportAdded/ │ │ │ ├── amd/ │ │ │ │ ├── consumer.js │ │ │ │ ├── declareExportAdded.errors.txt │ │ │ │ └── declareExportAdded.json │ │ │ └── node/ │ │ │ ├── consumer.js │ │ │ ├── declareExportAdded.errors.txt │ │ │ └── declareExportAdded.json │ │ ├── declareVariableCollision/ │ │ │ ├── amd/ │ │ │ │ ├── declareVariableCollision.errors.txt │ │ │ │ └── declareVariableCollision.json │ │ │ └── node/ │ │ │ ├── declareVariableCollision.errors.txt │ │ │ └── declareVariableCollision.json │ │ ├── defaultExcludeNodeModulesAndOutDir/ │ │ │ ├── amd/ │ │ │ │ ├── OutDir/ │ │ │ │ │ ├── a.d.ts │ │ │ │ │ └── a.js │ │ │ │ ├── defaultExcludeNodeModulesAndOutDir.errors.txt │ │ │ │ └── defaultExcludeNodeModulesAndOutDir.json │ │ │ └── node/ │ │ │ ├── OutDir/ │ │ │ │ ├── a.d.ts │ │ │ │ └── a.js │ │ │ ├── defaultExcludeNodeModulesAndOutDir.errors.txt │ │ │ └── defaultExcludeNodeModulesAndOutDir.json │ │ ├── defaultExcludeNodeModulesAndOutDirWithAllowJS/ │ │ │ ├── amd/ │ │ │ │ ├── OutDir/ │ │ │ │ │ └── a.js │ │ │ │ ├── defaultExcludeNodeModulesAndOutDirWithAllowJS.errors.txt │ │ │ │ └── defaultExcludeNodeModulesAndOutDirWithAllowJS.json │ │ │ └── node/ │ │ │ ├── OutDir/ │ │ │ │ └── a.js │ │ │ ├── defaultExcludeNodeModulesAndOutDirWithAllowJS.errors.txt │ │ │ └── defaultExcludeNodeModulesAndOutDirWithAllowJS.json │ │ ├── defaultExcludeNodeModulesAndRelativePathOutDir/ │ │ │ ├── amd/ │ │ │ │ ├── OutDir/ │ │ │ │ │ ├── a.d.ts │ │ │ │ │ └── a.js │ │ │ │ ├── defaultExcludeNodeModulesAndRelativePathOutDir.errors.txt │ │ │ │ └── defaultExcludeNodeModulesAndRelativePathOutDir.json │ │ │ └── node/ │ │ │ ├── OutDir/ │ │ │ │ ├── a.d.ts │ │ │ │ └── a.js │ │ │ ├── defaultExcludeNodeModulesAndRelativePathOutDir.errors.txt │ │ │ └── defaultExcludeNodeModulesAndRelativePathOutDir.json │ │ ├── defaultExcludeNodeModulesAndRelativePathOutDirWithAllowJS/ │ │ │ ├── amd/ │ │ │ │ ├── OutDir/ │ │ │ │ │ └── a.js │ │ │ │ ├── defaultExcludeNodeModulesAndRelativePathOutDirWithAllowJS.errors.txt │ │ │ │ └── defaultExcludeNodeModulesAndRelativePathOutDirWithAllowJS.json │ │ │ └── node/ │ │ │ ├── OutDir/ │ │ │ │ └── a.js │ │ │ ├── defaultExcludeNodeModulesAndRelativePathOutDirWithAllowJS.errors.txt │ │ │ └── defaultExcludeNodeModulesAndRelativePathOutDirWithAllowJS.json │ │ ├── defaultExcludeOnlyNodeModules/ │ │ │ ├── amd/ │ │ │ │ ├── a.d.ts │ │ │ │ ├── a.js │ │ │ │ ├── defaultExcludeOnlyNodeModules.errors.txt │ │ │ │ └── defaultExcludeOnlyNodeModules.json │ │ │ └── node/ │ │ │ ├── a.d.ts │ │ │ ├── a.js │ │ │ ├── defaultExcludeOnlyNodeModules.errors.txt │ │ │ └── defaultExcludeOnlyNodeModules.json │ │ ├── emitDecoratorMetadataCommonJSISolatedModules/ │ │ │ ├── amd/ │ │ │ │ ├── emitDecoratorMetadataCommonJSISolatedModules.errors.txt │ │ │ │ ├── emitDecoratorMetadataCommonJSISolatedModules.json │ │ │ │ └── main.js │ │ │ └── node/ │ │ │ ├── emitDecoratorMetadataCommonJSISolatedModules.errors.txt │ │ │ ├── emitDecoratorMetadataCommonJSISolatedModules.json │ │ │ └── main.js │ │ ├── emitDecoratorMetadataCommonJSISolatedModulesNoResolve/ │ │ │ ├── amd/ │ │ │ │ ├── emitDecoratorMetadataCommonJSISolatedModulesNoResolve.errors.txt │ │ │ │ ├── emitDecoratorMetadataCommonJSISolatedModulesNoResolve.json │ │ │ │ └── main.js │ │ │ └── node/ │ │ │ ├── emitDecoratorMetadataCommonJSISolatedModulesNoResolve.errors.txt │ │ │ ├── emitDecoratorMetadataCommonJSISolatedModulesNoResolve.json │ │ │ └── main.js │ │ ├── emitDecoratorMetadataSystemJS/ │ │ │ ├── amd/ │ │ │ │ ├── emitDecoratorMetadataSystemJS.errors.txt │ │ │ │ ├── emitDecoratorMetadataSystemJS.json │ │ │ │ └── main.js │ │ │ └── node/ │ │ │ ├── emitDecoratorMetadataSystemJS.errors.txt │ │ │ ├── emitDecoratorMetadataSystemJS.json │ │ │ └── main.js │ │ ├── emitDecoratorMetadataSystemJSISolatedModules/ │ │ │ ├── amd/ │ │ │ │ ├── emitDecoratorMetadataSystemJSISolatedModules.errors.txt │ │ │ │ ├── emitDecoratorMetadataSystemJSISolatedModules.json │ │ │ │ └── main.js │ │ │ └── node/ │ │ │ ├── emitDecoratorMetadataSystemJSISolatedModules.errors.txt │ │ │ ├── emitDecoratorMetadataSystemJSISolatedModules.json │ │ │ └── main.js │ │ ├── emitDecoratorMetadataSystemJSISolatedModulesNoResolve/ │ │ │ ├── amd/ │ │ │ │ ├── emitDecoratorMetadataSystemJSISolatedModulesNoResolve.errors.txt │ │ │ │ ├── emitDecoratorMetadataSystemJSISolatedModulesNoResolve.json │ │ │ │ └── main.js │ │ │ └── node/ │ │ │ ├── emitDecoratorMetadataSystemJSISolatedModulesNoResolve.errors.txt │ │ │ ├── emitDecoratorMetadataSystemJSISolatedModulesNoResolve.json │ │ │ └── main.js │ │ ├── extReferencingExtAndInt/ │ │ │ ├── amd/ │ │ │ │ ├── extReferencingExtAndInt.errors.txt │ │ │ │ └── extReferencingExtAndInt.json │ │ │ └── node/ │ │ │ ├── extReferencingExtAndInt.errors.txt │ │ │ └── extReferencingExtAndInt.json │ │ ├── intReferencingExtAndInt/ │ │ │ ├── amd/ │ │ │ │ ├── intReferencingExtAndInt.errors.txt │ │ │ │ └── intReferencingExtAndInt.json │ │ │ └── node/ │ │ │ ├── intReferencingExtAndInt.errors.txt │ │ │ └── intReferencingExtAndInt.json │ │ ├── invalidRootFile/ │ │ │ ├── amd/ │ │ │ │ ├── invalidRootFile.errors.txt │ │ │ │ └── invalidRootFile.json │ │ │ └── node/ │ │ │ ├── invalidRootFile.errors.txt │ │ │ └── invalidRootFile.json │ │ ├── jsFileCompilationDifferentNamesNotSpecified/ │ │ │ ├── amd/ │ │ │ │ ├── DifferentNamesNotSpecified/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── jsFileCompilationDifferentNamesNotSpecified.errors.txt │ │ │ │ └── jsFileCompilationDifferentNamesNotSpecified.json │ │ │ └── node/ │ │ │ ├── DifferentNamesNotSpecified/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── jsFileCompilationDifferentNamesNotSpecified.errors.txt │ │ │ └── jsFileCompilationDifferentNamesNotSpecified.json │ │ ├── jsFileCompilationDifferentNamesNotSpecifiedWithAllowJs/ │ │ │ ├── amd/ │ │ │ │ ├── DifferentNamesNotSpecifiedWithAllowJs/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── jsFileCompilationDifferentNamesNotSpecifiedWithAllowJs.errors.txt │ │ │ │ └── jsFileCompilationDifferentNamesNotSpecifiedWithAllowJs.json │ │ │ └── node/ │ │ │ ├── DifferentNamesNotSpecifiedWithAllowJs/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── jsFileCompilationDifferentNamesNotSpecifiedWithAllowJs.errors.txt │ │ │ └── jsFileCompilationDifferentNamesNotSpecifiedWithAllowJs.json │ │ ├── jsFileCompilationDifferentNamesSpecified/ │ │ │ ├── amd/ │ │ │ │ ├── DifferentNamesSpecified/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── jsFileCompilationDifferentNamesSpecified.errors.txt │ │ │ │ └── jsFileCompilationDifferentNamesSpecified.json │ │ │ └── node/ │ │ │ ├── DifferentNamesSpecified/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── jsFileCompilationDifferentNamesSpecified.errors.txt │ │ │ └── jsFileCompilationDifferentNamesSpecified.json │ │ ├── jsFileCompilationDifferentNamesSpecifiedWithAllowJs/ │ │ │ ├── amd/ │ │ │ │ ├── DifferentNamesSpecifiedWithAllowJs/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── jsFileCompilationDifferentNamesSpecifiedWithAllowJs.errors.txt │ │ │ │ └── jsFileCompilationDifferentNamesSpecifiedWithAllowJs.json │ │ │ └── node/ │ │ │ ├── DifferentNamesSpecifiedWithAllowJs/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── jsFileCompilationDifferentNamesSpecifiedWithAllowJs.errors.txt │ │ │ └── jsFileCompilationDifferentNamesSpecifiedWithAllowJs.json │ │ ├── jsFileCompilationSameNameDTsSpecified/ │ │ │ ├── amd/ │ │ │ │ ├── jsFileCompilationSameNameDTsSpecified.errors.txt │ │ │ │ └── jsFileCompilationSameNameDTsSpecified.json │ │ │ └── node/ │ │ │ ├── jsFileCompilationSameNameDTsSpecified.errors.txt │ │ │ └── jsFileCompilationSameNameDTsSpecified.json │ │ ├── jsFileCompilationSameNameDTsSpecifiedWithAllowJs/ │ │ │ ├── amd/ │ │ │ │ ├── jsFileCompilationSameNameDTsSpecifiedWithAllowJs.errors.txt │ │ │ │ └── jsFileCompilationSameNameDTsSpecifiedWithAllowJs.json │ │ │ └── node/ │ │ │ ├── jsFileCompilationSameNameDTsSpecifiedWithAllowJs.errors.txt │ │ │ └── jsFileCompilationSameNameDTsSpecifiedWithAllowJs.json │ │ ├── jsFileCompilationSameNameDtsNotSpecified/ │ │ │ ├── amd/ │ │ │ │ ├── jsFileCompilationSameNameDtsNotSpecified.errors.txt │ │ │ │ └── jsFileCompilationSameNameDtsNotSpecified.json │ │ │ └── node/ │ │ │ ├── jsFileCompilationSameNameDtsNotSpecified.errors.txt │ │ │ └── jsFileCompilationSameNameDtsNotSpecified.json │ │ ├── jsFileCompilationSameNameDtsNotSpecifiedWithAllowJs/ │ │ │ ├── amd/ │ │ │ │ ├── jsFileCompilationSameNameDtsNotSpecifiedWithAllowJs.errors.txt │ │ │ │ └── jsFileCompilationSameNameDtsNotSpecifiedWithAllowJs.json │ │ │ └── node/ │ │ │ ├── jsFileCompilationSameNameDtsNotSpecifiedWithAllowJs.errors.txt │ │ │ └── jsFileCompilationSameNameDtsNotSpecifiedWithAllowJs.json │ │ ├── jsFileCompilationSameNameFilesNotSpecified/ │ │ │ ├── amd/ │ │ │ │ ├── SameNameFilesNotSpecified/ │ │ │ │ │ ├── a.d.ts │ │ │ │ │ └── a.js │ │ │ │ ├── jsFileCompilationSameNameFilesNotSpecified.errors.txt │ │ │ │ └── jsFileCompilationSameNameFilesNotSpecified.json │ │ │ └── node/ │ │ │ ├── SameNameFilesNotSpecified/ │ │ │ │ ├── a.d.ts │ │ │ │ └── a.js │ │ │ ├── jsFileCompilationSameNameFilesNotSpecified.errors.txt │ │ │ └── jsFileCompilationSameNameFilesNotSpecified.json │ │ ├── jsFileCompilationSameNameFilesNotSpecifiedWithAllowJs/ │ │ │ ├── amd/ │ │ │ │ ├── SameNameFilesNotSpecifiedWithAllowJs/ │ │ │ │ │ ├── a.d.ts │ │ │ │ │ └── a.js │ │ │ │ ├── jsFileCompilationSameNameFilesNotSpecifiedWithAllowJs.errors.txt │ │ │ │ └── jsFileCompilationSameNameFilesNotSpecifiedWithAllowJs.json │ │ │ └── node/ │ │ │ ├── SameNameFilesNotSpecifiedWithAllowJs/ │ │ │ │ ├── a.d.ts │ │ │ │ └── a.js │ │ │ ├── jsFileCompilationSameNameFilesNotSpecifiedWithAllowJs.errors.txt │ │ │ └── jsFileCompilationSameNameFilesNotSpecifiedWithAllowJs.json │ │ ├── jsFileCompilationSameNameFilesSpecified/ │ │ │ ├── amd/ │ │ │ │ ├── SameNameTsSpecified/ │ │ │ │ │ ├── a.d.ts │ │ │ │ │ └── a.js │ │ │ │ ├── jsFileCompilationSameNameFilesSpecified.errors.txt │ │ │ │ └── jsFileCompilationSameNameFilesSpecified.json │ │ │ └── node/ │ │ │ ├── SameNameTsSpecified/ │ │ │ │ ├── a.d.ts │ │ │ │ └── a.js │ │ │ ├── jsFileCompilationSameNameFilesSpecified.errors.txt │ │ │ └── jsFileCompilationSameNameFilesSpecified.json │ │ ├── jsFileCompilationSameNameFilesSpecifiedWithAllowJs/ │ │ │ ├── amd/ │ │ │ │ ├── SameNameTsSpecifiedWithAllowJs/ │ │ │ │ │ ├── a.d.ts │ │ │ │ │ └── a.js │ │ │ │ ├── jsFileCompilationSameNameFilesSpecifiedWithAllowJs.errors.txt │ │ │ │ └── jsFileCompilationSameNameFilesSpecifiedWithAllowJs.json │ │ │ └── node/ │ │ │ ├── SameNameTsSpecifiedWithAllowJs/ │ │ │ │ ├── a.d.ts │ │ │ │ └── a.js │ │ │ ├── jsFileCompilationSameNameFilesSpecifiedWithAllowJs.errors.txt │ │ │ └── jsFileCompilationSameNameFilesSpecifiedWithAllowJs.json │ │ ├── mapRootAbsolutePathMixedSubfolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── mapRootAbsolutePathMixedSubfolderNoOutdir.errors.txt │ │ │ │ ├── mapRootAbsolutePathMixedSubfolderNoOutdir.json │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ ├── m1.js │ │ │ │ │ ├── m2.d.ts │ │ │ │ │ └── m2.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── mapRootAbsolutePathMixedSubfolderNoOutdir.errors.txt │ │ │ ├── mapRootAbsolutePathMixedSubfolderNoOutdir.json │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── m2.d.ts │ │ │ │ └── m2.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── mapRootAbsolutePathMixedSubfolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── mapRootAbsolutePathMixedSubfolderSpecifyOutputDirectory.errors.txt │ │ │ │ ├── mapRootAbsolutePathMixedSubfolderSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ ├── m1.js │ │ │ │ │ ├── m2.d.ts │ │ │ │ │ └── m2.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── mapRootAbsolutePathMixedSubfolderSpecifyOutputDirectory.errors.txt │ │ │ ├── mapRootAbsolutePathMixedSubfolderSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── m2.d.ts │ │ │ │ └── m2.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── mapRootAbsolutePathMixedSubfolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── mapRootAbsolutePathMixedSubfolderSpecifyOutputFile.errors.txt │ │ │ │ └── mapRootAbsolutePathMixedSubfolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── mapRootAbsolutePathMixedSubfolderSpecifyOutputFile.errors.txt │ │ │ └── mapRootAbsolutePathMixedSubfolderSpecifyOutputFile.json │ │ ├── mapRootAbsolutePathMixedSubfolderSpecifyOutputFileAndOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── outAndOutDirFile.d.ts │ │ │ │ │ └── outAndOutDirFile.js │ │ │ │ ├── mapRootAbsolutePathMixedSubfolderSpecifyOutputFileAndOutputDirectory.errors.txt │ │ │ │ └── mapRootAbsolutePathMixedSubfolderSpecifyOutputFileAndOutputDirectory.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── outAndOutDirFile.d.ts │ │ │ │ └── outAndOutDirFile.js │ │ │ ├── mapRootAbsolutePathMixedSubfolderSpecifyOutputFileAndOutputDirectory.errors.txt │ │ │ └── mapRootAbsolutePathMixedSubfolderSpecifyOutputFileAndOutputDirectory.json │ │ ├── mapRootAbsolutePathModuleMultifolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── diskFile1.js │ │ │ │ ├── diskFile2.d.ts │ │ │ │ ├── mapRootAbsolutePathModuleMultifolderNoOutdir.errors.txt │ │ │ │ ├── mapRootAbsolutePathModuleMultifolderNoOutdir.json │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── diskFile1.js │ │ │ ├── diskFile2.d.ts │ │ │ ├── mapRootAbsolutePathModuleMultifolderNoOutdir.errors.txt │ │ │ ├── mapRootAbsolutePathModuleMultifolderNoOutdir.json │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── mapRootAbsolutePathModuleMultifolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── mapRootAbsolutePathModuleMultifolderSpecifyOutputDirectory.errors.txt │ │ │ │ ├── mapRootAbsolutePathModuleMultifolderSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── outputdir_module_multifolder/ │ │ │ │ │ ├── ref/ │ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ │ └── m1.js │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ └── outputdir_module_multifolder_ref/ │ │ │ │ ├── m2.d.ts │ │ │ │ └── m2.js │ │ │ └── node/ │ │ │ ├── mapRootAbsolutePathModuleMultifolderSpecifyOutputDirectory.errors.txt │ │ │ ├── mapRootAbsolutePathModuleMultifolderSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── outputdir_module_multifolder/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── outputdir_module_multifolder_ref/ │ │ │ ├── m2.d.ts │ │ │ └── m2.js │ │ ├── mapRootAbsolutePathModuleMultifolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── mapRootAbsolutePathModuleMultifolderSpecifyOutputFile.errors.txt │ │ │ │ └── mapRootAbsolutePathModuleMultifolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── mapRootAbsolutePathModuleMultifolderSpecifyOutputFile.errors.txt │ │ │ └── mapRootAbsolutePathModuleMultifolderSpecifyOutputFile.json │ │ ├── mapRootAbsolutePathModuleSimpleNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── mapRootAbsolutePathModuleSimpleNoOutdir.errors.txt │ │ │ │ ├── mapRootAbsolutePathModuleSimpleNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── m1.d.ts │ │ │ ├── m1.js │ │ │ ├── mapRootAbsolutePathModuleSimpleNoOutdir.errors.txt │ │ │ ├── mapRootAbsolutePathModuleSimpleNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── mapRootAbsolutePathModuleSimpleSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── mapRootAbsolutePathModuleSimpleSpecifyOutputDirectory.errors.txt │ │ │ │ ├── mapRootAbsolutePathModuleSimpleSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── mapRootAbsolutePathModuleSimpleSpecifyOutputDirectory.errors.txt │ │ │ ├── mapRootAbsolutePathModuleSimpleSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── m1.d.ts │ │ │ ├── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── mapRootAbsolutePathModuleSimpleSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── mapRootAbsolutePathModuleSimpleSpecifyOutputFile.errors.txt │ │ │ │ └── mapRootAbsolutePathModuleSimpleSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── mapRootAbsolutePathModuleSimpleSpecifyOutputFile.errors.txt │ │ │ └── mapRootAbsolutePathModuleSimpleSpecifyOutputFile.json │ │ ├── mapRootAbsolutePathModuleSubfolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── mapRootAbsolutePathModuleSubfolderNoOutdir.errors.txt │ │ │ │ ├── mapRootAbsolutePathModuleSubfolderNoOutdir.json │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── mapRootAbsolutePathModuleSubfolderNoOutdir.errors.txt │ │ │ ├── mapRootAbsolutePathModuleSubfolderNoOutdir.json │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── mapRootAbsolutePathModuleSubfolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── mapRootAbsolutePathModuleSubfolderSpecifyOutputDirectory.errors.txt │ │ │ │ ├── mapRootAbsolutePathModuleSubfolderSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── mapRootAbsolutePathModuleSubfolderSpecifyOutputDirectory.errors.txt │ │ │ ├── mapRootAbsolutePathModuleSubfolderSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── mapRootAbsolutePathModuleSubfolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── mapRootAbsolutePathModuleSubfolderSpecifyOutputFile.errors.txt │ │ │ │ └── mapRootAbsolutePathModuleSubfolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── mapRootAbsolutePathModuleSubfolderSpecifyOutputFile.errors.txt │ │ │ └── mapRootAbsolutePathModuleSubfolderSpecifyOutputFile.json │ │ ├── mapRootAbsolutePathMultifolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── diskFile1.js │ │ │ │ ├── diskFile2.d.ts │ │ │ │ ├── mapRootAbsolutePathMultifolderNoOutdir.errors.txt │ │ │ │ ├── mapRootAbsolutePathMultifolderNoOutdir.json │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── diskFile1.js │ │ │ ├── diskFile2.d.ts │ │ │ ├── mapRootAbsolutePathMultifolderNoOutdir.errors.txt │ │ │ ├── mapRootAbsolutePathMultifolderNoOutdir.json │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── mapRootAbsolutePathMultifolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── mapRootAbsolutePathMultifolderSpecifyOutputDirectory.errors.txt │ │ │ │ ├── mapRootAbsolutePathMultifolderSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── outputdir_multifolder/ │ │ │ │ │ ├── ref/ │ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ │ └── m1.js │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ └── outputdir_multifolder_ref/ │ │ │ │ ├── m2.d.ts │ │ │ │ └── m2.js │ │ │ └── node/ │ │ │ ├── mapRootAbsolutePathMultifolderSpecifyOutputDirectory.errors.txt │ │ │ ├── mapRootAbsolutePathMultifolderSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── outputdir_multifolder/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── outputdir_multifolder_ref/ │ │ │ ├── m2.d.ts │ │ │ └── m2.js │ │ ├── mapRootAbsolutePathMultifolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── mapRootAbsolutePathMultifolderSpecifyOutputFile.errors.txt │ │ │ │ └── mapRootAbsolutePathMultifolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── mapRootAbsolutePathMultifolderSpecifyOutputFile.errors.txt │ │ │ └── mapRootAbsolutePathMultifolderSpecifyOutputFile.json │ │ ├── mapRootAbsolutePathSimpleNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── mapRootAbsolutePathSimpleNoOutdir.errors.txt │ │ │ │ ├── mapRootAbsolutePathSimpleNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── m1.d.ts │ │ │ ├── m1.js │ │ │ ├── mapRootAbsolutePathSimpleNoOutdir.errors.txt │ │ │ ├── mapRootAbsolutePathSimpleNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── mapRootAbsolutePathSimpleSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── mapRootAbsolutePathSimpleSpecifyOutputDirectory.errors.txt │ │ │ │ ├── mapRootAbsolutePathSimpleSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── mapRootAbsolutePathSimpleSpecifyOutputDirectory.errors.txt │ │ │ ├── mapRootAbsolutePathSimpleSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── m1.d.ts │ │ │ ├── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── mapRootAbsolutePathSimpleSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── mapRootAbsolutePathSimpleSpecifyOutputFile.errors.txt │ │ │ │ └── mapRootAbsolutePathSimpleSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── mapRootAbsolutePathSimpleSpecifyOutputFile.errors.txt │ │ │ └── mapRootAbsolutePathSimpleSpecifyOutputFile.json │ │ ├── mapRootAbsolutePathSingleFileNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── mapRootAbsolutePathSingleFileNoOutdir.errors.txt │ │ │ │ ├── mapRootAbsolutePathSingleFileNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── mapRootAbsolutePathSingleFileNoOutdir.errors.txt │ │ │ ├── mapRootAbsolutePathSingleFileNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── mapRootAbsolutePathSingleFileSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── mapRootAbsolutePathSingleFileSpecifyOutputDirectory.errors.txt │ │ │ │ ├── mapRootAbsolutePathSingleFileSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── mapRootAbsolutePathSingleFileSpecifyOutputDirectory.errors.txt │ │ │ ├── mapRootAbsolutePathSingleFileSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── mapRootAbsolutePathSingleFileSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── mapRootAbsolutePathSingleFileSpecifyOutputFile.errors.txt │ │ │ │ └── mapRootAbsolutePathSingleFileSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── mapRootAbsolutePathSingleFileSpecifyOutputFile.errors.txt │ │ │ └── mapRootAbsolutePathSingleFileSpecifyOutputFile.json │ │ ├── mapRootAbsolutePathSubfolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── mapRootAbsolutePathSubfolderNoOutdir.errors.txt │ │ │ │ ├── mapRootAbsolutePathSubfolderNoOutdir.json │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── mapRootAbsolutePathSubfolderNoOutdir.errors.txt │ │ │ ├── mapRootAbsolutePathSubfolderNoOutdir.json │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── mapRootAbsolutePathSubfolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── mapRootAbsolutePathSubfolderSpecifyOutputDirectory.errors.txt │ │ │ │ ├── mapRootAbsolutePathSubfolderSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── mapRootAbsolutePathSubfolderSpecifyOutputDirectory.errors.txt │ │ │ ├── mapRootAbsolutePathSubfolderSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── mapRootAbsolutePathSubfolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── mapRootAbsolutePathSubfolderSpecifyOutputFile.errors.txt │ │ │ │ └── mapRootAbsolutePathSubfolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── mapRootAbsolutePathSubfolderSpecifyOutputFile.errors.txt │ │ │ └── mapRootAbsolutePathSubfolderSpecifyOutputFile.json │ │ ├── mapRootRelativePathMixedSubfolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── mapRootRelativePathMixedSubfolderNoOutdir.errors.txt │ │ │ │ ├── mapRootRelativePathMixedSubfolderNoOutdir.json │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ ├── m1.js │ │ │ │ │ ├── m2.d.ts │ │ │ │ │ └── m2.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── mapRootRelativePathMixedSubfolderNoOutdir.errors.txt │ │ │ ├── mapRootRelativePathMixedSubfolderNoOutdir.json │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── m2.d.ts │ │ │ │ └── m2.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── mapRootRelativePathMixedSubfolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── mapRootRelativePathMixedSubfolderSpecifyOutputDirectory.errors.txt │ │ │ │ ├── mapRootRelativePathMixedSubfolderSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ ├── m1.js │ │ │ │ │ ├── m2.d.ts │ │ │ │ │ └── m2.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── mapRootRelativePathMixedSubfolderSpecifyOutputDirectory.errors.txt │ │ │ ├── mapRootRelativePathMixedSubfolderSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── m2.d.ts │ │ │ │ └── m2.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── mapRootRelativePathMixedSubfolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── mapRootRelativePathMixedSubfolderSpecifyOutputFile.errors.txt │ │ │ │ └── mapRootRelativePathMixedSubfolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── mapRootRelativePathMixedSubfolderSpecifyOutputFile.errors.txt │ │ │ └── mapRootRelativePathMixedSubfolderSpecifyOutputFile.json │ │ ├── mapRootRelativePathMixedSubfolderSpecifyOutputFileAndOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── outAndOutDirFile.d.ts │ │ │ │ │ └── outAndOutDirFile.js │ │ │ │ ├── mapRootRelativePathMixedSubfolderSpecifyOutputFileAndOutputDirectory.errors.txt │ │ │ │ └── mapRootRelativePathMixedSubfolderSpecifyOutputFileAndOutputDirectory.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── outAndOutDirFile.d.ts │ │ │ │ └── outAndOutDirFile.js │ │ │ ├── mapRootRelativePathMixedSubfolderSpecifyOutputFileAndOutputDirectory.errors.txt │ │ │ └── mapRootRelativePathMixedSubfolderSpecifyOutputFileAndOutputDirectory.json │ │ ├── mapRootRelativePathModuleMultifolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── diskFile1.js │ │ │ │ ├── diskFile2.d.ts │ │ │ │ ├── mapRootRelativePathModuleMultifolderNoOutdir.errors.txt │ │ │ │ ├── mapRootRelativePathModuleMultifolderNoOutdir.json │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── diskFile1.js │ │ │ ├── diskFile2.d.ts │ │ │ ├── mapRootRelativePathModuleMultifolderNoOutdir.errors.txt │ │ │ ├── mapRootRelativePathModuleMultifolderNoOutdir.json │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── mapRootRelativePathModuleMultifolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── mapRootRelativePathModuleMultifolderSpecifyOutputDirectory.errors.txt │ │ │ │ ├── mapRootRelativePathModuleMultifolderSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── outputdir_module_multifolder/ │ │ │ │ │ ├── ref/ │ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ │ └── m1.js │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ └── outputdir_module_multifolder_ref/ │ │ │ │ ├── m2.d.ts │ │ │ │ └── m2.js │ │ │ └── node/ │ │ │ ├── mapRootRelativePathModuleMultifolderSpecifyOutputDirectory.errors.txt │ │ │ ├── mapRootRelativePathModuleMultifolderSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── outputdir_module_multifolder/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── outputdir_module_multifolder_ref/ │ │ │ ├── m2.d.ts │ │ │ └── m2.js │ │ ├── mapRootRelativePathModuleMultifolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── mapRootRelativePathModuleMultifolderSpecifyOutputFile.errors.txt │ │ │ │ └── mapRootRelativePathModuleMultifolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── mapRootRelativePathModuleMultifolderSpecifyOutputFile.errors.txt │ │ │ └── mapRootRelativePathModuleMultifolderSpecifyOutputFile.json │ │ ├── mapRootRelativePathModuleSimpleNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── mapRootRelativePathModuleSimpleNoOutdir.errors.txt │ │ │ │ ├── mapRootRelativePathModuleSimpleNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── m1.d.ts │ │ │ ├── m1.js │ │ │ ├── mapRootRelativePathModuleSimpleNoOutdir.errors.txt │ │ │ ├── mapRootRelativePathModuleSimpleNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── mapRootRelativePathModuleSimpleSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── mapRootRelativePathModuleSimpleSpecifyOutputDirectory.errors.txt │ │ │ │ ├── mapRootRelativePathModuleSimpleSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── mapRootRelativePathModuleSimpleSpecifyOutputDirectory.errors.txt │ │ │ ├── mapRootRelativePathModuleSimpleSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── m1.d.ts │ │ │ ├── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── mapRootRelativePathModuleSimpleSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── mapRootRelativePathModuleSimpleSpecifyOutputFile.errors.txt │ │ │ │ └── mapRootRelativePathModuleSimpleSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── mapRootRelativePathModuleSimpleSpecifyOutputFile.errors.txt │ │ │ └── mapRootRelativePathModuleSimpleSpecifyOutputFile.json │ │ ├── mapRootRelativePathModuleSubfolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── mapRootRelativePathModuleSubfolderNoOutdir.errors.txt │ │ │ │ ├── mapRootRelativePathModuleSubfolderNoOutdir.json │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── mapRootRelativePathModuleSubfolderNoOutdir.errors.txt │ │ │ ├── mapRootRelativePathModuleSubfolderNoOutdir.json │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── mapRootRelativePathModuleSubfolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── mapRootRelativePathModuleSubfolderSpecifyOutputDirectory.errors.txt │ │ │ │ ├── mapRootRelativePathModuleSubfolderSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── mapRootRelativePathModuleSubfolderSpecifyOutputDirectory.errors.txt │ │ │ ├── mapRootRelativePathModuleSubfolderSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── mapRootRelativePathModuleSubfolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── mapRootRelativePathModuleSubfolderSpecifyOutputFile.errors.txt │ │ │ │ └── mapRootRelativePathModuleSubfolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── mapRootRelativePathModuleSubfolderSpecifyOutputFile.errors.txt │ │ │ └── mapRootRelativePathModuleSubfolderSpecifyOutputFile.json │ │ ├── mapRootRelativePathMultifolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── diskFile1.js │ │ │ │ ├── diskFile2.d.ts │ │ │ │ ├── mapRootRelativePathMultifolderNoOutdir.errors.txt │ │ │ │ ├── mapRootRelativePathMultifolderNoOutdir.json │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── diskFile1.js │ │ │ ├── diskFile2.d.ts │ │ │ ├── mapRootRelativePathMultifolderNoOutdir.errors.txt │ │ │ ├── mapRootRelativePathMultifolderNoOutdir.json │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── mapRootRelativePathMultifolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── mapRootRelativePathMultifolderSpecifyOutputDirectory.errors.txt │ │ │ │ ├── mapRootRelativePathMultifolderSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── outputdir_multifolder/ │ │ │ │ │ ├── ref/ │ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ │ └── m1.js │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ └── outputdir_multifolder_ref/ │ │ │ │ ├── m2.d.ts │ │ │ │ └── m2.js │ │ │ └── node/ │ │ │ ├── mapRootRelativePathMultifolderSpecifyOutputDirectory.errors.txt │ │ │ ├── mapRootRelativePathMultifolderSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── outputdir_multifolder/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── outputdir_multifolder_ref/ │ │ │ ├── m2.d.ts │ │ │ └── m2.js │ │ ├── mapRootRelativePathMultifolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── mapRootRelativePathMultifolderSpecifyOutputFile.errors.txt │ │ │ │ └── mapRootRelativePathMultifolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── mapRootRelativePathMultifolderSpecifyOutputFile.errors.txt │ │ │ └── mapRootRelativePathMultifolderSpecifyOutputFile.json │ │ ├── mapRootRelativePathSimpleNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── mapRootRelativePathSimpleNoOutdir.errors.txt │ │ │ │ ├── mapRootRelativePathSimpleNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── m1.d.ts │ │ │ ├── m1.js │ │ │ ├── mapRootRelativePathSimpleNoOutdir.errors.txt │ │ │ ├── mapRootRelativePathSimpleNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── mapRootRelativePathSimpleSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── mapRootRelativePathSimpleSpecifyOutputDirectory.errors.txt │ │ │ │ ├── mapRootRelativePathSimpleSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── mapRootRelativePathSimpleSpecifyOutputDirectory.errors.txt │ │ │ ├── mapRootRelativePathSimpleSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── m1.d.ts │ │ │ ├── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── mapRootRelativePathSimpleSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── mapRootRelativePathSimpleSpecifyOutputFile.errors.txt │ │ │ │ └── mapRootRelativePathSimpleSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── mapRootRelativePathSimpleSpecifyOutputFile.errors.txt │ │ │ └── mapRootRelativePathSimpleSpecifyOutputFile.json │ │ ├── mapRootRelativePathSingleFileNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── mapRootRelativePathSingleFileNoOutdir.errors.txt │ │ │ │ ├── mapRootRelativePathSingleFileNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── mapRootRelativePathSingleFileNoOutdir.errors.txt │ │ │ ├── mapRootRelativePathSingleFileNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── mapRootRelativePathSingleFileSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── mapRootRelativePathSingleFileSpecifyOutputDirectory.errors.txt │ │ │ │ ├── mapRootRelativePathSingleFileSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── mapRootRelativePathSingleFileSpecifyOutputDirectory.errors.txt │ │ │ ├── mapRootRelativePathSingleFileSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── mapRootRelativePathSingleFileSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── mapRootRelativePathSingleFileSpecifyOutputFile.errors.txt │ │ │ │ └── mapRootRelativePathSingleFileSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── mapRootRelativePathSingleFileSpecifyOutputFile.errors.txt │ │ │ └── mapRootRelativePathSingleFileSpecifyOutputFile.json │ │ ├── mapRootRelativePathSubfolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── mapRootRelativePathSubfolderNoOutdir.errors.txt │ │ │ │ ├── mapRootRelativePathSubfolderNoOutdir.json │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── mapRootRelativePathSubfolderNoOutdir.errors.txt │ │ │ ├── mapRootRelativePathSubfolderNoOutdir.json │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── mapRootRelativePathSubfolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── mapRootRelativePathSubfolderSpecifyOutputDirectory.errors.txt │ │ │ │ ├── mapRootRelativePathSubfolderSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── mapRootRelativePathSubfolderSpecifyOutputDirectory.errors.txt │ │ │ ├── mapRootRelativePathSubfolderSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── mapRootRelativePathSubfolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── mapRootRelativePathSubfolderSpecifyOutputFile.errors.txt │ │ │ │ └── mapRootRelativePathSubfolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── mapRootRelativePathSubfolderSpecifyOutputFile.errors.txt │ │ │ └── mapRootRelativePathSubfolderSpecifyOutputFile.json │ │ ├── mapRootSourceRootWithNoSourceMapOption/ │ │ │ ├── amd/ │ │ │ │ ├── mapRootSourceRootWithNoSourceMapOption.errors.txt │ │ │ │ └── mapRootSourceRootWithNoSourceMapOption.json │ │ │ └── node/ │ │ │ ├── mapRootSourceRootWithNoSourceMapOption.errors.txt │ │ │ └── mapRootSourceRootWithNoSourceMapOption.json │ │ ├── mapRootWithNoSourceMapOption/ │ │ │ ├── amd/ │ │ │ │ ├── mapRootWithNoSourceMapOption.errors.txt │ │ │ │ └── mapRootWithNoSourceMapOption.json │ │ │ └── node/ │ │ │ ├── mapRootWithNoSourceMapOption.errors.txt │ │ │ └── mapRootWithNoSourceMapOption.json │ │ ├── maprootUrlMixedSubfolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── maprootUrlMixedSubfolderNoOutdir.errors.txt │ │ │ │ ├── maprootUrlMixedSubfolderNoOutdir.json │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ ├── m1.js │ │ │ │ │ ├── m2.d.ts │ │ │ │ │ └── m2.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── maprootUrlMixedSubfolderNoOutdir.errors.txt │ │ │ ├── maprootUrlMixedSubfolderNoOutdir.json │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── m2.d.ts │ │ │ │ └── m2.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── maprootUrlMixedSubfolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── maprootUrlMixedSubfolderSpecifyOutputDirectory.errors.txt │ │ │ │ ├── maprootUrlMixedSubfolderSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ ├── m1.js │ │ │ │ │ ├── m2.d.ts │ │ │ │ │ └── m2.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── maprootUrlMixedSubfolderSpecifyOutputDirectory.errors.txt │ │ │ ├── maprootUrlMixedSubfolderSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── m2.d.ts │ │ │ │ └── m2.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── maprootUrlMixedSubfolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── maprootUrlMixedSubfolderSpecifyOutputFile.errors.txt │ │ │ │ └── maprootUrlMixedSubfolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── maprootUrlMixedSubfolderSpecifyOutputFile.errors.txt │ │ │ └── maprootUrlMixedSubfolderSpecifyOutputFile.json │ │ ├── maprootUrlMixedSubfolderSpecifyOutputFileAndOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── outAndOutDirFile.d.ts │ │ │ │ │ └── outAndOutDirFile.js │ │ │ │ ├── maprootUrlMixedSubfolderSpecifyOutputFileAndOutputDirectory.errors.txt │ │ │ │ └── maprootUrlMixedSubfolderSpecifyOutputFileAndOutputDirectory.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── outAndOutDirFile.d.ts │ │ │ │ └── outAndOutDirFile.js │ │ │ ├── maprootUrlMixedSubfolderSpecifyOutputFileAndOutputDirectory.errors.txt │ │ │ └── maprootUrlMixedSubfolderSpecifyOutputFileAndOutputDirectory.json │ │ ├── maprootUrlModuleMultifolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── diskFile1.js │ │ │ │ ├── diskFile2.d.ts │ │ │ │ ├── maprootUrlModuleMultifolderNoOutdir.errors.txt │ │ │ │ ├── maprootUrlModuleMultifolderNoOutdir.json │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── diskFile1.js │ │ │ ├── diskFile2.d.ts │ │ │ ├── maprootUrlModuleMultifolderNoOutdir.errors.txt │ │ │ ├── maprootUrlModuleMultifolderNoOutdir.json │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── maprootUrlModuleMultifolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── maprootUrlModuleMultifolderSpecifyOutputDirectory.errors.txt │ │ │ │ ├── maprootUrlModuleMultifolderSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── outputdir_module_multifolder/ │ │ │ │ │ ├── ref/ │ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ │ └── m1.js │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ └── outputdir_module_multifolder_ref/ │ │ │ │ ├── m2.d.ts │ │ │ │ └── m2.js │ │ │ └── node/ │ │ │ ├── maprootUrlModuleMultifolderSpecifyOutputDirectory.errors.txt │ │ │ ├── maprootUrlModuleMultifolderSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── outputdir_module_multifolder/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── outputdir_module_multifolder_ref/ │ │ │ ├── m2.d.ts │ │ │ └── m2.js │ │ ├── maprootUrlModuleMultifolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── maprootUrlModuleMultifolderSpecifyOutputFile.errors.txt │ │ │ │ └── maprootUrlModuleMultifolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── maprootUrlModuleMultifolderSpecifyOutputFile.errors.txt │ │ │ └── maprootUrlModuleMultifolderSpecifyOutputFile.json │ │ ├── maprootUrlModuleSimpleNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── maprootUrlModuleSimpleNoOutdir.errors.txt │ │ │ │ ├── maprootUrlModuleSimpleNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── m1.d.ts │ │ │ ├── m1.js │ │ │ ├── maprootUrlModuleSimpleNoOutdir.errors.txt │ │ │ ├── maprootUrlModuleSimpleNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── maprootUrlModuleSimpleSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── maprootUrlModuleSimpleSpecifyOutputDirectory.errors.txt │ │ │ │ ├── maprootUrlModuleSimpleSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── maprootUrlModuleSimpleSpecifyOutputDirectory.errors.txt │ │ │ ├── maprootUrlModuleSimpleSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── m1.d.ts │ │ │ ├── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── maprootUrlModuleSimpleSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── maprootUrlModuleSimpleSpecifyOutputFile.errors.txt │ │ │ │ └── maprootUrlModuleSimpleSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── maprootUrlModuleSimpleSpecifyOutputFile.errors.txt │ │ │ └── maprootUrlModuleSimpleSpecifyOutputFile.json │ │ ├── maprootUrlModuleSubfolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── maprootUrlModuleSubfolderNoOutdir.errors.txt │ │ │ │ ├── maprootUrlModuleSubfolderNoOutdir.json │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── maprootUrlModuleSubfolderNoOutdir.errors.txt │ │ │ ├── maprootUrlModuleSubfolderNoOutdir.json │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── maprootUrlModuleSubfolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── maprootUrlModuleSubfolderSpecifyOutputDirectory.errors.txt │ │ │ │ ├── maprootUrlModuleSubfolderSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── maprootUrlModuleSubfolderSpecifyOutputDirectory.errors.txt │ │ │ ├── maprootUrlModuleSubfolderSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── maprootUrlModuleSubfolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── maprootUrlModuleSubfolderSpecifyOutputFile.errors.txt │ │ │ │ └── maprootUrlModuleSubfolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── maprootUrlModuleSubfolderSpecifyOutputFile.errors.txt │ │ │ └── maprootUrlModuleSubfolderSpecifyOutputFile.json │ │ ├── maprootUrlMultifolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── diskFile1.js │ │ │ │ ├── diskFile2.d.ts │ │ │ │ ├── maprootUrlMultifolderNoOutdir.errors.txt │ │ │ │ ├── maprootUrlMultifolderNoOutdir.json │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── diskFile1.js │ │ │ ├── diskFile2.d.ts │ │ │ ├── maprootUrlMultifolderNoOutdir.errors.txt │ │ │ ├── maprootUrlMultifolderNoOutdir.json │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── maprootUrlMultifolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── maprootUrlMultifolderSpecifyOutputDirectory.errors.txt │ │ │ │ ├── maprootUrlMultifolderSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── outputdir_multifolder/ │ │ │ │ │ ├── ref/ │ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ │ └── m1.js │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ └── outputdir_multifolder_ref/ │ │ │ │ ├── m2.d.ts │ │ │ │ └── m2.js │ │ │ └── node/ │ │ │ ├── maprootUrlMultifolderSpecifyOutputDirectory.errors.txt │ │ │ ├── maprootUrlMultifolderSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── outputdir_multifolder/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── outputdir_multifolder_ref/ │ │ │ ├── m2.d.ts │ │ │ └── m2.js │ │ ├── maprootUrlMultifolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── maprootUrlMultifolderSpecifyOutputFile.errors.txt │ │ │ │ └── maprootUrlMultifolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── maprootUrlMultifolderSpecifyOutputFile.errors.txt │ │ │ └── maprootUrlMultifolderSpecifyOutputFile.json │ │ ├── maprootUrlSimpleNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── maprootUrlSimpleNoOutdir.errors.txt │ │ │ │ ├── maprootUrlSimpleNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── m1.d.ts │ │ │ ├── m1.js │ │ │ ├── maprootUrlSimpleNoOutdir.errors.txt │ │ │ ├── maprootUrlSimpleNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── maprootUrlSimpleSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── maprootUrlSimpleSpecifyOutputDirectory.errors.txt │ │ │ │ ├── maprootUrlSimpleSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── maprootUrlSimpleSpecifyOutputDirectory.errors.txt │ │ │ ├── maprootUrlSimpleSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── m1.d.ts │ │ │ ├── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── maprootUrlSimpleSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── maprootUrlSimpleSpecifyOutputFile.errors.txt │ │ │ │ └── maprootUrlSimpleSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── maprootUrlSimpleSpecifyOutputFile.errors.txt │ │ │ └── maprootUrlSimpleSpecifyOutputFile.json │ │ ├── maprootUrlSingleFileNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── maprootUrlSingleFileNoOutdir.errors.txt │ │ │ │ ├── maprootUrlSingleFileNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── maprootUrlSingleFileNoOutdir.errors.txt │ │ │ ├── maprootUrlSingleFileNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── maprootUrlSingleFileSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── maprootUrlSingleFileSpecifyOutputDirectory.errors.txt │ │ │ │ ├── maprootUrlSingleFileSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── maprootUrlSingleFileSpecifyOutputDirectory.errors.txt │ │ │ ├── maprootUrlSingleFileSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── maprootUrlSingleFileSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── maprootUrlSingleFileSpecifyOutputFile.errors.txt │ │ │ │ └── maprootUrlSingleFileSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── maprootUrlSingleFileSpecifyOutputFile.errors.txt │ │ │ └── maprootUrlSingleFileSpecifyOutputFile.json │ │ ├── maprootUrlSubfolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── maprootUrlSubfolderNoOutdir.errors.txt │ │ │ │ ├── maprootUrlSubfolderNoOutdir.json │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── maprootUrlSubfolderNoOutdir.errors.txt │ │ │ ├── maprootUrlSubfolderNoOutdir.json │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── maprootUrlSubfolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── maprootUrlSubfolderSpecifyOutputDirectory.errors.txt │ │ │ │ ├── maprootUrlSubfolderSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── maprootUrlSubfolderSpecifyOutputDirectory.errors.txt │ │ │ ├── maprootUrlSubfolderSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── maprootUrlSubfolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── maprootUrlSubfolderSpecifyOutputFile.errors.txt │ │ │ │ └── maprootUrlSubfolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── maprootUrlSubfolderSpecifyOutputFile.errors.txt │ │ │ └── maprootUrlSubfolderSpecifyOutputFile.json │ │ ├── maprootUrlsourcerootUrlMixedSubfolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── maprootUrlsourcerootUrlMixedSubfolderNoOutdir.errors.txt │ │ │ │ ├── maprootUrlsourcerootUrlMixedSubfolderNoOutdir.json │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ ├── m1.js │ │ │ │ │ ├── m2.d.ts │ │ │ │ │ └── m2.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── maprootUrlsourcerootUrlMixedSubfolderNoOutdir.errors.txt │ │ │ ├── maprootUrlsourcerootUrlMixedSubfolderNoOutdir.json │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── m2.d.ts │ │ │ │ └── m2.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── maprootUrlsourcerootUrlMixedSubfolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── maprootUrlsourcerootUrlMixedSubfolderSpecifyOutputDirectory.errors.txt │ │ │ │ ├── maprootUrlsourcerootUrlMixedSubfolderSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ ├── m1.js │ │ │ │ │ ├── m2.d.ts │ │ │ │ │ └── m2.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── maprootUrlsourcerootUrlMixedSubfolderSpecifyOutputDirectory.errors.txt │ │ │ ├── maprootUrlsourcerootUrlMixedSubfolderSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── m2.d.ts │ │ │ │ └── m2.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── maprootUrlsourcerootUrlMixedSubfolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── maprootUrlsourcerootUrlMixedSubfolderSpecifyOutputFile.errors.txt │ │ │ │ └── maprootUrlsourcerootUrlMixedSubfolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── maprootUrlsourcerootUrlMixedSubfolderSpecifyOutputFile.errors.txt │ │ │ └── maprootUrlsourcerootUrlMixedSubfolderSpecifyOutputFile.json │ │ ├── maprootUrlsourcerootUrlMixedSubfolderSpecifyOutputFileAndOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── outAndOutDirFile.d.ts │ │ │ │ │ └── outAndOutDirFile.js │ │ │ │ ├── maprootUrlsourcerootUrlMixedSubfolderSpecifyOutputFileAndOutputDirectory.errors.txt │ │ │ │ └── maprootUrlsourcerootUrlMixedSubfolderSpecifyOutputFileAndOutputDirectory.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── outAndOutDirFile.d.ts │ │ │ │ └── outAndOutDirFile.js │ │ │ ├── maprootUrlsourcerootUrlMixedSubfolderSpecifyOutputFileAndOutputDirectory.errors.txt │ │ │ └── maprootUrlsourcerootUrlMixedSubfolderSpecifyOutputFileAndOutputDirectory.json │ │ ├── maprootUrlsourcerootUrlModuleMultifolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── diskFile1.js │ │ │ │ ├── diskFile2.d.ts │ │ │ │ ├── maprootUrlsourcerootUrlModuleMultifolderNoOutdir.errors.txt │ │ │ │ ├── maprootUrlsourcerootUrlModuleMultifolderNoOutdir.json │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── diskFile1.js │ │ │ ├── diskFile2.d.ts │ │ │ ├── maprootUrlsourcerootUrlModuleMultifolderNoOutdir.errors.txt │ │ │ ├── maprootUrlsourcerootUrlModuleMultifolderNoOutdir.json │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── maprootUrlsourcerootUrlModuleMultifolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── maprootUrlsourcerootUrlModuleMultifolderSpecifyOutputDirectory.errors.txt │ │ │ │ ├── maprootUrlsourcerootUrlModuleMultifolderSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── outputdir_module_multifolder/ │ │ │ │ │ ├── ref/ │ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ │ └── m1.js │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ └── outputdir_module_multifolder_ref/ │ │ │ │ ├── m2.d.ts │ │ │ │ └── m2.js │ │ │ └── node/ │ │ │ ├── maprootUrlsourcerootUrlModuleMultifolderSpecifyOutputDirectory.errors.txt │ │ │ ├── maprootUrlsourcerootUrlModuleMultifolderSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── outputdir_module_multifolder/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── outputdir_module_multifolder_ref/ │ │ │ ├── m2.d.ts │ │ │ └── m2.js │ │ ├── maprootUrlsourcerootUrlModuleMultifolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── maprootUrlsourcerootUrlModuleMultifolderSpecifyOutputFile.errors.txt │ │ │ │ └── maprootUrlsourcerootUrlModuleMultifolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── maprootUrlsourcerootUrlModuleMultifolderSpecifyOutputFile.errors.txt │ │ │ └── maprootUrlsourcerootUrlModuleMultifolderSpecifyOutputFile.json │ │ ├── maprootUrlsourcerootUrlModuleSimpleNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── maprootUrlsourcerootUrlModuleSimpleNoOutdir.errors.txt │ │ │ │ ├── maprootUrlsourcerootUrlModuleSimpleNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── m1.d.ts │ │ │ ├── m1.js │ │ │ ├── maprootUrlsourcerootUrlModuleSimpleNoOutdir.errors.txt │ │ │ ├── maprootUrlsourcerootUrlModuleSimpleNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── maprootUrlsourcerootUrlModuleSimpleSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── maprootUrlsourcerootUrlModuleSimpleSpecifyOutputDirectory.errors.txt │ │ │ │ ├── maprootUrlsourcerootUrlModuleSimpleSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── maprootUrlsourcerootUrlModuleSimpleSpecifyOutputDirectory.errors.txt │ │ │ ├── maprootUrlsourcerootUrlModuleSimpleSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── m1.d.ts │ │ │ ├── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── maprootUrlsourcerootUrlModuleSimpleSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── maprootUrlsourcerootUrlModuleSimpleSpecifyOutputFile.errors.txt │ │ │ │ └── maprootUrlsourcerootUrlModuleSimpleSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── maprootUrlsourcerootUrlModuleSimpleSpecifyOutputFile.errors.txt │ │ │ └── maprootUrlsourcerootUrlModuleSimpleSpecifyOutputFile.json │ │ ├── maprootUrlsourcerootUrlModuleSubfolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── maprootUrlsourcerootUrlModuleSubfolderNoOutdir.errors.txt │ │ │ │ ├── maprootUrlsourcerootUrlModuleSubfolderNoOutdir.json │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── maprootUrlsourcerootUrlModuleSubfolderNoOutdir.errors.txt │ │ │ ├── maprootUrlsourcerootUrlModuleSubfolderNoOutdir.json │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── maprootUrlsourcerootUrlModuleSubfolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── maprootUrlsourcerootUrlModuleSubfolderSpecifyOutputDirectory.errors.txt │ │ │ │ ├── maprootUrlsourcerootUrlModuleSubfolderSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── maprootUrlsourcerootUrlModuleSubfolderSpecifyOutputDirectory.errors.txt │ │ │ ├── maprootUrlsourcerootUrlModuleSubfolderSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── maprootUrlsourcerootUrlModuleSubfolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── maprootUrlsourcerootUrlModuleSubfolderSpecifyOutputFile.errors.txt │ │ │ │ └── maprootUrlsourcerootUrlModuleSubfolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── maprootUrlsourcerootUrlModuleSubfolderSpecifyOutputFile.errors.txt │ │ │ └── maprootUrlsourcerootUrlModuleSubfolderSpecifyOutputFile.json │ │ ├── maprootUrlsourcerootUrlMultifolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── diskFile1.js │ │ │ │ ├── diskFile2.d.ts │ │ │ │ ├── maprootUrlsourcerootUrlMultifolderNoOutdir.errors.txt │ │ │ │ ├── maprootUrlsourcerootUrlMultifolderNoOutdir.json │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── diskFile1.js │ │ │ ├── diskFile2.d.ts │ │ │ ├── maprootUrlsourcerootUrlMultifolderNoOutdir.errors.txt │ │ │ ├── maprootUrlsourcerootUrlMultifolderNoOutdir.json │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── maprootUrlsourcerootUrlMultifolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── maprootUrlsourcerootUrlMultifolderSpecifyOutputDirectory.errors.txt │ │ │ │ ├── maprootUrlsourcerootUrlMultifolderSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── outputdir_multifolder/ │ │ │ │ │ ├── ref/ │ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ │ └── m1.js │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ └── outputdir_multifolder_ref/ │ │ │ │ ├── m2.d.ts │ │ │ │ └── m2.js │ │ │ └── node/ │ │ │ ├── maprootUrlsourcerootUrlMultifolderSpecifyOutputDirectory.errors.txt │ │ │ ├── maprootUrlsourcerootUrlMultifolderSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── outputdir_multifolder/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── outputdir_multifolder_ref/ │ │ │ ├── m2.d.ts │ │ │ └── m2.js │ │ ├── maprootUrlsourcerootUrlMultifolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── maprootUrlsourcerootUrlMultifolderSpecifyOutputFile.errors.txt │ │ │ │ └── maprootUrlsourcerootUrlMultifolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── maprootUrlsourcerootUrlMultifolderSpecifyOutputFile.errors.txt │ │ │ └── maprootUrlsourcerootUrlMultifolderSpecifyOutputFile.json │ │ ├── maprootUrlsourcerootUrlSimpleNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── maprootUrlsourcerootUrlSimpleNoOutdir.errors.txt │ │ │ │ ├── maprootUrlsourcerootUrlSimpleNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── m1.d.ts │ │ │ ├── m1.js │ │ │ ├── maprootUrlsourcerootUrlSimpleNoOutdir.errors.txt │ │ │ ├── maprootUrlsourcerootUrlSimpleNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── maprootUrlsourcerootUrlSimpleSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── maprootUrlsourcerootUrlSimpleSpecifyOutputDirectory.errors.txt │ │ │ │ ├── maprootUrlsourcerootUrlSimpleSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── maprootUrlsourcerootUrlSimpleSpecifyOutputDirectory.errors.txt │ │ │ ├── maprootUrlsourcerootUrlSimpleSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── m1.d.ts │ │ │ ├── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── maprootUrlsourcerootUrlSimpleSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── maprootUrlsourcerootUrlSimpleSpecifyOutputFile.errors.txt │ │ │ │ └── maprootUrlsourcerootUrlSimpleSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── maprootUrlsourcerootUrlSimpleSpecifyOutputFile.errors.txt │ │ │ └── maprootUrlsourcerootUrlSimpleSpecifyOutputFile.json │ │ ├── maprootUrlsourcerootUrlSingleFileNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── maprootUrlsourcerootUrlSingleFileNoOutdir.errors.txt │ │ │ │ ├── maprootUrlsourcerootUrlSingleFileNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── maprootUrlsourcerootUrlSingleFileNoOutdir.errors.txt │ │ │ ├── maprootUrlsourcerootUrlSingleFileNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── maprootUrlsourcerootUrlSingleFileSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── maprootUrlsourcerootUrlSingleFileSpecifyOutputDirectory.errors.txt │ │ │ │ ├── maprootUrlsourcerootUrlSingleFileSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── maprootUrlsourcerootUrlSingleFileSpecifyOutputDirectory.errors.txt │ │ │ ├── maprootUrlsourcerootUrlSingleFileSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── maprootUrlsourcerootUrlSingleFileSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── maprootUrlsourcerootUrlSingleFileSpecifyOutputFile.errors.txt │ │ │ │ └── maprootUrlsourcerootUrlSingleFileSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── maprootUrlsourcerootUrlSingleFileSpecifyOutputFile.errors.txt │ │ │ └── maprootUrlsourcerootUrlSingleFileSpecifyOutputFile.json │ │ ├── maprootUrlsourcerootUrlSubfolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── maprootUrlsourcerootUrlSubfolderNoOutdir.errors.txt │ │ │ │ ├── maprootUrlsourcerootUrlSubfolderNoOutdir.json │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── maprootUrlsourcerootUrlSubfolderNoOutdir.errors.txt │ │ │ ├── maprootUrlsourcerootUrlSubfolderNoOutdir.json │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── maprootUrlsourcerootUrlSubfolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── maprootUrlsourcerootUrlSubfolderSpecifyOutputDirectory.errors.txt │ │ │ │ ├── maprootUrlsourcerootUrlSubfolderSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── maprootUrlsourcerootUrlSubfolderSpecifyOutputDirectory.errors.txt │ │ │ ├── maprootUrlsourcerootUrlSubfolderSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── maprootUrlsourcerootUrlSubfolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── maprootUrlsourcerootUrlSubfolderSpecifyOutputFile.errors.txt │ │ │ │ └── maprootUrlsourcerootUrlSubfolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── maprootUrlsourcerootUrlSubfolderSpecifyOutputFile.errors.txt │ │ │ └── maprootUrlsourcerootUrlSubfolderSpecifyOutputFile.json │ │ ├── moduleIdentifier/ │ │ │ ├── amd/ │ │ │ │ ├── moduleIdentifier.errors.txt │ │ │ │ └── moduleIdentifier.json │ │ │ └── node/ │ │ │ ├── moduleIdentifier.errors.txt │ │ │ └── moduleIdentifier.json │ │ ├── moduleMergingOrdering1/ │ │ │ ├── amd/ │ │ │ │ ├── moduleMergingOrdering1.errors.txt │ │ │ │ └── moduleMergingOrdering1.json │ │ │ └── node/ │ │ │ ├── moduleMergingOrdering1.errors.txt │ │ │ └── moduleMergingOrdering1.json │ │ ├── moduleMergingOrdering2/ │ │ │ ├── amd/ │ │ │ │ ├── moduleMergingOrdering2.errors.txt │ │ │ │ └── moduleMergingOrdering2.json │ │ │ └── node/ │ │ │ ├── moduleMergingOrdering2.errors.txt │ │ │ └── moduleMergingOrdering2.json │ │ ├── multipleLevelsModuleResolution/ │ │ │ ├── amd/ │ │ │ │ ├── multipleLevelsModuleResolution.errors.txt │ │ │ │ └── multipleLevelsModuleResolution.json │ │ │ └── node/ │ │ │ ├── multipleLevelsModuleResolution.errors.txt │ │ │ └── multipleLevelsModuleResolution.json │ │ ├── nestedDeclare/ │ │ │ ├── amd/ │ │ │ │ ├── nestedDeclare.errors.txt │ │ │ │ └── nestedDeclare.json │ │ │ └── node/ │ │ │ ├── nestedDeclare.errors.txt │ │ │ └── nestedDeclare.json │ │ ├── nestedLocalModuleSimpleCase/ │ │ │ ├── amd/ │ │ │ │ ├── nestedLocalModuleSimpleCase.errors.txt │ │ │ │ └── nestedLocalModuleSimpleCase.json │ │ │ └── node/ │ │ │ ├── nestedLocalModuleSimpleCase.errors.txt │ │ │ └── nestedLocalModuleSimpleCase.json │ │ ├── nestedLocalModuleWithRecursiveTypecheck/ │ │ │ ├── amd/ │ │ │ │ ├── nestedLocalModuleWithRecursiveTypecheck.errors.txt │ │ │ │ └── nestedLocalModuleWithRecursiveTypecheck.json │ │ │ └── node/ │ │ │ ├── nestedLocalModuleWithRecursiveTypecheck.errors.txt │ │ │ └── nestedLocalModuleWithRecursiveTypecheck.json │ │ ├── nestedReferenceTags/ │ │ │ ├── amd/ │ │ │ │ ├── nestedReferenceTags.errors.txt │ │ │ │ └── nestedReferenceTags.json │ │ │ └── node/ │ │ │ ├── nestedReferenceTags.errors.txt │ │ │ └── nestedReferenceTags.json │ │ ├── noProjectOptionAndInputFiles/ │ │ │ ├── amd/ │ │ │ │ ├── a.d.ts │ │ │ │ ├── a.js │ │ │ │ ├── noProjectOptionAndInputFiles.errors.txt │ │ │ │ └── noProjectOptionAndInputFiles.json │ │ │ └── node/ │ │ │ ├── a.d.ts │ │ │ ├── a.js │ │ │ ├── noProjectOptionAndInputFiles.errors.txt │ │ │ └── noProjectOptionAndInputFiles.json │ │ ├── nodeModulesImportHigher/ │ │ │ ├── amd/ │ │ │ │ ├── importHigher/ │ │ │ │ │ └── root.js │ │ │ │ ├── nodeModulesImportHigher.errors.txt │ │ │ │ └── nodeModulesImportHigher.json │ │ │ └── node/ │ │ │ ├── importHigher/ │ │ │ │ └── root.js │ │ │ ├── nodeModulesImportHigher.errors.txt │ │ │ └── nodeModulesImportHigher.json │ │ ├── nodeModulesMaxDepthExceeded/ │ │ │ ├── amd/ │ │ │ │ ├── maxDepthExceeded/ │ │ │ │ │ └── built/ │ │ │ │ │ ├── node_modules/ │ │ │ │ │ │ └── m1/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── relative.js │ │ │ │ │ └── root.js │ │ │ │ ├── nodeModulesMaxDepthExceeded.errors.txt │ │ │ │ └── nodeModulesMaxDepthExceeded.json │ │ │ └── node/ │ │ │ ├── maxDepthExceeded/ │ │ │ │ └── built/ │ │ │ │ ├── node_modules/ │ │ │ │ │ └── m1/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── relative.js │ │ │ │ └── root.js │ │ │ ├── nodeModulesMaxDepthExceeded.errors.txt │ │ │ └── nodeModulesMaxDepthExceeded.json │ │ ├── nodeModulesMaxDepthIncreased/ │ │ │ ├── amd/ │ │ │ │ ├── maxDepthIncreased/ │ │ │ │ │ └── root.js │ │ │ │ ├── nodeModulesMaxDepthIncreased.errors.txt │ │ │ │ └── nodeModulesMaxDepthIncreased.json │ │ │ └── node/ │ │ │ ├── maxDepthIncreased/ │ │ │ │ └── root.js │ │ │ ├── nodeModulesMaxDepthIncreased.errors.txt │ │ │ └── nodeModulesMaxDepthIncreased.json │ │ ├── nonRelative/ │ │ │ ├── amd/ │ │ │ │ ├── consume.js │ │ │ │ ├── decl.js │ │ │ │ ├── lib/ │ │ │ │ │ ├── bar/ │ │ │ │ │ │ └── a.js │ │ │ │ │ └── foo/ │ │ │ │ │ ├── a.js │ │ │ │ │ └── b.js │ │ │ │ ├── nonRelative.errors.txt │ │ │ │ └── nonRelative.json │ │ │ └── node/ │ │ │ ├── consume.js │ │ │ ├── decl.js │ │ │ ├── lib/ │ │ │ │ ├── bar/ │ │ │ │ │ └── a.js │ │ │ │ └── foo/ │ │ │ │ ├── a.js │ │ │ │ └── b.js │ │ │ ├── nonRelative.errors.txt │ │ │ └── nonRelative.json │ │ ├── outMixedSubfolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── outMixedSubfolderNoOutdir.errors.txt │ │ │ │ ├── outMixedSubfolderNoOutdir.json │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ ├── m1.js │ │ │ │ │ ├── m2.d.ts │ │ │ │ │ └── m2.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── outMixedSubfolderNoOutdir.errors.txt │ │ │ ├── outMixedSubfolderNoOutdir.json │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── m2.d.ts │ │ │ │ └── m2.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── outMixedSubfolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outMixedSubfolderSpecifyOutputDirectory.errors.txt │ │ │ │ ├── outMixedSubfolderSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ ├── m1.js │ │ │ │ │ ├── m2.d.ts │ │ │ │ │ └── m2.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── outMixedSubfolderSpecifyOutputDirectory.errors.txt │ │ │ ├── outMixedSubfolderSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── m2.d.ts │ │ │ │ └── m2.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── outMixedSubfolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── outMixedSubfolderSpecifyOutputFile.errors.txt │ │ │ │ └── outMixedSubfolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── outMixedSubfolderSpecifyOutputFile.errors.txt │ │ │ └── outMixedSubfolderSpecifyOutputFile.json │ │ ├── outMixedSubfolderSpecifyOutputFileAndOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── outAndOutDirFile.d.ts │ │ │ │ │ └── outAndOutDirFile.js │ │ │ │ ├── outMixedSubfolderSpecifyOutputFileAndOutputDirectory.errors.txt │ │ │ │ └── outMixedSubfolderSpecifyOutputFileAndOutputDirectory.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── outAndOutDirFile.d.ts │ │ │ │ └── outAndOutDirFile.js │ │ │ ├── outMixedSubfolderSpecifyOutputFileAndOutputDirectory.errors.txt │ │ │ └── outMixedSubfolderSpecifyOutputFileAndOutputDirectory.json │ │ ├── outModuleMultifolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── diskFile0.js │ │ │ │ ├── diskFile1.d.ts │ │ │ │ ├── outModuleMultifolderNoOutdir.errors.txt │ │ │ │ ├── outModuleMultifolderNoOutdir.json │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── diskFile0.js │ │ │ ├── diskFile1.d.ts │ │ │ ├── outModuleMultifolderNoOutdir.errors.txt │ │ │ ├── outModuleMultifolderNoOutdir.json │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── outModuleMultifolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outModuleMultifolderSpecifyOutputDirectory.errors.txt │ │ │ │ ├── outModuleMultifolderSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── outputdir_module_multifolder/ │ │ │ │ │ ├── ref/ │ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ │ └── m1.js │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ └── outputdir_module_multifolder_ref/ │ │ │ │ ├── m2.d.ts │ │ │ │ └── m2.js │ │ │ └── node/ │ │ │ ├── outModuleMultifolderSpecifyOutputDirectory.errors.txt │ │ │ ├── outModuleMultifolderSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── outputdir_module_multifolder/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── outputdir_module_multifolder_ref/ │ │ │ ├── m2.d.ts │ │ │ └── m2.js │ │ ├── outModuleMultifolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── outModuleMultifolderSpecifyOutputFile.errors.txt │ │ │ │ └── outModuleMultifolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── outModuleMultifolderSpecifyOutputFile.errors.txt │ │ │ └── outModuleMultifolderSpecifyOutputFile.json │ │ ├── outModuleSimpleNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── outModuleSimpleNoOutdir.errors.txt │ │ │ │ ├── outModuleSimpleNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── m1.d.ts │ │ │ ├── m1.js │ │ │ ├── outModuleSimpleNoOutdir.errors.txt │ │ │ ├── outModuleSimpleNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── outModuleSimpleSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outModuleSimpleSpecifyOutputDirectory.errors.txt │ │ │ │ ├── outModuleSimpleSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── outModuleSimpleSpecifyOutputDirectory.errors.txt │ │ │ ├── outModuleSimpleSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── m1.d.ts │ │ │ ├── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── outModuleSimpleSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── outModuleSimpleSpecifyOutputFile.errors.txt │ │ │ │ └── outModuleSimpleSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── outModuleSimpleSpecifyOutputFile.errors.txt │ │ │ └── outModuleSimpleSpecifyOutputFile.json │ │ ├── outModuleSubfolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── outModuleSubfolderNoOutdir.errors.txt │ │ │ │ ├── outModuleSubfolderNoOutdir.json │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── outModuleSubfolderNoOutdir.errors.txt │ │ │ ├── outModuleSubfolderNoOutdir.json │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── outModuleSubfolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outModuleSubfolderSpecifyOutputDirectory.errors.txt │ │ │ │ ├── outModuleSubfolderSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── outModuleSubfolderSpecifyOutputDirectory.errors.txt │ │ │ ├── outModuleSubfolderSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── outModuleSubfolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── outModuleSubfolderSpecifyOutputFile.errors.txt │ │ │ │ └── outModuleSubfolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── outModuleSubfolderSpecifyOutputFile.errors.txt │ │ │ └── outModuleSubfolderSpecifyOutputFile.json │ │ ├── outMultifolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── diskFile0.js │ │ │ │ ├── diskFile1.d.ts │ │ │ │ ├── outMultifolderNoOutdir.errors.txt │ │ │ │ ├── outMultifolderNoOutdir.json │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── diskFile0.js │ │ │ ├── diskFile1.d.ts │ │ │ ├── outMultifolderNoOutdir.errors.txt │ │ │ ├── outMultifolderNoOutdir.json │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── outMultifolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outMultifolderSpecifyOutputDirectory.errors.txt │ │ │ │ ├── outMultifolderSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── outputdir_multifolder/ │ │ │ │ │ ├── ref/ │ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ │ └── m1.js │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ └── outputdir_multifolder_ref/ │ │ │ │ ├── m2.d.ts │ │ │ │ └── m2.js │ │ │ └── node/ │ │ │ ├── outMultifolderSpecifyOutputDirectory.errors.txt │ │ │ ├── outMultifolderSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── outputdir_multifolder/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── outputdir_multifolder_ref/ │ │ │ ├── m2.d.ts │ │ │ └── m2.js │ │ ├── outMultifolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── outMultifolderSpecifyOutputFile.errors.txt │ │ │ │ └── outMultifolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── outMultifolderSpecifyOutputFile.errors.txt │ │ │ └── outMultifolderSpecifyOutputFile.json │ │ ├── outSimpleNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── outSimpleNoOutdir.errors.txt │ │ │ │ ├── outSimpleNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── m1.d.ts │ │ │ ├── m1.js │ │ │ ├── outSimpleNoOutdir.errors.txt │ │ │ ├── outSimpleNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── outSimpleSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outSimpleSpecifyOutputDirectory.errors.txt │ │ │ │ ├── outSimpleSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── outSimpleSpecifyOutputDirectory.errors.txt │ │ │ ├── outSimpleSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── m1.d.ts │ │ │ ├── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── outSimpleSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── outSimpleSpecifyOutputFile.errors.txt │ │ │ │ └── outSimpleSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── outSimpleSpecifyOutputFile.errors.txt │ │ │ └── outSimpleSpecifyOutputFile.json │ │ ├── outSingleFileNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── outSingleFileNoOutdir.errors.txt │ │ │ │ ├── outSingleFileNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── outSingleFileNoOutdir.errors.txt │ │ │ ├── outSingleFileNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── outSingleFileSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outSingleFileSpecifyOutputDirectory.errors.txt │ │ │ │ ├── outSingleFileSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── outSingleFileSpecifyOutputDirectory.errors.txt │ │ │ ├── outSingleFileSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── outSingleFileSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── outSingleFileSpecifyOutputFile.errors.txt │ │ │ │ └── outSingleFileSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── outSingleFileSpecifyOutputFile.errors.txt │ │ │ └── outSingleFileSpecifyOutputFile.json │ │ ├── outSubfolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── outSubfolderNoOutdir.errors.txt │ │ │ │ ├── outSubfolderNoOutdir.json │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── outSubfolderNoOutdir.errors.txt │ │ │ ├── outSubfolderNoOutdir.json │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── outSubfolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outSubfolderSpecifyOutputDirectory.errors.txt │ │ │ │ ├── outSubfolderSpecifyOutputDirectory.json │ │ │ │ └── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── outSubfolderSpecifyOutputDirectory.errors.txt │ │ │ ├── outSubfolderSpecifyOutputDirectory.json │ │ │ └── outdir/ │ │ │ └── simple/ │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── outSubfolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── outSubfolderSpecifyOutputFile.errors.txt │ │ │ │ └── outSubfolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── outSubfolderSpecifyOutputFile.errors.txt │ │ │ └── outSubfolderSpecifyOutputFile.json │ │ ├── privacyCheckOnImportedModuleDeclarationsInsideModule/ │ │ │ ├── amd/ │ │ │ │ ├── privacyCheckOnImportedModuleDeclarationsInsideModule.errors.txt │ │ │ │ ├── privacyCheckOnImportedModuleDeclarationsInsideModule.json │ │ │ │ └── testGlo.js │ │ │ └── node/ │ │ │ ├── privacyCheckOnImportedModuleDeclarationsInsideModule.errors.txt │ │ │ ├── privacyCheckOnImportedModuleDeclarationsInsideModule.json │ │ │ └── testGlo.js │ │ ├── privacyCheckOnImportedModuleDeclarationsInsideNonExportedModule/ │ │ │ ├── amd/ │ │ │ │ ├── privacyCheckOnImportedModuleDeclarationsInsideNonExportedModule.errors.txt │ │ │ │ └── privacyCheckOnImportedModuleDeclarationsInsideNonExportedModule.json │ │ │ └── node/ │ │ │ ├── privacyCheckOnImportedModuleDeclarationsInsideNonExportedModule.errors.txt │ │ │ └── privacyCheckOnImportedModuleDeclarationsInsideNonExportedModule.json │ │ ├── privacyCheckOnImportedModuleImportStatementInParentModule/ │ │ │ ├── amd/ │ │ │ │ ├── privacyCheckOnImportedModuleImportStatementInParentModule.errors.txt │ │ │ │ └── privacyCheckOnImportedModuleImportStatementInParentModule.json │ │ │ └── node/ │ │ │ ├── privacyCheckOnImportedModuleImportStatementInParentModule.errors.txt │ │ │ └── privacyCheckOnImportedModuleImportStatementInParentModule.json │ │ ├── privacyCheckOnImportedModuleSimpleReference/ │ │ │ ├── amd/ │ │ │ │ ├── privacyCheckOnImportedModuleSimpleReference.errors.txt │ │ │ │ └── privacyCheckOnImportedModuleSimpleReference.json │ │ │ └── node/ │ │ │ ├── privacyCheckOnImportedModuleSimpleReference.errors.txt │ │ │ └── privacyCheckOnImportedModuleSimpleReference.json │ │ ├── privacyCheckOnIndirectTypeFromTheExternalType/ │ │ │ ├── amd/ │ │ │ │ ├── privacyCheckOnIndirectTypeFromTheExternalType.errors.txt │ │ │ │ └── privacyCheckOnIndirectTypeFromTheExternalType.json │ │ │ └── node/ │ │ │ ├── privacyCheckOnIndirectTypeFromTheExternalType.errors.txt │ │ │ └── privacyCheckOnIndirectTypeFromTheExternalType.json │ │ ├── projectOptionTest/ │ │ │ ├── amd/ │ │ │ │ ├── Test/ │ │ │ │ │ ├── a.d.ts │ │ │ │ │ └── a.js │ │ │ │ ├── projectOptionTest.errors.txt │ │ │ │ └── projectOptionTest.json │ │ │ └── node/ │ │ │ ├── Test/ │ │ │ │ ├── a.d.ts │ │ │ │ └── a.js │ │ │ ├── projectOptionTest.errors.txt │ │ │ └── projectOptionTest.json │ │ ├── prologueEmit/ │ │ │ ├── amd/ │ │ │ │ ├── out.js │ │ │ │ ├── prologueEmit.errors.txt │ │ │ │ └── prologueEmit.json │ │ │ └── node/ │ │ │ ├── out.js │ │ │ ├── prologueEmit.errors.txt │ │ │ └── prologueEmit.json │ │ ├── quotesInFileAndDirectoryNames/ │ │ │ ├── amd/ │ │ │ │ ├── li'b/ │ │ │ │ │ ├── class'A.d.ts │ │ │ │ │ └── class'A.js │ │ │ │ ├── m'ain.d.ts │ │ │ │ ├── m'ain.js │ │ │ │ ├── quotesInFileAndDirectoryNames.errors.txt │ │ │ │ └── quotesInFileAndDirectoryNames.json │ │ │ └── node/ │ │ │ ├── li'b/ │ │ │ │ ├── class'A.d.ts │ │ │ │ └── class'A.js │ │ │ ├── m'ain.d.ts │ │ │ ├── m'ain.js │ │ │ ├── quotesInFileAndDirectoryNames.errors.txt │ │ │ └── quotesInFileAndDirectoryNames.json │ │ ├── referencePathStatic/ │ │ │ ├── amd/ │ │ │ │ ├── referencePathStatic.errors.txt │ │ │ │ └── referencePathStatic.json │ │ │ └── node/ │ │ │ ├── referencePathStatic.errors.txt │ │ │ └── referencePathStatic.json │ │ ├── referenceResolutionRelativePaths/ │ │ │ ├── amd/ │ │ │ │ ├── diskFile0.js │ │ │ │ ├── diskFile1.d.ts │ │ │ │ ├── foo.d.ts │ │ │ │ ├── foo.js │ │ │ │ ├── referenceResolutionRelativePaths.errors.txt │ │ │ │ └── referenceResolutionRelativePaths.json │ │ │ └── node/ │ │ │ ├── diskFile0.js │ │ │ ├── diskFile1.d.ts │ │ │ ├── foo.d.ts │ │ │ ├── foo.js │ │ │ ├── referenceResolutionRelativePaths.errors.txt │ │ │ └── referenceResolutionRelativePaths.json │ │ ├── referenceResolutionRelativePathsFromRootDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── bar/ │ │ │ │ │ ├── bar.d.ts │ │ │ │ │ └── bar.js │ │ │ │ ├── referenceResolutionRelativePathsFromRootDirectory.errors.txt │ │ │ │ ├── referenceResolutionRelativePathsFromRootDirectory.json │ │ │ │ └── src/ │ │ │ │ └── ts/ │ │ │ │ └── foo/ │ │ │ │ ├── foo.d.ts │ │ │ │ └── foo.js │ │ │ └── node/ │ │ │ ├── bar/ │ │ │ │ ├── bar.d.ts │ │ │ │ └── bar.js │ │ │ ├── referenceResolutionRelativePathsFromRootDirectory.errors.txt │ │ │ ├── referenceResolutionRelativePathsFromRootDirectory.json │ │ │ └── src/ │ │ │ └── ts/ │ │ │ └── foo/ │ │ │ ├── foo.d.ts │ │ │ └── foo.js │ │ ├── referenceResolutionRelativePathsNoResolve/ │ │ │ ├── amd/ │ │ │ │ ├── diskFile0.js │ │ │ │ ├── diskFile1.d.ts │ │ │ │ ├── foo.d.ts │ │ │ │ ├── foo.js │ │ │ │ ├── referenceResolutionRelativePathsNoResolve.errors.txt │ │ │ │ └── referenceResolutionRelativePathsNoResolve.json │ │ │ └── node/ │ │ │ ├── diskFile0.js │ │ │ ├── diskFile1.d.ts │ │ │ ├── foo.d.ts │ │ │ ├── foo.js │ │ │ ├── referenceResolutionRelativePathsNoResolve.errors.txt │ │ │ └── referenceResolutionRelativePathsNoResolve.json │ │ ├── referenceResolutionRelativePathsRelativeToRootDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── diskFile0.js │ │ │ │ ├── diskFile1.d.ts │ │ │ │ ├── foo.d.ts │ │ │ │ ├── foo.js │ │ │ │ ├── referenceResolutionRelativePathsRelativeToRootDirectory.errors.txt │ │ │ │ └── referenceResolutionRelativePathsRelativeToRootDirectory.json │ │ │ └── node/ │ │ │ ├── diskFile0.js │ │ │ ├── diskFile1.d.ts │ │ │ ├── foo.d.ts │ │ │ ├── foo.js │ │ │ ├── referenceResolutionRelativePathsRelativeToRootDirectory.errors.txt │ │ │ └── referenceResolutionRelativePathsRelativeToRootDirectory.json │ │ ├── referenceResolutionSameFileTwice/ │ │ │ ├── amd/ │ │ │ │ ├── referenceResolutionSameFileTwice.errors.txt │ │ │ │ ├── referenceResolutionSameFileTwice.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── referenceResolutionSameFileTwice.errors.txt │ │ │ ├── referenceResolutionSameFileTwice.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── referenceResolutionSameFileTwiceNoResolve/ │ │ │ ├── amd/ │ │ │ │ ├── referenceResolutionSameFileTwiceNoResolve.errors.txt │ │ │ │ ├── referenceResolutionSameFileTwiceNoResolve.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── referenceResolutionSameFileTwiceNoResolve.errors.txt │ │ │ ├── referenceResolutionSameFileTwiceNoResolve.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── relativeGlobal/ │ │ │ ├── amd/ │ │ │ │ ├── relativeGlobal.errors.txt │ │ │ │ └── relativeGlobal.json │ │ │ └── node/ │ │ │ ├── relativeGlobal.errors.txt │ │ │ └── relativeGlobal.json │ │ ├── relativeGlobalRef/ │ │ │ ├── amd/ │ │ │ │ ├── relativeGlobalRef.errors.txt │ │ │ │ └── relativeGlobalRef.json │ │ │ └── node/ │ │ │ ├── relativeGlobalRef.errors.txt │ │ │ └── relativeGlobalRef.json │ │ ├── relativeNested/ │ │ │ ├── amd/ │ │ │ │ ├── relativeNested.errors.txt │ │ │ │ └── relativeNested.json │ │ │ └── node/ │ │ │ ├── relativeNested.errors.txt │ │ │ └── relativeNested.json │ │ ├── relativeNestedRef/ │ │ │ ├── amd/ │ │ │ │ ├── relativeNestedRef.errors.txt │ │ │ │ └── relativeNestedRef.json │ │ │ └── node/ │ │ │ ├── relativeNestedRef.errors.txt │ │ │ └── relativeNestedRef.json │ │ ├── relativePaths/ │ │ │ ├── amd/ │ │ │ │ ├── relativePaths.errors.txt │ │ │ │ └── relativePaths.json │ │ │ └── node/ │ │ │ ├── relativePaths.errors.txt │ │ │ └── relativePaths.json │ │ ├── rootDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outdir/ │ │ │ │ │ └── simple/ │ │ │ │ │ └── FolderB/ │ │ │ │ │ ├── FolderC/ │ │ │ │ │ │ ├── fileC.d.ts │ │ │ │ │ │ └── fileC.js │ │ │ │ │ ├── fileB.d.ts │ │ │ │ │ └── fileB.js │ │ │ │ ├── rootDirectory.errors.txt │ │ │ │ └── rootDirectory.json │ │ │ └── node/ │ │ │ ├── outdir/ │ │ │ │ └── simple/ │ │ │ │ └── FolderB/ │ │ │ │ ├── FolderC/ │ │ │ │ │ ├── fileC.d.ts │ │ │ │ │ └── fileC.js │ │ │ │ ├── fileB.d.ts │ │ │ │ └── fileB.js │ │ │ ├── rootDirectory.errors.txt │ │ │ └── rootDirectory.json │ │ ├── rootDirectoryErrors/ │ │ │ ├── amd/ │ │ │ │ ├── FolderA/ │ │ │ │ │ └── FolderB/ │ │ │ │ │ ├── fileB.d.ts │ │ │ │ │ └── fileB.js │ │ │ │ ├── outdir/ │ │ │ │ │ └── simple/ │ │ │ │ │ ├── fileC.d.ts │ │ │ │ │ └── fileC.js │ │ │ │ ├── rootDirectoryErrors.errors.txt │ │ │ │ └── rootDirectoryErrors.json │ │ │ └── node/ │ │ │ ├── FolderA/ │ │ │ │ └── FolderB/ │ │ │ │ ├── fileB.d.ts │ │ │ │ └── fileB.js │ │ │ ├── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── fileC.d.ts │ │ │ │ └── fileC.js │ │ │ ├── rootDirectoryErrors.errors.txt │ │ │ └── rootDirectoryErrors.json │ │ ├── rootDirectoryWithSourceRoot/ │ │ │ ├── amd/ │ │ │ │ ├── outdir/ │ │ │ │ │ └── simple/ │ │ │ │ │ └── FolderB/ │ │ │ │ │ ├── FolderC/ │ │ │ │ │ │ └── fileC.js │ │ │ │ │ └── fileB.js │ │ │ │ ├── rootDirectoryWithSourceRoot.errors.txt │ │ │ │ └── rootDirectoryWithSourceRoot.json │ │ │ └── node/ │ │ │ ├── outdir/ │ │ │ │ └── simple/ │ │ │ │ └── FolderB/ │ │ │ │ ├── FolderC/ │ │ │ │ │ └── fileC.js │ │ │ │ └── fileB.js │ │ │ ├── rootDirectoryWithSourceRoot.errors.txt │ │ │ └── rootDirectoryWithSourceRoot.json │ │ ├── rootDirectoryWithoutOutDir/ │ │ │ ├── amd/ │ │ │ │ ├── rootDirectoryWithoutOutDir.errors.txt │ │ │ │ └── rootDirectoryWithoutOutDir.json │ │ │ └── node/ │ │ │ ├── rootDirectoryWithoutOutDir.errors.txt │ │ │ └── rootDirectoryWithoutOutDir.json │ │ ├── sourceRootAbsolutePathMixedSubfolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ ├── m1.js │ │ │ │ │ ├── m2.d.ts │ │ │ │ │ └── m2.js │ │ │ │ ├── sourceRootAbsolutePathMixedSubfolderNoOutdir.errors.txt │ │ │ │ ├── sourceRootAbsolutePathMixedSubfolderNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── m2.d.ts │ │ │ │ └── m2.js │ │ │ ├── sourceRootAbsolutePathMixedSubfolderNoOutdir.errors.txt │ │ │ ├── sourceRootAbsolutePathMixedSubfolderNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── sourceRootAbsolutePathMixedSubfolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outdir/ │ │ │ │ │ └── simple/ │ │ │ │ │ ├── ref/ │ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ │ ├── m1.js │ │ │ │ │ │ ├── m2.d.ts │ │ │ │ │ │ └── m2.js │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourceRootAbsolutePathMixedSubfolderSpecifyOutputDirectory.errors.txt │ │ │ │ └── sourceRootAbsolutePathMixedSubfolderSpecifyOutputDirectory.json │ │ │ └── node/ │ │ │ ├── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ ├── m1.js │ │ │ │ │ ├── m2.d.ts │ │ │ │ │ └── m2.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourceRootAbsolutePathMixedSubfolderSpecifyOutputDirectory.errors.txt │ │ │ └── sourceRootAbsolutePathMixedSubfolderSpecifyOutputDirectory.json │ │ ├── sourceRootAbsolutePathMixedSubfolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourceRootAbsolutePathMixedSubfolderSpecifyOutputFile.errors.txt │ │ │ │ └── sourceRootAbsolutePathMixedSubfolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourceRootAbsolutePathMixedSubfolderSpecifyOutputFile.errors.txt │ │ │ └── sourceRootAbsolutePathMixedSubfolderSpecifyOutputFile.json │ │ ├── sourceRootAbsolutePathMixedSubfolderSpecifyOutputFileAndOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── outAndOutDirFile.d.ts │ │ │ │ │ └── outAndOutDirFile.js │ │ │ │ ├── sourceRootAbsolutePathMixedSubfolderSpecifyOutputFileAndOutputDirectory.errors.txt │ │ │ │ └── sourceRootAbsolutePathMixedSubfolderSpecifyOutputFileAndOutputDirectory.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── outAndOutDirFile.d.ts │ │ │ │ └── outAndOutDirFile.js │ │ │ ├── sourceRootAbsolutePathMixedSubfolderSpecifyOutputFileAndOutputDirectory.errors.txt │ │ │ └── sourceRootAbsolutePathMixedSubfolderSpecifyOutputFileAndOutputDirectory.json │ │ ├── sourceRootAbsolutePathModuleMultifolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── diskFile1.js │ │ │ │ ├── diskFile2.d.ts │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── sourceRootAbsolutePathModuleMultifolderNoOutdir.errors.txt │ │ │ │ ├── sourceRootAbsolutePathModuleMultifolderNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── diskFile1.js │ │ │ ├── diskFile2.d.ts │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── sourceRootAbsolutePathModuleMultifolderNoOutdir.errors.txt │ │ │ ├── sourceRootAbsolutePathModuleMultifolderNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── sourceRootAbsolutePathModuleMultifolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outdir/ │ │ │ │ │ └── simple/ │ │ │ │ │ ├── outputdir_module_multifolder/ │ │ │ │ │ │ ├── ref/ │ │ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ │ │ └── m1.js │ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ │ └── test.js │ │ │ │ │ └── outputdir_module_multifolder_ref/ │ │ │ │ │ ├── m2.d.ts │ │ │ │ │ └── m2.js │ │ │ │ ├── sourceRootAbsolutePathModuleMultifolderSpecifyOutputDirectory.errors.txt │ │ │ │ └── sourceRootAbsolutePathModuleMultifolderSpecifyOutputDirectory.json │ │ │ └── node/ │ │ │ ├── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── outputdir_module_multifolder/ │ │ │ │ │ ├── ref/ │ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ │ └── m1.js │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ └── outputdir_module_multifolder_ref/ │ │ │ │ ├── m2.d.ts │ │ │ │ └── m2.js │ │ │ ├── sourceRootAbsolutePathModuleMultifolderSpecifyOutputDirectory.errors.txt │ │ │ └── sourceRootAbsolutePathModuleMultifolderSpecifyOutputDirectory.json │ │ ├── sourceRootAbsolutePathModuleMultifolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourceRootAbsolutePathModuleMultifolderSpecifyOutputFile.errors.txt │ │ │ │ └── sourceRootAbsolutePathModuleMultifolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── sourceRootAbsolutePathModuleMultifolderSpecifyOutputFile.errors.txt │ │ │ └── sourceRootAbsolutePathModuleMultifolderSpecifyOutputFile.json │ │ ├── sourceRootAbsolutePathModuleSimpleNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── sourceRootAbsolutePathModuleSimpleNoOutdir.errors.txt │ │ │ │ ├── sourceRootAbsolutePathModuleSimpleNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── m1.d.ts │ │ │ ├── m1.js │ │ │ ├── sourceRootAbsolutePathModuleSimpleNoOutdir.errors.txt │ │ │ ├── sourceRootAbsolutePathModuleSimpleNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── sourceRootAbsolutePathModuleSimpleSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outdir/ │ │ │ │ │ └── simple/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ ├── m1.js │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourceRootAbsolutePathModuleSimpleSpecifyOutputDirectory.errors.txt │ │ │ │ └── sourceRootAbsolutePathModuleSimpleSpecifyOutputDirectory.json │ │ │ └── node/ │ │ │ ├── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourceRootAbsolutePathModuleSimpleSpecifyOutputDirectory.errors.txt │ │ │ └── sourceRootAbsolutePathModuleSimpleSpecifyOutputDirectory.json │ │ ├── sourceRootAbsolutePathModuleSimpleSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourceRootAbsolutePathModuleSimpleSpecifyOutputFile.errors.txt │ │ │ │ └── sourceRootAbsolutePathModuleSimpleSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── sourceRootAbsolutePathModuleSimpleSpecifyOutputFile.errors.txt │ │ │ └── sourceRootAbsolutePathModuleSimpleSpecifyOutputFile.json │ │ ├── sourceRootAbsolutePathModuleSubfolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── sourceRootAbsolutePathModuleSubfolderNoOutdir.errors.txt │ │ │ │ ├── sourceRootAbsolutePathModuleSubfolderNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── sourceRootAbsolutePathModuleSubfolderNoOutdir.errors.txt │ │ │ ├── sourceRootAbsolutePathModuleSubfolderNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── sourceRootAbsolutePathModuleSubfolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outdir/ │ │ │ │ │ └── simple/ │ │ │ │ │ ├── ref/ │ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ │ └── m1.js │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourceRootAbsolutePathModuleSubfolderSpecifyOutputDirectory.errors.txt │ │ │ │ └── sourceRootAbsolutePathModuleSubfolderSpecifyOutputDirectory.json │ │ │ └── node/ │ │ │ ├── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourceRootAbsolutePathModuleSubfolderSpecifyOutputDirectory.errors.txt │ │ │ └── sourceRootAbsolutePathModuleSubfolderSpecifyOutputDirectory.json │ │ ├── sourceRootAbsolutePathModuleSubfolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourceRootAbsolutePathModuleSubfolderSpecifyOutputFile.errors.txt │ │ │ │ └── sourceRootAbsolutePathModuleSubfolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── sourceRootAbsolutePathModuleSubfolderSpecifyOutputFile.errors.txt │ │ │ └── sourceRootAbsolutePathModuleSubfolderSpecifyOutputFile.json │ │ ├── sourceRootAbsolutePathMultifolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── diskFile1.js │ │ │ │ ├── diskFile2.d.ts │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── sourceRootAbsolutePathMultifolderNoOutdir.errors.txt │ │ │ │ ├── sourceRootAbsolutePathMultifolderNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── diskFile1.js │ │ │ ├── diskFile2.d.ts │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── sourceRootAbsolutePathMultifolderNoOutdir.errors.txt │ │ │ ├── sourceRootAbsolutePathMultifolderNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── sourceRootAbsolutePathMultifolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outdir/ │ │ │ │ │ └── simple/ │ │ │ │ │ ├── outputdir_multifolder/ │ │ │ │ │ │ ├── ref/ │ │ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ │ │ └── m1.js │ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ │ └── test.js │ │ │ │ │ └── outputdir_multifolder_ref/ │ │ │ │ │ ├── m2.d.ts │ │ │ │ │ └── m2.js │ │ │ │ ├── sourceRootAbsolutePathMultifolderSpecifyOutputDirectory.errors.txt │ │ │ │ └── sourceRootAbsolutePathMultifolderSpecifyOutputDirectory.json │ │ │ └── node/ │ │ │ ├── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── outputdir_multifolder/ │ │ │ │ │ ├── ref/ │ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ │ └── m1.js │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ └── outputdir_multifolder_ref/ │ │ │ │ ├── m2.d.ts │ │ │ │ └── m2.js │ │ │ ├── sourceRootAbsolutePathMultifolderSpecifyOutputDirectory.errors.txt │ │ │ └── sourceRootAbsolutePathMultifolderSpecifyOutputDirectory.json │ │ ├── sourceRootAbsolutePathMultifolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourceRootAbsolutePathMultifolderSpecifyOutputFile.errors.txt │ │ │ │ └── sourceRootAbsolutePathMultifolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourceRootAbsolutePathMultifolderSpecifyOutputFile.errors.txt │ │ │ └── sourceRootAbsolutePathMultifolderSpecifyOutputFile.json │ │ ├── sourceRootAbsolutePathSimpleNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── sourceRootAbsolutePathSimpleNoOutdir.errors.txt │ │ │ │ ├── sourceRootAbsolutePathSimpleNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── m1.d.ts │ │ │ ├── m1.js │ │ │ ├── sourceRootAbsolutePathSimpleNoOutdir.errors.txt │ │ │ ├── sourceRootAbsolutePathSimpleNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── sourceRootAbsolutePathSimpleSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outdir/ │ │ │ │ │ └── simple/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ ├── m1.js │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourceRootAbsolutePathSimpleSpecifyOutputDirectory.errors.txt │ │ │ │ └── sourceRootAbsolutePathSimpleSpecifyOutputDirectory.json │ │ │ └── node/ │ │ │ ├── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourceRootAbsolutePathSimpleSpecifyOutputDirectory.errors.txt │ │ │ └── sourceRootAbsolutePathSimpleSpecifyOutputDirectory.json │ │ ├── sourceRootAbsolutePathSimpleSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourceRootAbsolutePathSimpleSpecifyOutputFile.errors.txt │ │ │ │ └── sourceRootAbsolutePathSimpleSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourceRootAbsolutePathSimpleSpecifyOutputFile.errors.txt │ │ │ └── sourceRootAbsolutePathSimpleSpecifyOutputFile.json │ │ ├── sourceRootAbsolutePathSingleFileNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── sourceRootAbsolutePathSingleFileNoOutdir.errors.txt │ │ │ │ ├── sourceRootAbsolutePathSingleFileNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── sourceRootAbsolutePathSingleFileNoOutdir.errors.txt │ │ │ ├── sourceRootAbsolutePathSingleFileNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── sourceRootAbsolutePathSingleFileSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outdir/ │ │ │ │ │ └── simple/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourceRootAbsolutePathSingleFileSpecifyOutputDirectory.errors.txt │ │ │ │ └── sourceRootAbsolutePathSingleFileSpecifyOutputDirectory.json │ │ │ └── node/ │ │ │ ├── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourceRootAbsolutePathSingleFileSpecifyOutputDirectory.errors.txt │ │ │ └── sourceRootAbsolutePathSingleFileSpecifyOutputDirectory.json │ │ ├── sourceRootAbsolutePathSingleFileSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourceRootAbsolutePathSingleFileSpecifyOutputFile.errors.txt │ │ │ │ └── sourceRootAbsolutePathSingleFileSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourceRootAbsolutePathSingleFileSpecifyOutputFile.errors.txt │ │ │ └── sourceRootAbsolutePathSingleFileSpecifyOutputFile.json │ │ ├── sourceRootAbsolutePathSubfolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── sourceRootAbsolutePathSubfolderNoOutdir.errors.txt │ │ │ │ ├── sourceRootAbsolutePathSubfolderNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── sourceRootAbsolutePathSubfolderNoOutdir.errors.txt │ │ │ ├── sourceRootAbsolutePathSubfolderNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── sourceRootAbsolutePathSubfolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outdir/ │ │ │ │ │ └── simple/ │ │ │ │ │ ├── ref/ │ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ │ └── m1.js │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourceRootAbsolutePathSubfolderSpecifyOutputDirectory.errors.txt │ │ │ │ └── sourceRootAbsolutePathSubfolderSpecifyOutputDirectory.json │ │ │ └── node/ │ │ │ ├── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourceRootAbsolutePathSubfolderSpecifyOutputDirectory.errors.txt │ │ │ └── sourceRootAbsolutePathSubfolderSpecifyOutputDirectory.json │ │ ├── sourceRootAbsolutePathSubfolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourceRootAbsolutePathSubfolderSpecifyOutputFile.errors.txt │ │ │ │ └── sourceRootAbsolutePathSubfolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourceRootAbsolutePathSubfolderSpecifyOutputFile.errors.txt │ │ │ └── sourceRootAbsolutePathSubfolderSpecifyOutputFile.json │ │ ├── sourceRootRelativePathMixedSubfolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ ├── m1.js │ │ │ │ │ ├── m2.d.ts │ │ │ │ │ └── m2.js │ │ │ │ ├── sourceRootRelativePathMixedSubfolderNoOutdir.errors.txt │ │ │ │ ├── sourceRootRelativePathMixedSubfolderNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── m2.d.ts │ │ │ │ └── m2.js │ │ │ ├── sourceRootRelativePathMixedSubfolderNoOutdir.errors.txt │ │ │ ├── sourceRootRelativePathMixedSubfolderNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── sourceRootRelativePathMixedSubfolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outdir/ │ │ │ │ │ └── simple/ │ │ │ │ │ ├── ref/ │ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ │ ├── m1.js │ │ │ │ │ │ ├── m2.d.ts │ │ │ │ │ │ └── m2.js │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourceRootRelativePathMixedSubfolderSpecifyOutputDirectory.errors.txt │ │ │ │ └── sourceRootRelativePathMixedSubfolderSpecifyOutputDirectory.json │ │ │ └── node/ │ │ │ ├── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ ├── m1.js │ │ │ │ │ ├── m2.d.ts │ │ │ │ │ └── m2.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourceRootRelativePathMixedSubfolderSpecifyOutputDirectory.errors.txt │ │ │ └── sourceRootRelativePathMixedSubfolderSpecifyOutputDirectory.json │ │ ├── sourceRootRelativePathMixedSubfolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourceRootRelativePathMixedSubfolderSpecifyOutputFile.errors.txt │ │ │ │ └── sourceRootRelativePathMixedSubfolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourceRootRelativePathMixedSubfolderSpecifyOutputFile.errors.txt │ │ │ └── sourceRootRelativePathMixedSubfolderSpecifyOutputFile.json │ │ ├── sourceRootRelativePathMixedSubfolderSpecifyOutputFileAndOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── outAndOutDirFile.d.ts │ │ │ │ │ └── outAndOutDirFile.js │ │ │ │ ├── sourceRootRelativePathMixedSubfolderSpecifyOutputFileAndOutputDirectory.errors.txt │ │ │ │ └── sourceRootRelativePathMixedSubfolderSpecifyOutputFileAndOutputDirectory.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── outAndOutDirFile.d.ts │ │ │ │ └── outAndOutDirFile.js │ │ │ ├── sourceRootRelativePathMixedSubfolderSpecifyOutputFileAndOutputDirectory.errors.txt │ │ │ └── sourceRootRelativePathMixedSubfolderSpecifyOutputFileAndOutputDirectory.json │ │ ├── sourceRootRelativePathModuleMultifolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── diskFile1.js │ │ │ │ ├── diskFile2.d.ts │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── sourceRootRelativePathModuleMultifolderNoOutdir.errors.txt │ │ │ │ ├── sourceRootRelativePathModuleMultifolderNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── diskFile1.js │ │ │ ├── diskFile2.d.ts │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── sourceRootRelativePathModuleMultifolderNoOutdir.errors.txt │ │ │ ├── sourceRootRelativePathModuleMultifolderNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── sourceRootRelativePathModuleMultifolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outdir/ │ │ │ │ │ └── simple/ │ │ │ │ │ ├── outputdir_module_multifolder/ │ │ │ │ │ │ ├── ref/ │ │ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ │ │ └── m1.js │ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ │ └── test.js │ │ │ │ │ └── outputdir_module_multifolder_ref/ │ │ │ │ │ ├── m2.d.ts │ │ │ │ │ └── m2.js │ │ │ │ ├── sourceRootRelativePathModuleMultifolderSpecifyOutputDirectory.errors.txt │ │ │ │ └── sourceRootRelativePathModuleMultifolderSpecifyOutputDirectory.json │ │ │ └── node/ │ │ │ ├── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── outputdir_module_multifolder/ │ │ │ │ │ ├── ref/ │ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ │ └── m1.js │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ └── outputdir_module_multifolder_ref/ │ │ │ │ ├── m2.d.ts │ │ │ │ └── m2.js │ │ │ ├── sourceRootRelativePathModuleMultifolderSpecifyOutputDirectory.errors.txt │ │ │ └── sourceRootRelativePathModuleMultifolderSpecifyOutputDirectory.json │ │ ├── sourceRootRelativePathModuleMultifolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourceRootRelativePathModuleMultifolderSpecifyOutputFile.errors.txt │ │ │ │ └── sourceRootRelativePathModuleMultifolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── sourceRootRelativePathModuleMultifolderSpecifyOutputFile.errors.txt │ │ │ └── sourceRootRelativePathModuleMultifolderSpecifyOutputFile.json │ │ ├── sourceRootRelativePathModuleSimpleNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── sourceRootRelativePathModuleSimpleNoOutdir.errors.txt │ │ │ │ ├── sourceRootRelativePathModuleSimpleNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── m1.d.ts │ │ │ ├── m1.js │ │ │ ├── sourceRootRelativePathModuleSimpleNoOutdir.errors.txt │ │ │ ├── sourceRootRelativePathModuleSimpleNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── sourceRootRelativePathModuleSimpleSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outdir/ │ │ │ │ │ └── simple/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ ├── m1.js │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourceRootRelativePathModuleSimpleSpecifyOutputDirectory.errors.txt │ │ │ │ └── sourceRootRelativePathModuleSimpleSpecifyOutputDirectory.json │ │ │ └── node/ │ │ │ ├── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourceRootRelativePathModuleSimpleSpecifyOutputDirectory.errors.txt │ │ │ └── sourceRootRelativePathModuleSimpleSpecifyOutputDirectory.json │ │ ├── sourceRootRelativePathModuleSimpleSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourceRootRelativePathModuleSimpleSpecifyOutputFile.errors.txt │ │ │ │ └── sourceRootRelativePathModuleSimpleSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── sourceRootRelativePathModuleSimpleSpecifyOutputFile.errors.txt │ │ │ └── sourceRootRelativePathModuleSimpleSpecifyOutputFile.json │ │ ├── sourceRootRelativePathModuleSubfolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── sourceRootRelativePathModuleSubfolderNoOutdir.errors.txt │ │ │ │ ├── sourceRootRelativePathModuleSubfolderNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── sourceRootRelativePathModuleSubfolderNoOutdir.errors.txt │ │ │ ├── sourceRootRelativePathModuleSubfolderNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── sourceRootRelativePathModuleSubfolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outdir/ │ │ │ │ │ └── simple/ │ │ │ │ │ ├── ref/ │ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ │ └── m1.js │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourceRootRelativePathModuleSubfolderSpecifyOutputDirectory.errors.txt │ │ │ │ └── sourceRootRelativePathModuleSubfolderSpecifyOutputDirectory.json │ │ │ └── node/ │ │ │ ├── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourceRootRelativePathModuleSubfolderSpecifyOutputDirectory.errors.txt │ │ │ └── sourceRootRelativePathModuleSubfolderSpecifyOutputDirectory.json │ │ ├── sourceRootRelativePathModuleSubfolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourceRootRelativePathModuleSubfolderSpecifyOutputFile.errors.txt │ │ │ │ └── sourceRootRelativePathModuleSubfolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── sourceRootRelativePathModuleSubfolderSpecifyOutputFile.errors.txt │ │ │ └── sourceRootRelativePathModuleSubfolderSpecifyOutputFile.json │ │ ├── sourceRootRelativePathMultifolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── diskFile1.js │ │ │ │ ├── diskFile2.d.ts │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── sourceRootRelativePathMultifolderNoOutdir.errors.txt │ │ │ │ ├── sourceRootRelativePathMultifolderNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── diskFile1.js │ │ │ ├── diskFile2.d.ts │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── sourceRootRelativePathMultifolderNoOutdir.errors.txt │ │ │ ├── sourceRootRelativePathMultifolderNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── sourceRootRelativePathMultifolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outdir/ │ │ │ │ │ └── simple/ │ │ │ │ │ ├── outputdir_multifolder/ │ │ │ │ │ │ ├── ref/ │ │ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ │ │ └── m1.js │ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ │ └── test.js │ │ │ │ │ └── outputdir_multifolder_ref/ │ │ │ │ │ ├── m2.d.ts │ │ │ │ │ └── m2.js │ │ │ │ ├── sourceRootRelativePathMultifolderSpecifyOutputDirectory.errors.txt │ │ │ │ └── sourceRootRelativePathMultifolderSpecifyOutputDirectory.json │ │ │ └── node/ │ │ │ ├── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── outputdir_multifolder/ │ │ │ │ │ ├── ref/ │ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ │ └── m1.js │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ └── outputdir_multifolder_ref/ │ │ │ │ ├── m2.d.ts │ │ │ │ └── m2.js │ │ │ ├── sourceRootRelativePathMultifolderSpecifyOutputDirectory.errors.txt │ │ │ └── sourceRootRelativePathMultifolderSpecifyOutputDirectory.json │ │ ├── sourceRootRelativePathMultifolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourceRootRelativePathMultifolderSpecifyOutputFile.errors.txt │ │ │ │ └── sourceRootRelativePathMultifolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourceRootRelativePathMultifolderSpecifyOutputFile.errors.txt │ │ │ └── sourceRootRelativePathMultifolderSpecifyOutputFile.json │ │ ├── sourceRootRelativePathSimpleNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── sourceRootRelativePathSimpleNoOutdir.errors.txt │ │ │ │ ├── sourceRootRelativePathSimpleNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── m1.d.ts │ │ │ ├── m1.js │ │ │ ├── sourceRootRelativePathSimpleNoOutdir.errors.txt │ │ │ ├── sourceRootRelativePathSimpleNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── sourceRootRelativePathSimpleSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outdir/ │ │ │ │ │ └── simple/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ ├── m1.js │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourceRootRelativePathSimpleSpecifyOutputDirectory.errors.txt │ │ │ │ └── sourceRootRelativePathSimpleSpecifyOutputDirectory.json │ │ │ └── node/ │ │ │ ├── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourceRootRelativePathSimpleSpecifyOutputDirectory.errors.txt │ │ │ └── sourceRootRelativePathSimpleSpecifyOutputDirectory.json │ │ ├── sourceRootRelativePathSimpleSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourceRootRelativePathSimpleSpecifyOutputFile.errors.txt │ │ │ │ └── sourceRootRelativePathSimpleSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourceRootRelativePathSimpleSpecifyOutputFile.errors.txt │ │ │ └── sourceRootRelativePathSimpleSpecifyOutputFile.json │ │ ├── sourceRootRelativePathSingleFileNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── sourceRootRelativePathSingleFileNoOutdir.errors.txt │ │ │ │ ├── sourceRootRelativePathSingleFileNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── sourceRootRelativePathSingleFileNoOutdir.errors.txt │ │ │ ├── sourceRootRelativePathSingleFileNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── sourceRootRelativePathSingleFileSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outdir/ │ │ │ │ │ └── simple/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourceRootRelativePathSingleFileSpecifyOutputDirectory.errors.txt │ │ │ │ └── sourceRootRelativePathSingleFileSpecifyOutputDirectory.json │ │ │ └── node/ │ │ │ ├── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourceRootRelativePathSingleFileSpecifyOutputDirectory.errors.txt │ │ │ └── sourceRootRelativePathSingleFileSpecifyOutputDirectory.json │ │ ├── sourceRootRelativePathSingleFileSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourceRootRelativePathSingleFileSpecifyOutputFile.errors.txt │ │ │ │ └── sourceRootRelativePathSingleFileSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourceRootRelativePathSingleFileSpecifyOutputFile.errors.txt │ │ │ └── sourceRootRelativePathSingleFileSpecifyOutputFile.json │ │ ├── sourceRootRelativePathSubfolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── sourceRootRelativePathSubfolderNoOutdir.errors.txt │ │ │ │ ├── sourceRootRelativePathSubfolderNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── sourceRootRelativePathSubfolderNoOutdir.errors.txt │ │ │ ├── sourceRootRelativePathSubfolderNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── sourceRootRelativePathSubfolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outdir/ │ │ │ │ │ └── simple/ │ │ │ │ │ ├── ref/ │ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ │ └── m1.js │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourceRootRelativePathSubfolderSpecifyOutputDirectory.errors.txt │ │ │ │ └── sourceRootRelativePathSubfolderSpecifyOutputDirectory.json │ │ │ └── node/ │ │ │ ├── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourceRootRelativePathSubfolderSpecifyOutputDirectory.errors.txt │ │ │ └── sourceRootRelativePathSubfolderSpecifyOutputDirectory.json │ │ ├── sourceRootRelativePathSubfolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourceRootRelativePathSubfolderSpecifyOutputFile.errors.txt │ │ │ │ └── sourceRootRelativePathSubfolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourceRootRelativePathSubfolderSpecifyOutputFile.errors.txt │ │ │ └── sourceRootRelativePathSubfolderSpecifyOutputFile.json │ │ ├── sourceRootWithNoSourceMapOption/ │ │ │ ├── amd/ │ │ │ │ ├── sourceRootWithNoSourceMapOption.errors.txt │ │ │ │ └── sourceRootWithNoSourceMapOption.json │ │ │ └── node/ │ │ │ ├── sourceRootWithNoSourceMapOption.errors.txt │ │ │ └── sourceRootWithNoSourceMapOption.json │ │ ├── sourcemapMixedSubfolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ ├── m1.js │ │ │ │ │ ├── m2.d.ts │ │ │ │ │ └── m2.js │ │ │ │ ├── sourcemapMixedSubfolderNoOutdir.errors.txt │ │ │ │ ├── sourcemapMixedSubfolderNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── m2.d.ts │ │ │ │ └── m2.js │ │ │ ├── sourcemapMixedSubfolderNoOutdir.errors.txt │ │ │ ├── sourcemapMixedSubfolderNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── sourcemapMixedSubfolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outdir/ │ │ │ │ │ └── simple/ │ │ │ │ │ ├── ref/ │ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ │ ├── m1.js │ │ │ │ │ │ ├── m2.d.ts │ │ │ │ │ │ └── m2.js │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourcemapMixedSubfolderSpecifyOutputDirectory.errors.txt │ │ │ │ └── sourcemapMixedSubfolderSpecifyOutputDirectory.json │ │ │ └── node/ │ │ │ ├── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ ├── m1.js │ │ │ │ │ ├── m2.d.ts │ │ │ │ │ └── m2.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourcemapMixedSubfolderSpecifyOutputDirectory.errors.txt │ │ │ └── sourcemapMixedSubfolderSpecifyOutputDirectory.json │ │ ├── sourcemapMixedSubfolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourcemapMixedSubfolderSpecifyOutputFile.errors.txt │ │ │ │ └── sourcemapMixedSubfolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourcemapMixedSubfolderSpecifyOutputFile.errors.txt │ │ │ └── sourcemapMixedSubfolderSpecifyOutputFile.json │ │ ├── sourcemapMixedSubfolderSpecifyOutputFileAndOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── outAndOutDirFile.d.ts │ │ │ │ │ └── outAndOutDirFile.js │ │ │ │ ├── sourcemapMixedSubfolderSpecifyOutputFileAndOutputDirectory.errors.txt │ │ │ │ └── sourcemapMixedSubfolderSpecifyOutputFileAndOutputDirectory.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── outAndOutDirFile.d.ts │ │ │ │ └── outAndOutDirFile.js │ │ │ ├── sourcemapMixedSubfolderSpecifyOutputFileAndOutputDirectory.errors.txt │ │ │ └── sourcemapMixedSubfolderSpecifyOutputFileAndOutputDirectory.json │ │ ├── sourcemapModuleMultifolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── diskFile1.js │ │ │ │ ├── diskFile2.d.ts │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── sourcemapModuleMultifolderNoOutdir.errors.txt │ │ │ │ ├── sourcemapModuleMultifolderNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── diskFile1.js │ │ │ ├── diskFile2.d.ts │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── sourcemapModuleMultifolderNoOutdir.errors.txt │ │ │ ├── sourcemapModuleMultifolderNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── sourcemapModuleMultifolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outdir/ │ │ │ │ │ └── simple/ │ │ │ │ │ ├── outputdir_module_multifolder/ │ │ │ │ │ │ ├── ref/ │ │ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ │ │ └── m1.js │ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ │ └── test.js │ │ │ │ │ └── outputdir_module_multifolder_ref/ │ │ │ │ │ ├── m2.d.ts │ │ │ │ │ └── m2.js │ │ │ │ ├── sourcemapModuleMultifolderSpecifyOutputDirectory.errors.txt │ │ │ │ └── sourcemapModuleMultifolderSpecifyOutputDirectory.json │ │ │ └── node/ │ │ │ ├── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── outputdir_module_multifolder/ │ │ │ │ │ ├── ref/ │ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ │ └── m1.js │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ └── outputdir_module_multifolder_ref/ │ │ │ │ ├── m2.d.ts │ │ │ │ └── m2.js │ │ │ ├── sourcemapModuleMultifolderSpecifyOutputDirectory.errors.txt │ │ │ └── sourcemapModuleMultifolderSpecifyOutputDirectory.json │ │ ├── sourcemapModuleMultifolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourcemapModuleMultifolderSpecifyOutputFile.errors.txt │ │ │ │ └── sourcemapModuleMultifolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── sourcemapModuleMultifolderSpecifyOutputFile.errors.txt │ │ │ └── sourcemapModuleMultifolderSpecifyOutputFile.json │ │ ├── sourcemapModuleSimpleNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── sourcemapModuleSimpleNoOutdir.errors.txt │ │ │ │ ├── sourcemapModuleSimpleNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── m1.d.ts │ │ │ ├── m1.js │ │ │ ├── sourcemapModuleSimpleNoOutdir.errors.txt │ │ │ ├── sourcemapModuleSimpleNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── sourcemapModuleSimpleSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outdir/ │ │ │ │ │ └── simple/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ ├── m1.js │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourcemapModuleSimpleSpecifyOutputDirectory.errors.txt │ │ │ │ └── sourcemapModuleSimpleSpecifyOutputDirectory.json │ │ │ └── node/ │ │ │ ├── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourcemapModuleSimpleSpecifyOutputDirectory.errors.txt │ │ │ └── sourcemapModuleSimpleSpecifyOutputDirectory.json │ │ ├── sourcemapModuleSimpleSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourcemapModuleSimpleSpecifyOutputFile.errors.txt │ │ │ │ └── sourcemapModuleSimpleSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── sourcemapModuleSimpleSpecifyOutputFile.errors.txt │ │ │ └── sourcemapModuleSimpleSpecifyOutputFile.json │ │ ├── sourcemapModuleSubfolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── sourcemapModuleSubfolderNoOutdir.errors.txt │ │ │ │ ├── sourcemapModuleSubfolderNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── sourcemapModuleSubfolderNoOutdir.errors.txt │ │ │ ├── sourcemapModuleSubfolderNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── sourcemapModuleSubfolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outdir/ │ │ │ │ │ └── simple/ │ │ │ │ │ ├── ref/ │ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ │ └── m1.js │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourcemapModuleSubfolderSpecifyOutputDirectory.errors.txt │ │ │ │ └── sourcemapModuleSubfolderSpecifyOutputDirectory.json │ │ │ └── node/ │ │ │ ├── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourcemapModuleSubfolderSpecifyOutputDirectory.errors.txt │ │ │ └── sourcemapModuleSubfolderSpecifyOutputDirectory.json │ │ ├── sourcemapModuleSubfolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourcemapModuleSubfolderSpecifyOutputFile.errors.txt │ │ │ │ └── sourcemapModuleSubfolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── sourcemapModuleSubfolderSpecifyOutputFile.errors.txt │ │ │ └── sourcemapModuleSubfolderSpecifyOutputFile.json │ │ ├── sourcemapMultifolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── diskFile1.js │ │ │ │ ├── diskFile2.d.ts │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── sourcemapMultifolderNoOutdir.errors.txt │ │ │ │ ├── sourcemapMultifolderNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── diskFile1.js │ │ │ ├── diskFile2.d.ts │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── sourcemapMultifolderNoOutdir.errors.txt │ │ │ ├── sourcemapMultifolderNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── sourcemapMultifolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outdir/ │ │ │ │ │ └── simple/ │ │ │ │ │ ├── outputdir_multifolder/ │ │ │ │ │ │ ├── ref/ │ │ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ │ │ └── m1.js │ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ │ └── test.js │ │ │ │ │ └── outputdir_multifolder_ref/ │ │ │ │ │ ├── m2.d.ts │ │ │ │ │ └── m2.js │ │ │ │ ├── sourcemapMultifolderSpecifyOutputDirectory.errors.txt │ │ │ │ └── sourcemapMultifolderSpecifyOutputDirectory.json │ │ │ └── node/ │ │ │ ├── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── outputdir_multifolder/ │ │ │ │ │ ├── ref/ │ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ │ └── m1.js │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ └── outputdir_multifolder_ref/ │ │ │ │ ├── m2.d.ts │ │ │ │ └── m2.js │ │ │ ├── sourcemapMultifolderSpecifyOutputDirectory.errors.txt │ │ │ └── sourcemapMultifolderSpecifyOutputDirectory.json │ │ ├── sourcemapMultifolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourcemapMultifolderSpecifyOutputFile.errors.txt │ │ │ │ └── sourcemapMultifolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourcemapMultifolderSpecifyOutputFile.errors.txt │ │ │ └── sourcemapMultifolderSpecifyOutputFile.json │ │ ├── sourcemapSimpleNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── sourcemapSimpleNoOutdir.errors.txt │ │ │ │ ├── sourcemapSimpleNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── m1.d.ts │ │ │ ├── m1.js │ │ │ ├── sourcemapSimpleNoOutdir.errors.txt │ │ │ ├── sourcemapSimpleNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── sourcemapSimpleSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outdir/ │ │ │ │ │ └── simple/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ ├── m1.js │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourcemapSimpleSpecifyOutputDirectory.errors.txt │ │ │ │ └── sourcemapSimpleSpecifyOutputDirectory.json │ │ │ └── node/ │ │ │ ├── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourcemapSimpleSpecifyOutputDirectory.errors.txt │ │ │ └── sourcemapSimpleSpecifyOutputDirectory.json │ │ ├── sourcemapSimpleSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourcemapSimpleSpecifyOutputFile.errors.txt │ │ │ │ └── sourcemapSimpleSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourcemapSimpleSpecifyOutputFile.errors.txt │ │ │ └── sourcemapSimpleSpecifyOutputFile.json │ │ ├── sourcemapSingleFileNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── sourcemapSingleFileNoOutdir.errors.txt │ │ │ │ ├── sourcemapSingleFileNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── sourcemapSingleFileNoOutdir.errors.txt │ │ │ ├── sourcemapSingleFileNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── sourcemapSingleFileSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outdir/ │ │ │ │ │ └── simple/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourcemapSingleFileSpecifyOutputDirectory.errors.txt │ │ │ │ └── sourcemapSingleFileSpecifyOutputDirectory.json │ │ │ └── node/ │ │ │ ├── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourcemapSingleFileSpecifyOutputDirectory.errors.txt │ │ │ └── sourcemapSingleFileSpecifyOutputDirectory.json │ │ ├── sourcemapSingleFileSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourcemapSingleFileSpecifyOutputFile.errors.txt │ │ │ │ └── sourcemapSingleFileSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourcemapSingleFileSpecifyOutputFile.errors.txt │ │ │ └── sourcemapSingleFileSpecifyOutputFile.json │ │ ├── sourcemapSubfolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── sourcemapSubfolderNoOutdir.errors.txt │ │ │ │ ├── sourcemapSubfolderNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── sourcemapSubfolderNoOutdir.errors.txt │ │ │ ├── sourcemapSubfolderNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── sourcemapSubfolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outdir/ │ │ │ │ │ └── simple/ │ │ │ │ │ ├── ref/ │ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ │ └── m1.js │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourcemapSubfolderSpecifyOutputDirectory.errors.txt │ │ │ │ └── sourcemapSubfolderSpecifyOutputDirectory.json │ │ │ └── node/ │ │ │ ├── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourcemapSubfolderSpecifyOutputDirectory.errors.txt │ │ │ └── sourcemapSubfolderSpecifyOutputDirectory.json │ │ ├── sourcemapSubfolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourcemapSubfolderSpecifyOutputFile.errors.txt │ │ │ │ └── sourcemapSubfolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourcemapSubfolderSpecifyOutputFile.errors.txt │ │ │ └── sourcemapSubfolderSpecifyOutputFile.json │ │ ├── sourcerootUrlMixedSubfolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ ├── m1.js │ │ │ │ │ ├── m2.d.ts │ │ │ │ │ └── m2.js │ │ │ │ ├── sourcerootUrlMixedSubfolderNoOutdir.errors.txt │ │ │ │ ├── sourcerootUrlMixedSubfolderNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── m2.d.ts │ │ │ │ └── m2.js │ │ │ ├── sourcerootUrlMixedSubfolderNoOutdir.errors.txt │ │ │ ├── sourcerootUrlMixedSubfolderNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── sourcerootUrlMixedSubfolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outdir/ │ │ │ │ │ └── simple/ │ │ │ │ │ ├── ref/ │ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ │ ├── m1.js │ │ │ │ │ │ ├── m2.d.ts │ │ │ │ │ │ └── m2.js │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourcerootUrlMixedSubfolderSpecifyOutputDirectory.errors.txt │ │ │ │ └── sourcerootUrlMixedSubfolderSpecifyOutputDirectory.json │ │ │ └── node/ │ │ │ ├── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ ├── m1.js │ │ │ │ │ ├── m2.d.ts │ │ │ │ │ └── m2.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourcerootUrlMixedSubfolderSpecifyOutputDirectory.errors.txt │ │ │ └── sourcerootUrlMixedSubfolderSpecifyOutputDirectory.json │ │ ├── sourcerootUrlMixedSubfolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourcerootUrlMixedSubfolderSpecifyOutputFile.errors.txt │ │ │ │ └── sourcerootUrlMixedSubfolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourcerootUrlMixedSubfolderSpecifyOutputFile.errors.txt │ │ │ └── sourcerootUrlMixedSubfolderSpecifyOutputFile.json │ │ ├── sourcerootUrlMixedSubfolderSpecifyOutputFileAndOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── outAndOutDirFile.d.ts │ │ │ │ │ └── outAndOutDirFile.js │ │ │ │ ├── sourcerootUrlMixedSubfolderSpecifyOutputFileAndOutputDirectory.errors.txt │ │ │ │ └── sourcerootUrlMixedSubfolderSpecifyOutputFileAndOutputDirectory.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── outAndOutDirFile.d.ts │ │ │ │ └── outAndOutDirFile.js │ │ │ ├── sourcerootUrlMixedSubfolderSpecifyOutputFileAndOutputDirectory.errors.txt │ │ │ └── sourcerootUrlMixedSubfolderSpecifyOutputFileAndOutputDirectory.json │ │ ├── sourcerootUrlModuleMultifolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── diskFile1.js │ │ │ │ ├── diskFile2.d.ts │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── sourcerootUrlModuleMultifolderNoOutdir.errors.txt │ │ │ │ ├── sourcerootUrlModuleMultifolderNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── diskFile1.js │ │ │ ├── diskFile2.d.ts │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── sourcerootUrlModuleMultifolderNoOutdir.errors.txt │ │ │ ├── sourcerootUrlModuleMultifolderNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── sourcerootUrlModuleMultifolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outdir/ │ │ │ │ │ └── simple/ │ │ │ │ │ ├── outputdir_module_multifolder/ │ │ │ │ │ │ ├── ref/ │ │ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ │ │ └── m1.js │ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ │ └── test.js │ │ │ │ │ └── outputdir_module_multifolder_ref/ │ │ │ │ │ ├── m2.d.ts │ │ │ │ │ └── m2.js │ │ │ │ ├── sourcerootUrlModuleMultifolderSpecifyOutputDirectory.errors.txt │ │ │ │ └── sourcerootUrlModuleMultifolderSpecifyOutputDirectory.json │ │ │ └── node/ │ │ │ ├── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── outputdir_module_multifolder/ │ │ │ │ │ ├── ref/ │ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ │ └── m1.js │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ └── outputdir_module_multifolder_ref/ │ │ │ │ ├── m2.d.ts │ │ │ │ └── m2.js │ │ │ ├── sourcerootUrlModuleMultifolderSpecifyOutputDirectory.errors.txt │ │ │ └── sourcerootUrlModuleMultifolderSpecifyOutputDirectory.json │ │ ├── sourcerootUrlModuleMultifolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourcerootUrlModuleMultifolderSpecifyOutputFile.errors.txt │ │ │ │ └── sourcerootUrlModuleMultifolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── sourcerootUrlModuleMultifolderSpecifyOutputFile.errors.txt │ │ │ └── sourcerootUrlModuleMultifolderSpecifyOutputFile.json │ │ ├── sourcerootUrlModuleSimpleNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── sourcerootUrlModuleSimpleNoOutdir.errors.txt │ │ │ │ ├── sourcerootUrlModuleSimpleNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── m1.d.ts │ │ │ ├── m1.js │ │ │ ├── sourcerootUrlModuleSimpleNoOutdir.errors.txt │ │ │ ├── sourcerootUrlModuleSimpleNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── sourcerootUrlModuleSimpleSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outdir/ │ │ │ │ │ └── simple/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ ├── m1.js │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourcerootUrlModuleSimpleSpecifyOutputDirectory.errors.txt │ │ │ │ └── sourcerootUrlModuleSimpleSpecifyOutputDirectory.json │ │ │ └── node/ │ │ │ ├── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourcerootUrlModuleSimpleSpecifyOutputDirectory.errors.txt │ │ │ └── sourcerootUrlModuleSimpleSpecifyOutputDirectory.json │ │ ├── sourcerootUrlModuleSimpleSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourcerootUrlModuleSimpleSpecifyOutputFile.errors.txt │ │ │ │ └── sourcerootUrlModuleSimpleSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── sourcerootUrlModuleSimpleSpecifyOutputFile.errors.txt │ │ │ └── sourcerootUrlModuleSimpleSpecifyOutputFile.json │ │ ├── sourcerootUrlModuleSubfolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── sourcerootUrlModuleSubfolderNoOutdir.errors.txt │ │ │ │ ├── sourcerootUrlModuleSubfolderNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── sourcerootUrlModuleSubfolderNoOutdir.errors.txt │ │ │ ├── sourcerootUrlModuleSubfolderNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── sourcerootUrlModuleSubfolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outdir/ │ │ │ │ │ └── simple/ │ │ │ │ │ ├── ref/ │ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ │ └── m1.js │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourcerootUrlModuleSubfolderSpecifyOutputDirectory.errors.txt │ │ │ │ └── sourcerootUrlModuleSubfolderSpecifyOutputDirectory.json │ │ │ └── node/ │ │ │ ├── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourcerootUrlModuleSubfolderSpecifyOutputDirectory.errors.txt │ │ │ └── sourcerootUrlModuleSubfolderSpecifyOutputDirectory.json │ │ ├── sourcerootUrlModuleSubfolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourcerootUrlModuleSubfolderSpecifyOutputFile.errors.txt │ │ │ │ └── sourcerootUrlModuleSubfolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── sourcerootUrlModuleSubfolderSpecifyOutputFile.errors.txt │ │ │ └── sourcerootUrlModuleSubfolderSpecifyOutputFile.json │ │ ├── sourcerootUrlMultifolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── diskFile1.js │ │ │ │ ├── diskFile2.d.ts │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── sourcerootUrlMultifolderNoOutdir.errors.txt │ │ │ │ ├── sourcerootUrlMultifolderNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── diskFile1.js │ │ │ ├── diskFile2.d.ts │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── sourcerootUrlMultifolderNoOutdir.errors.txt │ │ │ ├── sourcerootUrlMultifolderNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── sourcerootUrlMultifolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outdir/ │ │ │ │ │ └── simple/ │ │ │ │ │ ├── outputdir_multifolder/ │ │ │ │ │ │ ├── ref/ │ │ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ │ │ └── m1.js │ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ │ └── test.js │ │ │ │ │ └── outputdir_multifolder_ref/ │ │ │ │ │ ├── m2.d.ts │ │ │ │ │ └── m2.js │ │ │ │ ├── sourcerootUrlMultifolderSpecifyOutputDirectory.errors.txt │ │ │ │ └── sourcerootUrlMultifolderSpecifyOutputDirectory.json │ │ │ └── node/ │ │ │ ├── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── outputdir_multifolder/ │ │ │ │ │ ├── ref/ │ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ │ └── m1.js │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ └── outputdir_multifolder_ref/ │ │ │ │ ├── m2.d.ts │ │ │ │ └── m2.js │ │ │ ├── sourcerootUrlMultifolderSpecifyOutputDirectory.errors.txt │ │ │ └── sourcerootUrlMultifolderSpecifyOutputDirectory.json │ │ ├── sourcerootUrlMultifolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourcerootUrlMultifolderSpecifyOutputFile.errors.txt │ │ │ │ └── sourcerootUrlMultifolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourcerootUrlMultifolderSpecifyOutputFile.errors.txt │ │ │ └── sourcerootUrlMultifolderSpecifyOutputFile.json │ │ ├── sourcerootUrlSimpleNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── sourcerootUrlSimpleNoOutdir.errors.txt │ │ │ │ ├── sourcerootUrlSimpleNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── m1.d.ts │ │ │ ├── m1.js │ │ │ ├── sourcerootUrlSimpleNoOutdir.errors.txt │ │ │ ├── sourcerootUrlSimpleNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── sourcerootUrlSimpleSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outdir/ │ │ │ │ │ └── simple/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ ├── m1.js │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourcerootUrlSimpleSpecifyOutputDirectory.errors.txt │ │ │ │ └── sourcerootUrlSimpleSpecifyOutputDirectory.json │ │ │ └── node/ │ │ │ ├── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── m1.d.ts │ │ │ │ ├── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourcerootUrlSimpleSpecifyOutputDirectory.errors.txt │ │ │ └── sourcerootUrlSimpleSpecifyOutputDirectory.json │ │ ├── sourcerootUrlSimpleSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourcerootUrlSimpleSpecifyOutputFile.errors.txt │ │ │ │ └── sourcerootUrlSimpleSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourcerootUrlSimpleSpecifyOutputFile.errors.txt │ │ │ └── sourcerootUrlSimpleSpecifyOutputFile.json │ │ ├── sourcerootUrlSingleFileNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── sourcerootUrlSingleFileNoOutdir.errors.txt │ │ │ │ ├── sourcerootUrlSingleFileNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── sourcerootUrlSingleFileNoOutdir.errors.txt │ │ │ ├── sourcerootUrlSingleFileNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── sourcerootUrlSingleFileSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outdir/ │ │ │ │ │ └── simple/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourcerootUrlSingleFileSpecifyOutputDirectory.errors.txt │ │ │ │ └── sourcerootUrlSingleFileSpecifyOutputDirectory.json │ │ │ └── node/ │ │ │ ├── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourcerootUrlSingleFileSpecifyOutputDirectory.errors.txt │ │ │ └── sourcerootUrlSingleFileSpecifyOutputDirectory.json │ │ ├── sourcerootUrlSingleFileSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourcerootUrlSingleFileSpecifyOutputFile.errors.txt │ │ │ │ └── sourcerootUrlSingleFileSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourcerootUrlSingleFileSpecifyOutputFile.errors.txt │ │ │ └── sourcerootUrlSingleFileSpecifyOutputFile.json │ │ ├── sourcerootUrlSubfolderNoOutdir/ │ │ │ ├── amd/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── sourcerootUrlSubfolderNoOutdir.errors.txt │ │ │ │ ├── sourcerootUrlSubfolderNoOutdir.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ └── node/ │ │ │ ├── ref/ │ │ │ │ ├── m1.d.ts │ │ │ │ └── m1.js │ │ │ ├── sourcerootUrlSubfolderNoOutdir.errors.txt │ │ │ ├── sourcerootUrlSubfolderNoOutdir.json │ │ │ ├── test.d.ts │ │ │ └── test.js │ │ ├── sourcerootUrlSubfolderSpecifyOutputDirectory/ │ │ │ ├── amd/ │ │ │ │ ├── outdir/ │ │ │ │ │ └── simple/ │ │ │ │ │ ├── ref/ │ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ │ └── m1.js │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourcerootUrlSubfolderSpecifyOutputDirectory.errors.txt │ │ │ │ └── sourcerootUrlSubfolderSpecifyOutputDirectory.json │ │ │ └── node/ │ │ │ ├── outdir/ │ │ │ │ └── simple/ │ │ │ │ ├── ref/ │ │ │ │ │ ├── m1.d.ts │ │ │ │ │ └── m1.js │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourcerootUrlSubfolderSpecifyOutputDirectory.errors.txt │ │ │ └── sourcerootUrlSubfolderSpecifyOutputDirectory.json │ │ ├── sourcerootUrlSubfolderSpecifyOutputFile/ │ │ │ ├── amd/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── test.d.ts │ │ │ │ │ └── test.js │ │ │ │ ├── sourcerootUrlSubfolderSpecifyOutputFile.errors.txt │ │ │ │ └── sourcerootUrlSubfolderSpecifyOutputFile.json │ │ │ └── node/ │ │ │ ├── bin/ │ │ │ │ ├── test.d.ts │ │ │ │ └── test.js │ │ │ ├── sourcerootUrlSubfolderSpecifyOutputFile.errors.txt │ │ │ └── sourcerootUrlSubfolderSpecifyOutputFile.json │ │ ├── specifyExcludeUsingRelativepath/ │ │ │ ├── amd/ │ │ │ │ ├── OutDir/ │ │ │ │ │ ├── a.d.ts │ │ │ │ │ └── a.js │ │ │ │ ├── specifyExcludeUsingRelativepath.errors.txt │ │ │ │ └── specifyExcludeUsingRelativepath.json │ │ │ └── node/ │ │ │ ├── OutDir/ │ │ │ │ ├── a.d.ts │ │ │ │ └── a.js │ │ │ ├── specifyExcludeUsingRelativepath.errors.txt │ │ │ └── specifyExcludeUsingRelativepath.json │ │ ├── specifyExcludeUsingRelativepathWithAllowJS/ │ │ │ ├── amd/ │ │ │ │ ├── OutDir/ │ │ │ │ │ └── a.js │ │ │ │ ├── specifyExcludeUsingRelativepathWithAllowJS.errors.txt │ │ │ │ └── specifyExcludeUsingRelativepathWithAllowJS.json │ │ │ └── node/ │ │ │ ├── OutDir/ │ │ │ │ └── a.js │ │ │ ├── specifyExcludeUsingRelativepathWithAllowJS.errors.txt │ │ │ └── specifyExcludeUsingRelativepathWithAllowJS.json │ │ ├── specifyExcludeWithOutUsingRelativePath/ │ │ │ ├── amd/ │ │ │ │ ├── OutDir/ │ │ │ │ │ ├── a.d.ts │ │ │ │ │ └── a.js │ │ │ │ ├── specifyExcludeWithOutUsingRelativePath.errors.txt │ │ │ │ └── specifyExcludeWithOutUsingRelativePath.json │ │ │ └── node/ │ │ │ ├── OutDir/ │ │ │ │ ├── a.d.ts │ │ │ │ └── a.js │ │ │ ├── specifyExcludeWithOutUsingRelativePath.errors.txt │ │ │ └── specifyExcludeWithOutUsingRelativePath.json │ │ ├── specifyExcludeWithOutUsingRelativePathWithAllowJS/ │ │ │ ├── amd/ │ │ │ │ ├── OutDir/ │ │ │ │ │ └── a.js │ │ │ │ ├── specifyExcludeWithOutUsingRelativePathWithAllowJS.errors.txt │ │ │ │ └── specifyExcludeWithOutUsingRelativePathWithAllowJS.json │ │ │ └── node/ │ │ │ ├── OutDir/ │ │ │ │ └── a.js │ │ │ ├── specifyExcludeWithOutUsingRelativePathWithAllowJS.errors.txt │ │ │ └── specifyExcludeWithOutUsingRelativePathWithAllowJS.json │ │ ├── visibilityOfTypeUsedAcrossModules/ │ │ │ ├── amd/ │ │ │ │ ├── commands.js │ │ │ │ ├── fs.js │ │ │ │ ├── server.js │ │ │ │ ├── visibilityOfTypeUsedAcrossModules.errors.txt │ │ │ │ └── visibilityOfTypeUsedAcrossModules.json │ │ │ └── node/ │ │ │ ├── commands.js │ │ │ ├── fs.js │ │ │ ├── server.js │ │ │ ├── visibilityOfTypeUsedAcrossModules.errors.txt │ │ │ └── visibilityOfTypeUsedAcrossModules.json │ │ └── visibilityOfTypeUsedAcrossModules2/ │ │ ├── amd/ │ │ │ ├── visibilityOfTypeUsedAcrossModules2.errors.txt │ │ │ └── visibilityOfTypeUsedAcrossModules2.json │ │ └── node/ │ │ ├── visibilityOfTypeUsedAcrossModules2.errors.txt │ │ └── visibilityOfTypeUsedAcrossModules2.json │ ├── promiseAllOnAny01.symbols │ ├── promiseAllOnAny01.types │ ├── promiseChaining.js │ ├── promiseChaining.symbols │ ├── promiseChaining.types │ ├── promiseChaining1.errors.txt │ ├── promiseChaining1.js │ ├── promiseChaining1.symbols │ ├── promiseChaining1.types │ ├── promiseChaining2.errors.txt │ ├── promiseChaining2.js │ ├── promiseChaining2.symbols │ ├── promiseChaining2.types │ ├── promiseDefinitionTest(target=es2015).errors.txt │ ├── promiseDefinitionTest(target=es2015).js │ ├── promiseDefinitionTest(target=es2015).symbols │ ├── promiseDefinitionTest(target=es2015).types │ ├── promiseDefinitionTest(target=es5).errors.txt │ ├── promiseDefinitionTest(target=es5).js │ ├── promiseDefinitionTest(target=es5).symbols │ ├── promiseDefinitionTest(target=es5).types │ ├── promiseEmptyTupleNoException.errors.txt │ ├── promiseEmptyTupleNoException.js │ ├── promiseEmptyTupleNoException.symbols │ ├── promiseEmptyTupleNoException.types │ ├── promiseIdentity.errors.txt │ ├── promiseIdentity.js │ ├── promiseIdentity.symbols │ ├── promiseIdentity.types │ ├── promiseIdentity2.errors.txt │ ├── promiseIdentity2.js │ ├── promiseIdentity2.symbols │ ├── promiseIdentity2.types │ ├── promiseIdentityWithAny.errors.txt │ ├── promiseIdentityWithAny.js │ ├── promiseIdentityWithAny.symbols │ ├── promiseIdentityWithAny.types │ ├── promiseIdentityWithAny2.errors.txt │ ├── promiseIdentityWithAny2.js │ ├── promiseIdentityWithAny2.symbols │ ├── promiseIdentityWithAny2.types │ ├── promiseIdentityWithConstraints.errors.txt │ ├── promiseIdentityWithConstraints.js │ ├── promiseIdentityWithConstraints.symbols │ ├── promiseIdentityWithConstraints.types │ ├── promisePermutations.errors.txt │ ├── promisePermutations.js │ ├── promisePermutations.symbols │ ├── promisePermutations.types │ ├── promisePermutations2.errors.txt │ ├── promisePermutations2.js │ ├── promisePermutations2.symbols │ ├── promisePermutations2.types │ ├── promisePermutations3.errors.txt │ ├── promisePermutations3.js │ ├── promisePermutations3.symbols │ ├── promisePermutations3.types │ ├── promiseTest.errors.txt │ ├── promiseTest.js │ ├── promiseTest.symbols │ ├── promiseTest.types │ ├── promiseTry.js │ ├── promiseTry.symbols │ ├── promiseTry.types │ ├── promiseType.js │ ├── promiseType.symbols │ ├── promiseType.types │ ├── promiseTypeInference.js │ ├── promiseTypeInference.symbols │ ├── promiseTypeInference.types │ ├── promiseTypeInferenceUnion.js │ ├── promiseTypeInferenceUnion.symbols │ ├── promiseTypeInferenceUnion.types │ ├── promiseTypeStrictNull.js │ ├── promiseTypeStrictNull.symbols │ ├── promiseTypeStrictNull.types │ ├── promiseVoidErrorCallback.js │ ├── promiseVoidErrorCallback.symbols │ ├── promiseVoidErrorCallback.types │ ├── promiseWithResolvers.js │ ├── promiseWithResolvers.symbols │ ├── promiseWithResolvers.types │ ├── promises.js │ ├── promises.symbols │ ├── promises.types │ ├── promisesWithConstraints.errors.txt │ ├── promisesWithConstraints.js │ ├── promisesWithConstraints.symbols │ ├── promisesWithConstraints.types │ ├── propTypeValidatorInference.js │ ├── propTypeValidatorInference.symbols │ ├── propTypeValidatorInference.types │ ├── propagateNonInferrableType.js │ ├── propagateNonInferrableType.symbols │ ├── propagateNonInferrableType.types │ ├── propagationOfPromiseInitialization.errors.txt │ ├── propagationOfPromiseInitialization.js │ ├── propagationOfPromiseInitialization.symbols │ ├── propagationOfPromiseInitialization.types │ ├── properties(target=es2015).js │ ├── properties(target=es2015).sourcemap.txt │ ├── properties(target=es2015).symbols │ ├── properties(target=es2015).types │ ├── properties(target=es5).errors.txt │ ├── properties(target=es5).js │ ├── properties(target=es5).sourcemap.txt │ ├── properties(target=es5).symbols │ ├── properties(target=es5).types │ ├── propertiesAndIndexers.errors.txt │ ├── propertiesAndIndexers.js │ ├── propertiesAndIndexers.symbols │ ├── propertiesAndIndexers.types │ ├── propertiesAndIndexers2.errors.txt │ ├── propertiesAndIndexers2.js │ ├── propertiesAndIndexers2.symbols │ ├── propertiesAndIndexers2.types │ ├── propertiesAndIndexersForNumericNames.errors.txt │ ├── propertiesAndIndexersForNumericNames.js │ ├── propertiesAndIndexersForNumericNames.symbols │ ├── propertiesAndIndexersForNumericNames.types │ ├── propertiesOfGenericConstructorFunctions.symbols │ ├── propertiesOfGenericConstructorFunctions.types │ ├── propertyAccess.errors.txt │ ├── propertyAccess.js │ ├── propertyAccess.symbols │ ├── propertyAccess.types │ ├── propertyAccess1.errors.txt │ ├── propertyAccess1.js │ ├── propertyAccess1.symbols │ ├── propertyAccess1.types │ ├── propertyAccess2.errors.txt │ ├── propertyAccess2.js │ ├── propertyAccess2.symbols │ ├── propertyAccess2.types │ ├── propertyAccess3.errors.txt │ ├── propertyAccess3.js │ ├── propertyAccess3.symbols │ ├── propertyAccess3.types │ ├── propertyAccess4.errors.txt │ ├── propertyAccess4.js │ ├── propertyAccess4.symbols │ ├── propertyAccess4.types │ ├── propertyAccess5.errors.txt │ ├── propertyAccess5.js │ ├── propertyAccess5.symbols │ ├── propertyAccess5.types │ ├── propertyAccess6.js │ ├── propertyAccess6.symbols │ ├── propertyAccess6.types │ ├── propertyAccess7.js │ ├── propertyAccess7.symbols │ ├── propertyAccess7.types │ ├── propertyAccessChain.2.js │ ├── propertyAccessChain.2.symbols │ ├── propertyAccessChain.2.types │ ├── propertyAccessChain.3.errors.txt │ ├── propertyAccessChain.3.js │ ├── propertyAccessChain.3.symbols │ ├── propertyAccessChain.3.types │ ├── propertyAccessChain.js │ ├── propertyAccessChain.symbols │ ├── propertyAccessChain.types │ ├── propertyAccessExpressionInnerComments.js │ ├── propertyAccessExpressionInnerComments.symbols │ ├── propertyAccessExpressionInnerComments.types │ ├── propertyAccessNumericLiterals.errors.txt │ ├── propertyAccessNumericLiterals.es6.js │ ├── propertyAccessNumericLiterals.es6.symbols │ ├── propertyAccessNumericLiterals.es6.types │ ├── propertyAccessNumericLiterals.js │ ├── propertyAccessNumericLiterals.symbols │ ├── propertyAccessNumericLiterals.types │ ├── propertyAccessOfReadonlyIndexSignature.errors.txt │ ├── propertyAccessOfReadonlyIndexSignature.js │ ├── propertyAccessOfReadonlyIndexSignature.symbols │ ├── propertyAccessOfReadonlyIndexSignature.types │ ├── propertyAccessOnObjectLiteral.js │ ├── propertyAccessOnObjectLiteral.symbols │ ├── propertyAccessOnObjectLiteral.types │ ├── propertyAccessOnTypeParameterWithConstraints.js │ ├── propertyAccessOnTypeParameterWithConstraints.symbols │ ├── propertyAccessOnTypeParameterWithConstraints.types │ ├── propertyAccessOnTypeParameterWithConstraints2.js │ ├── propertyAccessOnTypeParameterWithConstraints2.symbols │ ├── propertyAccessOnTypeParameterWithConstraints2.types │ ├── propertyAccessOnTypeParameterWithConstraints3.js │ ├── propertyAccessOnTypeParameterWithConstraints3.symbols │ ├── propertyAccessOnTypeParameterWithConstraints3.types │ ├── propertyAccessOnTypeParameterWithConstraints4.errors.txt │ ├── propertyAccessOnTypeParameterWithConstraints4.js │ ├── propertyAccessOnTypeParameterWithConstraints4.symbols │ ├── propertyAccessOnTypeParameterWithConstraints4.types │ ├── propertyAccessOnTypeParameterWithConstraints5.errors.txt │ ├── propertyAccessOnTypeParameterWithConstraints5.js │ ├── propertyAccessOnTypeParameterWithConstraints5.symbols │ ├── propertyAccessOnTypeParameterWithConstraints5.types │ ├── propertyAccessOnTypeParameterWithoutConstraints.js │ ├── propertyAccessOnTypeParameterWithoutConstraints.symbols │ ├── propertyAccessOnTypeParameterWithoutConstraints.types │ ├── propertyAccessStringIndexSignature(noimplicitany=false).errors.txt │ ├── propertyAccessStringIndexSignature(noimplicitany=false).js │ ├── propertyAccessStringIndexSignature(noimplicitany=false).symbols │ ├── propertyAccessStringIndexSignature(noimplicitany=false).types │ ├── propertyAccessStringIndexSignature(noimplicitany=true).errors.txt │ ├── propertyAccessStringIndexSignature(noimplicitany=true).js │ ├── propertyAccessStringIndexSignature(noimplicitany=true).symbols │ ├── propertyAccessStringIndexSignature(noimplicitany=true).types │ ├── propertyAccessWidening.errors.txt │ ├── propertyAccessWidening.js │ ├── propertyAccessWidening.symbols │ ├── propertyAccessWidening.types │ ├── propertyAccessibility1.errors.txt │ ├── propertyAccessibility1.js │ ├── propertyAccessibility1.symbols │ ├── propertyAccessibility1.types │ ├── propertyAccessibility2.errors.txt │ ├── propertyAccessibility2.js │ ├── propertyAccessibility2.symbols │ ├── propertyAccessibility2.types │ ├── propertyAndAccessorWithSameName.errors.txt │ ├── propertyAndAccessorWithSameName.js │ ├── propertyAndAccessorWithSameName.symbols │ ├── propertyAndAccessorWithSameName.types │ ├── propertyAndFunctionWithSameName.errors.txt │ ├── propertyAndFunctionWithSameName.js │ ├── propertyAndFunctionWithSameName.symbols │ ├── propertyAndFunctionWithSameName.types │ ├── propertyAssignment.errors.txt │ ├── propertyAssignment.js │ ├── propertyAssignment.symbols │ ├── propertyAssignment.types │ ├── propertyAssignmentOnImportedSymbol.symbols │ ├── propertyAssignmentOnImportedSymbol.types │ ├── propertyAssignmentOnParenthesizedNumber.symbols │ ├── propertyAssignmentOnParenthesizedNumber.types │ ├── propertyAssignmentOnUnresolvedImportedSymbol.errors.txt │ ├── propertyAssignmentOnUnresolvedImportedSymbol.symbols │ ├── propertyAssignmentOnUnresolvedImportedSymbol.types │ ├── propertyAssignmentUseParentType1.js │ ├── propertyAssignmentUseParentType1.symbols │ ├── propertyAssignmentUseParentType1.types │ ├── propertyAssignmentUseParentType2.errors.txt │ ├── propertyAssignmentUseParentType2.symbols │ ├── propertyAssignmentUseParentType2.types │ ├── propertyAssignmentUseParentType3.js │ ├── propertyAssignmentUseParentType3.symbols │ ├── propertyAssignmentUseParentType3.types │ ├── propertyIdentityWithPrivacyMismatch.errors.txt │ ├── propertyIdentityWithPrivacyMismatch.js │ ├── propertyIdentityWithPrivacyMismatch.symbols │ ├── propertyIdentityWithPrivacyMismatch.types │ ├── propertyNameWithoutTypeAnnotation.js │ ├── propertyNameWithoutTypeAnnotation.symbols │ ├── propertyNameWithoutTypeAnnotation.types │ ├── propertyNamedConstructor.errors.txt │ ├── propertyNamedConstructor.js │ ├── propertyNamedConstructor.symbols │ ├── propertyNamedConstructor.types │ ├── propertyNamedPrototype.errors.txt │ ├── propertyNamedPrototype.js │ ├── propertyNamedPrototype.symbols │ ├── propertyNamedPrototype.types │ ├── propertyNamesOfReservedWords.js │ ├── propertyNamesOfReservedWords.symbols │ ├── propertyNamesOfReservedWords.types │ ├── propertyNamesWithStringLiteral.errors.txt │ ├── propertyNamesWithStringLiteral.js │ ├── propertyNamesWithStringLiteral.symbols │ ├── propertyNamesWithStringLiteral.types │ ├── propertyOrdering.errors.txt │ ├── propertyOrdering.js │ ├── propertyOrdering.symbols │ ├── propertyOrdering.types │ ├── propertyOrdering2.errors.txt │ ├── propertyOrdering2.js │ ├── propertyOrdering2.symbols │ ├── propertyOrdering2.types │ ├── propertyOverridesAccessors.errors.txt │ ├── propertyOverridesAccessors.js │ ├── propertyOverridesAccessors.symbols │ ├── propertyOverridesAccessors.types │ ├── propertyOverridesAccessors2.errors.txt │ ├── propertyOverridesAccessors2.js │ ├── propertyOverridesAccessors2.symbols │ ├── propertyOverridesAccessors2.types │ ├── propertyOverridesAccessors3.errors.txt │ ├── propertyOverridesAccessors3.js │ ├── propertyOverridesAccessors3.symbols │ ├── propertyOverridesAccessors3.types │ ├── propertyOverridesAccessors4(target=es2015).errors.txt │ ├── propertyOverridesAccessors4(target=es2015).js │ ├── propertyOverridesAccessors4(target=es2015).symbols │ ├── propertyOverridesAccessors4(target=es2015).types │ ├── propertyOverridesAccessors4(target=es5).errors.txt │ ├── propertyOverridesAccessors4(target=es5).js │ ├── propertyOverridesAccessors4(target=es5).symbols │ ├── propertyOverridesAccessors4(target=es5).types │ ├── propertyOverridesAccessors5.errors.txt │ ├── propertyOverridesAccessors5.js │ ├── propertyOverridesAccessors5.symbols │ ├── propertyOverridesAccessors5.types │ ├── propertyOverridesAccessors6.errors.txt │ ├── propertyOverridesAccessors6.symbols │ ├── propertyOverridesAccessors6.types │ ├── propertyOverridesMethod.js │ ├── propertyOverridesMethod.symbols │ ├── propertyOverridesMethod.types │ ├── propertyOverridingPrototype.errors.txt │ ├── propertyOverridingPrototype.js │ ├── propertyOverridingPrototype.symbols │ ├── propertyOverridingPrototype.types │ ├── propertyParameterWithQuestionMark.errors.txt │ ├── propertyParameterWithQuestionMark.js │ ├── propertyParameterWithQuestionMark.symbols │ ├── propertyParameterWithQuestionMark.types │ ├── propertySignatures.errors.txt │ ├── propertySignatures.js │ ├── propertySignatures.symbols │ ├── propertySignatures.types │ ├── propertyWrappedInTry.errors.txt │ ├── propertyWrappedInTry.js │ ├── propertyWrappedInTry.symbols │ ├── propertyWrappedInTry.types │ ├── protectedAccessThroughContextualThis.errors.txt │ ├── protectedAccessThroughContextualThis.js │ ├── protectedAccessThroughContextualThis.symbols │ ├── protectedAccessThroughContextualThis.types │ ├── protectedClassPropertyAccessibleWithinClass(target=es2015).js │ ├── protectedClassPropertyAccessibleWithinClass(target=es2015).symbols │ ├── protectedClassPropertyAccessibleWithinClass(target=es2015).types │ ├── protectedClassPropertyAccessibleWithinClass(target=es5).errors.txt │ ├── protectedClassPropertyAccessibleWithinClass(target=es5).js │ ├── protectedClassPropertyAccessibleWithinClass(target=es5).symbols │ ├── protectedClassPropertyAccessibleWithinClass(target=es5).types │ ├── protectedClassPropertyAccessibleWithinNestedClass(target=es2015).errors.txt │ ├── protectedClassPropertyAccessibleWithinNestedClass(target=es2015).js │ ├── protectedClassPropertyAccessibleWithinNestedClass(target=es2015).symbols │ ├── protectedClassPropertyAccessibleWithinNestedClass(target=es2015).types │ ├── protectedClassPropertyAccessibleWithinNestedClass(target=es5).errors.txt │ ├── protectedClassPropertyAccessibleWithinNestedClass(target=es5).js │ ├── protectedClassPropertyAccessibleWithinNestedClass(target=es5).symbols │ ├── protectedClassPropertyAccessibleWithinNestedClass(target=es5).types │ ├── protectedClassPropertyAccessibleWithinNestedSubclass(target=es2015).errors.txt │ ├── protectedClassPropertyAccessibleWithinNestedSubclass(target=es2015).js │ ├── protectedClassPropertyAccessibleWithinNestedSubclass(target=es2015).symbols │ ├── protectedClassPropertyAccessibleWithinNestedSubclass(target=es2015).types │ ├── protectedClassPropertyAccessibleWithinNestedSubclass(target=es5).errors.txt │ ├── protectedClassPropertyAccessibleWithinNestedSubclass(target=es5).js │ ├── protectedClassPropertyAccessibleWithinNestedSubclass(target=es5).symbols │ ├── protectedClassPropertyAccessibleWithinNestedSubclass(target=es5).types │ ├── protectedClassPropertyAccessibleWithinNestedSubclass1.errors.txt │ ├── protectedClassPropertyAccessibleWithinNestedSubclass1.js │ ├── protectedClassPropertyAccessibleWithinNestedSubclass1.symbols │ ├── protectedClassPropertyAccessibleWithinNestedSubclass1.types │ ├── protectedClassPropertyAccessibleWithinSubclass(target=es2015).errors.txt │ ├── protectedClassPropertyAccessibleWithinSubclass(target=es2015).js │ ├── protectedClassPropertyAccessibleWithinSubclass(target=es2015).symbols │ ├── protectedClassPropertyAccessibleWithinSubclass(target=es2015).types │ ├── protectedClassPropertyAccessibleWithinSubclass(target=es5).errors.txt │ ├── protectedClassPropertyAccessibleWithinSubclass(target=es5).js │ ├── protectedClassPropertyAccessibleWithinSubclass(target=es5).symbols │ ├── protectedClassPropertyAccessibleWithinSubclass(target=es5).types │ ├── protectedClassPropertyAccessibleWithinSubclass2.errors.txt │ ├── protectedClassPropertyAccessibleWithinSubclass2.js │ ├── protectedClassPropertyAccessibleWithinSubclass2.symbols │ ├── protectedClassPropertyAccessibleWithinSubclass2.types │ ├── protectedClassPropertyAccessibleWithinSubclass3(target=es2015).errors.txt │ ├── protectedClassPropertyAccessibleWithinSubclass3(target=es2015).js │ ├── protectedClassPropertyAccessibleWithinSubclass3(target=es2015).symbols │ ├── protectedClassPropertyAccessibleWithinSubclass3(target=es2015).types │ ├── protectedClassPropertyAccessibleWithinSubclass3(target=es5).errors.txt │ ├── protectedClassPropertyAccessibleWithinSubclass3(target=es5).js │ ├── protectedClassPropertyAccessibleWithinSubclass3(target=es5).symbols │ ├── protectedClassPropertyAccessibleWithinSubclass3(target=es5).types │ ├── protectedInstanceMemberAccessibility(target=es2015).errors.txt │ ├── protectedInstanceMemberAccessibility(target=es2015).js │ ├── protectedInstanceMemberAccessibility(target=es2015).symbols │ ├── protectedInstanceMemberAccessibility(target=es2015).types │ ├── protectedInstanceMemberAccessibility(target=es5).errors.txt │ ├── protectedInstanceMemberAccessibility(target=es5).js │ ├── protectedInstanceMemberAccessibility(target=es5).symbols │ ├── protectedInstanceMemberAccessibility(target=es5).types │ ├── protectedMembers.errors.txt │ ├── protectedMembers.js │ ├── protectedMembers.symbols │ ├── protectedMembers.types │ ├── protectedMembersThisParameter.errors.txt │ ├── protectedMembersThisParameter.js │ ├── protectedMembersThisParameter.symbols │ ├── protectedMembersThisParameter.types │ ├── protectedStaticClassPropertyAccessibleWithinSubclass.errors.txt │ ├── protectedStaticClassPropertyAccessibleWithinSubclass.js │ ├── protectedStaticClassPropertyAccessibleWithinSubclass.symbols │ ├── protectedStaticClassPropertyAccessibleWithinSubclass.types │ ├── protectedStaticClassPropertyAccessibleWithinSubclass2(target=es2015).js │ ├── protectedStaticClassPropertyAccessibleWithinSubclass2(target=es2015).symbols │ ├── protectedStaticClassPropertyAccessibleWithinSubclass2(target=es2015).types │ ├── protectedStaticClassPropertyAccessibleWithinSubclass2(target=es5).errors.txt │ ├── protectedStaticClassPropertyAccessibleWithinSubclass2(target=es5).js │ ├── protectedStaticClassPropertyAccessibleWithinSubclass2(target=es5).symbols │ ├── protectedStaticClassPropertyAccessibleWithinSubclass2(target=es5).types │ ├── protectedStaticNotAccessibleInClodule.errors.txt │ ├── protectedStaticNotAccessibleInClodule.js │ ├── protectedStaticNotAccessibleInClodule.symbols │ ├── protectedStaticNotAccessibleInClodule.types │ ├── proto.baseline.jsonc │ ├── protoAsIndexInIndexExpression.js │ ├── protoAsIndexInIndexExpression.symbols │ ├── protoAsIndexInIndexExpression.types │ ├── protoAssignment.errors.txt │ ├── protoAssignment.js │ ├── protoAssignment.symbols │ ├── protoAssignment.types │ ├── protoInIndexer.js │ ├── protoInIndexer.symbols │ ├── protoInIndexer.types │ ├── prototypeInstantiatedWithBaseConstraint.errors.txt │ ├── prototypeInstantiatedWithBaseConstraint.js │ ├── prototypeInstantiatedWithBaseConstraint.symbols │ ├── prototypeInstantiatedWithBaseConstraint.types │ ├── prototypeOnConstructorFunctions.js │ ├── prototypeOnConstructorFunctions.symbols │ ├── prototypeOnConstructorFunctions.types │ ├── prototypePropertyAssignmentMergeAcrossFiles.symbols │ ├── prototypePropertyAssignmentMergeAcrossFiles.types │ ├── prototypePropertyAssignmentMergeAcrossFiles2.errors.txt │ ├── prototypePropertyAssignmentMergeAcrossFiles2.symbols │ ├── prototypePropertyAssignmentMergeAcrossFiles2.types │ ├── prototypePropertyAssignmentMergeWithInterfaceMethod.errors.txt │ ├── prototypePropertyAssignmentMergeWithInterfaceMethod.symbols │ ├── prototypePropertyAssignmentMergeWithInterfaceMethod.types │ ├── prototypePropertyAssignmentMergedTypeReference.symbols │ ├── prototypePropertyAssignmentMergedTypeReference.types │ ├── prototypes.errors.txt │ ├── prototypes.js │ ├── prototypes.symbols │ ├── prototypes.types │ ├── publicGetterProtectedSetterFromThisParameter(target=es2015).errors.txt │ ├── publicGetterProtectedSetterFromThisParameter(target=es2015).js │ ├── publicGetterProtectedSetterFromThisParameter(target=es2015).symbols │ ├── publicGetterProtectedSetterFromThisParameter(target=es2015).types │ ├── publicGetterProtectedSetterFromThisParameter(target=es5).errors.txt │ ├── publicGetterProtectedSetterFromThisParameter(target=es5).js │ ├── publicGetterProtectedSetterFromThisParameter(target=es5).symbols │ ├── publicGetterProtectedSetterFromThisParameter(target=es5).types │ ├── publicIndexer.errors.txt │ ├── publicIndexer.js │ ├── publicIndexer.symbols │ ├── publicIndexer.types │ ├── publicMemberImplementedAsPrivateInDerivedClass.errors.txt │ ├── publicMemberImplementedAsPrivateInDerivedClass.js │ ├── publicMemberImplementedAsPrivateInDerivedClass.symbols │ ├── publicMemberImplementedAsPrivateInDerivedClass.types │ ├── pushTypeGetTypeOfAlias.errors.txt │ ├── pushTypeGetTypeOfAlias.symbols │ ├── pushTypeGetTypeOfAlias.types │ ├── qualifiedModuleLocals.errors.txt │ ├── qualifiedModuleLocals.js │ ├── qualifiedModuleLocals.symbols │ ├── qualifiedModuleLocals.types │ ├── qualifiedName_ImportDeclarations-entity-names-referencing-a-var.js │ ├── qualifiedName_ImportDeclarations-entity-names-referencing-a-var.symbols │ ├── qualifiedName_ImportDeclarations-entity-names-referencing-a-var.types │ ├── qualifiedName_entity-name-resolution-does-not-affect-class-heritage.errors.txt │ ├── qualifiedName_entity-name-resolution-does-not-affect-class-heritage.js │ ├── qualifiedName_entity-name-resolution-does-not-affect-class-heritage.symbols │ ├── qualifiedName_entity-name-resolution-does-not-affect-class-heritage.types │ ├── qualifiedName_import-declaration-with-variable-entity-names.baseline.jsonc │ ├── qualify.errors.txt │ ├── qualify.js │ ├── qualify.symbols │ ├── qualify.types │ ├── quickInfoAlias.baseline │ ├── quickInfoAtPropWithAmbientDeclarationInJs.baseline │ ├── quickInfoCircularInstantiationExpression.baseline │ ├── quickInfoCommentsClass.baseline │ ├── quickInfoCommentsClassMembers.baseline │ ├── quickInfoCommentsCommentParsing.baseline │ ├── quickInfoCommentsFunctionDeclaration.baseline │ ├── quickInfoCommentsFunctionExpression.baseline │ ├── quickInfoDisplayPartsArrowFunctionExpression.baseline │ ├── quickInfoDisplayPartsClass.baseline │ ├── quickInfoDisplayPartsClassAccessors.baseline │ ├── quickInfoDisplayPartsClassAutoAccessors.baseline │ ├── quickInfoDisplayPartsClassConstructor.baseline │ ├── quickInfoDisplayPartsClassDefaultAnonymous.baseline │ ├── quickInfoDisplayPartsClassDefaultNamed.baseline │ ├── quickInfoDisplayPartsClassIncomplete.baseline │ ├── quickInfoDisplayPartsClassMethod.baseline │ ├── quickInfoDisplayPartsClassProperty.baseline │ ├── quickInfoDisplayPartsConst.baseline │ ├── quickInfoDisplayPartsEnum1.baseline │ ├── quickInfoDisplayPartsEnum2.baseline │ ├── quickInfoDisplayPartsEnum3.baseline │ ├── quickInfoDisplayPartsEnum4.baseline │ ├── quickInfoDisplayPartsExternalModuleAlias.baseline │ ├── quickInfoDisplayPartsExternalModules.baseline │ ├── quickInfoDisplayPartsFunction.baseline │ ├── quickInfoDisplayPartsFunctionExpression.baseline │ ├── quickInfoDisplayPartsFunctionIncomplete.baseline │ ├── quickInfoDisplayPartsInterface.baseline │ ├── quickInfoDisplayPartsInterfaceMembers.baseline │ ├── quickInfoDisplayPartsInternalModuleAlias.baseline │ ├── quickInfoDisplayPartsLet.baseline │ ├── quickInfoDisplayPartsLiteralLikeNames01.baseline │ ├── quickInfoDisplayPartsLocalFunction.baseline │ ├── quickInfoDisplayPartsModules.baseline │ ├── quickInfoDisplayPartsParameters.baseline │ ├── quickInfoDisplayPartsTypeAlias.baseline │ ├── quickInfoDisplayPartsTypeParameterInClass.baseline │ ├── quickInfoDisplayPartsTypeParameterInFunction.baseline │ ├── quickInfoDisplayPartsTypeParameterInFunctionLikeInTypeAlias.baseline │ ├── quickInfoDisplayPartsTypeParameterInInterface.baseline │ ├── quickInfoDisplayPartsTypeParameterInTypeAlias.baseline │ ├── quickInfoDisplayPartsUsing.baseline │ ├── quickInfoDisplayPartsVar.baseline │ ├── quickInfoDisplayPartsVarWithStringTypes01.baseline │ ├── quickInfoForArgumentsPropertyNameInJsMode1.baseline │ ├── quickInfoForArgumentsPropertyNameInJsMode2.baseline │ ├── quickInfoForConstAssertions.baseline │ ├── quickInfoForJSDocCodefence.baseline │ ├── quickInfoForJSDocUnknownTag.baseline │ ├── quickInfoForJSDocWithHttpLinks.baseline │ ├── quickInfoForJSDocWithUnresolvedHttpLinks.baseline │ ├── quickInfoForObjectBindingElementName03.baseline │ ├── quickInfoForObjectBindingElementName04.baseline │ ├── quickInfoForObjectBindingElementName05.baseline │ ├── quickInfoForObjectBindingElementName06.baseline │ ├── quickInfoImportMeta.baseline │ ├── quickInfoInheritDoc.baseline │ ├── quickInfoInheritDoc2.baseline │ ├── quickInfoInheritDoc3.baseline │ ├── quickInfoInheritDoc4.baseline │ ├── quickInfoInheritDoc5.baseline │ ├── quickInfoInheritDoc6.baseline │ ├── quickInfoInheritedLinkTag.baseline │ ├── quickInfoJSDocAtBeforeSpace.baseline │ ├── quickInfoJSDocTags.baseline │ ├── quickInfoJsDoc.baseline │ ├── quickInfoJsDocAlias.baseline │ ├── quickInfoJsDocGetterSetter.baseline │ ├── quickInfoJsDocInheritage.baseline │ ├── quickInfoJsDocTags1.baseline │ ├── quickInfoJsDocTags10.baseline │ ├── quickInfoJsDocTags11.baseline │ ├── quickInfoJsDocTags12.baseline │ ├── quickInfoJsDocTags13.baseline │ ├── quickInfoJsDocTags14.baseline │ ├── quickInfoJsDocTags15.baseline │ ├── quickInfoJsDocTags16.baseline │ ├── quickInfoJsDocTags3.baseline │ ├── quickInfoJsDocTags4.baseline │ ├── quickInfoJsDocTags5.baseline │ ├── quickInfoJsDocTags6.baseline │ ├── quickInfoJsDocTags7.baseline │ ├── quickInfoJsDocTags8.baseline │ ├── quickInfoJsDocTags9.baseline │ ├── quickInfoJsDocTagsCallback.baseline │ ├── quickInfoJsDocTagsFunctionOverload01.baseline │ ├── quickInfoJsDocTagsFunctionOverload03.baseline │ ├── quickInfoJsDocTagsFunctionOverload05.baseline │ ├── quickInfoJsDocTagsTypedef.baseline │ ├── quickInfoJsDocTextFormatting1.baseline │ ├── quickInfoJsDocThisTag.baseline │ ├── quickInfoLink10.baseline │ ├── quickInfoLink11.baseline │ ├── quickInfoLink2.baseline │ ├── quickInfoLink3.baseline │ ├── quickInfoLink4.baseline │ ├── quickInfoLink5.baseline │ ├── quickInfoLink6.baseline │ ├── quickInfoLink7.baseline │ ├── quickInfoLink8.baseline │ ├── quickInfoLink9.baseline │ ├── quickInfoLinkCodePlain.baseline │ ├── quickInfoMeaning.baseline.jsonc │ ├── quickInfoNestedExportEqualExportDefault.baseline │ ├── quickInfoOnJsxIntrinsicDeclaredUsingCatchCallIndexSignature.baseline │ ├── quickInfoOnJsxIntrinsicDeclaredUsingTemplateLiteralTypeSignatures.baseline │ ├── quickInfoOnJsxNamespacedName.baseline │ ├── quickInfoOnParameterProperties.baseline │ ├── quickInfoOnThis5.baseline │ ├── quickInfoOnUnionPropertiesWithIdenticalJSDocComments01.baseline │ ├── quickInfoSalsaMethodsOnAssignedFunctionExpressions.baseline │ ├── quickInfoSatisfiesTag.baseline │ ├── quickInfoThrowsTag.baseline │ ├── quickInfoTypedefTag.baseline │ ├── quickInfoUniqueSymbolJsDoc.baseline │ ├── quickInfoUntypedModuleImport.baseline.jsonc │ ├── quickIntersectionCheckCorrectlyCachesErrors.errors.txt │ ├── quickIntersectionCheckCorrectlyCachesErrors.js │ ├── quickIntersectionCheckCorrectlyCachesErrors.symbols │ ├── quickIntersectionCheckCorrectlyCachesErrors.types │ ├── quickinfoTypeAtReturnPositionsInaccurate.errors.txt │ ├── quickinfoTypeAtReturnPositionsInaccurate.js │ ├── quickinfoTypeAtReturnPositionsInaccurate.symbols │ ├── quickinfoTypeAtReturnPositionsInaccurate.types │ ├── quickinfoVerbosity1.baseline │ ├── quickinfoVerbosity2.baseline │ ├── quickinfoVerbosity3.baseline │ ├── quickinfoVerbosityClass1.baseline │ ├── quickinfoVerbosityClass2.baseline │ ├── quickinfoVerbosityConditionalType.baseline │ ├── quickinfoVerbosityEnum.baseline │ ├── quickinfoVerbosityFunction.baseline │ ├── quickinfoVerbosityImport.baseline │ ├── quickinfoVerbosityIndexSignature.baseline │ ├── quickinfoVerbosityIndexType.baseline │ ├── quickinfoVerbosityIndexedAccessType.baseline │ ├── quickinfoVerbosityInterface1.baseline │ ├── quickinfoVerbosityInterface2.baseline │ ├── quickinfoVerbosityIntersection1.baseline │ ├── quickinfoVerbosityJs.baseline │ ├── quickinfoVerbosityLibType.baseline │ ├── quickinfoVerbosityMappedType.baseline │ ├── quickinfoVerbosityNamespace.baseline │ ├── quickinfoVerbosityNoErrorTruncation1.baseline │ ├── quickinfoVerbosityObjectType1.baseline │ ├── quickinfoVerbosityRecursiveType.baseline │ ├── quickinfoVerbosityServer.baseline │ ├── quickinfoVerbosityToplevelTruncation1.baseline │ ├── quickinfoVerbosityToplevelTruncation2.baseline │ ├── quickinfoVerbosityTruncation1.baseline │ ├── quickinfoVerbosityTruncation2.baseline │ ├── quickinfoVerbosityTuple.baseline │ ├── quickinfoVerbosityTypeParameter.baseline │ ├── quickinfoVerbosityTypeof.baseline │ ├── quotedAccessorName1.js │ ├── quotedAccessorName1.symbols │ ├── quotedAccessorName1.types │ ├── quotedAccessorName2.js │ ├── quotedAccessorName2.symbols │ ├── quotedAccessorName2.types │ ├── quotedConstructors.js │ ├── quotedConstructors.symbols │ ├── quotedConstructors.types │ ├── quotedFunctionName1.js │ ├── quotedFunctionName1.symbols │ ├── quotedFunctionName1.types │ ├── quotedFunctionName2.js │ ├── quotedFunctionName2.symbols │ ├── quotedFunctionName2.types │ ├── quotedModuleNameMustBeAmbient.errors.txt │ ├── quotedModuleNameMustBeAmbient.js │ ├── quotedModuleNameMustBeAmbient.symbols │ ├── quotedModuleNameMustBeAmbient.types │ ├── quotedPropertyName1.js │ ├── quotedPropertyName1.symbols │ ├── quotedPropertyName1.types │ ├── quotedPropertyName2.js │ ├── quotedPropertyName2.symbols │ ├── quotedPropertyName2.types │ ├── quotedPropertyName3.js │ ├── quotedPropertyName3.symbols │ ├── quotedPropertyName3.types │ ├── raiseErrorOnParameterProperty.errors.txt │ ├── raiseErrorOnParameterProperty.js │ ├── raiseErrorOnParameterProperty.symbols │ ├── raiseErrorOnParameterProperty.types │ ├── ramdaToolsNoInfinite.js │ ├── ramdaToolsNoInfinite.symbols │ ├── ramdaToolsNoInfinite.types │ ├── ramdaToolsNoInfinite2.js │ ├── ramdaToolsNoInfinite2.symbols │ ├── ramdaToolsNoInfinite2.types │ ├── randomSemicolons1.js │ ├── randomSemicolons1.symbols │ ├── randomSemicolons1.types │ ├── reExportAliasMakesInstantiated.js │ ├── reExportAliasMakesInstantiated.symbols │ ├── reExportAliasMakesInstantiated.types │ ├── reExportDefaultExport(target=es2015).js │ ├── reExportDefaultExport(target=es2015).symbols │ ├── reExportDefaultExport(target=es2015).types │ ├── reExportDefaultExport(target=es5).errors.txt │ ├── reExportDefaultExport(target=es5).js │ ├── reExportDefaultExport(target=es5).symbols │ ├── reExportDefaultExport(target=es5).types │ ├── reExportGlobalDeclaration1.errors.txt │ ├── reExportGlobalDeclaration1.js │ ├── reExportGlobalDeclaration1.symbols │ ├── reExportGlobalDeclaration1.types │ ├── reExportGlobalDeclaration2.errors.txt │ ├── reExportGlobalDeclaration2.js │ ├── reExportGlobalDeclaration2.symbols │ ├── reExportGlobalDeclaration2.types │ ├── reExportGlobalDeclaration3.errors.txt │ ├── reExportGlobalDeclaration3.js │ ├── reExportGlobalDeclaration3.symbols │ ├── reExportGlobalDeclaration3.types │ ├── reExportGlobalDeclaration4.errors.txt │ ├── reExportGlobalDeclaration4.js │ ├── reExportGlobalDeclaration4.symbols │ ├── reExportGlobalDeclaration4.types │ ├── reExportJsFromTs.js │ ├── reExportJsFromTs.symbols │ ├── reExportJsFromTs.types │ ├── reExportUndefined1.errors.txt │ ├── reExportUndefined1.js │ ├── reExportUndefined1.symbols │ ├── reExportUndefined1.types │ ├── reExportUndefined2.js │ ├── reExportUndefined2.symbols │ ├── reExportUndefined2.types │ ├── reachabilityCheckWithEmptyDefault.js │ ├── reachabilityCheckWithEmptyDefault.symbols │ ├── reachabilityCheckWithEmptyDefault.types │ ├── reachabilityChecks1.errors.txt │ ├── reachabilityChecks1.js │ ├── reachabilityChecks1.symbols │ ├── reachabilityChecks1.types │ ├── reachabilityChecks10.errors.txt │ ├── reachabilityChecks10.symbols │ ├── reachabilityChecks10.types │ ├── reachabilityChecks11.errors.txt │ ├── reachabilityChecks11.js │ ├── reachabilityChecks11.symbols │ ├── reachabilityChecks11.types │ ├── reachabilityChecks2.errors.txt │ ├── reachabilityChecks2.js │ ├── reachabilityChecks2.symbols │ ├── reachabilityChecks2.types │ ├── reachabilityChecks3.errors.txt │ ├── reachabilityChecks3.js │ ├── reachabilityChecks3.symbols │ ├── reachabilityChecks3.types │ ├── reachabilityChecks4.errors.txt │ ├── reachabilityChecks4.js │ ├── reachabilityChecks4.symbols │ ├── reachabilityChecks4.types │ ├── reachabilityChecks5.errors.txt │ ├── reachabilityChecks5.js │ ├── reachabilityChecks5.symbols │ ├── reachabilityChecks5.types │ ├── reachabilityChecks6.errors.txt │ ├── reachabilityChecks6.js │ ├── reachabilityChecks6.symbols │ ├── reachabilityChecks6.types │ ├── reachabilityChecks7.errors.txt │ ├── reachabilityChecks7.js │ ├── reachabilityChecks7.symbols │ ├── reachabilityChecks7.types │ ├── reachabilityChecks8.errors.txt │ ├── reachabilityChecks8.js │ ├── reachabilityChecks8.symbols │ ├── reachabilityChecks8.types │ ├── reachabilityChecks9.errors.txt │ ├── reachabilityChecks9.symbols │ ├── reachabilityChecks9.types │ ├── reachabilityChecksIgnored.js │ ├── reachabilityChecksIgnored.symbols │ ├── reachabilityChecksIgnored.types │ ├── reachabilityChecksNoCrash1.errors.txt │ ├── reachabilityChecksNoCrash1.js │ ├── reachabilityChecksNoCrash1.symbols │ ├── reachabilityChecksNoCrash1.types │ ├── reactDefaultPropsInferenceSuccess.errors.txt │ ├── reactDefaultPropsInferenceSuccess.js │ ├── reactDefaultPropsInferenceSuccess.symbols │ ├── reactDefaultPropsInferenceSuccess.types │ ├── reactHOCSpreadprops.js │ ├── reactHOCSpreadprops.symbols │ ├── reactHOCSpreadprops.types │ ├── reactImportDropped.js │ ├── reactImportDropped.symbols │ ├── reactImportDropped.types │ ├── reactImportUnusedInNewJSXEmit(jsx=react-jsx).errors.txt │ ├── reactImportUnusedInNewJSXEmit(jsx=react-jsx).js │ ├── reactImportUnusedInNewJSXEmit(jsx=react-jsx).symbols │ ├── reactImportUnusedInNewJSXEmit(jsx=react-jsx).types │ ├── reactImportUnusedInNewJSXEmit(jsx=react-jsxdev).errors.txt │ ├── reactImportUnusedInNewJSXEmit(jsx=react-jsxdev).js │ ├── reactImportUnusedInNewJSXEmit(jsx=react-jsxdev).symbols │ ├── reactImportUnusedInNewJSXEmit(jsx=react-jsxdev).types │ ├── reactJsxReactResolvedNodeNext.js │ ├── reactJsxReactResolvedNodeNext.symbols │ ├── reactJsxReactResolvedNodeNext.trace.json │ ├── reactJsxReactResolvedNodeNext.types │ ├── reactJsxReactResolvedNodeNextEsm.js │ ├── reactJsxReactResolvedNodeNextEsm.symbols │ ├── reactJsxReactResolvedNodeNextEsm.trace.json │ ├── reactJsxReactResolvedNodeNextEsm.types │ ├── reactNamespaceImportPresevation.errors.txt │ ├── reactNamespaceImportPresevation.js │ ├── reactNamespaceImportPresevation.symbols │ ├── reactNamespaceImportPresevation.types │ ├── reactNamespaceInvalidInput.errors.txt │ ├── reactNamespaceInvalidInput.js │ ├── reactNamespaceInvalidInput.symbols │ ├── reactNamespaceInvalidInput.types │ ├── reactNamespaceJSXEmit.errors.txt │ ├── reactNamespaceJSXEmit.js │ ├── reactNamespaceJSXEmit.symbols │ ├── reactNamespaceJSXEmit.types │ ├── reactNamespaceMissingDeclaration.errors.txt │ ├── reactNamespaceMissingDeclaration.js │ ├── reactNamespaceMissingDeclaration.symbols │ ├── reactNamespaceMissingDeclaration.types │ ├── reactReadonlyHOCAssignabilityReal.js │ ├── reactReadonlyHOCAssignabilityReal.symbols │ ├── reactReadonlyHOCAssignabilityReal.types │ ├── reactReduxLikeDeferredInferenceAllowsAssignment.errors.txt │ ├── reactReduxLikeDeferredInferenceAllowsAssignment.js │ ├── reactReduxLikeDeferredInferenceAllowsAssignment.symbols │ ├── reactReduxLikeDeferredInferenceAllowsAssignment.types │ ├── reactSFCAndFunctionResolvable.js │ ├── reactSFCAndFunctionResolvable.symbols │ ├── reactSFCAndFunctionResolvable.types │ ├── reactTagNameComponentWithPropsNoOOM.js │ ├── reactTagNameComponentWithPropsNoOOM.symbols │ ├── reactTagNameComponentWithPropsNoOOM.types │ ├── reactTagNameComponentWithPropsNoOOM2.js │ ├── reactTagNameComponentWithPropsNoOOM2.symbols │ ├── reactTagNameComponentWithPropsNoOOM2.types │ ├── reactTransitiveImportHasValidDeclaration.js │ ├── reactTransitiveImportHasValidDeclaration.symbols │ ├── reactTransitiveImportHasValidDeclaration.types │ ├── readonlyArraysAndTuples.errors.txt │ ├── readonlyArraysAndTuples.js │ ├── readonlyArraysAndTuples.symbols │ ├── readonlyArraysAndTuples.types │ ├── readonlyArraysAndTuples2.js │ ├── readonlyArraysAndTuples2.symbols │ ├── readonlyArraysAndTuples2.types │ ├── readonlyAssignmentInSubclassOfClassExpression.errors.txt │ ├── readonlyAssignmentInSubclassOfClassExpression.js │ ├── readonlyAssignmentInSubclassOfClassExpression.symbols │ ├── readonlyAssignmentInSubclassOfClassExpression.types │ ├── readonlyConstructorAssignment.errors.txt │ ├── readonlyConstructorAssignment.js │ ├── readonlyConstructorAssignment.symbols │ ├── readonlyConstructorAssignment.types │ ├── readonlyFloat32ArrayAssignableWithFloat32Array.js │ ├── readonlyFloat32ArrayAssignableWithFloat32Array.symbols │ ├── readonlyFloat32ArrayAssignableWithFloat32Array.types │ ├── readonlyInAmbientClass.errors.txt │ ├── readonlyInAmbientClass.js │ ├── readonlyInAmbientClass.symbols │ ├── readonlyInAmbientClass.types │ ├── readonlyInConstructorParameters.errors.txt │ ├── readonlyInConstructorParameters.js │ ├── readonlyInConstructorParameters.symbols │ ├── readonlyInConstructorParameters.types │ ├── readonlyInDeclarationFile(target=es2015).errors.txt │ ├── readonlyInDeclarationFile(target=es2015).js │ ├── readonlyInDeclarationFile(target=es2015).symbols │ ├── readonlyInDeclarationFile(target=es2015).types │ ├── readonlyInDeclarationFile(target=es5).errors.txt │ ├── readonlyInDeclarationFile(target=es5).js │ ├── readonlyInDeclarationFile(target=es5).symbols │ ├── readonlyInDeclarationFile(target=es5).types │ ├── readonlyInNonPropertyParameters(target=es2015).errors.txt │ ├── readonlyInNonPropertyParameters(target=es2015).js │ ├── readonlyInNonPropertyParameters(target=es2015).symbols │ ├── readonlyInNonPropertyParameters(target=es2015).types │ ├── readonlyInNonPropertyParameters(target=es5).errors.txt │ ├── readonlyInNonPropertyParameters(target=es5).js │ ├── readonlyInNonPropertyParameters(target=es5).symbols │ ├── readonlyInNonPropertyParameters(target=es5).types │ ├── readonlyMembers(target=es2015).errors.txt │ ├── readonlyMembers(target=es2015).js │ ├── readonlyMembers(target=es2015).symbols │ ├── readonlyMembers(target=es2015).types │ ├── readonlyMembers(target=es5).errors.txt │ ├── readonlyMembers(target=es5).js │ ├── readonlyMembers(target=es5).symbols │ ├── readonlyMembers(target=es5).types │ ├── readonlyPropertySubtypeRelationDirected.errors.txt │ ├── readonlyPropertySubtypeRelationDirected.js │ ├── readonlyPropertySubtypeRelationDirected.symbols │ ├── readonlyPropertySubtypeRelationDirected.types │ ├── readonlyReadonly.errors.txt │ ├── readonlyReadonly.js │ ├── readonlyReadonly.symbols │ ├── readonlyReadonly.types │ ├── readonlyRestParameters.errors.txt │ ├── readonlyRestParameters.js │ ├── readonlyRestParameters.symbols │ ├── readonlyRestParameters.types │ ├── readonlyTupleAndArrayElaboration.errors.txt │ ├── readonlyTupleAndArrayElaboration.js │ ├── readonlyTupleAndArrayElaboration.symbols │ ├── readonlyTupleAndArrayElaboration.types │ ├── reallyLargeFile.baseline.jsonc │ ├── reassignStaticProp.errors.txt │ ├── reassignStaticProp.js │ ├── reassignStaticProp.symbols │ ├── reassignStaticProp.types │ ├── reboundBaseClassSymbol.js │ ├── reboundBaseClassSymbol.symbols │ ├── reboundBaseClassSymbol.types │ ├── reboundIdentifierOnImportAlias.errors.txt │ ├── reboundIdentifierOnImportAlias.js │ ├── reboundIdentifierOnImportAlias.symbols │ ├── reboundIdentifierOnImportAlias.types │ ├── rectype.errors.txt │ ├── rectype.js │ ├── rectype.symbols │ ├── rectype.types │ ├── recur1.js │ ├── recur1.symbols │ ├── recur1.types │ ├── recurringTypeParamForContainerOfBase01.js │ ├── recurringTypeParamForContainerOfBase01.symbols │ ├── recurringTypeParamForContainerOfBase01.types │ ├── recursiveArrayNotCircular.js │ ├── recursiveArrayNotCircular.symbols │ ├── recursiveArrayNotCircular.types │ ├── recursiveBaseCheck.errors.txt │ ├── recursiveBaseCheck.js │ ├── recursiveBaseCheck.symbols │ ├── recursiveBaseCheck.types │ ├── recursiveBaseCheck2.errors.txt │ ├── recursiveBaseCheck2.js │ ├── recursiveBaseCheck2.symbols │ ├── recursiveBaseCheck2.types │ ├── recursiveBaseCheck3.errors.txt │ ├── recursiveBaseCheck3.js │ ├── recursiveBaseCheck3.symbols │ ├── recursiveBaseCheck3.types │ ├── recursiveBaseCheck4.errors.txt │ ├── recursiveBaseCheck4.js │ ├── recursiveBaseCheck4.symbols │ ├── recursiveBaseCheck4.types │ ├── recursiveBaseCheck5.errors.txt │ ├── recursiveBaseCheck5.js │ ├── recursiveBaseCheck5.symbols │ ├── recursiveBaseCheck5.types │ ├── recursiveBaseCheck6.errors.txt │ ├── recursiveBaseCheck6.js │ ├── recursiveBaseCheck6.symbols │ ├── recursiveBaseCheck6.types │ ├── recursiveBaseConstructorCreation1.js │ ├── recursiveBaseConstructorCreation1.symbols │ ├── recursiveBaseConstructorCreation1.types │ ├── recursiveBaseConstructorCreation2.js │ ├── recursiveBaseConstructorCreation2.symbols │ ├── recursiveBaseConstructorCreation2.types │ ├── recursiveBaseConstructorCreation3.errors.txt │ ├── recursiveBaseConstructorCreation3.js │ ├── recursiveBaseConstructorCreation3.symbols │ ├── recursiveBaseConstructorCreation3.types │ ├── recursiveClassBaseType.js │ ├── recursiveClassBaseType.symbols │ ├── recursiveClassBaseType.types │ ├── recursiveClassInstantiationsWithDefaultConstructors.js │ ├── recursiveClassInstantiationsWithDefaultConstructors.symbols │ ├── recursiveClassInstantiationsWithDefaultConstructors.types │ ├── recursiveClassReferenceTest.errors.txt │ ├── recursiveClassReferenceTest.js │ ├── recursiveClassReferenceTest.sourcemap.txt │ ├── recursiveClassReferenceTest.symbols │ ├── recursiveClassReferenceTest.types │ ├── recursiveCloduleReference.js │ ├── recursiveCloduleReference.symbols │ ├── recursiveCloduleReference.types │ ├── recursiveComplicatedClasses.errors.txt │ ├── recursiveComplicatedClasses.js │ ├── recursiveComplicatedClasses.symbols │ ├── recursiveComplicatedClasses.types │ ├── recursiveConditionalCrash1.js │ ├── recursiveConditionalCrash1.symbols │ ├── recursiveConditionalCrash1.types │ ├── recursiveConditionalCrash2.js │ ├── recursiveConditionalCrash2.symbols │ ├── recursiveConditionalCrash2.types │ ├── recursiveConditionalCrash3.js │ ├── recursiveConditionalCrash3.symbols │ ├── recursiveConditionalCrash3.types │ ├── recursiveConditionalCrash4.errors.txt │ ├── recursiveConditionalCrash4.symbols │ ├── recursiveConditionalCrash4.types │ ├── recursiveConditionalEvaluationNonInfinite.js │ ├── recursiveConditionalEvaluationNonInfinite.symbols │ ├── recursiveConditionalEvaluationNonInfinite.types │ ├── recursiveConditionalTypes.errors.txt │ ├── recursiveConditionalTypes.js │ ├── recursiveConditionalTypes.symbols │ ├── recursiveConditionalTypes.types │ ├── recursiveConditionalTypes2.symbols │ ├── recursiveConditionalTypes2.types │ ├── recursiveExcessPropertyChecks.js │ ├── recursiveExcessPropertyChecks.symbols │ ├── recursiveExcessPropertyChecks.types │ ├── recursiveExportAssignmentAndFindAliasedType1.errors.txt │ ├── recursiveExportAssignmentAndFindAliasedType1.js │ ├── recursiveExportAssignmentAndFindAliasedType1.symbols │ ├── recursiveExportAssignmentAndFindAliasedType1.types │ ├── recursiveExportAssignmentAndFindAliasedType2.errors.txt │ ├── recursiveExportAssignmentAndFindAliasedType2.js │ ├── recursiveExportAssignmentAndFindAliasedType2.symbols │ ├── recursiveExportAssignmentAndFindAliasedType2.types │ ├── recursiveExportAssignmentAndFindAliasedType3.errors.txt │ ├── recursiveExportAssignmentAndFindAliasedType3.js │ ├── recursiveExportAssignmentAndFindAliasedType3.symbols │ ├── recursiveExportAssignmentAndFindAliasedType3.types │ ├── recursiveExportAssignmentAndFindAliasedType4.errors.txt │ ├── recursiveExportAssignmentAndFindAliasedType4.js │ ├── recursiveExportAssignmentAndFindAliasedType4.symbols │ ├── recursiveExportAssignmentAndFindAliasedType4.types │ ├── recursiveExportAssignmentAndFindAliasedType5.errors.txt │ ├── recursiveExportAssignmentAndFindAliasedType5.js │ ├── recursiveExportAssignmentAndFindAliasedType5.symbols │ ├── recursiveExportAssignmentAndFindAliasedType5.types │ ├── recursiveExportAssignmentAndFindAliasedType6.errors.txt │ ├── recursiveExportAssignmentAndFindAliasedType6.js │ ├── recursiveExportAssignmentAndFindAliasedType6.symbols │ ├── recursiveExportAssignmentAndFindAliasedType6.types │ ├── recursiveExportAssignmentAndFindAliasedType7.js │ ├── recursiveExportAssignmentAndFindAliasedType7.symbols │ ├── recursiveExportAssignmentAndFindAliasedType7.types │ ├── recursiveFieldSetting.js │ ├── recursiveFieldSetting.symbols │ ├── recursiveFieldSetting.types │ ├── recursiveFunctionTypes.errors.txt │ ├── recursiveFunctionTypes.js │ ├── recursiveFunctionTypes.symbols │ ├── recursiveFunctionTypes.types │ ├── recursiveFunctionTypes1.js │ ├── recursiveFunctionTypes1.symbols │ ├── recursiveFunctionTypes1.types │ ├── recursiveGenericMethodCall.js │ ├── recursiveGenericMethodCall.symbols │ ├── recursiveGenericMethodCall.types │ ├── recursiveGenericSignatureInstantiation.js │ ├── recursiveGenericSignatureInstantiation.symbols │ ├── recursiveGenericSignatureInstantiation.types │ ├── recursiveGenericSignatureInstantiation2.js │ ├── recursiveGenericSignatureInstantiation2.symbols │ ├── recursiveGenericSignatureInstantiation2.types │ ├── recursiveGenericTypeHierarchy.js │ ├── recursiveGenericTypeHierarchy.symbols │ ├── recursiveGenericTypeHierarchy.types │ ├── recursiveGenericUnionType1.errors.txt │ ├── recursiveGenericUnionType1.js │ ├── recursiveGenericUnionType1.symbols │ ├── recursiveGenericUnionType1.types │ ├── recursiveGenericUnionType2.errors.txt │ ├── recursiveGenericUnionType2.js │ ├── recursiveGenericUnionType2.symbols │ ├── recursiveGenericUnionType2.types │ ├── recursiveGetterAccess.js │ ├── recursiveGetterAccess.symbols │ ├── recursiveGetterAccess.types │ ├── recursiveIdenticalAssignment.errors.txt │ ├── recursiveIdenticalAssignment.js │ ├── recursiveIdenticalAssignment.symbols │ ├── recursiveIdenticalAssignment.types │ ├── recursiveIdenticalOverloadResolution.errors.txt │ ├── recursiveIdenticalOverloadResolution.js │ ├── recursiveIdenticalOverloadResolution.symbols │ ├── recursiveIdenticalOverloadResolution.types │ ├── recursiveInference1.js │ ├── recursiveInference1.symbols │ ├── recursiveInference1.types │ ├── recursiveInferenceBug.js │ ├── recursiveInferenceBug.symbols │ ├── recursiveInferenceBug.types │ ├── recursiveInheritance.errors.txt │ ├── recursiveInheritance.js │ ├── recursiveInheritance.symbols │ ├── recursiveInheritance.types │ ├── recursiveInheritance2.js │ ├── recursiveInheritance2.symbols │ ├── recursiveInheritance2.types │ ├── recursiveInheritance3.errors.txt │ ├── recursiveInheritance3.js │ ├── recursiveInheritance3.symbols │ ├── recursiveInheritance3.types │ ├── recursiveInheritanceGeneric.errors.txt │ ├── recursiveInheritanceGeneric.js │ ├── recursiveInheritanceGeneric.symbols │ ├── recursiveInheritanceGeneric.types │ ├── recursiveInitializer.js │ ├── recursiveInitializer.symbols │ ├── recursiveInitializer.types │ ├── recursiveIntersectionTypes.errors.txt │ ├── recursiveIntersectionTypes.js │ ├── recursiveIntersectionTypes.symbols │ ├── recursiveIntersectionTypes.types │ ├── recursiveLetConst.errors.txt │ ├── recursiveLetConst.js │ ├── recursiveLetConst.symbols │ ├── recursiveLetConst.types │ ├── recursiveMappedTypes.errors.txt │ ├── recursiveMappedTypes.js │ ├── recursiveMappedTypes.symbols │ ├── recursiveMappedTypes.types │ ├── recursiveMods.js │ ├── recursiveMods.symbols │ ├── recursiveMods.types │ ├── recursiveNamedLambdaCall.errors.txt │ ├── recursiveNamedLambdaCall.js │ ├── recursiveNamedLambdaCall.symbols │ ├── recursiveNamedLambdaCall.types │ ├── recursiveObjectLiteral.errors.txt │ ├── recursiveObjectLiteral.js │ ├── recursiveObjectLiteral.symbols │ ├── recursiveObjectLiteral.types │ ├── recursiveProperties(target=es2015).js │ ├── recursiveProperties(target=es2015).symbols │ ├── recursiveProperties(target=es2015).types │ ├── recursiveProperties(target=es5).errors.txt │ ├── recursiveProperties(target=es5).js │ ├── recursiveProperties(target=es5).symbols │ ├── recursiveProperties(target=es5).types │ ├── recursiveResolveDeclaredMembers.symbols │ ├── recursiveResolveDeclaredMembers.types │ ├── recursiveResolveTypeMembers.errors.txt │ ├── recursiveResolveTypeMembers.js │ ├── recursiveResolveTypeMembers.symbols │ ├── recursiveResolveTypeMembers.types │ ├── recursiveReturns.js │ ├── recursiveReturns.symbols │ ├── recursiveReturns.types │ ├── recursiveReverseMappedType.js │ ├── recursiveReverseMappedType.symbols │ ├── recursiveReverseMappedType.types │ ├── recursiveSpecializationOfExtendedTypeWithError.js │ ├── recursiveSpecializationOfExtendedTypeWithError.symbols │ ├── recursiveSpecializationOfExtendedTypeWithError.types │ ├── recursiveSpecializationOfSignatures.js │ ├── recursiveSpecializationOfSignatures.symbols │ ├── recursiveSpecializationOfSignatures.types │ ├── recursiveTupleTypeInference.errors.txt │ ├── recursiveTupleTypeInference.js │ ├── recursiveTupleTypeInference.symbols │ ├── recursiveTupleTypeInference.types │ ├── recursiveTupleTypes1.errors.txt │ ├── recursiveTupleTypes1.js │ ├── recursiveTupleTypes1.symbols │ ├── recursiveTupleTypes1.types │ ├── recursiveTupleTypes2.errors.txt │ ├── recursiveTupleTypes2.js │ ├── recursiveTupleTypes2.symbols │ ├── recursiveTupleTypes2.types │ ├── recursiveTypeAliasWithSpreadConditionalReturnNotCircular.js │ ├── recursiveTypeAliasWithSpreadConditionalReturnNotCircular.symbols │ ├── recursiveTypeAliasWithSpreadConditionalReturnNotCircular.types │ ├── recursiveTypeComparison.errors.txt │ ├── recursiveTypeComparison.js │ ├── recursiveTypeComparison.symbols │ ├── recursiveTypeComparison.types │ ├── recursiveTypeComparison2.errors.txt │ ├── recursiveTypeComparison2.js │ ├── recursiveTypeComparison2.symbols │ ├── recursiveTypeComparison2.types │ ├── recursiveTypeIdentity.js │ ├── recursiveTypeIdentity.symbols │ ├── recursiveTypeIdentity.types │ ├── recursiveTypeInGenericConstraint.errors.txt │ ├── recursiveTypeInGenericConstraint.js │ ├── recursiveTypeInGenericConstraint.symbols │ ├── recursiveTypeInGenericConstraint.types │ ├── recursiveTypeParameterConstraintReferenceLacksTypeArgs.errors.txt │ ├── recursiveTypeParameterConstraintReferenceLacksTypeArgs.js │ ├── recursiveTypeParameterConstraintReferenceLacksTypeArgs.symbols │ ├── recursiveTypeParameterConstraintReferenceLacksTypeArgs.types │ ├── recursiveTypeParameterReferenceError1.errors.txt │ ├── recursiveTypeParameterReferenceError1.js │ ├── recursiveTypeParameterReferenceError1.symbols │ ├── recursiveTypeParameterReferenceError1.types │ ├── recursiveTypeParameterReferenceError2.js │ ├── recursiveTypeParameterReferenceError2.symbols │ ├── recursiveTypeParameterReferenceError2.types │ ├── recursiveTypeReferences1.errors.txt │ ├── recursiveTypeReferences1.js │ ├── recursiveTypeReferences1.symbols │ ├── recursiveTypeReferences1.types │ ├── recursiveTypeReferences2.errors.txt │ ├── recursiveTypeReferences2.js │ ├── recursiveTypeReferences2.symbols │ ├── recursiveTypeReferences2.types │ ├── recursiveTypeRelations.errors.txt │ ├── recursiveTypeRelations.js │ ├── recursiveTypeRelations.symbols │ ├── recursiveTypeRelations.types │ ├── recursiveTypes1.js │ ├── recursiveTypes1.symbols │ ├── recursiveTypes1.types │ ├── recursiveTypesUsedAsFunctionParameters.js │ ├── recursiveTypesUsedAsFunctionParameters.symbols │ ├── recursiveTypesUsedAsFunctionParameters.types │ ├── recursiveTypesWithTypeof.errors.txt │ ├── recursiveTypesWithTypeof.js │ ├── recursiveTypesWithTypeof.symbols │ ├── recursiveTypesWithTypeof.types │ ├── recursiveUnionTypeInference.js │ ├── recursiveUnionTypeInference.symbols │ ├── recursiveUnionTypeInference.types │ ├── recursivelyExpandingUnionNoStackoverflow.errors.txt │ ├── recursivelyExpandingUnionNoStackoverflow.js │ ├── recursivelyExpandingUnionNoStackoverflow.symbols │ ├── recursivelyExpandingUnionNoStackoverflow.types │ ├── recursivelySpecializedConstructorDeclaration.js │ ├── recursivelySpecializedConstructorDeclaration.symbols │ ├── recursivelySpecializedConstructorDeclaration.types │ ├── redeclarationOfVarWithGenericType.js │ ├── redeclarationOfVarWithGenericType.symbols │ ├── redeclarationOfVarWithGenericType.types │ ├── redeclareParameterInCatchBlock.errors.txt │ ├── redeclareParameterInCatchBlock.js │ ├── redeclareParameterInCatchBlock.symbols │ ├── redeclareParameterInCatchBlock.types │ ├── redeclaredProperty.errors.txt │ ├── redeclaredProperty.js │ ├── redefineArray.errors.txt │ ├── redefineArray.js │ ├── redefineArray.symbols │ ├── redefineArray.types │ ├── redefinedPararameterProperty.errors.txt │ ├── redefinedPararameterProperty.js │ ├── reducibleIndexedAccessTypes.symbols │ ├── reducibleIndexedAccessTypes.types │ ├── reexportClassDefinition.js │ ├── reexportClassDefinition.symbols │ ├── reexportClassDefinition.types │ ├── reexportDefaultIsCallable.js │ ├── reexportDefaultIsCallable.symbols │ ├── reexportDefaultIsCallable.types │ ├── reexportMissingDefault.errors.txt │ ├── reexportMissingDefault.js │ ├── reexportMissingDefault.symbols │ ├── reexportMissingDefault.types │ ├── reexportMissingDefault1.errors.txt │ ├── reexportMissingDefault1.js │ ├── reexportMissingDefault1.symbols │ ├── reexportMissingDefault1.types │ ├── reexportMissingDefault2.errors.txt │ ├── reexportMissingDefault2.js │ ├── reexportMissingDefault2.symbols │ ├── reexportMissingDefault2.types │ ├── reexportMissingDefault3.errors.txt │ ├── reexportMissingDefault3.js │ ├── reexportMissingDefault3.symbols │ ├── reexportMissingDefault3.types │ ├── reexportMissingDefault4.js │ ├── reexportMissingDefault4.symbols │ ├── reexportMissingDefault4.types │ ├── reexportMissingDefault5.errors.txt │ ├── reexportMissingDefault5.js │ ├── reexportMissingDefault5.symbols │ ├── reexportMissingDefault5.types │ ├── reexportMissingDefault6.errors.txt │ ├── reexportMissingDefault6.js │ ├── reexportMissingDefault6.symbols │ ├── reexportMissingDefault6.types │ ├── reexportMissingDefault7.errors.txt │ ├── reexportMissingDefault7.js │ ├── reexportMissingDefault7.symbols │ ├── reexportMissingDefault7.types │ ├── reexportMissingDefault8.js │ ├── reexportMissingDefault8.symbols │ ├── reexportMissingDefault8.types │ ├── reexportNameAliasedAndHoisted.js │ ├── reexportNameAliasedAndHoisted.symbols │ ├── reexportNameAliasedAndHoisted.types │ ├── reexportWrittenCorrectlyInDeclaration.js │ ├── reexportWrittenCorrectlyInDeclaration.symbols │ ├── reexportWrittenCorrectlyInDeclaration.types │ ├── reexportedMissingAlias.errors.txt │ ├── reexportedMissingAlias.js │ ├── reexportedMissingAlias.symbols │ ├── reexportedMissingAlias.types │ ├── referenceInParameterPropertyDeclaration.baseline.jsonc │ ├── referenceSatisfiesExpression.errors.txt │ ├── referenceSatisfiesExpression.js │ ├── referenceSatisfiesExpression.symbols │ ├── referenceSatisfiesExpression.types │ ├── referenceToClass.baseline.jsonc │ ├── referenceToEmptyObject.baseline.jsonc │ ├── referenceTypesPreferedToPathIfPossible.js │ ├── referenceTypesPreferedToPathIfPossible.symbols │ ├── referenceTypesPreferedToPathIfPossible.types │ ├── references01.baseline.jsonc │ ├── referencesBloomFilters.baseline.jsonc │ ├── referencesBloomFilters2.baseline.jsonc │ ├── referencesBloomFilters3.baseline.jsonc │ ├── referencesForAmbients.baseline.jsonc │ ├── referencesForAmbients2.baseline.jsonc │ ├── referencesForClassLocal.baseline.jsonc │ ├── referencesForClassMembers.baseline.jsonc │ ├── referencesForClassMembersExtendingAbstractClass.baseline.jsonc │ ├── referencesForClassMembersExtendingGenericClass.baseline.jsonc │ ├── referencesForClassParameter.baseline.jsonc │ ├── referencesForContextuallyTypedObjectLiteralProperties.baseline.jsonc │ ├── referencesForContextuallyTypedUnionProperties.baseline.jsonc │ ├── referencesForContextuallyTypedUnionProperties2.baseline.jsonc │ ├── referencesForDeclarationKeywords.baseline.jsonc │ ├── referencesForEnums.baseline.jsonc │ ├── referencesForExportedValues.baseline.jsonc │ ├── referencesForExpressionKeywords.baseline.jsonc │ ├── referencesForExternalModuleNames.baseline.jsonc │ ├── referencesForFunctionOverloads.baseline.jsonc │ ├── referencesForFunctionParameter.baseline.jsonc │ ├── referencesForGlobals.baseline.jsonc │ ├── referencesForGlobals2.baseline.jsonc │ ├── referencesForGlobals3.baseline.jsonc │ ├── referencesForGlobals4.baseline.jsonc │ ├── referencesForGlobals5.baseline.jsonc │ ├── referencesForGlobalsInExternalModule.baseline.jsonc │ ├── referencesForIllegalAssignment.baseline.jsonc │ ├── referencesForImports.baseline.jsonc │ ├── referencesForIndexProperty.baseline.jsonc │ ├── referencesForIndexProperty2.baseline.jsonc │ ├── referencesForIndexProperty3.baseline.jsonc │ ├── referencesForInheritedProperties.baseline.jsonc │ ├── referencesForInheritedProperties10.baseline.jsonc │ ├── referencesForInheritedProperties2.baseline.jsonc │ ├── referencesForInheritedProperties3.baseline.jsonc │ ├── referencesForInheritedProperties4.baseline.jsonc │ ├── referencesForInheritedProperties5.baseline.jsonc │ ├── referencesForInheritedProperties6.baseline.jsonc │ ├── referencesForInheritedProperties7.baseline.jsonc │ ├── referencesForInheritedProperties8.baseline.jsonc │ ├── referencesForInheritedProperties9.baseline.jsonc │ ├── referencesForLabel.baseline.jsonc │ ├── referencesForLabel2.baseline.jsonc │ ├── referencesForLabel3.baseline.jsonc │ ├── referencesForLabel4.baseline.jsonc │ ├── referencesForLabel5.baseline.jsonc │ ├── referencesForLabel6.baseline.jsonc │ ├── referencesForMergedDeclarations.baseline.jsonc │ ├── referencesForMergedDeclarations2.baseline.jsonc │ ├── referencesForMergedDeclarations3.baseline.jsonc │ ├── referencesForMergedDeclarations4.baseline.jsonc │ ├── referencesForMergedDeclarations5.baseline.jsonc │ ├── referencesForMergedDeclarations6.baseline.jsonc │ ├── referencesForMergedDeclarations7.baseline.jsonc │ ├── referencesForMergedDeclarations8.baseline.jsonc │ ├── referencesForModifiers.baseline.jsonc │ ├── referencesForNoContext.baseline.jsonc │ ├── referencesForNumericLiteralPropertyNames.baseline.jsonc │ ├── referencesForObjectLiteralProperties.baseline.jsonc │ ├── referencesForOverrides.baseline.jsonc │ ├── referencesForPropertiesOfGenericType.baseline.jsonc │ ├── referencesForStatementKeywords.baseline.jsonc │ ├── referencesForStatic.baseline.jsonc │ ├── referencesForStaticsAndMembersWithSameNames.baseline.jsonc │ ├── referencesForStringLiteralPropertyNames.baseline.jsonc │ ├── referencesForStringLiteralPropertyNames2.baseline.jsonc │ ├── referencesForStringLiteralPropertyNames3.baseline.jsonc │ ├── referencesForStringLiteralPropertyNames4.baseline.jsonc │ ├── referencesForStringLiteralPropertyNames5.baseline.jsonc │ ├── referencesForStringLiteralPropertyNames6.baseline.jsonc │ ├── referencesForStringLiteralPropertyNames7.baseline.jsonc │ ├── referencesForTypeKeywords.baseline.jsonc │ ├── referencesForUnionProperties.baseline.jsonc │ ├── referencesInComment.baseline.jsonc │ ├── referencesInConfiguredProject.baseline.jsonc │ ├── referencesInEmptyFile.baseline.jsonc │ ├── referencesInEmptyFileWithMultipleProjects.baseline.jsonc │ ├── referencesInStringLiteralValueWithMultipleProjects.baseline.jsonc │ ├── referencesIsAvailableThroughGlobalNoCrash.baseline.jsonc │ ├── referencesToNonPropertyNameStringLiteral.baseline.jsonc │ ├── referencesToStringLiteralValue.baseline.jsonc │ ├── regExpEscape.symbols │ ├── regExpEscape.types │ ├── regExpWithOpenBracketInCharClass(target=es2015).errors.txt │ ├── regExpWithOpenBracketInCharClass(target=es2015).js │ ├── regExpWithOpenBracketInCharClass(target=es2015).symbols │ ├── regExpWithOpenBracketInCharClass(target=es2015).types │ ├── regExpWithOpenBracketInCharClass(target=es5).errors.txt │ ├── regExpWithOpenBracketInCharClass(target=es5).js │ ├── regExpWithOpenBracketInCharClass(target=es5).symbols │ ├── regExpWithOpenBracketInCharClass(target=es5).types │ ├── regExpWithOpenBracketInCharClass(target=esnext).errors.txt │ ├── regExpWithOpenBracketInCharClass(target=esnext).js │ ├── regExpWithOpenBracketInCharClass(target=esnext).symbols │ ├── regExpWithOpenBracketInCharClass(target=esnext).types │ ├── regExpWithSlashInCharClass.js │ ├── regExpWithSlashInCharClass.symbols │ ├── regExpWithSlashInCharClass.types │ ├── regexMatchAll-esnext.js │ ├── regexMatchAll-esnext.symbols │ ├── regexMatchAll-esnext.types │ ├── regexMatchAll.js │ ├── regexMatchAll.symbols │ ├── regexMatchAll.types │ ├── regexpExecAndMatchTypeUsages(strict=false).errors.txt │ ├── regexpExecAndMatchTypeUsages(strict=false).js │ ├── regexpExecAndMatchTypeUsages(strict=false).symbols │ ├── regexpExecAndMatchTypeUsages(strict=false).types │ ├── regexpExecAndMatchTypeUsages(strict=true).errors.txt │ ├── regexpExecAndMatchTypeUsages(strict=true).js │ ├── regexpExecAndMatchTypeUsages(strict=true).symbols │ ├── regexpExecAndMatchTypeUsages(strict=true).types │ ├── regularExpressionAnnexB.errors.txt │ ├── regularExpressionAnnexB.js │ ├── regularExpressionAnnexB.symbols │ ├── regularExpressionAnnexB.types │ ├── regularExpressionCharacterClassRangeOrder.errors.txt │ ├── regularExpressionCharacterClassRangeOrder.js │ ├── regularExpressionCharacterClassRangeOrder.symbols │ ├── regularExpressionCharacterClassRangeOrder.types │ ├── regularExpressionExtendedUnicodeEscapes.errors.txt │ ├── regularExpressionExtendedUnicodeEscapes.js │ ├── regularExpressionExtendedUnicodeEscapes.symbols │ ├── regularExpressionExtendedUnicodeEscapes.types │ ├── regularExpressionGroupNameSuggestions.errors.txt │ ├── regularExpressionGroupNameSuggestions.js │ ├── regularExpressionGroupNameSuggestions.symbols │ ├── regularExpressionGroupNameSuggestions.types │ ├── regularExpressionScanning(target=es2015).errors.txt │ ├── regularExpressionScanning(target=es2015).js │ ├── regularExpressionScanning(target=es2015).symbols │ ├── regularExpressionScanning(target=es2015).types │ ├── regularExpressionScanning(target=es5).errors.txt │ ├── regularExpressionScanning(target=es5).js │ ├── regularExpressionScanning(target=es5).symbols │ ├── regularExpressionScanning(target=es5).types │ ├── regularExpressionScanning(target=esnext).errors.txt │ ├── regularExpressionScanning(target=esnext).js │ ├── regularExpressionScanning(target=esnext).symbols │ ├── regularExpressionScanning(target=esnext).types │ ├── regularExpressionUnicodePropertyValueExpressionSuggestions(target=es2015).errors.txt │ ├── regularExpressionUnicodePropertyValueExpressionSuggestions(target=es2015).js │ ├── regularExpressionUnicodePropertyValueExpressionSuggestions(target=es2015).symbols │ ├── regularExpressionUnicodePropertyValueExpressionSuggestions(target=es2015).types │ ├── regularExpressionUnicodePropertyValueExpressionSuggestions(target=es5).errors.txt │ ├── regularExpressionUnicodePropertyValueExpressionSuggestions(target=es5).js │ ├── regularExpressionUnicodePropertyValueExpressionSuggestions(target=es5).symbols │ ├── regularExpressionUnicodePropertyValueExpressionSuggestions(target=es5).types │ ├── regularExpressionWithNonBMPFlags.errors.txt │ ├── regularExpressionWithNonBMPFlags.js │ ├── regularExpressionWithNonBMPFlags.symbols │ ├── regularExpressionWithNonBMPFlags.types │ ├── relatedViaDiscriminatedTypeNoError.js │ ├── relatedViaDiscriminatedTypeNoError.symbols │ ├── relatedViaDiscriminatedTypeNoError.types │ ├── relatedViaDiscriminatedTypeNoError2.js │ ├── relatedViaDiscriminatedTypeNoError2.symbols │ ├── relatedViaDiscriminatedTypeNoError2.types │ ├── relationComplexityError.errors.txt │ ├── relationComplexityError.symbols │ ├── relationComplexityError.types │ ├── relationalOperatorComparable.errors.txt │ ├── relationalOperatorComparable.js │ ├── relationalOperatorComparable.symbols │ ├── relationalOperatorComparable.types │ ├── relativeNamesInClassicResolution.errors.txt │ ├── relativeNamesInClassicResolution.js │ ├── relativeNamesInClassicResolution.symbols │ ├── relativeNamesInClassicResolution.types │ ├── relativePathMustResolve.errors.txt │ ├── relativePathMustResolve.js │ ├── relativePathMustResolve.symbols │ ├── relativePathMustResolve.types │ ├── relativePathToDeclarationFile.errors.txt │ ├── relativePathToDeclarationFile.js │ ├── relativePathToDeclarationFile.symbols │ ├── relativePathToDeclarationFile.types │ ├── remoteGetReferences.baseline.jsonc │ ├── rename01.baseline.jsonc │ ├── renameAcrossMultipleProjects.baseline.jsonc │ ├── renameAlias.baseline.jsonc │ ├── renameAlias2.baseline.jsonc │ ├── renameAlias3.baseline.jsonc │ ├── renameAliasExternalModule.baseline.jsonc │ ├── renameAliasExternalModule2.baseline.jsonc │ ├── renameAliasExternalModule3.baseline.jsonc │ ├── renameBindingElementInitializerExternal.baseline.jsonc │ ├── renameBindingElementInitializerProperty.baseline.jsonc │ ├── renameCommentsAndStrings1.baseline.jsonc │ ├── renameCommentsAndStrings2.baseline.jsonc │ ├── renameCommentsAndStrings3.baseline.jsonc │ ├── renameCommentsAndStrings4.baseline.jsonc │ ├── renameContextuallyTypedProperties.baseline.jsonc │ ├── renameContextuallyTypedProperties2.baseline.jsonc │ ├── renameCrossJsTs01.baseline.jsonc │ ├── renameDeclarationKeywords.baseline.jsonc │ ├── renameDefaultImport.baseline.jsonc │ ├── renameDefaultImportDifferentName.baseline.jsonc │ ├── renameDefaultLibDontWork.baseline.jsonc │ ├── renameDestructuringAssignment.baseline.jsonc │ ├── renameDestructuringAssignmentInFor.baseline.jsonc │ ├── renameDestructuringAssignmentInForOf.baseline.jsonc │ ├── renameDestructuringAssignmentNestedInArrayLiteral.baseline.jsonc │ ├── renameDestructuringAssignmentNestedInFor.baseline.jsonc │ ├── renameDestructuringAssignmentNestedInFor2.baseline.jsonc │ ├── renameDestructuringAssignmentNestedInForOf.baseline.jsonc │ ├── renameDestructuringAssignmentNestedInForOf2.baseline.jsonc │ ├── renameDestructuringClassProperty.baseline.jsonc │ ├── renameDestructuringDeclarationInFor.baseline.jsonc │ ├── renameDestructuringDeclarationInForOf.baseline.jsonc │ ├── renameDestructuringFunctionParameter.baseline.jsonc │ ├── renameDestructuringNestedBindingElement.baseline.jsonc │ ├── renameExportCrash.baseline.jsonc │ ├── renameExportSpecifier.baseline.jsonc │ ├── renameExportSpecifier2.baseline.jsonc │ ├── renameForDefaultExport01.baseline.jsonc │ ├── renameForDefaultExport02.baseline.jsonc │ ├── renameForDefaultExport03.baseline.jsonc │ ├── renameForStringLiteral.baseline.jsonc │ ├── renameFunctionParameter1.baseline.jsonc │ ├── renameFunctionParameter2.baseline.jsonc │ ├── renameImportAndExport.baseline.jsonc │ ├── renameImportAndExportInDiffFiles.baseline.jsonc │ ├── renameImportAndShorthand.baseline.jsonc │ ├── renameImportNamespaceAndShorthand.baseline.jsonc │ ├── renameImportOfExportEquals.baseline.jsonc │ ├── renameImportOfExportEquals2.baseline.jsonc │ ├── renameImportOfReExport.baseline.jsonc │ ├── renameImportOfReExport2.baseline.jsonc │ ├── renameImportRequire.baseline.jsonc │ ├── renameImportSpecifierPropertyName.baseline.jsonc │ ├── renameInConfiguredProject.baseline.jsonc │ ├── renameInheritedProperties1.baseline.jsonc │ ├── renameInheritedProperties2.baseline.jsonc │ ├── renameInheritedProperties3.baseline.jsonc │ ├── renameInheritedProperties4.baseline.jsonc │ ├── renameInheritedProperties5.baseline.jsonc │ ├── renameInheritedProperties6.baseline.jsonc │ ├── renameInheritedProperties7.baseline.jsonc │ ├── renameInheritedProperties8.baseline.jsonc │ ├── renameJSDocNamepath.baseline.jsonc │ ├── renameJsDocImportTag.baseline.jsonc │ ├── renameJsDocTypeLiteral.baseline.jsonc │ ├── renameJsExports01.baseline.jsonc │ ├── renameJsExports02.baseline.jsonc │ ├── renameJsExports03.baseline.jsonc │ ├── renameJsOverloadedFunctionParameter.baseline.jsonc │ ├── renameJsPropertyAssignment.baseline.jsonc │ ├── renameJsPropertyAssignment2.baseline.jsonc │ ├── renameJsPropertyAssignment3.baseline.jsonc │ ├── renameJsPropertyAssignment4.baseline.jsonc │ ├── renameJsPrototypeProperty01.baseline.jsonc │ ├── renameJsPrototypeProperty02.baseline.jsonc │ ├── renameJsSpecialAssignmentRhs1.baseline.jsonc │ ├── renameJsSpecialAssignmentRhs2.baseline.jsonc │ ├── renameJsThisProperty01.baseline.jsonc │ ├── renameJsThisProperty03.baseline.jsonc │ ├── renameJsThisProperty05.baseline.jsonc │ ├── renameJsThisProperty06.baseline.jsonc │ ├── renameLabel1.baseline.jsonc │ ├── renameLabel2.baseline.jsonc │ ├── renameLabel3.baseline.jsonc │ ├── renameLabel4.baseline.jsonc │ ├── renameLabel5.baseline.jsonc │ ├── renameLabel6.baseline.jsonc │ ├── renameLocationsForClassExpression01.baseline.jsonc │ ├── renameLocationsForFunctionExpression01.baseline.jsonc │ ├── renameLocationsForFunctionExpression02.baseline.jsonc │ ├── renameModifiers.baseline.jsonc │ ├── renameModuleExportsProperties1.baseline.jsonc │ ├── renameModuleExportsProperties2.baseline.jsonc │ ├── renameModuleExportsProperties3.baseline.jsonc │ ├── renameNamedImport.baseline.jsonc │ ├── renameNamespace.baseline.jsonc │ ├── renameNamespaceImport.baseline.jsonc │ ├── renameNumericalIndex.baseline.jsonc │ ├── renameNumericalIndexSingleQuoted.baseline.jsonc │ ├── renameObjectBindingElementPropertyName01.baseline.jsonc │ ├── renameObjectSpread.baseline.jsonc │ ├── renameObjectSpreadAssignment.baseline.jsonc │ ├── renameParameterPropertyDeclaration1.baseline.jsonc │ ├── renameParameterPropertyDeclaration2.baseline.jsonc │ ├── renameParameterPropertyDeclaration3.baseline.jsonc │ ├── renameParameterPropertyDeclaration4.baseline.jsonc │ ├── renameParameterPropertyDeclaration5.baseline.jsonc │ ├── renamePrivateAccessor.baseline.jsonc │ ├── renamePrivateFields1.baseline.jsonc │ ├── renamePrivateMethod.baseline.jsonc │ ├── renamePropertyAccessExpressionHeritageClause.baseline.jsonc │ ├── renameReExportDefault.baseline.jsonc │ ├── renameReferenceFromLinkTag1.baseline.jsonc │ ├── renameReferenceFromLinkTag2.baseline.jsonc │ ├── renameReferenceFromLinkTag3.baseline.jsonc │ ├── renameReferenceFromLinkTag4.baseline.jsonc │ ├── renameReferenceFromLinkTag5.baseline.jsonc │ ├── renameRest.baseline.jsonc │ ├── renameRestBindingElement.baseline.jsonc │ ├── renameStringLiteralOk.baseline.jsonc │ ├── renameStringLiteralOk1.baseline.jsonc │ ├── renameStringLiteralTypes1.baseline.jsonc │ ├── renameStringLiteralTypes2.baseline.jsonc │ ├── renameStringLiteralTypes3.baseline.jsonc │ ├── renameStringLiteralTypes4.baseline.jsonc │ ├── renameStringLiteralTypes5.baseline.jsonc │ ├── renameStringPropertyNames.baseline.jsonc │ ├── renameStringPropertyNames2.baseline.jsonc │ ├── renameTemplateLiteralsComputedProperties.baseline.jsonc │ ├── renameTemplateLiteralsDefinePropertyJs.baseline.jsonc │ ├── renameThis.baseline.jsonc │ ├── renameUMDModuleAlias1.baseline.jsonc │ ├── renamed.errors.txt │ ├── renamed.js │ ├── renamed.symbols │ ├── renamed.types │ ├── renamingDestructuredPropertyInFunctionType.errors.txt │ ├── renamingDestructuredPropertyInFunctionType.js │ ├── renamingDestructuredPropertyInFunctionType.symbols │ ├── renamingDestructuredPropertyInFunctionType.types │ ├── renamingDestructuredPropertyInFunctionType2.symbols │ ├── renamingDestructuredPropertyInFunctionType2.types │ ├── renamingDestructuredPropertyInFunctionType3.errors.txt │ ├── renamingDestructuredPropertyInFunctionType3.js │ ├── renamingDestructuredPropertyInFunctionType3.symbols │ ├── renamingDestructuredPropertyInFunctionType3.types │ ├── reorderProperties.errors.txt │ ├── reorderProperties.js │ ├── reorderProperties.symbols │ ├── reorderProperties.types │ ├── requireAsFunctionInExternalModule.js │ ├── requireAsFunctionInExternalModule.symbols │ ├── requireAsFunctionInExternalModule.types │ ├── requireAssertsFromTypescript.symbols │ ├── requireAssertsFromTypescript.types │ ├── requireEmitSemicolon.errors.txt │ ├── requireEmitSemicolon.js │ ├── requireEmitSemicolon.symbols │ ├── requireEmitSemicolon.types │ ├── requireOfAnEmptyFile1.errors.txt │ ├── requireOfAnEmptyFile1.js │ ├── requireOfAnEmptyFile1.symbols │ ├── requireOfAnEmptyFile1.types │ ├── requireOfESWithPropertyAccess.errors.txt │ ├── requireOfESWithPropertyAccess.js │ ├── requireOfESWithPropertyAccess.symbols │ ├── requireOfESWithPropertyAccess.types │ ├── requireOfJsonFile.js │ ├── requireOfJsonFile.symbols │ ├── requireOfJsonFile.types │ ├── requireOfJsonFileInJsFile.errors.txt │ ├── requireOfJsonFileInJsFile.symbols │ ├── requireOfJsonFileInJsFile.types │ ├── requireOfJsonFileNonRelative.js │ ├── requireOfJsonFileNonRelative.symbols │ ├── requireOfJsonFileNonRelative.types │ ├── requireOfJsonFileNonRelativeWithoutExtension.errors.txt │ ├── requireOfJsonFileNonRelativeWithoutExtension.js │ ├── requireOfJsonFileNonRelativeWithoutExtension.symbols │ ├── requireOfJsonFileNonRelativeWithoutExtension.types │ ├── requireOfJsonFileNonRelativeWithoutExtensionResolvesToTs.js │ ├── requireOfJsonFileNonRelativeWithoutExtensionResolvesToTs.symbols │ ├── requireOfJsonFileNonRelativeWithoutExtensionResolvesToTs.types │ ├── requireOfJsonFileTypes.js │ ├── requireOfJsonFileTypes.symbols │ ├── requireOfJsonFileTypes.types │ ├── requireOfJsonFileWithAlwaysStrictWithoutErrors.js │ ├── requireOfJsonFileWithAlwaysStrictWithoutErrors.symbols │ ├── requireOfJsonFileWithAlwaysStrictWithoutErrors.types │ ├── requireOfJsonFileWithAmd.errors.txt │ ├── requireOfJsonFileWithAmd.js │ ├── requireOfJsonFileWithAmd.symbols │ ├── requireOfJsonFileWithAmd.types │ ├── requireOfJsonFileWithComputedPropertyName.errors.txt │ ├── requireOfJsonFileWithComputedPropertyName.js │ ├── requireOfJsonFileWithComputedPropertyName.symbols │ ├── requireOfJsonFileWithComputedPropertyName.types │ ├── requireOfJsonFileWithDeclaration.js │ ├── requireOfJsonFileWithDeclaration.symbols │ ├── requireOfJsonFileWithDeclaration.types │ ├── requireOfJsonFileWithEmptyObject.js │ ├── requireOfJsonFileWithEmptyObject.symbols │ ├── requireOfJsonFileWithEmptyObject.types │ ├── requireOfJsonFileWithEmptyObjectWithErrors.errors.txt │ ├── requireOfJsonFileWithEmptyObjectWithErrors.js │ ├── requireOfJsonFileWithEmptyObjectWithErrors.symbols │ ├── requireOfJsonFileWithEmptyObjectWithErrors.types │ ├── requireOfJsonFileWithErrors.errors.txt │ ├── requireOfJsonFileWithErrors.js │ ├── requireOfJsonFileWithErrors.symbols │ ├── requireOfJsonFileWithErrors.types │ ├── requireOfJsonFileWithModuleEmitNone(target=es2015).errors.txt │ ├── requireOfJsonFileWithModuleEmitNone(target=es2015).js │ ├── requireOfJsonFileWithModuleEmitNone(target=es2015).symbols │ ├── requireOfJsonFileWithModuleEmitNone(target=es2015).types │ ├── requireOfJsonFileWithModuleEmitNone(target=es5).errors.txt │ ├── requireOfJsonFileWithModuleEmitNone(target=es5).js │ ├── requireOfJsonFileWithModuleEmitNone(target=es5).symbols │ ├── requireOfJsonFileWithModuleEmitNone(target=es5).types │ ├── requireOfJsonFileWithModuleEmitUndefined.js │ ├── requireOfJsonFileWithModuleEmitUndefined.symbols │ ├── requireOfJsonFileWithModuleEmitUndefined.types │ ├── requireOfJsonFileWithModuleNodeResolutionEmitAmd.errors.txt │ ├── requireOfJsonFileWithModuleNodeResolutionEmitAmd.js │ ├── requireOfJsonFileWithModuleNodeResolutionEmitAmd.symbols │ ├── requireOfJsonFileWithModuleNodeResolutionEmitAmd.types │ ├── requireOfJsonFileWithModuleNodeResolutionEmitAmdOutFile.errors.txt │ ├── requireOfJsonFileWithModuleNodeResolutionEmitAmdOutFile.js │ ├── requireOfJsonFileWithModuleNodeResolutionEmitAmdOutFile.symbols │ ├── requireOfJsonFileWithModuleNodeResolutionEmitAmdOutFile.types │ ├── requireOfJsonFileWithModuleNodeResolutionEmitEs2015.js │ ├── requireOfJsonFileWithModuleNodeResolutionEmitEs2015.symbols │ ├── requireOfJsonFileWithModuleNodeResolutionEmitEs2015.types │ ├── requireOfJsonFileWithModuleNodeResolutionEmitEsNext.js │ ├── requireOfJsonFileWithModuleNodeResolutionEmitEsNext.symbols │ ├── requireOfJsonFileWithModuleNodeResolutionEmitEsNext.types │ ├── requireOfJsonFileWithModuleNodeResolutionEmitNone(target=es2015).errors.txt │ ├── requireOfJsonFileWithModuleNodeResolutionEmitNone(target=es2015).js │ ├── requireOfJsonFileWithModuleNodeResolutionEmitNone(target=es2015).symbols │ ├── requireOfJsonFileWithModuleNodeResolutionEmitNone(target=es2015).types │ ├── requireOfJsonFileWithModuleNodeResolutionEmitNone(target=es5).errors.txt │ ├── requireOfJsonFileWithModuleNodeResolutionEmitNone(target=es5).js │ ├── requireOfJsonFileWithModuleNodeResolutionEmitNone(target=es5).symbols │ ├── requireOfJsonFileWithModuleNodeResolutionEmitNone(target=es5).types │ ├── requireOfJsonFileWithModuleNodeResolutionEmitSystem.errors.txt │ ├── requireOfJsonFileWithModuleNodeResolutionEmitSystem.js │ ├── requireOfJsonFileWithModuleNodeResolutionEmitSystem.symbols │ ├── requireOfJsonFileWithModuleNodeResolutionEmitSystem.types │ ├── requireOfJsonFileWithModuleNodeResolutionEmitUmd.errors.txt │ ├── requireOfJsonFileWithModuleNodeResolutionEmitUmd.js │ ├── requireOfJsonFileWithModuleNodeResolutionEmitUmd.symbols │ ├── requireOfJsonFileWithModuleNodeResolutionEmitUmd.types │ ├── requireOfJsonFileWithModuleNodeResolutionEmitUndefined.js │ ├── requireOfJsonFileWithModuleNodeResolutionEmitUndefined.symbols │ ├── requireOfJsonFileWithModuleNodeResolutionEmitUndefined.types │ ├── requireOfJsonFileWithNoContent.errors.txt │ ├── requireOfJsonFileWithNoContent.js │ ├── requireOfJsonFileWithNoContent.symbols │ ├── requireOfJsonFileWithNoContent.types │ ├── requireOfJsonFileWithSourceMap.js │ ├── requireOfJsonFileWithSourceMap.sourcemap.txt │ ├── requireOfJsonFileWithSourceMap.symbols │ ├── requireOfJsonFileWithSourceMap.types │ ├── requireOfJsonFileWithTraillingComma.js │ ├── requireOfJsonFileWithTraillingComma.symbols │ ├── requireOfJsonFileWithTraillingComma.types │ ├── requireOfJsonFileWithoutAllowJs.js │ ├── requireOfJsonFileWithoutAllowJs.symbols │ ├── requireOfJsonFileWithoutAllowJs.types │ ├── requireOfJsonFileWithoutEsModuleInterop.js │ ├── requireOfJsonFileWithoutEsModuleInterop.symbols │ ├── requireOfJsonFileWithoutEsModuleInterop.types │ ├── requireOfJsonFileWithoutExtension.errors.txt │ ├── requireOfJsonFileWithoutExtension.js │ ├── requireOfJsonFileWithoutExtension.symbols │ ├── requireOfJsonFileWithoutExtension.types │ ├── requireOfJsonFileWithoutExtensionResolvesToTs.js │ ├── requireOfJsonFileWithoutExtensionResolvesToTs.symbols │ ├── requireOfJsonFileWithoutExtensionResolvesToTs.types │ ├── requireOfJsonFileWithoutOutDir.js │ ├── requireOfJsonFileWithoutOutDir.symbols │ ├── requireOfJsonFileWithoutOutDir.types │ ├── requireOfJsonFileWithoutResolveJsonModule.errors.txt │ ├── requireOfJsonFileWithoutResolveJsonModule.js │ ├── requireOfJsonFileWithoutResolveJsonModule.symbols │ ├── requireOfJsonFileWithoutResolveJsonModule.types │ ├── requireOfJsonFileWithoutResolveJsonModuleAndPathMapping.errors.txt │ ├── requireOfJsonFileWithoutResolveJsonModuleAndPathMapping.js │ ├── requireOfJsonFileWithoutResolveJsonModuleAndPathMapping.symbols │ ├── requireOfJsonFileWithoutResolveJsonModuleAndPathMapping.trace.json │ ├── requireOfJsonFileWithoutResolveJsonModuleAndPathMapping.types │ ├── requireOfJsonFile_PathMapping.errors.txt │ ├── requireOfJsonFile_PathMapping.js │ ├── requireOfJsonFile_PathMapping.symbols │ ├── requireOfJsonFile_PathMapping.trace.json │ ├── requireOfJsonFile_PathMapping.types │ ├── requireTwoPropertyAccesses.js │ ├── requireTwoPropertyAccesses.symbols │ ├── requireTwoPropertyAccesses.types │ ├── requiredInitializedParameter1.errors.txt │ ├── requiredInitializedParameter1.js │ ├── requiredInitializedParameter1.symbols │ ├── requiredInitializedParameter1.types │ ├── requiredInitializedParameter2.errors.txt │ ├── requiredInitializedParameter2.js │ ├── requiredInitializedParameter2.symbols │ ├── requiredInitializedParameter2.types │ ├── requiredInitializedParameter3.js │ ├── requiredInitializedParameter3.symbols │ ├── requiredInitializedParameter3.types │ ├── requiredInitializedParameter4.js │ ├── requiredInitializedParameter4.symbols │ ├── requiredInitializedParameter4.types │ ├── requiredMappedTypeModifierTrumpsVariance.errors.txt │ ├── requiredMappedTypeModifierTrumpsVariance.js │ ├── requiredMappedTypeModifierTrumpsVariance.symbols │ ├── requiredMappedTypeModifierTrumpsVariance.types │ ├── reservedNameOnInterfaceImport.errors.txt │ ├── reservedNameOnInterfaceImport.js │ ├── reservedNameOnInterfaceImport.symbols │ ├── reservedNameOnInterfaceImport.types │ ├── reservedNameOnModuleImport.js │ ├── reservedNameOnModuleImport.symbols │ ├── reservedNameOnModuleImport.types │ ├── reservedNameOnModuleImportWithInterface.errors.txt │ ├── reservedNameOnModuleImportWithInterface.js │ ├── reservedNameOnModuleImportWithInterface.symbols │ ├── reservedNameOnModuleImportWithInterface.types │ ├── reservedNamesInAliases.errors.txt │ ├── reservedNamesInAliases.js │ ├── reservedNamesInAliases.symbols │ ├── reservedNamesInAliases.types │ ├── reservedWords.js │ ├── reservedWords.symbols │ ├── reservedWords.types │ ├── reservedWords2.errors.txt │ ├── reservedWords2.js │ ├── reservedWords2.symbols │ ├── reservedWords2.types │ ├── reservedWords3.errors.txt │ ├── reservedWords3.js │ ├── reservedWords3.symbols │ ├── reservedWords3.types │ ├── resizableArrayBuffer.symbols │ ├── resizableArrayBuffer.types │ ├── resolutionCandidateFromPackageJsonField1.js │ ├── resolutionCandidateFromPackageJsonField1.symbols │ ├── resolutionCandidateFromPackageJsonField1.types │ ├── resolutionCandidateFromPackageJsonField2.errors.txt │ ├── resolutionCandidateFromPackageJsonField2.js │ ├── resolutionCandidateFromPackageJsonField2.symbols │ ├── resolutionCandidateFromPackageJsonField2.types │ ├── resolutionModeCache.errors.txt │ ├── resolutionModeCache.symbols │ ├── resolutionModeCache.trace.json │ ├── resolutionModeCache.types │ ├── resolutionModeImportType1(moduleresolution=bundler).symbols │ ├── resolutionModeImportType1(moduleresolution=bundler).types │ ├── resolutionModeImportType1(moduleresolution=classic).errors.txt │ ├── resolutionModeImportType1(moduleresolution=classic).symbols │ ├── resolutionModeImportType1(moduleresolution=classic).types │ ├── resolutionModeTripleSlash1.errors.txt │ ├── resolutionModeTripleSlash2.errors.txt │ ├── resolutionModeTripleSlash2.js │ ├── resolutionModeTripleSlash3.errors.txt │ ├── resolutionModeTripleSlash4.errors.txt │ ├── resolutionModeTripleSlash5.errors.txt │ ├── resolutionModeTypeOnlyImport1(moduleresolution=bundler).js │ ├── resolutionModeTypeOnlyImport1(moduleresolution=bundler).symbols │ ├── resolutionModeTypeOnlyImport1(moduleresolution=bundler).types │ ├── resolutionModeTypeOnlyImport1(moduleresolution=classic).errors.txt │ ├── resolutionModeTypeOnlyImport1(moduleresolution=classic).js │ ├── resolutionModeTypeOnlyImport1(moduleresolution=classic).symbols │ ├── resolutionModeTypeOnlyImport1(moduleresolution=classic).types │ ├── resolveInterfaceNameWithSameLetDeclarationName1.js │ ├── resolveInterfaceNameWithSameLetDeclarationName1.symbols │ ├── resolveInterfaceNameWithSameLetDeclarationName1.types │ ├── resolveInterfaceNameWithSameLetDeclarationName2.js │ ├── resolveInterfaceNameWithSameLetDeclarationName2.symbols │ ├── resolveInterfaceNameWithSameLetDeclarationName2.types │ ├── resolveModuleNameWithSameLetDeclarationName1.js │ ├── resolveModuleNameWithSameLetDeclarationName1.symbols │ ├── resolveModuleNameWithSameLetDeclarationName1.types │ ├── resolveModuleNameWithSameLetDeclarationName2.js │ ├── resolveModuleNameWithSameLetDeclarationName2.symbols │ ├── resolveModuleNameWithSameLetDeclarationName2.types │ ├── resolveNameWithNamspace.js │ ├── resolveNameWithNamspace.symbols │ ├── resolveNameWithNamspace.types │ ├── resolveTypeAliasWithSameLetDeclarationName1.js │ ├── resolveTypeAliasWithSameLetDeclarationName1.symbols │ ├── resolveTypeAliasWithSameLetDeclarationName1.types │ ├── resolvesWithoutExportsDiagnostic1(moduleresolution=bundler).errors.txt │ ├── resolvesWithoutExportsDiagnostic1(moduleresolution=bundler).trace.json │ ├── resolvesWithoutExportsDiagnostic1(moduleresolution=node16).errors.txt │ ├── resolvesWithoutExportsDiagnostic1(moduleresolution=node16).trace.json │ ├── resolvingClassDeclarationWhenInBaseTypeResolution.errors.txt │ ├── resolvingClassDeclarationWhenInBaseTypeResolution.js │ ├── resolvingClassDeclarationWhenInBaseTypeResolution.symbols │ ├── resolvingClassDeclarationWhenInBaseTypeResolution.types │ ├── restArgAssignmentCompat.errors.txt │ ├── restArgAssignmentCompat.js │ ├── restArgAssignmentCompat.symbols │ ├── restArgAssignmentCompat.types │ ├── restArgMissingName.errors.txt │ ├── restArgMissingName.js │ ├── restArgMissingName.symbols │ ├── restArgMissingName.types │ ├── restElementAssignable.js │ ├── restElementAssignable.symbols │ ├── restElementAssignable.types │ ├── restElementMustBeLast.errors.txt │ ├── restElementMustBeLast.js │ ├── restElementMustBeLast.symbols │ ├── restElementMustBeLast.types │ ├── restElementWithAssignmentPattern1.js │ ├── restElementWithAssignmentPattern1.symbols │ ├── restElementWithAssignmentPattern1.types │ ├── restElementWithAssignmentPattern2.errors.txt │ ├── restElementWithAssignmentPattern2.js │ ├── restElementWithAssignmentPattern2.symbols │ ├── restElementWithAssignmentPattern2.types │ ├── restElementWithAssignmentPattern3.js │ ├── restElementWithAssignmentPattern3.symbols │ ├── restElementWithAssignmentPattern3.types │ ├── restElementWithAssignmentPattern4.errors.txt │ ├── restElementWithAssignmentPattern4.js │ ├── restElementWithAssignmentPattern4.symbols │ ├── restElementWithAssignmentPattern4.types │ ├── restElementWithAssignmentPattern5.js │ ├── restElementWithAssignmentPattern5.symbols │ ├── restElementWithAssignmentPattern5.types │ ├── restElementWithBindingPattern.js │ ├── restElementWithBindingPattern.symbols │ ├── restElementWithBindingPattern.types │ ├── restElementWithBindingPattern2.errors.txt │ ├── restElementWithBindingPattern2.js │ ├── restElementWithBindingPattern2.symbols │ ├── restElementWithBindingPattern2.types │ ├── restElementWithInitializer1.errors.txt │ ├── restElementWithInitializer1.js │ ├── restElementWithInitializer1.symbols │ ├── restElementWithInitializer1.types │ ├── restElementWithInitializer2.errors.txt │ ├── restElementWithInitializer2.js │ ├── restElementWithInitializer2.symbols │ ├── restElementWithInitializer2.types │ ├── restElementWithNullInitializer(target=es2015).errors.txt │ ├── restElementWithNullInitializer(target=es2015).js │ ├── restElementWithNullInitializer(target=es2015).symbols │ ├── restElementWithNullInitializer(target=es2015).types │ ├── restElementWithNullInitializer(target=es5).errors.txt │ ├── restElementWithNullInitializer(target=es5).js │ ├── restElementWithNullInitializer(target=es5).symbols │ ├── restElementWithNullInitializer(target=es5).types │ ├── restElementWithNumberPropertyName(target=es2015).js │ ├── restElementWithNumberPropertyName(target=es2015).symbols │ ├── restElementWithNumberPropertyName(target=es2015).types │ ├── restElementWithNumberPropertyName(target=es5).errors.txt │ ├── restElementWithNumberPropertyName(target=es5).js │ ├── restElementWithNumberPropertyName(target=es5).symbols │ ├── restElementWithNumberPropertyName(target=es5).types │ ├── restIntersection.errors.txt │ ├── restIntersection.js │ ├── restIntersection.symbols │ ├── restIntersection.types │ ├── restInvalidArgumentType.errors.txt │ ├── restInvalidArgumentType.js │ ├── restInvalidArgumentType.symbols │ ├── restInvalidArgumentType.types │ ├── restParamAsOptional.errors.txt │ ├── restParamAsOptional.js │ ├── restParamAsOptional.symbols │ ├── restParamAsOptional.types │ ├── restParamModifier.errors.txt │ ├── restParamModifier.js │ ├── restParamModifier.symbols │ ├── restParamModifier.types │ ├── restParamModifier2.errors.txt │ ├── restParamModifier2.js │ ├── restParamModifier2.symbols │ ├── restParamModifier2.types │ ├── restParamUsingMappedTypeOverUnionConstraint.symbols │ ├── restParamUsingMappedTypeOverUnionConstraint.types │ ├── restParameterAssignmentCompatibility.js │ ├── restParameterAssignmentCompatibility.symbols │ ├── restParameterAssignmentCompatibility.types │ ├── restParameterInDownlevelGenerator(target=es2015).errors.txt │ ├── restParameterInDownlevelGenerator(target=es2015).js │ ├── restParameterInDownlevelGenerator(target=es2015).symbols │ ├── restParameterInDownlevelGenerator(target=es2015).types │ ├── restParameterInDownlevelGenerator(target=es5).errors.txt │ ├── restParameterInDownlevelGenerator(target=es5).js │ ├── restParameterInDownlevelGenerator(target=es5).symbols │ ├── restParameterInDownlevelGenerator(target=es5).types │ ├── restParameterNoTypeAnnotation.js │ ├── restParameterNoTypeAnnotation.symbols │ ├── restParameterNoTypeAnnotation.types │ ├── restParameterNotLast.errors.txt │ ├── restParameterNotLast.js │ ├── restParameterNotLast.symbols │ ├── restParameterNotLast.types │ ├── restParameterTypeInstantiation.js │ ├── restParameterTypeInstantiation.symbols │ ├── restParameterTypeInstantiation.types │ ├── restParameterWithBindingPattern1.js │ ├── restParameterWithBindingPattern1.sourcemap.txt │ ├── restParameterWithBindingPattern1.symbols │ ├── restParameterWithBindingPattern1.types │ ├── restParameterWithBindingPattern2.js │ ├── restParameterWithBindingPattern2.sourcemap.txt │ ├── restParameterWithBindingPattern2.symbols │ ├── restParameterWithBindingPattern2.types │ ├── restParameterWithBindingPattern3.errors.txt │ ├── restParameterWithBindingPattern3.js │ ├── restParameterWithBindingPattern3.symbols │ ├── restParameterWithBindingPattern3.types │ ├── restParameterWithoutAnnotationIsAnyArray.errors.txt │ ├── restParameterWithoutAnnotationIsAnyArray.js │ ├── restParameterWithoutAnnotationIsAnyArray.symbols │ ├── restParameterWithoutAnnotationIsAnyArray.types │ ├── restParameters.js │ ├── restParameters.symbols │ ├── restParameters.types │ ├── restParametersOfNonArrayTypes.errors.txt │ ├── restParametersOfNonArrayTypes.js │ ├── restParametersOfNonArrayTypes.symbols │ ├── restParametersOfNonArrayTypes.types │ ├── restParametersOfNonArrayTypes2.errors.txt │ ├── restParametersOfNonArrayTypes2.js │ ├── restParametersOfNonArrayTypes2.symbols │ ├── restParametersOfNonArrayTypes2.types │ ├── restParametersWithArrayTypeAnnotations.errors.txt │ ├── restParametersWithArrayTypeAnnotations.js │ ├── restParametersWithArrayTypeAnnotations.symbols │ ├── restParametersWithArrayTypeAnnotations.types │ ├── restParamsWithNonRestParams.errors.txt │ ├── restParamsWithNonRestParams.js │ ├── restParamsWithNonRestParams.symbols │ ├── restParamsWithNonRestParams.types │ ├── restPropertyWithBindingPattern(target=es2015).errors.txt │ ├── restPropertyWithBindingPattern(target=es2015).js │ ├── restPropertyWithBindingPattern(target=es2015).symbols │ ├── restPropertyWithBindingPattern(target=es2015).types │ ├── restPropertyWithBindingPattern(target=es5).errors.txt │ ├── restPropertyWithBindingPattern(target=es5).js │ ├── restPropertyWithBindingPattern(target=es5).symbols │ ├── restPropertyWithBindingPattern(target=es5).types │ ├── restTupleElements1.errors.txt │ ├── restTupleElements1.js │ ├── restTupleElements1.symbols │ ├── restTupleElements1.types │ ├── restTuplesFromContextualTypes.errors.txt │ ├── restTuplesFromContextualTypes.js │ ├── restTuplesFromContextualTypes.symbols │ ├── restTuplesFromContextualTypes.types │ ├── restTypeRetainsMappyness.js │ ├── restTypeRetainsMappyness.symbols │ ├── restTypeRetainsMappyness.types │ ├── restUnion.errors.txt │ ├── restUnion.js │ ├── restUnion.symbols │ ├── restUnion.types │ ├── restUnion2.js │ ├── restUnion2.symbols │ ├── restUnion2.types │ ├── restUnion3.errors.txt │ ├── restUnion3.js │ ├── restUnion3.symbols │ ├── restUnion3.types │ ├── returnConditionalExpressionJSDocCast.symbols │ ├── returnConditionalExpressionJSDocCast.types │ ├── returnInConstructor1.errors.txt │ ├── returnInConstructor1.js │ ├── returnInConstructor1.symbols │ ├── returnInConstructor1.types │ ├── returnInfiniteIntersection.js │ ├── returnInfiniteIntersection.symbols │ ├── returnInfiniteIntersection.types │ ├── returnStatement1.js │ ├── returnStatement1.symbols │ ├── returnStatement1.types │ ├── returnStatementNoAsiAfterTransform(target=es5).errors.txt │ ├── returnStatementNoAsiAfterTransform(target=es5).js │ ├── returnStatementNoAsiAfterTransform(target=esnext).js │ ├── returnStatements.errors.txt │ ├── returnStatements.js │ ├── returnStatements.symbols │ ├── returnStatements.types │ ├── returnTagTypeGuard.symbols │ ├── returnTagTypeGuard.types │ ├── returnTypeInferenceContextualParameterTypesInGenerator1.symbols │ ├── returnTypeInferenceContextualParameterTypesInGenerator1.types │ ├── returnTypeInferenceContextualTypeIgnoreAnyUnknown1.symbols │ ├── returnTypeInferenceContextualTypeIgnoreAnyUnknown1.types │ ├── returnTypeInferenceNotTooBroad.js │ ├── returnTypeInferenceNotTooBroad.symbols │ ├── returnTypeInferenceNotTooBroad.types │ ├── returnTypeParameter.errors.txt │ ├── returnTypeParameter.js │ ├── returnTypeParameter.symbols │ ├── returnTypeParameter.types │ ├── returnTypeParameterWithModules.js │ ├── returnTypeParameterWithModules.symbols │ ├── returnTypeParameterWithModules.types │ ├── returnTypePredicateIsInstantiateInContextOfTarget.js │ ├── returnTypePredicateIsInstantiateInContextOfTarget.symbols │ ├── returnTypePredicateIsInstantiateInContextOfTarget.types │ ├── returnTypeTypeArguments.errors.txt │ ├── returnTypeTypeArguments.js │ ├── returnTypeTypeArguments.symbols │ ├── returnTypeTypeArguments.types │ ├── returnValueInSetter.errors.txt │ ├── returnValueInSetter.js │ ├── returnValueInSetter.symbols │ ├── returnValueInSetter.types │ ├── reuseInnerModuleMember.js │ ├── reuseInnerModuleMember.symbols │ ├── reuseInnerModuleMember.types │ ├── reuseProgramStructure/ │ │ ├── can-reuse-module-resolutions-from-non-modified-files.js │ │ ├── change-affects-a-single-module-of-a-package.js │ │ ├── change-affects-imports.js │ │ ├── change-affects-tripleslash-references.js │ │ ├── change-affects-type-directives.js │ │ ├── change-affects-type-references.js │ │ ├── change-does-not-affect-imports-or-type-refs.js │ │ ├── change-doesnot-affect-type-references.js │ │ ├── config-path-changes.js │ │ ├── fetches-imports-after-npm-install.js │ │ ├── handles-file-preprocessing-dignostics-when-diagnostics-are-not-queried.js │ │ ├── handles-file-preprocessing-dignostics.js │ │ ├── missing-file-is-created.js │ │ ├── missing-files-remain-missing.js │ │ ├── module-kind-changes.js │ │ ├── redirect-no-change.js │ │ ├── redirect-previous-duplicate-packages.js │ │ ├── redirect-target-changes.js │ │ ├── redirect-underlying-changes.js │ │ ├── redirect-with-getSourceFileByPath-no-change.js │ │ ├── redirect-with-getSourceFileByPath-previous-duplicate-packages.js │ │ ├── redirect-with-getSourceFileByPath-target-changes.js │ │ ├── redirect-with-getSourceFileByPath-underlying-changes.js │ │ ├── resolution-cache-follows-imports.js │ │ ├── resolved-type-directives-cache-follows-type-directives.js │ │ ├── resolvedImports-after-re-using-an-ambient-external-module-declaration.js │ │ ├── rootdir-changes.js │ │ ├── should-not-reuse-ambient-module-declarations-from-non-modified-files.js │ │ └── works-with-updated-SourceFiles.js │ ├── reuseTypeAnnotationImportTypeInGlobalThisTypeArgument.errors.txt │ ├── reuseTypeAnnotationImportTypeInGlobalThisTypeArgument.js │ ├── reverseInferenceInContextualInstantiation.errors.txt │ ├── reverseInferenceInContextualInstantiation.js │ ├── reverseInferenceInContextualInstantiation.symbols │ ├── reverseInferenceInContextualInstantiation.types │ ├── reverseMappedContravariantInference.js │ ├── reverseMappedContravariantInference.symbols │ ├── reverseMappedContravariantInference.types │ ├── reverseMappedIntersectionInference1.symbols │ ├── reverseMappedIntersectionInference1.types │ ├── reverseMappedIntersectionInference2.symbols │ ├── reverseMappedIntersectionInference2.types │ ├── reverseMappedPartiallyInferableTypes.errors.txt │ ├── reverseMappedPartiallyInferableTypes.js │ ├── reverseMappedPartiallyInferableTypes.symbols │ ├── reverseMappedPartiallyInferableTypes.types │ ├── reverseMappedTupleContext.symbols │ ├── reverseMappedTupleContext.types │ ├── reverseMappedTypeAssignableToIndex.js │ ├── reverseMappedTypeAssignableToIndex.symbols │ ├── reverseMappedTypeAssignableToIndex.types │ ├── reverseMappedTypeContextualTypeNotCircular.errors.txt │ ├── reverseMappedTypeContextualTypeNotCircular.js │ ├── reverseMappedTypeContextualTypeNotCircular.symbols │ ├── reverseMappedTypeContextualTypeNotCircular.types │ ├── reverseMappedTypeContextualTypesPerElementOfTupleConstraint.symbols │ ├── reverseMappedTypeContextualTypesPerElementOfTupleConstraint.types │ ├── reverseMappedTypeDeepDeclarationEmit.js │ ├── reverseMappedTypeDeepDeclarationEmit.symbols │ ├── reverseMappedTypeDeepDeclarationEmit.types │ ├── reverseMappedTypeInferenceSameSource1.symbols │ ├── reverseMappedTypeInferenceSameSource1.types │ ├── reverseMappedTypeInferenceWidening1.symbols │ ├── reverseMappedTypeInferenceWidening1.types │ ├── reverseMappedTypeInferenceWidening2.symbols │ ├── reverseMappedTypeInferenceWidening2.types │ ├── reverseMappedTypeIntersectionConstraint.errors.txt │ ├── reverseMappedTypeIntersectionConstraint.js │ ├── reverseMappedTypeIntersectionConstraint.symbols │ ├── reverseMappedTypeIntersectionConstraint.types │ ├── reverseMappedTypeLimitedConstraint.errors.txt │ ├── reverseMappedTypeLimitedConstraint.js │ ├── reverseMappedTypeLimitedConstraint.symbols │ ├── reverseMappedTypeLimitedConstraint.types │ ├── reverseMappedTypePrimitiveConstraintProperty.symbols │ ├── reverseMappedTypePrimitiveConstraintProperty.types │ ├── reverseMappedTypeRecursiveInference.js │ ├── reverseMappedTypeRecursiveInference.symbols │ ├── reverseMappedTypeRecursiveInference.types │ ├── reverseMappedUnionInference.symbols │ ├── reverseMappedUnionInference.types │ ├── reversedRecusiveTypeInstantiation.errors.txt │ ├── reversedRecusiveTypeInstantiation.js │ ├── reversedRecusiveTypeInstantiation.symbols │ ├── reversedRecusiveTypeInstantiation.types │ ├── rewriteRelativeImportExtensionsProjectReferences1.baseline │ ├── rewriteRelativeImportExtensionsProjectReferences2.baseline │ ├── rewriteRelativeImportExtensionsProjectReferences3.baseline │ ├── satisfiesEmit.errors.txt │ ├── satisfiesEmit.js │ ├── satisfiesEmit.symbols │ ├── satisfiesEmit.types │ ├── scanner10.1.1-8gs.errors.txt │ ├── scanner10.1.1-8gs.js │ ├── scanner10.1.1-8gs.symbols │ ├── scanner10.1.1-8gs.types │ ├── scannerAdditiveExpression1.errors.txt │ ├── scannerAdditiveExpression1.js │ ├── scannerAdditiveExpression1.symbols │ ├── scannerAdditiveExpression1.types │ ├── scannerClass2.errors.txt │ ├── scannerClass2.js │ ├── scannerClass2.symbols │ ├── scannerClass2.types │ ├── scannerES3NumericLiteral1.js │ ├── scannerES3NumericLiteral1.symbols │ ├── scannerES3NumericLiteral1.types │ ├── scannerES3NumericLiteral2.errors.txt │ ├── scannerES3NumericLiteral2.js │ ├── scannerES3NumericLiteral2.symbols │ ├── scannerES3NumericLiteral2.types │ ├── scannerES3NumericLiteral3.errors.txt │ ├── scannerES3NumericLiteral3.js │ ├── scannerES3NumericLiteral3.symbols │ ├── scannerES3NumericLiteral3.types │ ├── scannerES3NumericLiteral4.errors.txt │ ├── scannerES3NumericLiteral4.js │ ├── scannerES3NumericLiteral4.symbols │ ├── scannerES3NumericLiteral4.types │ ├── scannerES3NumericLiteral5.js │ ├── scannerES3NumericLiteral5.symbols │ ├── scannerES3NumericLiteral5.types │ ├── scannerES3NumericLiteral6.errors.txt │ ├── scannerES3NumericLiteral6.js │ ├── scannerES3NumericLiteral6.symbols │ ├── scannerES3NumericLiteral6.types │ ├── scannerES3NumericLiteral7.js │ ├── scannerES3NumericLiteral7.symbols │ ├── scannerES3NumericLiteral7.types │ ├── scannerEnum1.js │ ├── scannerEnum1.symbols │ ├── scannerEnum1.types │ ├── scannerImportDeclaration1.errors.txt │ ├── scannerImportDeclaration1.js │ ├── scannerImportDeclaration1.symbols │ ├── scannerImportDeclaration1.types │ ├── scannerNonAsciiHorizontalWhitespace.js │ ├── scannerNonAsciiHorizontalWhitespace.symbols │ ├── scannerNonAsciiHorizontalWhitespace.types │ ├── scannerNumericLiteral1(target=es2015).js │ ├── scannerNumericLiteral1(target=es2015).symbols │ ├── scannerNumericLiteral1(target=es2015).types │ ├── scannerNumericLiteral1(target=es5).errors.txt │ ├── scannerNumericLiteral1(target=es5).js │ ├── scannerNumericLiteral1(target=es5).symbols │ ├── scannerNumericLiteral1(target=es5).types │ ├── scannerNumericLiteral2(target=es2015).errors.txt │ ├── scannerNumericLiteral2(target=es2015).js │ ├── scannerNumericLiteral2(target=es2015).symbols │ ├── scannerNumericLiteral2(target=es2015).types │ ├── scannerNumericLiteral2(target=es5).errors.txt │ ├── scannerNumericLiteral2(target=es5).js │ ├── scannerNumericLiteral2(target=es5).symbols │ ├── scannerNumericLiteral2(target=es5).types │ ├── scannerNumericLiteral3(target=es2015).errors.txt │ ├── scannerNumericLiteral3(target=es2015).js │ ├── scannerNumericLiteral3(target=es2015).symbols │ ├── scannerNumericLiteral3(target=es2015).types │ ├── scannerNumericLiteral3(target=es5).errors.txt │ ├── scannerNumericLiteral3(target=es5).js │ ├── scannerNumericLiteral3(target=es5).symbols │ ├── scannerNumericLiteral3(target=es5).types │ ├── scannerNumericLiteral4(target=es2015).errors.txt │ ├── scannerNumericLiteral4(target=es2015).js │ ├── scannerNumericLiteral4(target=es2015).symbols │ ├── scannerNumericLiteral4(target=es2015).types │ ├── scannerNumericLiteral4(target=es5).errors.txt │ ├── scannerNumericLiteral4(target=es5).js │ ├── scannerNumericLiteral4(target=es5).symbols │ ├── scannerNumericLiteral4(target=es5).types │ ├── scannerNumericLiteral5(target=es2015).js │ ├── scannerNumericLiteral5(target=es2015).symbols │ ├── scannerNumericLiteral5(target=es2015).types │ ├── scannerNumericLiteral5(target=es5).errors.txt │ ├── scannerNumericLiteral5(target=es5).js │ ├── scannerNumericLiteral5(target=es5).symbols │ ├── scannerNumericLiteral5(target=es5).types │ ├── scannerNumericLiteral6(target=es2015).errors.txt │ ├── scannerNumericLiteral6(target=es2015).js │ ├── scannerNumericLiteral6(target=es2015).symbols │ ├── scannerNumericLiteral6(target=es2015).types │ ├── scannerNumericLiteral6(target=es5).errors.txt │ ├── scannerNumericLiteral6(target=es5).js │ ├── scannerNumericLiteral6(target=es5).symbols │ ├── scannerNumericLiteral6(target=es5).types │ ├── scannerNumericLiteral7(target=es2015).js │ ├── scannerNumericLiteral7(target=es2015).symbols │ ├── scannerNumericLiteral7(target=es2015).types │ ├── scannerNumericLiteral7(target=es5).errors.txt │ ├── scannerNumericLiteral7(target=es5).js │ ├── scannerNumericLiteral7(target=es5).symbols │ ├── scannerNumericLiteral7(target=es5).types │ ├── scannerNumericLiteral8(target=es2015).errors.txt │ ├── scannerNumericLiteral8(target=es2015).js │ ├── scannerNumericLiteral8(target=es2015).symbols │ ├── scannerNumericLiteral8(target=es2015).types │ ├── scannerNumericLiteral8(target=es5).errors.txt │ ├── scannerNumericLiteral8(target=es5).js │ ├── scannerNumericLiteral8(target=es5).symbols │ ├── scannerNumericLiteral8(target=es5).types │ ├── scannerNumericLiteral9(target=es2015).errors.txt │ ├── scannerNumericLiteral9(target=es2015).js │ ├── scannerNumericLiteral9(target=es2015).symbols │ ├── scannerNumericLiteral9(target=es2015).types │ ├── scannerNumericLiteral9(target=es5).errors.txt │ ├── scannerNumericLiteral9(target=es5).js │ ├── scannerNumericLiteral9(target=es5).symbols │ ├── scannerNumericLiteral9(target=es5).types │ ├── scannerS7.2_A1.5_T2.errors.txt │ ├── scannerS7.2_A1.5_T2.js │ ├── scannerS7.2_A1.5_T2.symbols │ ├── scannerS7.2_A1.5_T2.types │ ├── scannerS7.3_A1.1_T2.errors.txt │ ├── scannerS7.3_A1.1_T2.js │ ├── scannerS7.3_A1.1_T2.symbols │ ├── scannerS7.3_A1.1_T2.types │ ├── scannerS7.4_A2_T2.errors.txt │ ├── scannerS7.4_A2_T2.js │ ├── scannerS7.4_A2_T2.symbols │ ├── scannerS7.4_A2_T2.types │ ├── scannerS7.6_A4.2_T1.errors.txt │ ├── scannerS7.6_A4.2_T1.js │ ├── scannerS7.6_A4.2_T1.symbols │ ├── scannerS7.6_A4.2_T1.types │ ├── scannerS7.8.3_A6.1_T1.errors.txt │ ├── scannerS7.8.3_A6.1_T1.js │ ├── scannerS7.8.3_A6.1_T1.symbols │ ├── scannerS7.8.3_A6.1_T1.types │ ├── scannerS7.8.4_A7.1_T4.errors.txt │ ├── scannerS7.8.4_A7.1_T4.js │ ├── scannerS7.8.4_A7.1_T4.symbols │ ├── scannerS7.8.4_A7.1_T4.types │ ├── scannerStringLiteralWithContainingNullCharacter1.js │ ├── scannerStringLiteralWithContainingNullCharacter1.symbols │ ├── scannerStringLiteralWithContainingNullCharacter1.types │ ├── scannerStringLiterals.errors.txt │ ├── scannerStringLiterals.js │ ├── scannerStringLiterals.symbols │ ├── scannerStringLiterals.types │ ├── scannerUnexpectedNullCharacter1.errors.txt │ ├── scannerUnexpectedNullCharacter1.js │ ├── scannerUnexpectedNullCharacter1.symbols │ ├── scannerUnexpectedNullCharacter1.types │ ├── scannerUnicodeEscapeInKeyword1.errors.txt │ ├── scannerUnicodeEscapeInKeyword1.js │ ├── scannerUnicodeEscapeInKeyword1.symbols │ ├── scannerUnicodeEscapeInKeyword1.types │ ├── scannerUnicodeEscapeInKeyword2.errors.txt │ ├── scannerUnicodeEscapeInKeyword2.js │ ├── scannerUnicodeEscapeInKeyword2.symbols │ ├── scannerUnicodeEscapeInKeyword2.types │ ├── scannertest1.errors.txt │ ├── scannertest1.js │ ├── scannertest1.symbols │ ├── scannertest1.types │ ├── scopeCheckClassProperty.js │ ├── scopeCheckClassProperty.symbols │ ├── scopeCheckClassProperty.types │ ├── scopeCheckExtendedClassInsidePublicMethod2.errors.txt │ ├── scopeCheckExtendedClassInsidePublicMethod2.js │ ├── scopeCheckExtendedClassInsidePublicMethod2.symbols │ ├── scopeCheckExtendedClassInsidePublicMethod2.types │ ├── scopeCheckExtendedClassInsideStaticMethod1.errors.txt │ ├── scopeCheckExtendedClassInsideStaticMethod1.js │ ├── scopeCheckExtendedClassInsideStaticMethod1.symbols │ ├── scopeCheckExtendedClassInsideStaticMethod1.types │ ├── scopeCheckInsidePublicMethod1.errors.txt │ ├── scopeCheckInsidePublicMethod1.js │ ├── scopeCheckInsidePublicMethod1.symbols │ ├── scopeCheckInsidePublicMethod1.types │ ├── scopeCheckInsideStaticMethod1.errors.txt │ ├── scopeCheckInsideStaticMethod1.js │ ├── scopeCheckInsideStaticMethod1.symbols │ ├── scopeCheckInsideStaticMethod1.types │ ├── scopeCheckStaticInitializer.errors.txt │ ├── scopeCheckStaticInitializer.js │ ├── scopeCheckStaticInitializer.symbols │ ├── scopeCheckStaticInitializer.types │ ├── scopeOfUnionProperties.baseline.jsonc │ ├── scopeResolutionIdentifiers.js │ ├── scopeResolutionIdentifiers.symbols │ ├── scopeResolutionIdentifiers.types │ ├── scopeTests.errors.txt │ ├── scopeTests.js │ ├── scopeTests.symbols │ ├── scopeTests.types │ ├── scopedPackages.js │ ├── scopedPackages.symbols │ ├── scopedPackages.trace.json │ ├── scopedPackages.types │ ├── scopedPackagesClassic.errors.txt │ ├── scopedPackagesClassic.js │ ├── scopedPackagesClassic.symbols │ ├── scopedPackagesClassic.trace.json │ ├── scopedPackagesClassic.types │ ├── scopingInCatchBlocks.errors.txt │ ├── scopingInCatchBlocks.js │ ├── scopingInCatchBlocks.symbols │ ├── scopingInCatchBlocks.types │ ├── seeTag1.js │ ├── seeTag1.symbols │ ├── seeTag1.types │ ├── seeTag2.js │ ├── seeTag2.symbols │ ├── seeTag2.types │ ├── seeTag3.js │ ├── seeTag3.symbols │ ├── seeTag3.types │ ├── seeTag4.js │ ├── seeTag4.symbols │ ├── seeTag4.types │ ├── selfInCallback.js │ ├── selfInCallback.symbols │ ├── selfInCallback.types │ ├── selfInLambdas.js │ ├── selfInLambdas.symbols │ ├── selfInLambdas.types │ ├── selfNameAndImportsEmitInclusion.js │ ├── selfNameModuleAugmentation.symbols │ ├── selfNameModuleAugmentation.trace.json │ ├── selfNameModuleAugmentation.types │ ├── selfRef.errors.txt │ ├── selfRef.js │ ├── selfRef.symbols │ ├── selfRef.types │ ├── selfReference.js │ ├── selfReference.symbols │ ├── selfReference.types │ ├── selfReferencesInFunctionParameters.errors.txt │ ├── selfReferencesInFunctionParameters.js │ ├── selfReferencesInFunctionParameters.symbols │ ├── selfReferencesInFunctionParameters.types │ ├── selfReferencingFile.errors.txt │ ├── selfReferencingFile.js │ ├── selfReferencingFile.symbols │ ├── selfReferencingFile.types │ ├── selfReferencingFile2.errors.txt │ ├── selfReferencingFile2.js │ ├── selfReferencingFile2.symbols │ ├── selfReferencingFile2.types │ ├── selfReferencingFile3.errors.txt │ ├── selfReferencingFile3.js │ ├── selfReferencingFile3.symbols │ ├── selfReferencingFile3.types │ ├── selfReferencingSpreadInLoop.errors.txt │ ├── selfReferencingSpreadInLoop.js │ ├── selfReferencingSpreadInLoop.symbols │ ├── selfReferencingSpreadInLoop.types │ ├── selfReferencingTypeReferenceInference.js │ ├── selfReferencingTypeReferenceInference.symbols │ ├── selfReferencingTypeReferenceInference.types │ ├── selfReferentialDefaultNoStackOverflow.errors.txt │ ├── selfReferentialDefaultNoStackOverflow.js │ ├── selfReferentialDefaultNoStackOverflow.symbols │ ├── selfReferentialDefaultNoStackOverflow.types │ ├── selfReferentialFunctionType.js │ ├── selfReferentialFunctionType.symbols │ ├── selfReferentialFunctionType.types │ ├── semicolonsInModuleDeclarations.errors.txt │ ├── semicolonsInModuleDeclarations.js │ ├── semicolonsInModuleDeclarations.symbols │ ├── semicolonsInModuleDeclarations.types │ ├── separate1-1.errors.txt │ ├── separate1-1.js │ ├── separate1-1.symbols │ ├── separate1-1.types │ ├── separate1-2.js │ ├── separate1-2.symbols │ ├── separate1-2.types │ ├── setMethods.errors.txt │ ├── setMethods.js │ ├── setMethods.symbols │ ├── setMethods.types │ ├── setterBeforeGetter.errors.txt │ ├── setterBeforeGetter.js │ ├── setterBeforeGetter.symbols │ ├── setterBeforeGetter.types │ ├── setterWithReturn.errors.txt │ ├── setterWithReturn.js │ ├── setterWithReturn.symbols │ ├── setterWithReturn.types │ ├── shadowPrivateMembers.errors.txt │ ├── shadowPrivateMembers.js │ ├── shadowPrivateMembers.symbols │ ├── shadowPrivateMembers.types │ ├── shadowedFunctionScopedVariablesByBlockScopedOnes.errors.txt │ ├── shadowedFunctionScopedVariablesByBlockScopedOnes.symbols │ ├── shadowedFunctionScopedVariablesByBlockScopedOnes.types │ ├── shadowedInternalModule.errors.txt │ ├── shadowedInternalModule.js │ ├── shadowedInternalModule.symbols │ ├── shadowedInternalModule.types │ ├── shadowedReservedCompilerDeclarationsWithNoEmit(target=es2015).errors.txt │ ├── shadowedReservedCompilerDeclarationsWithNoEmit(target=es2015).symbols │ ├── shadowedReservedCompilerDeclarationsWithNoEmit(target=es2015).types │ ├── shadowedReservedCompilerDeclarationsWithNoEmit(target=es5).errors.txt │ ├── shadowedReservedCompilerDeclarationsWithNoEmit(target=es5).symbols │ ├── shadowedReservedCompilerDeclarationsWithNoEmit(target=es5).types │ ├── shadowingViaLocalValue.errors.txt │ ├── shadowingViaLocalValue.js │ ├── shadowingViaLocalValue.symbols │ ├── shadowingViaLocalValue.types │ ├── shadowingViaLocalValueOrBindingElement.errors.txt │ ├── shadowingViaLocalValueOrBindingElement.js │ ├── shadowingViaLocalValueOrBindingElement.symbols │ ├── shadowingViaLocalValueOrBindingElement.types │ ├── sharedMemory.symbols │ ├── sharedMemory.types │ ├── shebang.js │ ├── shebang.symbols │ ├── shebang.types │ ├── shebangBeforeReferences.js │ ├── shebangBeforeReferences.symbols │ ├── shebangBeforeReferences.types │ ├── shebangError.errors.txt │ ├── shebangError.js │ ├── shebangError.symbols │ ├── shebangError.types │ ├── shorthand-property-es5-es6(target=es2015).errors.txt │ ├── shorthand-property-es5-es6(target=es2015).js │ ├── shorthand-property-es5-es6(target=es2015).symbols │ ├── shorthand-property-es5-es6(target=es2015).types │ ├── shorthand-property-es5-es6(target=es5).errors.txt │ ├── shorthand-property-es5-es6(target=es5).js │ ├── shorthand-property-es5-es6(target=es5).symbols │ ├── shorthand-property-es5-es6(target=es5).types │ ├── shorthand-property-es6-amd.errors.txt │ ├── shorthand-property-es6-amd.js │ ├── shorthand-property-es6-amd.symbols │ ├── shorthand-property-es6-amd.types │ ├── shorthand-property-es6-es6.errors.txt │ ├── shorthand-property-es6-es6.js │ ├── shorthand-property-es6-es6.symbols │ ├── shorthand-property-es6-es6.types │ ├── shorthandOfExportedEntity01_targetES2015_CommonJS.js │ ├── shorthandOfExportedEntity01_targetES2015_CommonJS.symbols │ ├── shorthandOfExportedEntity01_targetES2015_CommonJS.types │ ├── shorthandOfExportedEntity02_targetES5_CommonJS(target=es2015).js │ ├── shorthandOfExportedEntity02_targetES5_CommonJS(target=es2015).symbols │ ├── shorthandOfExportedEntity02_targetES5_CommonJS(target=es2015).types │ ├── shorthandOfExportedEntity02_targetES5_CommonJS(target=es5).errors.txt │ ├── shorthandOfExportedEntity02_targetES5_CommonJS(target=es5).js │ ├── shorthandOfExportedEntity02_targetES5_CommonJS(target=es5).symbols │ ├── shorthandOfExportedEntity02_targetES5_CommonJS(target=es5).types │ ├── shorthandPropertyAssignmentInES6Module.errors.txt │ ├── shorthandPropertyAssignmentInES6Module.js │ ├── shorthandPropertyAssignmentInES6Module.symbols │ ├── shorthandPropertyAssignmentInES6Module.types │ ├── shorthandPropertyAssignmentsInDestructuring(target=es2015).errors.txt │ ├── shorthandPropertyAssignmentsInDestructuring(target=es2015).js │ ├── shorthandPropertyAssignmentsInDestructuring(target=es2015).symbols │ ├── shorthandPropertyAssignmentsInDestructuring(target=es2015).types │ ├── shorthandPropertyAssignmentsInDestructuring(target=es5).errors.txt │ ├── shorthandPropertyAssignmentsInDestructuring(target=es5).js │ ├── shorthandPropertyAssignmentsInDestructuring(target=es5).symbols │ ├── shorthandPropertyAssignmentsInDestructuring(target=es5).types │ ├── shorthandPropertyAssignmentsInDestructuring_ES6.errors.txt │ ├── shorthandPropertyAssignmentsInDestructuring_ES6.js │ ├── shorthandPropertyAssignmentsInDestructuring_ES6.symbols │ ├── shorthandPropertyAssignmentsInDestructuring_ES6.types │ ├── shorthandPropertyUndefined.errors.txt │ ├── shorthandPropertyUndefined.js │ ├── shorthandPropertyUndefined.symbols │ ├── shorthandPropertyUndefined.types │ ├── shouldNotPrintNullEscapesIntoOctalLiterals.js │ ├── shouldNotPrintNullEscapesIntoOctalLiterals.symbols │ ├── shouldNotPrintNullEscapesIntoOctalLiterals.types │ ├── sideEffectImports1(module=commonjs,nouncheckedsideeffectimports=false).js │ ├── sideEffectImports1(module=commonjs,nouncheckedsideeffectimports=false).symbols │ ├── sideEffectImports1(module=commonjs,nouncheckedsideeffectimports=false).types │ ├── sideEffectImports1(module=commonjs,nouncheckedsideeffectimports=true).errors.txt │ ├── sideEffectImports1(module=commonjs,nouncheckedsideeffectimports=true).js │ ├── sideEffectImports1(module=commonjs,nouncheckedsideeffectimports=true).symbols │ ├── sideEffectImports1(module=commonjs,nouncheckedsideeffectimports=true).types │ ├── sideEffectImports1(module=nodenext,nouncheckedsideeffectimports=false).js │ ├── sideEffectImports1(module=nodenext,nouncheckedsideeffectimports=false).symbols │ ├── sideEffectImports1(module=nodenext,nouncheckedsideeffectimports=false).types │ ├── sideEffectImports1(module=nodenext,nouncheckedsideeffectimports=true).errors.txt │ ├── sideEffectImports1(module=nodenext,nouncheckedsideeffectimports=true).js │ ├── sideEffectImports1(module=nodenext,nouncheckedsideeffectimports=true).symbols │ ├── sideEffectImports1(module=nodenext,nouncheckedsideeffectimports=true).types │ ├── sideEffectImports1(module=preserve,nouncheckedsideeffectimports=false).js │ ├── sideEffectImports1(module=preserve,nouncheckedsideeffectimports=false).symbols │ ├── sideEffectImports1(module=preserve,nouncheckedsideeffectimports=false).types │ ├── sideEffectImports1(module=preserve,nouncheckedsideeffectimports=true).errors.txt │ ├── sideEffectImports1(module=preserve,nouncheckedsideeffectimports=true).js │ ├── sideEffectImports1(module=preserve,nouncheckedsideeffectimports=true).symbols │ ├── sideEffectImports1(module=preserve,nouncheckedsideeffectimports=true).types │ ├── sideEffectImports2(noimplicitany=false,nouncheckedsideeffectimports=false).symbols │ ├── sideEffectImports2(noimplicitany=false,nouncheckedsideeffectimports=false).types │ ├── sideEffectImports2(noimplicitany=false,nouncheckedsideeffectimports=true).symbols │ ├── sideEffectImports2(noimplicitany=false,nouncheckedsideeffectimports=true).types │ ├── sideEffectImports2(noimplicitany=true,nouncheckedsideeffectimports=false).symbols │ ├── sideEffectImports2(noimplicitany=true,nouncheckedsideeffectimports=false).types │ ├── sideEffectImports2(noimplicitany=true,nouncheckedsideeffectimports=true).symbols │ ├── sideEffectImports2(noimplicitany=true,nouncheckedsideeffectimports=true).types │ ├── sideEffectImports3(moduledetection=auto,nouncheckedsideeffectimports=false).js │ ├── sideEffectImports3(moduledetection=auto,nouncheckedsideeffectimports=false).symbols │ ├── sideEffectImports3(moduledetection=auto,nouncheckedsideeffectimports=false).types │ ├── sideEffectImports3(moduledetection=auto,nouncheckedsideeffectimports=true).js │ ├── sideEffectImports3(moduledetection=auto,nouncheckedsideeffectimports=true).symbols │ ├── sideEffectImports3(moduledetection=auto,nouncheckedsideeffectimports=true).types │ ├── sideEffectImports3(moduledetection=force,nouncheckedsideeffectimports=false).js │ ├── sideEffectImports3(moduledetection=force,nouncheckedsideeffectimports=false).symbols │ ├── sideEffectImports3(moduledetection=force,nouncheckedsideeffectimports=false).types │ ├── sideEffectImports3(moduledetection=force,nouncheckedsideeffectimports=true).js │ ├── sideEffectImports3(moduledetection=force,nouncheckedsideeffectimports=true).symbols │ ├── sideEffectImports3(moduledetection=force,nouncheckedsideeffectimports=true).types │ ├── sideEffectImports3(moduledetection=legacy,nouncheckedsideeffectimports=false).js │ ├── sideEffectImports3(moduledetection=legacy,nouncheckedsideeffectimports=false).symbols │ ├── sideEffectImports3(moduledetection=legacy,nouncheckedsideeffectimports=false).types │ ├── sideEffectImports3(moduledetection=legacy,nouncheckedsideeffectimports=true).js │ ├── sideEffectImports3(moduledetection=legacy,nouncheckedsideeffectimports=true).symbols │ ├── sideEffectImports3(moduledetection=legacy,nouncheckedsideeffectimports=true).types │ ├── sideEffectImports4(nouncheckedsideeffectimports=false).js │ ├── sideEffectImports4(nouncheckedsideeffectimports=false).symbols │ ├── sideEffectImports4(nouncheckedsideeffectimports=false).types │ ├── sideEffectImports4(nouncheckedsideeffectimports=true).js │ ├── sideEffectImports4(nouncheckedsideeffectimports=true).symbols │ ├── sideEffectImports4(nouncheckedsideeffectimports=true).types │ ├── sigantureIsSubTypeIfTheyAreIdentical.errors.txt │ ├── sigantureIsSubTypeIfTheyAreIdentical.js │ ├── sigantureIsSubTypeIfTheyAreIdentical.symbols │ ├── sigantureIsSubTypeIfTheyAreIdentical.types │ ├── signatureCombiningRestParameters1.errors.txt │ ├── signatureCombiningRestParameters1.symbols │ ├── signatureCombiningRestParameters1.types │ ├── signatureCombiningRestParameters2.symbols │ ├── signatureCombiningRestParameters2.types │ ├── signatureCombiningRestParameters3.errors.txt │ ├── signatureCombiningRestParameters3.symbols │ ├── signatureCombiningRestParameters3.types │ ├── signatureCombiningRestParameters4.errors.txt │ ├── signatureCombiningRestParameters4.symbols │ ├── signatureCombiningRestParameters4.types │ ├── signatureCombiningRestParameters5.errors.txt │ ├── signatureCombiningRestParameters5.symbols │ ├── signatureCombiningRestParameters5.types │ ├── signatureHelpAfterParameter.baseline │ ├── signatureHelpCommentsClass.baseline │ ├── signatureHelpCommentsClassMembers.baseline │ ├── signatureHelpCommentsCommentParsing.baseline │ ├── signatureHelpCommentsFunctionDeclaration.baseline │ ├── signatureHelpCommentsFunctionExpression.baseline │ ├── signatureHelpConstructorCallParamProperties.baseline │ ├── signatureHelpExpandedRestTuplesLocalLabels1.baseline │ ├── signatureHelpInferenceJsDocImportTag.baseline │ ├── signatureHelpIteratorNext.baseline │ ├── signatureHelpJSDocCallbackTag.baseline │ ├── signatureHelpJSDocTags.baseline │ ├── signatureHelpJSMissingPropertyAccess.baseline │ ├── signatureHelpRestArgs1.baseline │ ├── signatureHelpRestArgs2.baseline │ ├── signatureHelpRestArgs3.baseline │ ├── signatureHelpSkippedArgs1.baseline │ ├── signatureHelpTypeArguments2.baseline │ ├── signatureHelpWithUnknown.baseline │ ├── signatureHelp_unionType.baseline │ ├── signatureInstantiationWithRecursiveConstraints.js │ ├── signatureInstantiationWithRecursiveConstraints.symbols │ ├── signatureInstantiationWithRecursiveConstraints.types │ ├── signatureLengthMismatchCall.errors.txt │ ├── signatureLengthMismatchCall.js │ ├── signatureLengthMismatchCall.symbols │ ├── signatureLengthMismatchCall.types │ ├── signatureLengthMismatchInOverload.errors.txt │ ├── signatureLengthMismatchInOverload.js │ ├── signatureLengthMismatchInOverload.symbols │ ├── signatureLengthMismatchInOverload.types │ ├── signatureLengthMismatchWithOptionalParameters.errors.txt │ ├── signatureLengthMismatchWithOptionalParameters.js │ ├── signatureLengthMismatchWithOptionalParameters.symbols │ ├── signatureLengthMismatchWithOptionalParameters.types │ ├── signatureOverloadsWithComments.js │ ├── signatureOverloadsWithComments.symbols │ ├── signatureOverloadsWithComments.types │ ├── signaturesUseJSDocForOptionalParameters.errors.txt │ ├── signaturesUseJSDocForOptionalParameters.js │ ├── signaturesUseJSDocForOptionalParameters.symbols │ ├── signaturesUseJSDocForOptionalParameters.types │ ├── silentNeverPropagation.js │ ├── silentNeverPropagation.symbols │ ├── silentNeverPropagation.types │ ├── simpleArrowFunctionParameterReferencedInObjectLiteral1.js │ ├── simpleArrowFunctionParameterReferencedInObjectLiteral1.symbols │ ├── simpleArrowFunctionParameterReferencedInObjectLiteral1.types │ ├── simpleRecursionWithBaseCase1.errors.txt │ ├── simpleRecursionWithBaseCase1.js │ ├── simpleRecursionWithBaseCase1.symbols │ ├── simpleRecursionWithBaseCase1.types │ ├── simpleRecursionWithBaseCase2.symbols │ ├── simpleRecursionWithBaseCase2.types │ ├── simpleRecursionWithBaseCase3.symbols │ ├── simpleRecursionWithBaseCase3.types │ ├── simpleRecursionWithBaseCase4.symbols │ ├── simpleRecursionWithBaseCase4.types │ ├── simplifyingConditionalWithInteriorConditionalIsRelated.js │ ├── simplifyingConditionalWithInteriorConditionalIsRelated.symbols │ ├── simplifyingConditionalWithInteriorConditionalIsRelated.types │ ├── singletonLabeledTuple.js │ ├── singletonLabeledTuple.symbols │ ├── singletonLabeledTuple.types │ ├── skipJSDocParsing/ │ │ ├── deprecated-ParseAll-file.js.diff │ │ ├── deprecated-ParseAll-file.ts.diff │ │ ├── deprecated-ParseForTypeErrors-file.js.diff │ │ ├── deprecated-ParseForTypeErrors-file.ts.diff │ │ ├── deprecated-ParseForTypeInfo-file.js.diff │ │ ├── deprecated-ParseForTypeInfo-file.ts.diff │ │ ├── deprecated-ParseNone-file.js.diff │ │ ├── deprecated-ParseNone-file.ts.diff │ │ ├── link-ParseAll-file.js.diff │ │ ├── link-ParseAll-file.ts.diff │ │ ├── link-ParseForTypeErrors-file.js.diff │ │ ├── link-ParseForTypeErrors-file.ts.diff │ │ ├── link-ParseForTypeInfo-file.js.diff │ │ ├── link-ParseForTypeInfo-file.ts.diff │ │ ├── link-ParseNone-file.js.diff │ │ ├── link-ParseNone-file.ts.diff │ │ ├── see-ParseAll-file.js.diff │ │ ├── see-ParseAll-file.ts.diff │ │ ├── see-ParseForTypeErrors-file.js.diff │ │ ├── see-ParseForTypeErrors-file.ts.diff │ │ ├── see-ParseForTypeInfo-file.js.diff │ │ ├── see-ParseForTypeInfo-file.ts.diff │ │ ├── see-ParseNone-file.js.diff │ │ └── see-ParseNone-file.ts.diff │ ├── slashBeforeVariableDeclaration1.errors.txt │ ├── slashBeforeVariableDeclaration1.js │ ├── slashBeforeVariableDeclaration1.symbols │ ├── slashBeforeVariableDeclaration1.types │ ├── sliceResultCast.js │ ├── sliceResultCast.symbols │ ├── sliceResultCast.types │ ├── slightlyIndirectedDeepObjectLiteralElaborations.errors.txt │ ├── slightlyIndirectedDeepObjectLiteralElaborations.js │ ├── slightlyIndirectedDeepObjectLiteralElaborations.symbols │ ├── slightlyIndirectedDeepObjectLiteralElaborations.types │ ├── smartSelection_JSDoc.baseline │ ├── smartSelection_JSDocTags1.baseline │ ├── smartSelection_JSDocTags10.baseline │ ├── smartSelection_JSDocTags11.baseline │ ├── smartSelection_JSDocTags12.baseline │ ├── smartSelection_JSDocTags13.baseline │ ├── smartSelection_JSDocTags2.baseline │ ├── smartSelection_JSDocTags3.baseline │ ├── smartSelection_JSDocTags4.baseline │ ├── smartSelection_JSDocTags5.baseline │ ├── smartSelection_JSDocTags6.baseline │ ├── smartSelection_JSDocTags7.baseline │ ├── smartSelection_JSDocTags8.baseline │ ├── smartSelection_JSDocTags9.baseline │ ├── smartSelection_behindCaret.baseline │ ├── smartSelection_bindingPatterns.baseline │ ├── smartSelection_comment1.baseline │ ├── smartSelection_comment2.baseline │ ├── smartSelection_complex.baseline │ ├── smartSelection_emptyRanges.baseline │ ├── smartSelection_function1.baseline │ ├── smartSelection_function2.baseline │ ├── smartSelection_function3.baseline │ ├── smartSelection_functionParams1.baseline │ ├── smartSelection_functionParams2.baseline │ ├── smartSelection_imports.baseline │ ├── smartSelection_lastBlankLine.baseline │ ├── smartSelection_loneVariableDeclaration.baseline │ ├── smartSelection_mappedTypes.baseline │ ├── smartSelection_objectTypes.baseline │ ├── smartSelection_punctuationPriority.baseline │ ├── smartSelection_simple1.baseline │ ├── smartSelection_simple2.baseline │ ├── smartSelection_stringLiteral.baseline │ ├── smartSelection_templateStrings.baseline │ ├── smartSelection_templateStrings2.baseline │ ├── sourceFileMergeWithFunction.js │ ├── sourceFileMergeWithFunction.symbols │ ├── sourceFileMergeWithFunction.types │ ├── sourceMap-Comment1(target=es2015).js │ ├── sourceMap-Comment1(target=es2015).sourcemap.txt │ ├── sourceMap-Comment1(target=es2015).symbols │ ├── sourceMap-Comment1(target=es2015).types │ ├── sourceMap-Comment1(target=es5).errors.txt │ ├── sourceMap-Comment1(target=es5).js │ ├── sourceMap-Comment1(target=es5).sourcemap.txt │ ├── sourceMap-Comment1(target=es5).symbols │ ├── sourceMap-Comment1(target=es5).types │ ├── sourceMap-Comments(target=es2015).js │ ├── sourceMap-Comments(target=es2015).sourcemap.txt │ ├── sourceMap-Comments(target=es2015).symbols │ ├── sourceMap-Comments(target=es2015).types │ ├── sourceMap-Comments(target=es5).errors.txt │ ├── sourceMap-Comments(target=es5).js │ ├── sourceMap-Comments(target=es5).sourcemap.txt │ ├── sourceMap-Comments(target=es5).symbols │ ├── sourceMap-Comments(target=es5).types │ ├── sourceMap-Comments2(target=es2015).js │ ├── sourceMap-Comments2(target=es2015).sourcemap.txt │ ├── sourceMap-Comments2(target=es2015).symbols │ ├── sourceMap-Comments2(target=es2015).types │ ├── sourceMap-Comments2(target=es5).errors.txt │ ├── sourceMap-Comments2(target=es5).js │ ├── sourceMap-Comments2(target=es5).sourcemap.txt │ ├── sourceMap-Comments2(target=es5).symbols │ ├── sourceMap-Comments2(target=es5).types │ ├── sourceMap-EmptyFile1(target=es2015).js │ ├── sourceMap-EmptyFile1(target=es2015).sourcemap.txt │ ├── sourceMap-EmptyFile1(target=es2015).symbols │ ├── sourceMap-EmptyFile1(target=es2015).types │ ├── sourceMap-EmptyFile1(target=es5).errors.txt │ ├── sourceMap-EmptyFile1(target=es5).js │ ├── sourceMap-EmptyFile1(target=es5).sourcemap.txt │ ├── sourceMap-EmptyFile1(target=es5).symbols │ ├── sourceMap-EmptyFile1(target=es5).types │ ├── sourceMap-FileWithComments.js │ ├── sourceMap-FileWithComments.sourcemap.txt │ ├── sourceMap-FileWithComments.symbols │ ├── sourceMap-FileWithComments.types │ ├── sourceMap-InterfacePrecedingVariableDeclaration1(target=es2015).js │ ├── sourceMap-InterfacePrecedingVariableDeclaration1(target=es2015).sourcemap.txt │ ├── sourceMap-InterfacePrecedingVariableDeclaration1(target=es2015).symbols │ ├── sourceMap-InterfacePrecedingVariableDeclaration1(target=es2015).types │ ├── sourceMap-InterfacePrecedingVariableDeclaration1(target=es5).errors.txt │ ├── sourceMap-InterfacePrecedingVariableDeclaration1(target=es5).js │ ├── sourceMap-InterfacePrecedingVariableDeclaration1(target=es5).sourcemap.txt │ ├── sourceMap-InterfacePrecedingVariableDeclaration1(target=es5).symbols │ ├── sourceMap-InterfacePrecedingVariableDeclaration1(target=es5).types │ ├── sourceMap-LineBreaks(target=es2015).js │ ├── sourceMap-LineBreaks(target=es2015).sourcemap.txt │ ├── sourceMap-LineBreaks(target=es2015).symbols │ ├── sourceMap-LineBreaks(target=es2015).types │ ├── sourceMap-LineBreaks(target=es5).errors.txt │ ├── sourceMap-LineBreaks(target=es5).js │ ├── sourceMap-LineBreaks(target=es5).sourcemap.txt │ ├── sourceMap-LineBreaks(target=es5).symbols │ ├── sourceMap-LineBreaks(target=es5).types │ ├── sourceMap-NewLine1(target=es2015).js │ ├── sourceMap-NewLine1(target=es2015).sourcemap.txt │ ├── sourceMap-NewLine1(target=es2015).symbols │ ├── sourceMap-NewLine1(target=es2015).types │ ├── sourceMap-NewLine1(target=es5).errors.txt │ ├── sourceMap-NewLine1(target=es5).js │ ├── sourceMap-NewLine1(target=es5).sourcemap.txt │ ├── sourceMap-NewLine1(target=es5).symbols │ ├── sourceMap-NewLine1(target=es5).types │ ├── sourceMap-SemiColon1(target=es2015).js │ ├── sourceMap-SemiColon1(target=es2015).sourcemap.txt │ ├── sourceMap-SemiColon1(target=es2015).symbols │ ├── sourceMap-SemiColon1(target=es2015).types │ ├── sourceMap-SemiColon1(target=es5).errors.txt │ ├── sourceMap-SemiColon1(target=es5).js │ ├── sourceMap-SemiColon1(target=es5).sourcemap.txt │ ├── sourceMap-SemiColon1(target=es5).symbols │ ├── sourceMap-SemiColon1(target=es5).types │ ├── sourceMap-SingleSpace1(target=es2015).js │ ├── sourceMap-SingleSpace1(target=es2015).sourcemap.txt │ ├── sourceMap-SingleSpace1(target=es2015).symbols │ ├── sourceMap-SingleSpace1(target=es2015).types │ ├── sourceMap-SingleSpace1(target=es5).errors.txt │ ├── sourceMap-SingleSpace1(target=es5).js │ ├── sourceMap-SingleSpace1(target=es5).sourcemap.txt │ ├── sourceMap-SingleSpace1(target=es5).symbols │ ├── sourceMap-SingleSpace1(target=es5).types │ ├── sourceMap-SkippedNode.js │ ├── sourceMap-SkippedNode.sourcemap.txt │ ├── sourceMap-SkippedNode.symbols │ ├── sourceMap-SkippedNode.types │ ├── sourceMap-StringLiteralWithNewLine(target=es2015).js │ ├── sourceMap-StringLiteralWithNewLine(target=es2015).sourcemap.txt │ ├── sourceMap-StringLiteralWithNewLine(target=es2015).symbols │ ├── sourceMap-StringLiteralWithNewLine(target=es2015).types │ ├── sourceMap-StringLiteralWithNewLine(target=es5).errors.txt │ ├── sourceMap-StringLiteralWithNewLine(target=es5).js │ ├── sourceMap-StringLiteralWithNewLine(target=es5).sourcemap.txt │ ├── sourceMap-StringLiteralWithNewLine(target=es5).symbols │ ├── sourceMap-StringLiteralWithNewLine(target=es5).types │ ├── sourceMapForFunctionInInternalModuleWithCommentPrecedingStatement01.js │ ├── sourceMapForFunctionInInternalModuleWithCommentPrecedingStatement01.sourcemap.txt │ ├── sourceMapForFunctionInInternalModuleWithCommentPrecedingStatement01.symbols │ ├── sourceMapForFunctionInInternalModuleWithCommentPrecedingStatement01.types │ ├── sourceMapForFunctionWithCommentPrecedingStatement01.js │ ├── sourceMapForFunctionWithCommentPrecedingStatement01.sourcemap.txt │ ├── sourceMapForFunctionWithCommentPrecedingStatement01.symbols │ ├── sourceMapForFunctionWithCommentPrecedingStatement01.types │ ├── sourceMapPercentEncoded.js │ ├── sourceMapPercentEncoded.sourcemap.txt │ ├── sourceMapPercentEncoded.symbols │ ├── sourceMapPercentEncoded.types │ ├── sourceMapSample.errors.txt │ ├── sourceMapSample.js │ ├── sourceMapSample.sourcemap.txt │ ├── sourceMapSample.symbols │ ├── sourceMapSample.types │ ├── sourceMapValidationClass(target=es2015).errors.txt │ ├── sourceMapValidationClass(target=es2015).js │ ├── sourceMapValidationClass(target=es2015).sourcemap.txt │ ├── sourceMapValidationClass(target=es2015).symbols │ ├── sourceMapValidationClass(target=es2015).types │ ├── sourceMapValidationClass(target=es5).errors.txt │ ├── sourceMapValidationClass(target=es5).js │ ├── sourceMapValidationClass(target=es5).sourcemap.txt │ ├── sourceMapValidationClass(target=es5).symbols │ ├── sourceMapValidationClass(target=es5).types │ ├── sourceMapValidationClassWithDefaultConstructor.js │ ├── sourceMapValidationClassWithDefaultConstructor.sourcemap.txt │ ├── sourceMapValidationClassWithDefaultConstructor.symbols │ ├── sourceMapValidationClassWithDefaultConstructor.types │ ├── sourceMapValidationClassWithDefaultConstructorAndCapturedThisStatement.js │ ├── sourceMapValidationClassWithDefaultConstructorAndCapturedThisStatement.sourcemap.txt │ ├── sourceMapValidationClassWithDefaultConstructorAndCapturedThisStatement.symbols │ ├── sourceMapValidationClassWithDefaultConstructorAndCapturedThisStatement.types │ ├── sourceMapValidationClassWithDefaultConstructorAndExtendsClause.js │ ├── sourceMapValidationClassWithDefaultConstructorAndExtendsClause.sourcemap.txt │ ├── sourceMapValidationClassWithDefaultConstructorAndExtendsClause.symbols │ ├── sourceMapValidationClassWithDefaultConstructorAndExtendsClause.types │ ├── sourceMapValidationClasses.js │ ├── sourceMapValidationClasses.sourcemap.txt │ ├── sourceMapValidationClasses.symbols │ ├── sourceMapValidationClasses.types │ ├── sourceMapValidationDebugger.js │ ├── sourceMapValidationDebugger.sourcemap.txt │ ├── sourceMapValidationDebugger.symbols │ ├── sourceMapValidationDebugger.types │ ├── sourceMapValidationDecorators(target=es2015).errors.txt │ ├── sourceMapValidationDecorators(target=es2015).js │ ├── sourceMapValidationDecorators(target=es2015).sourcemap.txt │ ├── sourceMapValidationDecorators(target=es2015).symbols │ ├── sourceMapValidationDecorators(target=es2015).types │ ├── sourceMapValidationDecorators(target=es5).errors.txt │ ├── sourceMapValidationDecorators(target=es5).js │ ├── sourceMapValidationDecorators(target=es5).sourcemap.txt │ ├── sourceMapValidationDecorators(target=es5).symbols │ ├── sourceMapValidationDecorators(target=es5).types │ ├── sourceMapValidationDestructuringForArrayBindingPattern(target=es2015).errors.txt │ ├── sourceMapValidationDestructuringForArrayBindingPattern(target=es2015).js │ ├── sourceMapValidationDestructuringForArrayBindingPattern(target=es2015).sourcemap.txt │ ├── sourceMapValidationDestructuringForArrayBindingPattern(target=es2015).symbols │ ├── sourceMapValidationDestructuringForArrayBindingPattern(target=es2015).types │ ├── sourceMapValidationDestructuringForArrayBindingPattern(target=es5).errors.txt │ ├── sourceMapValidationDestructuringForArrayBindingPattern(target=es5).js │ ├── sourceMapValidationDestructuringForArrayBindingPattern(target=es5).sourcemap.txt │ ├── sourceMapValidationDestructuringForArrayBindingPattern(target=es5).symbols │ ├── sourceMapValidationDestructuringForArrayBindingPattern(target=es5).types │ ├── sourceMapValidationDestructuringForArrayBindingPattern2(target=es2015).js │ ├── sourceMapValidationDestructuringForArrayBindingPattern2(target=es2015).sourcemap.txt │ ├── sourceMapValidationDestructuringForArrayBindingPattern2(target=es2015).symbols │ ├── sourceMapValidationDestructuringForArrayBindingPattern2(target=es2015).types │ ├── sourceMapValidationDestructuringForArrayBindingPattern2(target=es5).errors.txt │ ├── sourceMapValidationDestructuringForArrayBindingPattern2(target=es5).js │ ├── sourceMapValidationDestructuringForArrayBindingPattern2(target=es5).sourcemap.txt │ ├── sourceMapValidationDestructuringForArrayBindingPattern2(target=es5).symbols │ ├── sourceMapValidationDestructuringForArrayBindingPattern2(target=es5).types │ ├── sourceMapValidationDestructuringForArrayBindingPatternDefaultValues(target=es2015).js │ ├── sourceMapValidationDestructuringForArrayBindingPatternDefaultValues(target=es2015).sourcemap.txt │ ├── sourceMapValidationDestructuringForArrayBindingPatternDefaultValues(target=es2015).symbols │ ├── sourceMapValidationDestructuringForArrayBindingPatternDefaultValues(target=es2015).types │ ├── sourceMapValidationDestructuringForArrayBindingPatternDefaultValues(target=es5).errors.txt │ ├── sourceMapValidationDestructuringForArrayBindingPatternDefaultValues(target=es5).js │ ├── sourceMapValidationDestructuringForArrayBindingPatternDefaultValues(target=es5).sourcemap.txt │ ├── sourceMapValidationDestructuringForArrayBindingPatternDefaultValues(target=es5).symbols │ ├── sourceMapValidationDestructuringForArrayBindingPatternDefaultValues(target=es5).types │ ├── sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2(target=es2015).js │ ├── sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2(target=es2015).sourcemap.txt │ ├── sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2(target=es2015).symbols │ ├── sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2(target=es2015).types │ ├── sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2(target=es5).errors.txt │ ├── sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2(target=es5).js │ ├── sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2(target=es5).sourcemap.txt │ ├── sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2(target=es5).symbols │ ├── sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2(target=es5).types │ ├── sourceMapValidationDestructuringForObjectBindingPattern.js │ ├── sourceMapValidationDestructuringForObjectBindingPattern.sourcemap.txt │ ├── sourceMapValidationDestructuringForObjectBindingPattern.symbols │ ├── sourceMapValidationDestructuringForObjectBindingPattern.types │ ├── sourceMapValidationDestructuringForObjectBindingPattern2.js │ ├── sourceMapValidationDestructuringForObjectBindingPattern2.sourcemap.txt │ ├── sourceMapValidationDestructuringForObjectBindingPattern2.symbols │ ├── sourceMapValidationDestructuringForObjectBindingPattern2.types │ ├── sourceMapValidationDestructuringForObjectBindingPatternDefaultValues.js │ ├── sourceMapValidationDestructuringForObjectBindingPatternDefaultValues.sourcemap.txt │ ├── sourceMapValidationDestructuringForObjectBindingPatternDefaultValues.symbols │ ├── sourceMapValidationDestructuringForObjectBindingPatternDefaultValues.types │ ├── sourceMapValidationDestructuringForObjectBindingPatternDefaultValues2.js │ ├── sourceMapValidationDestructuringForObjectBindingPatternDefaultValues2.sourcemap.txt │ ├── sourceMapValidationDestructuringForObjectBindingPatternDefaultValues2.symbols │ ├── sourceMapValidationDestructuringForObjectBindingPatternDefaultValues2.types │ ├── sourceMapValidationDestructuringForOfArrayBindingPattern(target=es2015).js │ ├── sourceMapValidationDestructuringForOfArrayBindingPattern(target=es2015).sourcemap.txt │ ├── sourceMapValidationDestructuringForOfArrayBindingPattern(target=es2015).symbols │ ├── sourceMapValidationDestructuringForOfArrayBindingPattern(target=es2015).types │ ├── sourceMapValidationDestructuringForOfArrayBindingPattern(target=es5).errors.txt │ ├── sourceMapValidationDestructuringForOfArrayBindingPattern(target=es5).js │ ├── sourceMapValidationDestructuringForOfArrayBindingPattern(target=es5).sourcemap.txt │ ├── sourceMapValidationDestructuringForOfArrayBindingPattern(target=es5).symbols │ ├── sourceMapValidationDestructuringForOfArrayBindingPattern(target=es5).types │ ├── sourceMapValidationDestructuringForOfArrayBindingPattern2(target=es2015).js │ ├── sourceMapValidationDestructuringForOfArrayBindingPattern2(target=es2015).sourcemap.txt │ ├── sourceMapValidationDestructuringForOfArrayBindingPattern2(target=es2015).symbols │ ├── sourceMapValidationDestructuringForOfArrayBindingPattern2(target=es2015).types │ ├── sourceMapValidationDestructuringForOfArrayBindingPattern2(target=es5).errors.txt │ ├── sourceMapValidationDestructuringForOfArrayBindingPattern2(target=es5).js │ ├── sourceMapValidationDestructuringForOfArrayBindingPattern2(target=es5).sourcemap.txt │ ├── sourceMapValidationDestructuringForOfArrayBindingPattern2(target=es5).symbols │ ├── sourceMapValidationDestructuringForOfArrayBindingPattern2(target=es5).types │ ├── sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues(target=es2015).js │ ├── sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues(target=es2015).sourcemap.txt │ ├── sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues(target=es2015).symbols │ ├── sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues(target=es2015).types │ ├── sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues(target=es5).errors.txt │ ├── sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues(target=es5).js │ ├── sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues(target=es5).sourcemap.txt │ ├── sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues(target=es5).symbols │ ├── sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues(target=es5).types │ ├── sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues2(target=es2015).js │ ├── sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues2(target=es2015).sourcemap.txt │ ├── sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues2(target=es2015).symbols │ ├── sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues2(target=es2015).types │ ├── sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues2(target=es5).errors.txt │ ├── sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues2(target=es5).js │ ├── sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues2(target=es5).sourcemap.txt │ ├── sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues2(target=es5).symbols │ ├── sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues2(target=es5).types │ ├── sourceMapValidationDestructuringForOfObjectBindingPattern(target=es2015).js │ ├── sourceMapValidationDestructuringForOfObjectBindingPattern(target=es2015).sourcemap.txt │ ├── sourceMapValidationDestructuringForOfObjectBindingPattern(target=es2015).symbols │ ├── sourceMapValidationDestructuringForOfObjectBindingPattern(target=es2015).types │ ├── sourceMapValidationDestructuringForOfObjectBindingPattern(target=es5).errors.txt │ ├── sourceMapValidationDestructuringForOfObjectBindingPattern(target=es5).js │ ├── sourceMapValidationDestructuringForOfObjectBindingPattern(target=es5).sourcemap.txt │ ├── sourceMapValidationDestructuringForOfObjectBindingPattern(target=es5).symbols │ ├── sourceMapValidationDestructuringForOfObjectBindingPattern(target=es5).types │ ├── sourceMapValidationDestructuringForOfObjectBindingPattern2(target=es2015).errors.txt │ ├── sourceMapValidationDestructuringForOfObjectBindingPattern2(target=es2015).js │ ├── sourceMapValidationDestructuringForOfObjectBindingPattern2(target=es2015).sourcemap.txt │ ├── sourceMapValidationDestructuringForOfObjectBindingPattern2(target=es2015).symbols │ ├── sourceMapValidationDestructuringForOfObjectBindingPattern2(target=es2015).types │ ├── sourceMapValidationDestructuringForOfObjectBindingPattern2(target=es5).errors.txt │ ├── sourceMapValidationDestructuringForOfObjectBindingPattern2(target=es5).js │ ├── sourceMapValidationDestructuringForOfObjectBindingPattern2(target=es5).sourcemap.txt │ ├── sourceMapValidationDestructuringForOfObjectBindingPattern2(target=es5).symbols │ ├── sourceMapValidationDestructuringForOfObjectBindingPattern2(target=es5).types │ ├── sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues(target=es2015).js │ ├── sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues(target=es2015).sourcemap.txt │ ├── sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues(target=es2015).symbols │ ├── sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues(target=es2015).types │ ├── sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues(target=es5).errors.txt │ ├── sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues(target=es5).js │ ├── sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues(target=es5).sourcemap.txt │ ├── sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues(target=es5).symbols │ ├── sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues(target=es5).types │ ├── sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues2(target=es2015).errors.txt │ ├── sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues2(target=es2015).js │ ├── sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues2(target=es2015).sourcemap.txt │ ├── sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues2(target=es2015).symbols │ ├── sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues2(target=es2015).types │ ├── sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues2(target=es5).errors.txt │ ├── sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues2(target=es5).js │ ├── sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues2(target=es5).sourcemap.txt │ ├── sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues2(target=es5).symbols │ ├── sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues2(target=es5).types │ ├── sourceMapValidationDestructuringParameterNestedObjectBindingPattern.js │ ├── sourceMapValidationDestructuringParameterNestedObjectBindingPattern.sourcemap.txt │ ├── sourceMapValidationDestructuringParameterNestedObjectBindingPattern.symbols │ ├── sourceMapValidationDestructuringParameterNestedObjectBindingPattern.types │ ├── sourceMapValidationDestructuringParameterNestedObjectBindingPatternDefaultValues.errors.txt │ ├── sourceMapValidationDestructuringParameterNestedObjectBindingPatternDefaultValues.js │ ├── sourceMapValidationDestructuringParameterNestedObjectBindingPatternDefaultValues.sourcemap.txt │ ├── sourceMapValidationDestructuringParameterNestedObjectBindingPatternDefaultValues.symbols │ ├── sourceMapValidationDestructuringParameterNestedObjectBindingPatternDefaultValues.types │ ├── sourceMapValidationDestructuringParameterObjectBindingPattern.js │ ├── sourceMapValidationDestructuringParameterObjectBindingPattern.sourcemap.txt │ ├── sourceMapValidationDestructuringParameterObjectBindingPattern.symbols │ ├── sourceMapValidationDestructuringParameterObjectBindingPattern.types │ ├── sourceMapValidationDestructuringParameterObjectBindingPatternDefaultValues.js │ ├── sourceMapValidationDestructuringParameterObjectBindingPatternDefaultValues.sourcemap.txt │ ├── sourceMapValidationDestructuringParameterObjectBindingPatternDefaultValues.symbols │ ├── sourceMapValidationDestructuringParameterObjectBindingPatternDefaultValues.types │ ├── sourceMapValidationDestructuringParametertArrayBindingPattern(target=es2015).js │ ├── sourceMapValidationDestructuringParametertArrayBindingPattern(target=es2015).sourcemap.txt │ ├── sourceMapValidationDestructuringParametertArrayBindingPattern(target=es2015).symbols │ ├── sourceMapValidationDestructuringParametertArrayBindingPattern(target=es2015).types │ ├── sourceMapValidationDestructuringParametertArrayBindingPattern(target=es5).errors.txt │ ├── sourceMapValidationDestructuringParametertArrayBindingPattern(target=es5).js │ ├── sourceMapValidationDestructuringParametertArrayBindingPattern(target=es5).sourcemap.txt │ ├── sourceMapValidationDestructuringParametertArrayBindingPattern(target=es5).symbols │ ├── sourceMapValidationDestructuringParametertArrayBindingPattern(target=es5).types │ ├── sourceMapValidationDestructuringParametertArrayBindingPattern2(target=es2015).js │ ├── sourceMapValidationDestructuringParametertArrayBindingPattern2(target=es2015).sourcemap.txt │ ├── sourceMapValidationDestructuringParametertArrayBindingPattern2(target=es2015).symbols │ ├── sourceMapValidationDestructuringParametertArrayBindingPattern2(target=es2015).types │ ├── sourceMapValidationDestructuringParametertArrayBindingPattern2(target=es5).errors.txt │ ├── sourceMapValidationDestructuringParametertArrayBindingPattern2(target=es5).js │ ├── sourceMapValidationDestructuringParametertArrayBindingPattern2(target=es5).sourcemap.txt │ ├── sourceMapValidationDestructuringParametertArrayBindingPattern2(target=es5).symbols │ ├── sourceMapValidationDestructuringParametertArrayBindingPattern2(target=es5).types │ ├── sourceMapValidationDestructuringParametertArrayBindingPatternDefaultValues(target=es2015).js │ ├── sourceMapValidationDestructuringParametertArrayBindingPatternDefaultValues(target=es2015).sourcemap.txt │ ├── sourceMapValidationDestructuringParametertArrayBindingPatternDefaultValues(target=es2015).symbols │ ├── sourceMapValidationDestructuringParametertArrayBindingPatternDefaultValues(target=es2015).types │ ├── sourceMapValidationDestructuringParametertArrayBindingPatternDefaultValues(target=es5).errors.txt │ ├── sourceMapValidationDestructuringParametertArrayBindingPatternDefaultValues(target=es5).js │ ├── sourceMapValidationDestructuringParametertArrayBindingPatternDefaultValues(target=es5).sourcemap.txt │ ├── sourceMapValidationDestructuringParametertArrayBindingPatternDefaultValues(target=es5).symbols │ ├── sourceMapValidationDestructuringParametertArrayBindingPatternDefaultValues(target=es5).types │ ├── sourceMapValidationDestructuringParametertArrayBindingPatternDefaultValues2(target=es2015).js │ ├── sourceMapValidationDestructuringParametertArrayBindingPatternDefaultValues2(target=es2015).sourcemap.txt │ ├── sourceMapValidationDestructuringParametertArrayBindingPatternDefaultValues2(target=es2015).symbols │ ├── sourceMapValidationDestructuringParametertArrayBindingPatternDefaultValues2(target=es2015).types │ ├── sourceMapValidationDestructuringParametertArrayBindingPatternDefaultValues2(target=es5).errors.txt │ ├── sourceMapValidationDestructuringParametertArrayBindingPatternDefaultValues2(target=es5).js │ ├── sourceMapValidationDestructuringParametertArrayBindingPatternDefaultValues2(target=es5).sourcemap.txt │ ├── sourceMapValidationDestructuringParametertArrayBindingPatternDefaultValues2(target=es5).symbols │ ├── sourceMapValidationDestructuringParametertArrayBindingPatternDefaultValues2(target=es5).types │ ├── sourceMapValidationDestructuringVariableStatement.js │ ├── sourceMapValidationDestructuringVariableStatement.sourcemap.txt │ ├── sourceMapValidationDestructuringVariableStatement.symbols │ ├── sourceMapValidationDestructuringVariableStatement.types │ ├── sourceMapValidationDestructuringVariableStatement1.js │ ├── sourceMapValidationDestructuringVariableStatement1.sourcemap.txt │ ├── sourceMapValidationDestructuringVariableStatement1.symbols │ ├── sourceMapValidationDestructuringVariableStatement1.types │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern(target=es2015).js │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern(target=es2015).sourcemap.txt │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern(target=es2015).symbols │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern(target=es2015).types │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern(target=es5).errors.txt │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern(target=es5).js │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern(target=es5).sourcemap.txt │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern(target=es5).symbols │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern(target=es5).types │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern2(target=es2015).js │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern2(target=es2015).sourcemap.txt │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern2(target=es2015).symbols │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern2(target=es2015).types │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern2(target=es5).errors.txt │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern2(target=es5).js │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern2(target=es5).sourcemap.txt │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern2(target=es5).symbols │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern2(target=es5).types │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern3(target=es2015).js │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern3(target=es2015).sourcemap.txt │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern3(target=es2015).symbols │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern3(target=es2015).types │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern3(target=es5).errors.txt │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern3(target=es5).js │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern3(target=es5).sourcemap.txt │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern3(target=es5).symbols │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern3(target=es5).types │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern4.js │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern4.sourcemap.txt │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern4.symbols │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern4.types │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern5.js │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern5.sourcemap.txt │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern5.symbols │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern5.types │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern6.js │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern6.sourcemap.txt │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern6.symbols │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern6.types │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern7.js │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern7.sourcemap.txt │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern7.symbols │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern7.types │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues(target=es2015).js │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues(target=es2015).sourcemap.txt │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues(target=es2015).symbols │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues(target=es2015).types │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues(target=es5).errors.txt │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues(target=es5).js │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues(target=es5).sourcemap.txt │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues(target=es5).symbols │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues(target=es5).types │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues2(target=es2015).js │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues2(target=es2015).sourcemap.txt │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues2(target=es2015).symbols │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues2(target=es2015).types │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues2(target=es5).errors.txt │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues2(target=es5).js │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues2(target=es5).sourcemap.txt │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues2(target=es5).symbols │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues2(target=es5).types │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues3(target=es2015).js │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues3(target=es2015).sourcemap.txt │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues3(target=es2015).symbols │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues3(target=es2015).types │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues3(target=es5).errors.txt │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues3(target=es5).js │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues3(target=es5).sourcemap.txt │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues3(target=es5).symbols │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues3(target=es5).types │ ├── sourceMapValidationDestructuringVariableStatementDefaultValues.js │ ├── sourceMapValidationDestructuringVariableStatementDefaultValues.sourcemap.txt │ ├── sourceMapValidationDestructuringVariableStatementDefaultValues.symbols │ ├── sourceMapValidationDestructuringVariableStatementDefaultValues.types │ ├── sourceMapValidationDestructuringVariableStatementNestedObjectBindingPattern.js │ ├── sourceMapValidationDestructuringVariableStatementNestedObjectBindingPattern.sourcemap.txt │ ├── sourceMapValidationDestructuringVariableStatementNestedObjectBindingPattern.symbols │ ├── sourceMapValidationDestructuringVariableStatementNestedObjectBindingPattern.types │ ├── sourceMapValidationDestructuringVariableStatementNestedObjectBindingPatternWithDefaultValues.js │ ├── sourceMapValidationDestructuringVariableStatementNestedObjectBindingPatternWithDefaultValues.sourcemap.txt │ ├── sourceMapValidationDestructuringVariableStatementNestedObjectBindingPatternWithDefaultValues.symbols │ ├── sourceMapValidationDestructuringVariableStatementNestedObjectBindingPatternWithDefaultValues.types │ ├── sourceMapValidationDestructuringVariableStatementObjectBindingPattern1.js │ ├── sourceMapValidationDestructuringVariableStatementObjectBindingPattern1.sourcemap.txt │ ├── sourceMapValidationDestructuringVariableStatementObjectBindingPattern1.symbols │ ├── sourceMapValidationDestructuringVariableStatementObjectBindingPattern1.types │ ├── sourceMapValidationDestructuringVariableStatementObjectBindingPattern2.js │ ├── sourceMapValidationDestructuringVariableStatementObjectBindingPattern2.sourcemap.txt │ ├── sourceMapValidationDestructuringVariableStatementObjectBindingPattern2.symbols │ ├── sourceMapValidationDestructuringVariableStatementObjectBindingPattern2.types │ ├── sourceMapValidationDestructuringVariableStatementObjectBindingPattern3.js │ ├── sourceMapValidationDestructuringVariableStatementObjectBindingPattern3.sourcemap.txt │ ├── sourceMapValidationDestructuringVariableStatementObjectBindingPattern3.symbols │ ├── sourceMapValidationDestructuringVariableStatementObjectBindingPattern3.types │ ├── sourceMapValidationDestructuringVariableStatementObjectBindingPattern4.js │ ├── sourceMapValidationDestructuringVariableStatementObjectBindingPattern4.sourcemap.txt │ ├── sourceMapValidationDestructuringVariableStatementObjectBindingPattern4.symbols │ ├── sourceMapValidationDestructuringVariableStatementObjectBindingPattern4.types │ ├── sourceMapValidationDo.js │ ├── sourceMapValidationDo.sourcemap.txt │ ├── sourceMapValidationDo.symbols │ ├── sourceMapValidationDo.types │ ├── sourceMapValidationEnums.errors.txt │ ├── sourceMapValidationEnums.js │ ├── sourceMapValidationEnums.sourcemap.txt │ ├── sourceMapValidationEnums.symbols │ ├── sourceMapValidationEnums.types │ ├── sourceMapValidationExportAssignment.errors.txt │ ├── sourceMapValidationExportAssignment.js │ ├── sourceMapValidationExportAssignment.sourcemap.txt │ ├── sourceMapValidationExportAssignment.symbols │ ├── sourceMapValidationExportAssignment.types │ ├── sourceMapValidationExportAssignmentCommonjs.js │ ├── sourceMapValidationExportAssignmentCommonjs.sourcemap.txt │ ├── sourceMapValidationExportAssignmentCommonjs.symbols │ ├── sourceMapValidationExportAssignmentCommonjs.types │ ├── sourceMapValidationFor.errors.txt │ ├── sourceMapValidationFor.js │ ├── sourceMapValidationFor.sourcemap.txt │ ├── sourceMapValidationFor.symbols │ ├── sourceMapValidationFor.types │ ├── sourceMapValidationForIn.js │ ├── sourceMapValidationForIn.sourcemap.txt │ ├── sourceMapValidationForIn.symbols │ ├── sourceMapValidationForIn.types │ ├── sourceMapValidationFunctionExpressions.js │ ├── sourceMapValidationFunctionExpressions.sourcemap.txt │ ├── sourceMapValidationFunctionExpressions.symbols │ ├── sourceMapValidationFunctionExpressions.types │ ├── sourceMapValidationFunctionPropertyAssignment.js │ ├── sourceMapValidationFunctionPropertyAssignment.sourcemap.txt │ ├── sourceMapValidationFunctionPropertyAssignment.symbols │ ├── sourceMapValidationFunctionPropertyAssignment.types │ ├── sourceMapValidationFunctions.js │ ├── sourceMapValidationFunctions.sourcemap.txt │ ├── sourceMapValidationFunctions.symbols │ ├── sourceMapValidationFunctions.types │ ├── sourceMapValidationIfElse.js │ ├── sourceMapValidationIfElse.sourcemap.txt │ ├── sourceMapValidationIfElse.symbols │ ├── sourceMapValidationIfElse.types │ ├── sourceMapValidationImport.js │ ├── sourceMapValidationImport.sourcemap.txt │ ├── sourceMapValidationImport.symbols │ ├── sourceMapValidationImport.types │ ├── sourceMapValidationLabeled.errors.txt │ ├── sourceMapValidationLabeled.js │ ├── sourceMapValidationLabeled.sourcemap.txt │ ├── sourceMapValidationLabeled.symbols │ ├── sourceMapValidationLabeled.types │ ├── sourceMapValidationLambdaSpanningMultipleLines.js │ ├── sourceMapValidationLambdaSpanningMultipleLines.sourcemap.txt │ ├── sourceMapValidationLambdaSpanningMultipleLines.symbols │ ├── sourceMapValidationLambdaSpanningMultipleLines.types │ ├── sourceMapValidationModule.js │ ├── sourceMapValidationModule.sourcemap.txt │ ├── sourceMapValidationModule.symbols │ ├── sourceMapValidationModule.types │ ├── sourceMapValidationStatements.errors.txt │ ├── sourceMapValidationStatements.js │ ├── sourceMapValidationStatements.sourcemap.txt │ ├── sourceMapValidationStatements.symbols │ ├── sourceMapValidationStatements.types │ ├── sourceMapValidationSwitch.js │ ├── sourceMapValidationSwitch.sourcemap.txt │ ├── sourceMapValidationSwitch.symbols │ ├── sourceMapValidationSwitch.types │ ├── sourceMapValidationTryCatchFinally.js │ ├── sourceMapValidationTryCatchFinally.sourcemap.txt │ ├── sourceMapValidationTryCatchFinally.symbols │ ├── sourceMapValidationTryCatchFinally.types │ ├── sourceMapValidationVarInDownLevelGenerator(target=es2015).errors.txt │ ├── sourceMapValidationVarInDownLevelGenerator(target=es2015).js │ ├── sourceMapValidationVarInDownLevelGenerator(target=es2015).sourcemap.txt │ ├── sourceMapValidationVarInDownLevelGenerator(target=es2015).symbols │ ├── sourceMapValidationVarInDownLevelGenerator(target=es2015).types │ ├── sourceMapValidationVarInDownLevelGenerator(target=es5).errors.txt │ ├── sourceMapValidationVarInDownLevelGenerator(target=es5).js │ ├── sourceMapValidationVarInDownLevelGenerator(target=es5).sourcemap.txt │ ├── sourceMapValidationVarInDownLevelGenerator(target=es5).symbols │ ├── sourceMapValidationVarInDownLevelGenerator(target=es5).types │ ├── sourceMapValidationVariables.js │ ├── sourceMapValidationVariables.sourcemap.txt │ ├── sourceMapValidationVariables.symbols │ ├── sourceMapValidationVariables.types │ ├── sourceMapValidationWhile.js │ ├── sourceMapValidationWhile.sourcemap.txt │ ├── sourceMapValidationWhile.symbols │ ├── sourceMapValidationWhile.types │ ├── sourceMapValidationWithComments.js │ ├── sourceMapValidationWithComments.sourcemap.txt │ ├── sourceMapValidationWithComments.symbols │ ├── sourceMapValidationWithComments.types │ ├── sourceMapWithCaseSensitiveFileNames.errors.txt │ ├── sourceMapWithCaseSensitiveFileNames.js │ ├── sourceMapWithCaseSensitiveFileNames.sourcemap.txt │ ├── sourceMapWithCaseSensitiveFileNames.symbols │ ├── sourceMapWithCaseSensitiveFileNames.types │ ├── sourceMapWithCaseSensitiveFileNamesAndOutDir.js │ ├── sourceMapWithCaseSensitiveFileNamesAndOutDir.sourcemap.txt │ ├── sourceMapWithCaseSensitiveFileNamesAndOutDir.symbols │ ├── sourceMapWithCaseSensitiveFileNamesAndOutDir.types │ ├── sourceMapWithMultipleFilesWithCopyright.errors.txt │ ├── sourceMapWithMultipleFilesWithCopyright.js │ ├── sourceMapWithMultipleFilesWithCopyright.sourcemap.txt │ ├── sourceMapWithMultipleFilesWithCopyright.symbols │ ├── sourceMapWithMultipleFilesWithCopyright.types │ ├── sourceMapWithMultipleFilesWithFileEndingWithInterface.errors.txt │ ├── sourceMapWithMultipleFilesWithFileEndingWithInterface.js │ ├── sourceMapWithMultipleFilesWithFileEndingWithInterface.sourcemap.txt │ ├── sourceMapWithMultipleFilesWithFileEndingWithInterface.symbols │ ├── sourceMapWithMultipleFilesWithFileEndingWithInterface.types │ ├── sourceMapWithNonCaseSensitiveFileNames.errors.txt │ ├── sourceMapWithNonCaseSensitiveFileNames.js │ ├── sourceMapWithNonCaseSensitiveFileNames.sourcemap.txt │ ├── sourceMapWithNonCaseSensitiveFileNames.symbols │ ├── sourceMapWithNonCaseSensitiveFileNames.types │ ├── sourceMapWithNonCaseSensitiveFileNamesAndOutDir.js │ ├── sourceMapWithNonCaseSensitiveFileNamesAndOutDir.sourcemap.txt │ ├── sourceMapWithNonCaseSensitiveFileNamesAndOutDir.symbols │ ├── sourceMapWithNonCaseSensitiveFileNamesAndOutDir.types │ ├── sourcemapValidationDuplicateNames.js │ ├── sourcemapValidationDuplicateNames.sourcemap.txt │ ├── sourcemapValidationDuplicateNames.symbols │ ├── sourcemapValidationDuplicateNames.types │ ├── spaceBeforeQuestionMarkInPropertyAssignment.errors.txt │ ├── spaceBeforeQuestionMarkInPropertyAssignment.js │ ├── spaceBeforeQuestionMarkInPropertyAssignment.symbols │ ├── spaceBeforeQuestionMarkInPropertyAssignment.types │ ├── specedNoStackBlown.js │ ├── specedNoStackBlown.symbols │ ├── specedNoStackBlown.types │ ├── specialIntersectionsInMappedTypes.errors.txt │ ├── specialIntersectionsInMappedTypes.js │ ├── specialIntersectionsInMappedTypes.symbols │ ├── specialIntersectionsInMappedTypes.types │ ├── specializationError.js │ ├── specializationError.symbols │ ├── specializationError.types │ ├── specializationOfExportedClass.js │ ├── specializationOfExportedClass.symbols │ ├── specializationOfExportedClass.types │ ├── specializationsShouldNotAffectEachOther.js │ ├── specializationsShouldNotAffectEachOther.symbols │ ├── specializationsShouldNotAffectEachOther.types │ ├── specializeVarArgs1.js │ ├── specializeVarArgs1.symbols │ ├── specializeVarArgs1.types │ ├── specializedInheritedConstructors1.errors.txt │ ├── specializedInheritedConstructors1.js │ ├── specializedInheritedConstructors1.symbols │ ├── specializedInheritedConstructors1.types │ ├── specializedLambdaTypeArguments.errors.txt │ ├── specializedLambdaTypeArguments.js │ ├── specializedLambdaTypeArguments.symbols │ ├── specializedLambdaTypeArguments.types │ ├── specializedOverloadWithRestParameters.js │ ├── specializedOverloadWithRestParameters.symbols │ ├── specializedOverloadWithRestParameters.types │ ├── specializedSignatureAsCallbackParameter1.errors.txt │ ├── specializedSignatureAsCallbackParameter1.js │ ├── specializedSignatureAsCallbackParameter1.symbols │ ├── specializedSignatureAsCallbackParameter1.types │ ├── specializedSignatureInInterface.js │ ├── specializedSignatureInInterface.symbols │ ├── specializedSignatureInInterface.types │ ├── specializedSignatureIsNotSubtypeOfNonSpecializedSignature.errors.txt │ ├── specializedSignatureIsNotSubtypeOfNonSpecializedSignature.js │ ├── specializedSignatureIsNotSubtypeOfNonSpecializedSignature.symbols │ ├── specializedSignatureIsNotSubtypeOfNonSpecializedSignature.types │ ├── specializedSignatureIsSubtypeOfNonSpecializedSignature.js │ ├── specializedSignatureIsSubtypeOfNonSpecializedSignature.symbols │ ├── specializedSignatureIsSubtypeOfNonSpecializedSignature.types │ ├── specializedSignatureOverloadReturnTypeWithIndexers.js │ ├── specializedSignatureOverloadReturnTypeWithIndexers.symbols │ ├── specializedSignatureOverloadReturnTypeWithIndexers.types │ ├── specializedSignatureWithOptional.js │ ├── specializedSignatureWithOptional.symbols │ ├── specializedSignatureWithOptional.types │ ├── spellingSuggestionGlobal1.errors.txt │ ├── spellingSuggestionGlobal1.js │ ├── spellingSuggestionGlobal1.symbols │ ├── spellingSuggestionGlobal1.types │ ├── spellingSuggestionGlobal2.errors.txt │ ├── spellingSuggestionGlobal2.js │ ├── spellingSuggestionGlobal2.symbols │ ├── spellingSuggestionGlobal2.types │ ├── spellingSuggestionGlobal3.errors.txt │ ├── spellingSuggestionGlobal3.js │ ├── spellingSuggestionGlobal3.symbols │ ├── spellingSuggestionGlobal3.types │ ├── spellingSuggestionGlobal4.errors.txt │ ├── spellingSuggestionGlobal4.js │ ├── spellingSuggestionGlobal4.symbols │ ├── spellingSuggestionGlobal4.types │ ├── spellingSuggestionJSXAttribute.errors.txt │ ├── spellingSuggestionJSXAttribute.js │ ├── spellingSuggestionJSXAttribute.symbols │ ├── spellingSuggestionJSXAttribute.types │ ├── spellingSuggestionLeadingUnderscores01.errors.txt │ ├── spellingSuggestionLeadingUnderscores01.js │ ├── spellingSuggestionLeadingUnderscores01.symbols │ ├── spellingSuggestionLeadingUnderscores01.types │ ├── spellingSuggestionModule.errors.txt │ ├── spellingSuggestionModule.js │ ├── spellingSuggestionModule.symbols │ ├── spellingSuggestionModule.types │ ├── spellingUncheckedJS.symbols │ ├── spellingUncheckedJS.types │ ├── spliceTuples.errors.txt │ ├── spliceTuples.js │ ├── spliceTuples.symbols │ ├── spliceTuples.types │ ├── spreadBooleanRespectsFreshness.js │ ├── spreadBooleanRespectsFreshness.symbols │ ├── spreadBooleanRespectsFreshness.types │ ├── spreadContextualTypedBindingPattern.js │ ├── spreadContextualTypedBindingPattern.symbols │ ├── spreadContextualTypedBindingPattern.types │ ├── spreadDuplicate.errors.txt │ ├── spreadDuplicate.js │ ├── spreadDuplicate.symbols │ ├── spreadDuplicate.types │ ├── spreadDuplicateExact.errors.txt │ ├── spreadDuplicateExact.js │ ├── spreadDuplicateExact.symbols │ ├── spreadDuplicateExact.types │ ├── spreadExcessProperty.js │ ├── spreadExcessProperty.symbols │ ├── spreadExcessProperty.types │ ├── spreadExpressionContainingObjectExpressionContextualType.symbols │ ├── spreadExpressionContainingObjectExpressionContextualType.types │ ├── spreadExpressionContextualType.js │ ├── spreadExpressionContextualType.symbols │ ├── spreadExpressionContextualType.types │ ├── spreadExpressionContextualTypeWithNamespace.js │ ├── spreadExpressionContextualTypeWithNamespace.symbols │ ├── spreadExpressionContextualTypeWithNamespace.types │ ├── spreadIdenticalTypesRemoved.js │ ├── spreadIdenticalTypesRemoved.symbols │ ├── spreadIdenticalTypesRemoved.types │ ├── spreadIntersection.errors.txt │ ├── spreadIntersection.js │ ├── spreadIntersection.symbols │ ├── spreadIntersection.types │ ├── spreadIntersectionJsx.errors.txt │ ├── spreadIntersectionJsx.js │ ├── spreadIntersectionJsx.symbols │ ├── spreadIntersectionJsx.types │ ├── spreadInvalidArgumentType.errors.txt │ ├── spreadInvalidArgumentType.js │ ├── spreadInvalidArgumentType.symbols │ ├── spreadInvalidArgumentType.types │ ├── spreadMethods.errors.txt │ ├── spreadMethods.js │ ├── spreadMethods.symbols │ ├── spreadMethods.types │ ├── spreadNonObject1.errors.txt │ ├── spreadNonObject1.symbols │ ├── spreadNonObject1.types │ ├── spreadNonPrimitive.js │ ├── spreadNonPrimitive.symbols │ ├── spreadNonPrimitive.types │ ├── spreadObjectNoCircular1.symbols │ ├── spreadObjectNoCircular1.types │ ├── spreadObjectOrFalsy.errors.txt │ ├── spreadObjectOrFalsy.js │ ├── spreadObjectOrFalsy.symbols │ ├── spreadObjectOrFalsy.types │ ├── spreadObjectPermutations(exactoptionalpropertytypes=false).js │ ├── spreadObjectPermutations(exactoptionalpropertytypes=false).symbols │ ├── spreadObjectPermutations(exactoptionalpropertytypes=false).types │ ├── spreadObjectPermutations(exactoptionalpropertytypes=true).js │ ├── spreadObjectPermutations(exactoptionalpropertytypes=true).symbols │ ├── spreadObjectPermutations(exactoptionalpropertytypes=true).types │ ├── spreadObjectWithIndexDoesNotAddUndefinedToLocalIndex.js │ ├── spreadObjectWithIndexDoesNotAddUndefinedToLocalIndex.symbols │ ├── spreadObjectWithIndexDoesNotAddUndefinedToLocalIndex.types │ ├── spreadOfObjectLiteralAssignableToIndexSignature.js │ ├── spreadOfObjectLiteralAssignableToIndexSignature.symbols │ ├── spreadOfObjectLiteralAssignableToIndexSignature.types │ ├── spreadOfParamsFromGeneratorMakesRequiredParams.errors.txt │ ├── spreadOfParamsFromGeneratorMakesRequiredParams.js │ ├── spreadOfParamsFromGeneratorMakesRequiredParams.symbols │ ├── spreadOfParamsFromGeneratorMakesRequiredParams.types │ ├── spreadOverwritesProperty.errors.txt │ ├── spreadOverwritesProperty.js │ ├── spreadOverwritesProperty.symbols │ ├── spreadOverwritesProperty.types │ ├── spreadOverwritesPropertyStrict.errors.txt │ ├── spreadOverwritesPropertyStrict.js │ ├── spreadOverwritesPropertyStrict.symbols │ ├── spreadOverwritesPropertyStrict.types │ ├── spreadParameterTupleType.js │ ├── spreadParameterTupleType.symbols │ ├── spreadParameterTupleType.types │ ├── spreadTupleAccessedByTypeParameter.js │ ├── spreadTupleAccessedByTypeParameter.symbols │ ├── spreadTupleAccessedByTypeParameter.types │ ├── spreadTypeRemovesReadonly.js │ ├── spreadTypeRemovesReadonly.symbols │ ├── spreadTypeRemovesReadonly.types │ ├── spreadTypeVariable.errors.txt │ ├── spreadTypeVariable.js │ ├── spreadTypeVariable.symbols │ ├── spreadTypeVariable.types │ ├── spreadUnion.errors.txt │ ├── spreadUnion.js │ ├── spreadUnion.symbols │ ├── spreadUnion.types │ ├── spreadUnion2.errors.txt │ ├── spreadUnion2.js │ ├── spreadUnion2.symbols │ ├── spreadUnion2.types │ ├── spreadUnion3.errors.txt │ ├── spreadUnion3.js │ ├── spreadUnion3.symbols │ ├── spreadUnion3.types │ ├── spreadUnion4.js │ ├── spreadUnion4.symbols │ ├── spreadUnion4.types │ ├── spreadUnionPropOverride.errors.txt │ ├── spreadUnionPropOverride.js │ ├── spreadUnionPropOverride.symbols │ ├── spreadUnionPropOverride.types │ ├── spreadsAndContextualTupleTypes.symbols │ ├── spreadsAndContextualTupleTypes.types │ ├── spuriousCircularityOnTypeImport.js │ ├── spuriousCircularityOnTypeImport.symbols │ ├── spuriousCircularityOnTypeImport.types │ ├── spyComparisonChecking.errors.txt │ ├── spyComparisonChecking.js │ ├── spyComparisonChecking.symbols │ ├── spyComparisonChecking.types │ ├── stableTypeOrdering(stabletypeordering=false).symbols │ ├── stableTypeOrdering(stabletypeordering=false).types │ ├── stableTypeOrdering(stabletypeordering=true).symbols │ ├── stableTypeOrdering(stabletypeordering=true).types │ ├── stackDepthLimitCastingType.js │ ├── stackDepthLimitCastingType.symbols │ ├── stackDepthLimitCastingType.types │ ├── standaloneBreak.errors.txt │ ├── standaloneBreak.js │ ├── standaloneBreak.symbols │ ├── standaloneBreak.types │ ├── staticAndMemberFunctions.js │ ├── staticAndMemberFunctions.symbols │ ├── staticAndMemberFunctions.types │ ├── staticAndNonStaticPropertiesSameName.errors.txt │ ├── staticAndNonStaticPropertiesSameName.js │ ├── staticAndNonStaticPropertiesSameName.symbols │ ├── staticAndNonStaticPropertiesSameName.types │ ├── staticAnonymousTypeNotReferencingTypeParameter.errors.txt │ ├── staticAnonymousTypeNotReferencingTypeParameter.js │ ├── staticAnonymousTypeNotReferencingTypeParameter.symbols │ ├── staticAnonymousTypeNotReferencingTypeParameter.types │ ├── staticAsIdentifier.errors.txt │ ├── staticAsIdentifier.js │ ├── staticAsIdentifier.symbols │ ├── staticAsIdentifier.types │ ├── staticAutoAccessors(target=es2017).js │ ├── staticAutoAccessors(target=es2022).js │ ├── staticAutoAccessorsWithDecorators(target=es2017).js │ ├── staticAutoAccessorsWithDecorators(target=es2022).js │ ├── staticClassMemberError.errors.txt │ ├── staticClassMemberError.js │ ├── staticClassMemberError.symbols │ ├── staticClassMemberError.types │ ├── staticClassProps.errors.txt │ ├── staticClassProps.js │ ├── staticClassProps.symbols │ ├── staticClassProps.types │ ├── staticFactory1.js │ ├── staticFactory1.symbols │ ├── staticFactory1.types │ ├── staticFieldWithInterfaceContext.js │ ├── staticFieldWithInterfaceContext.symbols │ ├── staticFieldWithInterfaceContext.types │ ├── staticGetter1.js │ ├── staticGetter1.symbols │ ├── staticGetter1.types │ ├── staticGetter2.js │ ├── staticGetter2.symbols │ ├── staticGetter2.types │ ├── staticGetterAndSetter.js │ ├── staticGetterAndSetter.symbols │ ├── staticGetterAndSetter.types │ ├── staticIndexSignature1.errors.txt │ ├── staticIndexSignature1.js │ ├── staticIndexSignature1.symbols │ ├── staticIndexSignature1.types │ ├── staticIndexSignature2.errors.txt │ ├── staticIndexSignature2.js │ ├── staticIndexSignature2.symbols │ ├── staticIndexSignature2.types │ ├── staticIndexSignature3.errors.txt │ ├── staticIndexSignature3.js │ ├── staticIndexSignature3.symbols │ ├── staticIndexSignature3.types │ ├── staticIndexSignature4.errors.txt │ ├── staticIndexSignature4.js │ ├── staticIndexSignature4.symbols │ ├── staticIndexSignature4.types │ ├── staticIndexSignature5.errors.txt │ ├── staticIndexSignature5.js │ ├── staticIndexSignature5.symbols │ ├── staticIndexSignature5.types │ ├── staticIndexSignature6.js │ ├── staticIndexSignature6.symbols │ ├── staticIndexSignature6.types │ ├── staticIndexSignature7.errors.txt │ ├── staticIndexSignature7.js │ ├── staticIndexSignature7.symbols │ ├── staticIndexSignature7.types │ ├── staticIndexSignatureAndNormalIndexSignature.js │ ├── staticIndexSignatureAndNormalIndexSignature.symbols │ ├── staticIndexSignatureAndNormalIndexSignature.types │ ├── staticIndexers.errors.txt │ ├── staticIndexers.js │ ├── staticIndexers.symbols │ ├── staticIndexers.types │ ├── staticInheritance.js │ ├── staticInheritance.symbols │ ├── staticInheritance.types │ ├── staticInitializersAndLegacyClassDecorators.js │ ├── staticInstanceResolution.errors.txt │ ├── staticInstanceResolution.js │ ├── staticInstanceResolution.symbols │ ├── staticInstanceResolution.types │ ├── staticInstanceResolution2.js │ ├── staticInstanceResolution2.symbols │ ├── staticInstanceResolution2.types │ ├── staticInstanceResolution3.errors.txt │ ├── staticInstanceResolution3.js │ ├── staticInstanceResolution3.symbols │ ├── staticInstanceResolution3.types │ ├── staticInstanceResolution4.errors.txt │ ├── staticInstanceResolution4.js │ ├── staticInstanceResolution4.symbols │ ├── staticInstanceResolution4.types │ ├── staticInstanceResolution5.errors.txt │ ├── staticInstanceResolution5.js │ ├── staticInstanceResolution5.symbols │ ├── staticInstanceResolution5.types │ ├── staticInterfaceAssignmentCompat.js │ ├── staticInterfaceAssignmentCompat.symbols │ ├── staticInterfaceAssignmentCompat.types │ ├── staticMemberAccessOffDerivedType1.js │ ├── staticMemberAccessOffDerivedType1.symbols │ ├── staticMemberAccessOffDerivedType1.types │ ├── staticMemberAssignsToConstructorFunctionMembers.errors.txt │ ├── staticMemberAssignsToConstructorFunctionMembers.js │ ├── staticMemberAssignsToConstructorFunctionMembers.symbols │ ├── staticMemberAssignsToConstructorFunctionMembers.types │ ├── staticMemberExportAccess.errors.txt │ ├── staticMemberExportAccess.js │ ├── staticMemberExportAccess.symbols │ ├── staticMemberExportAccess.types │ ├── staticMemberInitialization.js │ ├── staticMemberInitialization.symbols │ ├── staticMemberInitialization.types │ ├── staticMemberOfClassAndPublicMemberOfAnotherClassAssignment.errors.txt │ ├── staticMemberOfClassAndPublicMemberOfAnotherClassAssignment.js │ ├── staticMemberOfClassAndPublicMemberOfAnotherClassAssignment.symbols │ ├── staticMemberOfClassAndPublicMemberOfAnotherClassAssignment.types │ ├── staticMemberWithStringAndNumberNames.js │ ├── staticMemberWithStringAndNumberNames.symbols │ ├── staticMemberWithStringAndNumberNames.types │ ├── staticMembersUsingClassTypeParameter.errors.txt │ ├── staticMembersUsingClassTypeParameter.js │ ├── staticMembersUsingClassTypeParameter.symbols │ ├── staticMembersUsingClassTypeParameter.types │ ├── staticMethodReferencingTypeArgument1.errors.txt │ ├── staticMethodReferencingTypeArgument1.js │ ├── staticMethodReferencingTypeArgument1.symbols │ ├── staticMethodReferencingTypeArgument1.types │ ├── staticMethodWithTypeParameterExtendsClauseDeclFile.js │ ├── staticMethodWithTypeParameterExtendsClauseDeclFile.symbols │ ├── staticMethodWithTypeParameterExtendsClauseDeclFile.types │ ├── staticMethodsReferencingClassTypeParameters.errors.txt │ ├── staticMethodsReferencingClassTypeParameters.js │ ├── staticMethodsReferencingClassTypeParameters.symbols │ ├── staticMethodsReferencingClassTypeParameters.types │ ├── staticMismatchBecauseOfPrototype.errors.txt │ ├── staticMismatchBecauseOfPrototype.js │ ├── staticMismatchBecauseOfPrototype.symbols │ ├── staticMismatchBecauseOfPrototype.types │ ├── staticModifierAlreadySeen.errors.txt │ ├── staticModifierAlreadySeen.js │ ├── staticModifierAlreadySeen.symbols │ ├── staticModifierAlreadySeen.types │ ├── staticMustPrecedePublic.errors.txt │ ├── staticMustPrecedePublic.js │ ├── staticMustPrecedePublic.symbols │ ├── staticMustPrecedePublic.types │ ├── staticOffOfInstance1.errors.txt │ ├── staticOffOfInstance1.js │ ├── staticOffOfInstance1.symbols │ ├── staticOffOfInstance1.types │ ├── staticOffOfInstance2.errors.txt │ ├── staticOffOfInstance2.js │ ├── staticOffOfInstance2.symbols │ ├── staticOffOfInstance2.types │ ├── staticPropSuper.errors.txt │ ├── staticPropSuper.js │ ├── staticPropSuper.symbols │ ├── staticPropSuper.types │ ├── staticPropertyAndFunctionWithSameName.errors.txt │ ├── staticPropertyAndFunctionWithSameName.js │ ├── staticPropertyAndFunctionWithSameName.symbols │ ├── staticPropertyAndFunctionWithSameName.types │ ├── staticPropertyNameConflicts(target=es2015,usedefineforclassfields=false).errors.txt │ ├── staticPropertyNameConflicts(target=es2015,usedefineforclassfields=false).js │ ├── staticPropertyNameConflicts(target=es2015,usedefineforclassfields=false).symbols │ ├── staticPropertyNameConflicts(target=es2015,usedefineforclassfields=false).types │ ├── staticPropertyNameConflicts(target=es2015,usedefineforclassfields=true).errors.txt │ ├── staticPropertyNameConflicts(target=es2015,usedefineforclassfields=true).js │ ├── staticPropertyNameConflicts(target=es2015,usedefineforclassfields=true).symbols │ ├── staticPropertyNameConflicts(target=es2015,usedefineforclassfields=true).types │ ├── staticPropertyNameConflicts(target=es5,usedefineforclassfields=false).errors.txt │ ├── staticPropertyNameConflicts(target=es5,usedefineforclassfields=false).js │ ├── staticPropertyNameConflicts(target=es5,usedefineforclassfields=false).symbols │ ├── staticPropertyNameConflicts(target=es5,usedefineforclassfields=false).types │ ├── staticPropertyNameConflicts(target=es5,usedefineforclassfields=true).errors.txt │ ├── staticPropertyNameConflicts(target=es5,usedefineforclassfields=true).js │ ├── staticPropertyNameConflicts(target=es5,usedefineforclassfields=true).symbols │ ├── staticPropertyNameConflicts(target=es5,usedefineforclassfields=true).types │ ├── staticPropertyNameConflictsInAmbientContext.symbols │ ├── staticPropertyNameConflictsInAmbientContext.types │ ├── staticPropertyNotInClassType.errors.txt │ ├── staticPropertyNotInClassType.js │ ├── staticPropertyNotInClassType.symbols │ ├── staticPropertyNotInClassType.types │ ├── staticPrototypeProperty.errors.txt │ ├── staticPrototypeProperty.js │ ├── staticPrototypeProperty.symbols │ ├── staticPrototypeProperty.types │ ├── staticPrototypePropertyOnClass.js │ ├── staticPrototypePropertyOnClass.symbols │ ├── staticPrototypePropertyOnClass.types │ ├── staticVisibility.errors.txt │ ├── staticVisibility.js │ ├── staticVisibility.symbols │ ├── staticVisibility.types │ ├── staticVisibility2.errors.txt │ ├── staticVisibility2.js │ ├── staticVisibility2.symbols │ ├── staticVisibility2.types │ ├── statics.errors.txt │ ├── statics.js │ ├── statics.symbols │ ├── statics.types │ ├── staticsInAFunction.errors.txt │ ├── staticsInAFunction.js │ ├── staticsInAFunction.symbols │ ├── staticsInAFunction.types │ ├── staticsInConstructorBodies.errors.txt │ ├── staticsInConstructorBodies.js │ ├── staticsInConstructorBodies.symbols │ ├── staticsInConstructorBodies.types │ ├── staticsNotInScopeInClodule.errors.txt │ ├── staticsNotInScopeInClodule.js │ ├── staticsNotInScopeInClodule.symbols │ ├── staticsNotInScopeInClodule.types │ ├── stradac.js │ ├── stradac.symbols │ ├── stradac.types │ ├── strictBindCallApply1.errors.txt │ ├── strictBindCallApply1.js │ ├── strictBindCallApply1.symbols │ ├── strictBindCallApply1.types │ ├── strictBindCallApply2.js │ ├── strictBindCallApply2.symbols │ ├── strictBindCallApply2.types │ ├── strictBooleanMemberAssignability.js │ ├── strictBooleanMemberAssignability.symbols │ ├── strictBooleanMemberAssignability.types │ ├── strictFunctionTypes1.js │ ├── strictFunctionTypes1.symbols │ ├── strictFunctionTypes1.types │ ├── strictFunctionTypesErrors.errors.txt │ ├── strictFunctionTypesErrors.js │ ├── strictFunctionTypesErrors.symbols │ ├── strictFunctionTypesErrors.types │ ├── strictModeEnumMemberNameReserved.js │ ├── strictModeEnumMemberNameReserved.symbols │ ├── strictModeEnumMemberNameReserved.types │ ├── strictModeInConstructor.errors.txt │ ├── strictModeInConstructor.js │ ├── strictModeInConstructor.symbols │ ├── strictModeInConstructor.types │ ├── strictModeOctalLiterals.errors.txt │ ├── strictModeOctalLiterals.js │ ├── strictModeOctalLiterals.symbols │ ├── strictModeOctalLiterals.types │ ├── strictModeReservedWord.errors.txt │ ├── strictModeReservedWord.js │ ├── strictModeReservedWord.symbols │ ├── strictModeReservedWord.types │ ├── strictModeReservedWord2.errors.txt │ ├── strictModeReservedWord2.js │ ├── strictModeReservedWord2.symbols │ ├── strictModeReservedWord2.types │ ├── strictModeReservedWordInClassDeclaration.errors.txt │ ├── strictModeReservedWordInClassDeclaration.js │ ├── strictModeReservedWordInClassDeclaration.symbols │ ├── strictModeReservedWordInClassDeclaration.types │ ├── strictModeReservedWordInDestructuring.errors.txt │ ├── strictModeReservedWordInDestructuring.js │ ├── strictModeReservedWordInDestructuring.symbols │ ├── strictModeReservedWordInDestructuring.types │ ├── strictModeReservedWordInImportEqualDeclaration.errors.txt │ ├── strictModeReservedWordInImportEqualDeclaration.js │ ├── strictModeReservedWordInImportEqualDeclaration.symbols │ ├── strictModeReservedWordInImportEqualDeclaration.types │ ├── strictModeReservedWordInModuleDeclaration.errors.txt │ ├── strictModeReservedWordInModuleDeclaration.js │ ├── strictModeReservedWordInModuleDeclaration.symbols │ ├── strictModeReservedWordInModuleDeclaration.types │ ├── strictModeUseContextualKeyword.js │ ├── strictModeUseContextualKeyword.symbols │ ├── strictModeUseContextualKeyword.types │ ├── strictModeWordInExportDeclaration.js │ ├── strictModeWordInExportDeclaration.symbols │ ├── strictModeWordInExportDeclaration.types │ ├── strictModeWordInImportDeclaration.errors.txt │ ├── strictModeWordInImportDeclaration.js │ ├── strictModeWordInImportDeclaration.symbols │ ├── strictModeWordInImportDeclaration.types │ ├── strictNullChecksNoWidening.js │ ├── strictNullChecksNoWidening.symbols │ ├── strictNullChecksNoWidening.types │ ├── strictNullEmptyDestructuring(target=es2015).errors.txt │ ├── strictNullEmptyDestructuring(target=es2015).js │ ├── strictNullEmptyDestructuring(target=es2015).symbols │ ├── strictNullEmptyDestructuring(target=es2015).types │ ├── strictNullEmptyDestructuring(target=es5).errors.txt │ ├── strictNullEmptyDestructuring(target=es5).js │ ├── strictNullEmptyDestructuring(target=es5).symbols │ ├── strictNullEmptyDestructuring(target=es5).types │ ├── strictNullLogicalAndOr.js │ ├── strictNullLogicalAndOr.symbols │ ├── strictNullLogicalAndOr.types │ ├── strictNullNotNullIndexTypeNoLib.errors.txt │ ├── strictNullNotNullIndexTypeNoLib.js │ ├── strictNullNotNullIndexTypeNoLib.symbols │ ├── strictNullNotNullIndexTypeNoLib.types │ ├── strictNullNotNullIndexTypeShouldWork.js │ ├── strictNullNotNullIndexTypeShouldWork.symbols │ ├── strictNullNotNullIndexTypeShouldWork.types │ ├── strictOptionalProperties1.errors.txt │ ├── strictOptionalProperties1.js │ ├── strictOptionalProperties1.symbols │ ├── strictOptionalProperties1.types │ ├── strictOptionalProperties2.js │ ├── strictOptionalProperties2.symbols │ ├── strictOptionalProperties2.types │ ├── strictOptionalProperties3.errors.txt │ ├── strictOptionalProperties3.symbols │ ├── strictOptionalProperties3.types │ ├── strictOptionalProperties4.symbols │ ├── strictOptionalProperties4.types │ ├── strictPropertyInitialization.errors.txt │ ├── strictPropertyInitialization.js │ ├── strictPropertyInitialization.symbols │ ├── strictPropertyInitialization.types │ ├── strictSubtypeAndNarrowing.errors.txt │ ├── strictSubtypeAndNarrowing.js │ ├── strictSubtypeAndNarrowing.symbols │ ├── strictSubtypeAndNarrowing.types │ ├── strictTupleLength.errors.txt │ ├── strictTupleLength.js │ ├── strictTupleLength.symbols │ ├── strictTupleLength.types │ ├── strictTypeofUnionNarrowing.js │ ├── strictTypeofUnionNarrowing.symbols │ ├── strictTypeofUnionNarrowing.types │ ├── stringEnumInElementAccess01.js │ ├── stringEnumInElementAccess01.symbols │ ├── stringEnumInElementAccess01.types │ ├── stringEnumLiteralTypes1.js │ ├── stringEnumLiteralTypes1.symbols │ ├── stringEnumLiteralTypes1.types │ ├── stringEnumLiteralTypes2.js │ ├── stringEnumLiteralTypes2.symbols │ ├── stringEnumLiteralTypes2.types │ ├── stringEnumLiteralTypes3.errors.txt │ ├── stringEnumLiteralTypes3.js │ ├── stringEnumLiteralTypes3.symbols │ ├── stringEnumLiteralTypes3.types │ ├── stringHasStringValuedNumericIndexer.js │ ├── stringHasStringValuedNumericIndexer.symbols │ ├── stringHasStringValuedNumericIndexer.types │ ├── stringIncludes.js │ ├── stringIncludes.symbols │ ├── stringIncludes.types │ ├── stringIndexerAndConstructor.errors.txt │ ├── stringIndexerAndConstructor.js │ ├── stringIndexerAndConstructor.symbols │ ├── stringIndexerAndConstructor.types │ ├── stringIndexerAndConstructor1.errors.txt │ ├── stringIndexerAndConstructor1.js │ ├── stringIndexerAndConstructor1.symbols │ ├── stringIndexerAndConstructor1.types │ ├── stringIndexerAssignments1.errors.txt │ ├── stringIndexerAssignments1.js │ ├── stringIndexerAssignments1.symbols │ ├── stringIndexerAssignments1.types │ ├── stringIndexerAssignments2.errors.txt │ ├── stringIndexerAssignments2.js │ ├── stringIndexerAssignments2.symbols │ ├── stringIndexerAssignments2.types │ ├── stringIndexerConstrainsPropertyDeclarations.errors.txt │ ├── stringIndexerConstrainsPropertyDeclarations.js │ ├── stringIndexerConstrainsPropertyDeclarations.symbols │ ├── stringIndexerConstrainsPropertyDeclarations.types │ ├── stringIndexerConstrainsPropertyDeclarations2.errors.txt │ ├── stringIndexerConstrainsPropertyDeclarations2.js │ ├── stringIndexerConstrainsPropertyDeclarations2.symbols │ ├── stringIndexerConstrainsPropertyDeclarations2.types │ ├── stringIndexingResults.errors.txt │ ├── stringIndexingResults.js │ ├── stringIndexingResults.symbols │ ├── stringIndexingResults.types │ ├── stringLiteralCheckedInIf01.js │ ├── stringLiteralCheckedInIf01.symbols │ ├── stringLiteralCheckedInIf01.types │ ├── stringLiteralCheckedInIf02.js │ ├── stringLiteralCheckedInIf02.symbols │ ├── stringLiteralCheckedInIf02.types │ ├── stringLiteralMatchedInSwitch01.errors.txt │ ├── stringLiteralMatchedInSwitch01.js │ ├── stringLiteralMatchedInSwitch01.symbols │ ├── stringLiteralMatchedInSwitch01.types │ ├── stringLiteralObjectLiteralDeclaration1.js │ ├── stringLiteralObjectLiteralDeclaration1.symbols │ ├── stringLiteralObjectLiteralDeclaration1.types │ ├── stringLiteralPropertyNameWithLineContinuation1.js │ ├── stringLiteralPropertyNameWithLineContinuation1.symbols │ ├── stringLiteralPropertyNameWithLineContinuation1.types │ ├── stringLiteralType.js │ ├── stringLiteralType.symbols │ ├── stringLiteralType.types │ ├── stringLiteralTypeAssertion01.errors.txt │ ├── stringLiteralTypeAssertion01.js │ ├── stringLiteralTypeAssertion01.symbols │ ├── stringLiteralTypeAssertion01.types │ ├── stringLiteralTypeIsSubtypeOfString.errors.txt │ ├── stringLiteralTypeIsSubtypeOfString.js │ ├── stringLiteralTypeIsSubtypeOfString.symbols │ ├── stringLiteralTypeIsSubtypeOfString.types │ ├── stringLiteralTypesAndLogicalOrExpressions01.js │ ├── stringLiteralTypesAndLogicalOrExpressions01.symbols │ ├── stringLiteralTypesAndLogicalOrExpressions01.types │ ├── stringLiteralTypesAndParenthesizedExpressions01.errors.txt │ ├── stringLiteralTypesAndParenthesizedExpressions01.js │ ├── stringLiteralTypesAndParenthesizedExpressions01.symbols │ ├── stringLiteralTypesAndParenthesizedExpressions01.types │ ├── stringLiteralTypesAndTuples01.js │ ├── stringLiteralTypesAndTuples01.symbols │ ├── stringLiteralTypesAndTuples01.types │ ├── stringLiteralTypesAsTags01.js │ ├── stringLiteralTypesAsTags01.symbols │ ├── stringLiteralTypesAsTags01.types │ ├── stringLiteralTypesAsTags02.js │ ├── stringLiteralTypesAsTags02.symbols │ ├── stringLiteralTypesAsTags02.types │ ├── stringLiteralTypesAsTags03.js │ ├── stringLiteralTypesAsTags03.symbols │ ├── stringLiteralTypesAsTags03.types │ ├── stringLiteralTypesAsTypeParameterConstraint01.js │ ├── stringLiteralTypesAsTypeParameterConstraint01.symbols │ ├── stringLiteralTypesAsTypeParameterConstraint01.types │ ├── stringLiteralTypesAsTypeParameterConstraint02.js │ ├── stringLiteralTypesAsTypeParameterConstraint02.symbols │ ├── stringLiteralTypesAsTypeParameterConstraint02.types │ ├── stringLiteralTypesInImplementationSignatures.js │ ├── stringLiteralTypesInImplementationSignatures.symbols │ ├── stringLiteralTypesInImplementationSignatures.types │ ├── stringLiteralTypesInImplementationSignatures2.errors.txt │ ├── stringLiteralTypesInImplementationSignatures2.js │ ├── stringLiteralTypesInImplementationSignatures2.symbols │ ├── stringLiteralTypesInImplementationSignatures2.types │ ├── stringLiteralTypesInUnionTypes01.js │ ├── stringLiteralTypesInUnionTypes01.symbols │ ├── stringLiteralTypesInUnionTypes01.types │ ├── stringLiteralTypesInUnionTypes02.js │ ├── stringLiteralTypesInUnionTypes02.symbols │ ├── stringLiteralTypesInUnionTypes02.types │ ├── stringLiteralTypesInUnionTypes03.js │ ├── stringLiteralTypesInUnionTypes03.symbols │ ├── stringLiteralTypesInUnionTypes03.types │ ├── stringLiteralTypesInUnionTypes04.js │ ├── stringLiteralTypesInUnionTypes04.symbols │ ├── stringLiteralTypesInUnionTypes04.types │ ├── stringLiteralTypesInVariableDeclarations01.errors.txt │ ├── stringLiteralTypesInVariableDeclarations01.js │ ├── stringLiteralTypesInVariableDeclarations01.symbols │ ├── stringLiteralTypesInVariableDeclarations01.types │ ├── stringLiteralTypesOverloadAssignability01.errors.txt │ ├── stringLiteralTypesOverloadAssignability01.js │ ├── stringLiteralTypesOverloadAssignability01.symbols │ ├── stringLiteralTypesOverloadAssignability01.types │ ├── stringLiteralTypesOverloadAssignability02.errors.txt │ ├── stringLiteralTypesOverloadAssignability02.js │ ├── stringLiteralTypesOverloadAssignability02.symbols │ ├── stringLiteralTypesOverloadAssignability02.types │ ├── stringLiteralTypesOverloadAssignability03.js │ ├── stringLiteralTypesOverloadAssignability03.symbols │ ├── stringLiteralTypesOverloadAssignability03.types │ ├── stringLiteralTypesOverloadAssignability04.js │ ├── stringLiteralTypesOverloadAssignability04.symbols │ ├── stringLiteralTypesOverloadAssignability04.types │ ├── stringLiteralTypesOverloadAssignability05.errors.txt │ ├── stringLiteralTypesOverloadAssignability05.js │ ├── stringLiteralTypesOverloadAssignability05.symbols │ ├── stringLiteralTypesOverloadAssignability05.types │ ├── stringLiteralTypesOverloads01.js │ ├── stringLiteralTypesOverloads01.symbols │ ├── stringLiteralTypesOverloads01.types │ ├── stringLiteralTypesOverloads02.js │ ├── stringLiteralTypesOverloads02.symbols │ ├── stringLiteralTypesOverloads02.types │ ├── stringLiteralTypesOverloads03.errors.txt │ ├── stringLiteralTypesOverloads03.js │ ├── stringLiteralTypesOverloads03.symbols │ ├── stringLiteralTypesOverloads03.types │ ├── stringLiteralTypesOverloads04.js │ ├── stringLiteralTypesOverloads04.symbols │ ├── stringLiteralTypesOverloads04.types │ ├── stringLiteralTypesOverloads05.errors.txt │ ├── stringLiteralTypesOverloads05.js │ ├── stringLiteralTypesOverloads05.symbols │ ├── stringLiteralTypesOverloads05.types │ ├── stringLiteralTypesTypePredicates01.js │ ├── stringLiteralTypesTypePredicates01.symbols │ ├── stringLiteralTypesTypePredicates01.types │ ├── stringLiteralTypesWithTemplateStrings01.js │ ├── stringLiteralTypesWithTemplateStrings01.symbols │ ├── stringLiteralTypesWithTemplateStrings01.types │ ├── stringLiteralTypesWithTemplateStrings02.errors.txt │ ├── stringLiteralTypesWithTemplateStrings02.js │ ├── stringLiteralTypesWithTemplateStrings02.symbols │ ├── stringLiteralTypesWithTemplateStrings02.types │ ├── stringLiteralTypesWithVariousOperators01.js │ ├── stringLiteralTypesWithVariousOperators01.symbols │ ├── stringLiteralTypesWithVariousOperators01.types │ ├── stringLiteralTypesWithVariousOperators02.errors.txt │ ├── stringLiteralTypesWithVariousOperators02.js │ ├── stringLiteralTypesWithVariousOperators02.symbols │ ├── stringLiteralTypesWithVariousOperators02.types │ ├── stringLiteralsAssertionsInEqualityComparisons01.js │ ├── stringLiteralsAssertionsInEqualityComparisons01.symbols │ ├── stringLiteralsAssertionsInEqualityComparisons01.types │ ├── stringLiteralsAssertionsInEqualityComparisons02.errors.txt │ ├── stringLiteralsAssertionsInEqualityComparisons02.js │ ├── stringLiteralsAssertionsInEqualityComparisons02.symbols │ ├── stringLiteralsAssertionsInEqualityComparisons02.types │ ├── stringLiteralsAssignedToStringMappings.errors.txt │ ├── stringLiteralsAssignedToStringMappings.js │ ├── stringLiteralsAssignedToStringMappings.symbols │ ├── stringLiteralsAssignedToStringMappings.types │ ├── stringLiteralsErrors.errors.txt │ ├── stringLiteralsErrors.js │ ├── stringLiteralsErrors.symbols │ ├── stringLiteralsErrors.types │ ├── stringLiteralsWithEqualityChecks01.errors.txt │ ├── stringLiteralsWithEqualityChecks01.js │ ├── stringLiteralsWithEqualityChecks01.symbols │ ├── stringLiteralsWithEqualityChecks01.types │ ├── stringLiteralsWithEqualityChecks02.errors.txt │ ├── stringLiteralsWithEqualityChecks02.js │ ├── stringLiteralsWithEqualityChecks02.symbols │ ├── stringLiteralsWithEqualityChecks02.types │ ├── stringLiteralsWithEqualityChecks03.errors.txt │ ├── stringLiteralsWithEqualityChecks03.js │ ├── stringLiteralsWithEqualityChecks03.symbols │ ├── stringLiteralsWithEqualityChecks03.types │ ├── stringLiteralsWithEqualityChecks04.errors.txt │ ├── stringLiteralsWithEqualityChecks04.js │ ├── stringLiteralsWithEqualityChecks04.symbols │ ├── stringLiteralsWithEqualityChecks04.types │ ├── stringLiteralsWithSwitchStatements01.errors.txt │ ├── stringLiteralsWithSwitchStatements01.js │ ├── stringLiteralsWithSwitchStatements01.symbols │ ├── stringLiteralsWithSwitchStatements01.types │ ├── stringLiteralsWithSwitchStatements02.errors.txt │ ├── stringLiteralsWithSwitchStatements02.js │ ├── stringLiteralsWithSwitchStatements02.symbols │ ├── stringLiteralsWithSwitchStatements02.types │ ├── stringLiteralsWithSwitchStatements03.errors.txt │ ├── stringLiteralsWithSwitchStatements03.js │ ├── stringLiteralsWithSwitchStatements03.symbols │ ├── stringLiteralsWithSwitchStatements03.types │ ├── stringLiteralsWithSwitchStatements04.errors.txt │ ├── stringLiteralsWithSwitchStatements04.js │ ├── stringLiteralsWithSwitchStatements04.symbols │ ├── stringLiteralsWithSwitchStatements04.types │ ├── stringLiteralsWithTypeAssertions01.errors.txt │ ├── stringLiteralsWithTypeAssertions01.js │ ├── stringLiteralsWithTypeAssertions01.symbols │ ├── stringLiteralsWithTypeAssertions01.types │ ├── stringMappingAssignability.errors.txt │ ├── stringMappingAssignability.js │ ├── stringMappingAssignability.symbols │ ├── stringMappingAssignability.types │ ├── stringMappingDeferralInConditionalTypes.symbols │ ├── stringMappingDeferralInConditionalTypes.types │ ├── stringMappingOverPatternLiterals.errors.txt │ ├── stringMappingOverPatternLiterals.js │ ├── stringMappingOverPatternLiterals.symbols │ ├── stringMappingOverPatternLiterals.types │ ├── stringMappingReduction.symbols │ ├── stringMappingReduction.types │ ├── stringMatchAll.js │ ├── stringMatchAll.symbols │ ├── stringMatchAll.types │ ├── stringNamedPropertyAccess.errors.txt │ ├── stringNamedPropertyAccess.js │ ├── stringNamedPropertyAccess.symbols │ ├── stringNamedPropertyAccess.types │ ├── stringNamedPropertyDuplicates.errors.txt │ ├── stringNamedPropertyDuplicates.js │ ├── stringNamedPropertyDuplicates.symbols │ ├── stringNamedPropertyDuplicates.types │ ├── stringPropCodeGen.js │ ├── stringPropCodeGen.symbols │ ├── stringPropCodeGen.types │ ├── stringPropertyAccess.js │ ├── stringPropertyAccess.symbols │ ├── stringPropertyAccess.types │ ├── stringPropertyAccessWithError.errors.txt │ ├── stringPropertyAccessWithError.js │ ├── stringPropertyAccessWithError.symbols │ ├── stringPropertyAccessWithError.types │ ├── stringRawType.js │ ├── stringRawType.symbols │ ├── stringRawType.types │ ├── stringTrim.js │ ├── stringTrim.symbols │ ├── stringTrim.types │ ├── stripInternal1.js │ ├── stripInternal1.symbols │ ├── stripInternal1.types │ ├── stripMembersOptionality(exactoptionalpropertytypes=false).symbols │ ├── stripMembersOptionality(exactoptionalpropertytypes=false).types │ ├── stripMembersOptionality(exactoptionalpropertytypes=true).symbols │ ├── stripMembersOptionality(exactoptionalpropertytypes=true).types │ ├── structural1.js │ ├── structural1.symbols │ ├── structural1.types │ ├── structuralTypeInDeclareFileForModule.js │ ├── structuralTypeInDeclareFileForModule.symbols │ ├── structuralTypeInDeclareFileForModule.types │ ├── styleOptions.js │ ├── styleOptions.symbols │ ├── styleOptions.types │ ├── styledComponentsInstantiaionLimitNotReached.errors.txt │ ├── styledComponentsInstantiaionLimitNotReached.js │ ├── styledComponentsInstantiaionLimitNotReached.symbols │ ├── styledComponentsInstantiaionLimitNotReached.types │ ├── subSubClassCanAccessProtectedConstructor.js │ ├── subSubClassCanAccessProtectedConstructor.symbols │ ├── subSubClassCanAccessProtectedConstructor.types │ ├── subclassThisTypeAssignable01.errors.txt │ ├── subclassThisTypeAssignable01.js │ ├── subclassThisTypeAssignable01.symbols │ ├── subclassThisTypeAssignable01.types │ ├── subclassThisTypeAssignable02.js │ ├── subclassThisTypeAssignable02.symbols │ ├── subclassThisTypeAssignable02.types │ ├── subclassUint8Array.symbols │ ├── subclassUint8Array.types │ ├── subclassWithPolymorphicThisIsAssignable.js │ ├── subclassWithPolymorphicThisIsAssignable.symbols │ ├── subclassWithPolymorphicThisIsAssignable.types │ ├── substituteReturnTypeSatisfiesConstraint.js │ ├── substituteReturnTypeSatisfiesConstraint.symbols │ ├── substituteReturnTypeSatisfiesConstraint.types │ ├── substitutionTypeForIndexedAccessType1.js │ ├── substitutionTypeForIndexedAccessType1.symbols │ ├── substitutionTypeForIndexedAccessType1.types │ ├── substitutionTypeForIndexedAccessType2.js │ ├── substitutionTypeForIndexedAccessType2.symbols │ ├── substitutionTypeForIndexedAccessType2.types │ ├── substitutionTypeForNonGenericIndexedAccessType.symbols │ ├── substitutionTypeForNonGenericIndexedAccessType.types │ ├── substitutionTypeNoMergeOfAssignableType.js │ ├── substitutionTypeNoMergeOfAssignableType.symbols │ ├── substitutionTypeNoMergeOfAssignableType.types │ ├── substitutionTypePassedToExtends.js │ ├── substitutionTypePassedToExtends.symbols │ ├── substitutionTypePassedToExtends.types │ ├── substitutionTypesCompareCorrectlyInRestrictiveInstances.js │ ├── substitutionTypesCompareCorrectlyInRestrictiveInstances.symbols │ ├── substitutionTypesCompareCorrectlyInRestrictiveInstances.types │ ├── substitutionTypesInIndexedAccessTypes.js │ ├── substitutionTypesInIndexedAccessTypes.symbols │ ├── substitutionTypesInIndexedAccessTypes.types │ ├── subtypeReductionUnionConstraints.symbols │ ├── subtypeReductionUnionConstraints.types │ ├── subtypeReductionWithAnyFunctionType.errors.txt │ ├── subtypeReductionWithAnyFunctionType.symbols │ ├── subtypeReductionWithAnyFunctionType.types │ ├── subtypeRelationForNever.js │ ├── subtypeRelationForNever.symbols │ ├── subtypeRelationForNever.types │ ├── subtypesOfAny.js │ ├── subtypesOfAny.symbols │ ├── subtypesOfAny.types │ ├── subtypesOfTypeParameter.errors.txt │ ├── subtypesOfTypeParameter.js │ ├── subtypesOfTypeParameter.symbols │ ├── subtypesOfTypeParameter.types │ ├── subtypesOfTypeParameterWithConstraints.errors.txt │ ├── subtypesOfTypeParameterWithConstraints.js │ ├── subtypesOfTypeParameterWithConstraints.symbols │ ├── subtypesOfTypeParameterWithConstraints.types │ ├── subtypesOfTypeParameterWithConstraints2.errors.txt │ ├── subtypesOfTypeParameterWithConstraints2.js │ ├── subtypesOfTypeParameterWithConstraints2.symbols │ ├── subtypesOfTypeParameterWithConstraints2.types │ ├── subtypesOfTypeParameterWithConstraints3.js │ ├── subtypesOfTypeParameterWithConstraints3.symbols │ ├── subtypesOfTypeParameterWithConstraints3.types │ ├── subtypesOfTypeParameterWithConstraints4.errors.txt │ ├── subtypesOfTypeParameterWithConstraints4.js │ ├── subtypesOfTypeParameterWithConstraints4.symbols │ ├── subtypesOfTypeParameterWithConstraints4.types │ ├── subtypesOfTypeParameterWithRecursiveConstraints.errors.txt │ ├── subtypesOfTypeParameterWithRecursiveConstraints.js │ ├── subtypesOfTypeParameterWithRecursiveConstraints.symbols │ ├── subtypesOfTypeParameterWithRecursiveConstraints.types │ ├── subtypesOfUnion.errors.txt │ ├── subtypesOfUnion.js │ ├── subtypesOfUnion.symbols │ ├── subtypesOfUnion.types │ ├── subtypingTransitivity.errors.txt │ ├── subtypingTransitivity.js │ ├── subtypingTransitivity.symbols │ ├── subtypingTransitivity.types │ ├── subtypingWithCallSignatures.js │ ├── subtypingWithCallSignatures.symbols │ ├── subtypingWithCallSignatures.types │ ├── subtypingWithCallSignatures2.errors.txt │ ├── subtypingWithCallSignatures2.js │ ├── subtypingWithCallSignatures2.symbols │ ├── subtypingWithCallSignatures2.types │ ├── subtypingWithCallSignatures3.errors.txt │ ├── subtypingWithCallSignatures3.js │ ├── subtypingWithCallSignatures3.symbols │ ├── subtypingWithCallSignatures3.types │ ├── subtypingWithCallSignatures4.js │ ├── subtypingWithCallSignatures4.symbols │ ├── subtypingWithCallSignatures4.types │ ├── subtypingWithCallSignaturesA.errors.txt │ ├── subtypingWithCallSignaturesA.js │ ├── subtypingWithCallSignaturesA.symbols │ ├── subtypingWithCallSignaturesA.types │ ├── subtypingWithCallSignaturesWithOptionalParameters.errors.txt │ ├── subtypingWithCallSignaturesWithOptionalParameters.js │ ├── subtypingWithCallSignaturesWithOptionalParameters.symbols │ ├── subtypingWithCallSignaturesWithOptionalParameters.types │ ├── subtypingWithCallSignaturesWithRestParameters.errors.txt │ ├── subtypingWithCallSignaturesWithRestParameters.js │ ├── subtypingWithCallSignaturesWithRestParameters.symbols │ ├── subtypingWithCallSignaturesWithRestParameters.types │ ├── subtypingWithCallSignaturesWithSpecializedSignatures.errors.txt │ ├── subtypingWithCallSignaturesWithSpecializedSignatures.js │ ├── subtypingWithCallSignaturesWithSpecializedSignatures.symbols │ ├── subtypingWithCallSignaturesWithSpecializedSignatures.types │ ├── subtypingWithConstructSignatures.errors.txt │ ├── subtypingWithConstructSignatures.js │ ├── subtypingWithConstructSignatures.symbols │ ├── subtypingWithConstructSignatures.types │ ├── subtypingWithConstructSignatures2.errors.txt │ ├── subtypingWithConstructSignatures2.js │ ├── subtypingWithConstructSignatures2.symbols │ ├── subtypingWithConstructSignatures2.types │ ├── subtypingWithConstructSignatures3.errors.txt │ ├── subtypingWithConstructSignatures3.js │ ├── subtypingWithConstructSignatures3.symbols │ ├── subtypingWithConstructSignatures3.types │ ├── subtypingWithConstructSignatures4.js │ ├── subtypingWithConstructSignatures4.symbols │ ├── subtypingWithConstructSignatures4.types │ ├── subtypingWithConstructSignatures5.errors.txt │ ├── subtypingWithConstructSignatures5.js │ ├── subtypingWithConstructSignatures5.symbols │ ├── subtypingWithConstructSignatures5.types │ ├── subtypingWithConstructSignatures6.errors.txt │ ├── subtypingWithConstructSignatures6.js │ ├── subtypingWithConstructSignatures6.symbols │ ├── subtypingWithConstructSignatures6.types │ ├── subtypingWithConstructSignaturesWithOptionalParameters.errors.txt │ ├── subtypingWithConstructSignaturesWithOptionalParameters.js │ ├── subtypingWithConstructSignaturesWithOptionalParameters.symbols │ ├── subtypingWithConstructSignaturesWithOptionalParameters.types │ ├── subtypingWithConstructSignaturesWithSpecializedSignatures.errors.txt │ ├── subtypingWithConstructSignaturesWithSpecializedSignatures.js │ ├── subtypingWithConstructSignaturesWithSpecializedSignatures.symbols │ ├── subtypingWithConstructSignaturesWithSpecializedSignatures.types │ ├── subtypingWithGenericCallSignaturesWithOptionalParameters.errors.txt │ ├── subtypingWithGenericCallSignaturesWithOptionalParameters.js │ ├── subtypingWithGenericCallSignaturesWithOptionalParameters.symbols │ ├── subtypingWithGenericCallSignaturesWithOptionalParameters.types │ ├── subtypingWithGenericConstructSignaturesWithOptionalParameters.errors.txt │ ├── subtypingWithGenericConstructSignaturesWithOptionalParameters.js │ ├── subtypingWithGenericConstructSignaturesWithOptionalParameters.symbols │ ├── subtypingWithGenericConstructSignaturesWithOptionalParameters.types │ ├── subtypingWithNumericIndexer.errors.txt │ ├── subtypingWithNumericIndexer.js │ ├── subtypingWithNumericIndexer.symbols │ ├── subtypingWithNumericIndexer.types │ ├── subtypingWithNumericIndexer2.errors.txt │ ├── subtypingWithNumericIndexer2.js │ ├── subtypingWithNumericIndexer2.symbols │ ├── subtypingWithNumericIndexer2.types │ ├── subtypingWithNumericIndexer3.errors.txt │ ├── subtypingWithNumericIndexer3.js │ ├── subtypingWithNumericIndexer3.symbols │ ├── subtypingWithNumericIndexer3.types │ ├── subtypingWithNumericIndexer4.errors.txt │ ├── subtypingWithNumericIndexer4.js │ ├── subtypingWithNumericIndexer4.symbols │ ├── subtypingWithNumericIndexer4.types │ ├── subtypingWithNumericIndexer5.errors.txt │ ├── subtypingWithNumericIndexer5.js │ ├── subtypingWithNumericIndexer5.symbols │ ├── subtypingWithNumericIndexer5.types │ ├── subtypingWithObjectMembers.errors.txt │ ├── subtypingWithObjectMembers.js │ ├── subtypingWithObjectMembers.symbols │ ├── subtypingWithObjectMembers.types │ ├── subtypingWithObjectMembers2.errors.txt │ ├── subtypingWithObjectMembers2.js │ ├── subtypingWithObjectMembers2.symbols │ ├── subtypingWithObjectMembers2.types │ ├── subtypingWithObjectMembers3.errors.txt │ ├── subtypingWithObjectMembers3.js │ ├── subtypingWithObjectMembers3.symbols │ ├── subtypingWithObjectMembers3.types │ ├── subtypingWithObjectMembers4.errors.txt │ ├── subtypingWithObjectMembers4.js │ ├── subtypingWithObjectMembers4.symbols │ ├── subtypingWithObjectMembers4.types │ ├── subtypingWithObjectMembers5.errors.txt │ ├── subtypingWithObjectMembers5.js │ ├── subtypingWithObjectMembers5.symbols │ ├── subtypingWithObjectMembers5.types │ ├── subtypingWithObjectMembersAccessibility.errors.txt │ ├── subtypingWithObjectMembersAccessibility.js │ ├── subtypingWithObjectMembersAccessibility.symbols │ ├── subtypingWithObjectMembersAccessibility.types │ ├── subtypingWithObjectMembersAccessibility2.errors.txt │ ├── subtypingWithObjectMembersAccessibility2.js │ ├── subtypingWithObjectMembersAccessibility2.symbols │ ├── subtypingWithObjectMembersAccessibility2.types │ ├── subtypingWithObjectMembersOptionality.errors.txt │ ├── subtypingWithObjectMembersOptionality.js │ ├── subtypingWithObjectMembersOptionality.symbols │ ├── subtypingWithObjectMembersOptionality.types │ ├── subtypingWithObjectMembersOptionality2.errors.txt │ ├── subtypingWithObjectMembersOptionality2.js │ ├── subtypingWithObjectMembersOptionality2.symbols │ ├── subtypingWithObjectMembersOptionality2.types │ ├── subtypingWithObjectMembersOptionality3.errors.txt │ ├── subtypingWithObjectMembersOptionality3.js │ ├── subtypingWithObjectMembersOptionality3.symbols │ ├── subtypingWithObjectMembersOptionality3.types │ ├── subtypingWithObjectMembersOptionality4.errors.txt │ ├── subtypingWithObjectMembersOptionality4.js │ ├── subtypingWithObjectMembersOptionality4.symbols │ ├── subtypingWithObjectMembersOptionality4.types │ ├── subtypingWithOptionalProperties.errors.txt │ ├── subtypingWithOptionalProperties.js │ ├── subtypingWithOptionalProperties.symbols │ ├── subtypingWithOptionalProperties.types │ ├── subtypingWithStringIndexer.errors.txt │ ├── subtypingWithStringIndexer.js │ ├── subtypingWithStringIndexer.symbols │ ├── subtypingWithStringIndexer.types │ ├── subtypingWithStringIndexer2.errors.txt │ ├── subtypingWithStringIndexer2.js │ ├── subtypingWithStringIndexer2.symbols │ ├── subtypingWithStringIndexer2.types │ ├── subtypingWithStringIndexer3.errors.txt │ ├── subtypingWithStringIndexer3.js │ ├── subtypingWithStringIndexer3.symbols │ ├── subtypingWithStringIndexer3.types │ ├── subtypingWithStringIndexer4.errors.txt │ ├── subtypingWithStringIndexer4.js │ ├── subtypingWithStringIndexer4.symbols │ ├── subtypingWithStringIndexer4.types │ ├── super.errors.txt │ ├── super.js │ ├── super.symbols │ ├── super.types │ ├── super1.errors.txt │ ├── super1.js │ ├── super1.symbols │ ├── super1.types │ ├── super2.js │ ├── super2.symbols │ ├── super2.types │ ├── superAccess(target=es2015).errors.txt │ ├── superAccess(target=es2015).js │ ├── superAccess(target=es2015).symbols │ ├── superAccess(target=es2015).types │ ├── superAccess(target=es5).errors.txt │ ├── superAccess(target=es5).js │ ├── superAccess(target=es5).symbols │ ├── superAccess(target=es5).types │ ├── superAccess2.errors.txt │ ├── superAccess2.js │ ├── superAccess2.symbols │ ├── superAccess2.types │ ├── superAccessCastedCall.js │ ├── superAccessCastedCall.symbols │ ├── superAccessCastedCall.types │ ├── superAccessInFatArrow1.js │ ├── superAccessInFatArrow1.symbols │ ├── superAccessInFatArrow1.types │ ├── superCallArgsMustMatch.errors.txt │ ├── superCallArgsMustMatch.js │ ├── superCallArgsMustMatch.symbols │ ├── superCallArgsMustMatch.types │ ├── superCallAssignResult.errors.txt │ ├── superCallAssignResult.js │ ├── superCallAssignResult.symbols │ ├── superCallAssignResult.types │ ├── superCallBeforeThisAccessing1.js │ ├── superCallBeforeThisAccessing1.symbols │ ├── superCallBeforeThisAccessing1.types │ ├── superCallBeforeThisAccessing2.js │ ├── superCallBeforeThisAccessing2.symbols │ ├── superCallBeforeThisAccessing2.types │ ├── superCallBeforeThisAccessing3.errors.txt │ ├── superCallBeforeThisAccessing3.js │ ├── superCallBeforeThisAccessing3.symbols │ ├── superCallBeforeThisAccessing3.types │ ├── superCallBeforeThisAccessing4.errors.txt │ ├── superCallBeforeThisAccessing4.js │ ├── superCallBeforeThisAccessing4.symbols │ ├── superCallBeforeThisAccessing4.types │ ├── superCallBeforeThisAccessing5.js │ ├── superCallBeforeThisAccessing5.symbols │ ├── superCallBeforeThisAccessing5.types │ ├── superCallBeforeThisAccessing6.errors.txt │ ├── superCallBeforeThisAccessing6.js │ ├── superCallBeforeThisAccessing6.symbols │ ├── superCallBeforeThisAccessing6.types │ ├── superCallBeforeThisAccessing7.errors.txt │ ├── superCallBeforeThisAccessing7.js │ ├── superCallBeforeThisAccessing7.symbols │ ├── superCallBeforeThisAccessing7.types │ ├── superCallBeforeThisAccessing8.js │ ├── superCallBeforeThisAccessing8.symbols │ ├── superCallBeforeThisAccessing8.types │ ├── superCallFromClassThatDerivesFromGenericType1.js │ ├── superCallFromClassThatDerivesFromGenericType1.symbols │ ├── superCallFromClassThatDerivesFromGenericType1.types │ ├── superCallFromClassThatDerivesFromGenericType2.js │ ├── superCallFromClassThatDerivesFromGenericType2.symbols │ ├── superCallFromClassThatDerivesFromGenericType2.types │ ├── superCallFromClassThatDerivesFromGenericTypeButWithIncorrectNumberOfTypeArguments1.errors.txt │ ├── superCallFromClassThatDerivesFromGenericTypeButWithIncorrectNumberOfTypeArguments1.js │ ├── superCallFromClassThatDerivesFromGenericTypeButWithIncorrectNumberOfTypeArguments1.symbols │ ├── superCallFromClassThatDerivesFromGenericTypeButWithIncorrectNumberOfTypeArguments1.types │ ├── superCallFromClassThatDerivesFromGenericTypeButWithNoTypeArguments1.errors.txt │ ├── superCallFromClassThatDerivesFromGenericTypeButWithNoTypeArguments1.js │ ├── superCallFromClassThatDerivesFromGenericTypeButWithNoTypeArguments1.symbols │ ├── superCallFromClassThatDerivesFromGenericTypeButWithNoTypeArguments1.types │ ├── superCallFromClassThatDerivesNonGenericTypeButWithTypeArguments1.errors.txt │ ├── superCallFromClassThatDerivesNonGenericTypeButWithTypeArguments1.js │ ├── superCallFromClassThatDerivesNonGenericTypeButWithTypeArguments1.symbols │ ├── superCallFromClassThatDerivesNonGenericTypeButWithTypeArguments1.types │ ├── superCallFromClassThatHasNoBaseType1.errors.txt │ ├── superCallFromClassThatHasNoBaseType1.js │ ├── superCallFromClassThatHasNoBaseType1.symbols │ ├── superCallFromClassThatHasNoBaseType1.types │ ├── superCallFromClassThatHasNoBaseTypeButWithSameSymbolInterface.errors.txt │ ├── superCallFromClassThatHasNoBaseTypeButWithSameSymbolInterface.js │ ├── superCallFromClassThatHasNoBaseTypeButWithSameSymbolInterface.symbols │ ├── superCallFromClassThatHasNoBaseTypeButWithSameSymbolInterface.types │ ├── superCallFromFunction1.errors.txt │ ├── superCallFromFunction1.js │ ├── superCallFromFunction1.symbols │ ├── superCallFromFunction1.types │ ├── superCallInConstructorWithNoBaseType.errors.txt │ ├── superCallInConstructorWithNoBaseType.js │ ├── superCallInConstructorWithNoBaseType.symbols │ ├── superCallInConstructorWithNoBaseType.types │ ├── superCallInNonStaticMethod.js │ ├── superCallInNonStaticMethod.symbols │ ├── superCallInNonStaticMethod.types │ ├── superCallInStaticMethod.js │ ├── superCallInStaticMethod.symbols │ ├── superCallInStaticMethod.types │ ├── superCallInsideClassDeclaration.errors.txt │ ├── superCallInsideClassDeclaration.js │ ├── superCallInsideClassDeclaration.symbols │ ├── superCallInsideClassDeclaration.types │ ├── superCallInsideClassExpression.errors.txt │ ├── superCallInsideClassExpression.js │ ├── superCallInsideClassExpression.symbols │ ├── superCallInsideClassExpression.types │ ├── superCallInsideObjectLiteralExpression.js │ ├── superCallInsideObjectLiteralExpression.symbols │ ├── superCallInsideObjectLiteralExpression.types │ ├── superCallOutsideConstructor.errors.txt │ ├── superCallOutsideConstructor.js │ ├── superCallOutsideConstructor.symbols │ ├── superCallOutsideConstructor.types │ ├── superCallParameterContextualTyping1.js │ ├── superCallParameterContextualTyping1.symbols │ ├── superCallParameterContextualTyping1.types │ ├── superCallParameterContextualTyping2.errors.txt │ ├── superCallParameterContextualTyping2.js │ ├── superCallParameterContextualTyping2.symbols │ ├── superCallParameterContextualTyping2.types │ ├── superCallParameterContextualTyping3.js │ ├── superCallParameterContextualTyping3.symbols │ ├── superCallParameterContextualTyping3.types │ ├── superCallWithCommentEmit01.js │ ├── superCallWithCommentEmit01.symbols │ ├── superCallWithCommentEmit01.types │ ├── superCallWithMissingBaseClass.errors.txt │ ├── superCallWithMissingBaseClass.js │ ├── superCallWithMissingBaseClass.symbols │ ├── superCallWithMissingBaseClass.types │ ├── superCalls.js │ ├── superCalls.symbols │ ├── superCalls.types │ ├── superCallsInConstructor.errors.txt │ ├── superCallsInConstructor.js │ ├── superCallsInConstructor.symbols │ ├── superCallsInConstructor.types │ ├── superElementAccess.js │ ├── superElementAccess.symbols │ ├── superElementAccess.types │ ├── superErrors.errors.txt │ ├── superErrors.js │ ├── superErrors.symbols │ ├── superErrors.types │ ├── superHasMethodsFromMergedInterface.js │ ├── superHasMethodsFromMergedInterface.symbols │ ├── superHasMethodsFromMergedInterface.types │ ├── superInCatchBlock1.js │ ├── superInCatchBlock1.symbols │ ├── superInCatchBlock1.types │ ├── superInConstructorParam1.errors.txt │ ├── superInConstructorParam1.js │ ├── superInConstructorParam1.symbols │ ├── superInConstructorParam1.types │ ├── superInLambdas(target=es2015).errors.txt │ ├── superInLambdas(target=es2015).js │ ├── superInLambdas(target=es2015).symbols │ ├── superInLambdas(target=es2015).types │ ├── superInLambdas(target=es5).errors.txt │ ├── superInLambdas(target=es5).js │ ├── superInLambdas(target=es5).symbols │ ├── superInLambdas(target=es5).types │ ├── superInObjectLiterals_ES5(target=es2015).errors.txt │ ├── superInObjectLiterals_ES5(target=es2015).js │ ├── superInObjectLiterals_ES5(target=es2015).symbols │ ├── superInObjectLiterals_ES5(target=es2015).types │ ├── superInObjectLiterals_ES5(target=es5).errors.txt │ ├── superInObjectLiterals_ES5(target=es5).js │ ├── superInObjectLiterals_ES5(target=es5).symbols │ ├── superInObjectLiterals_ES5(target=es5).types │ ├── superInObjectLiterals_ES6.errors.txt │ ├── superInObjectLiterals_ES6.js │ ├── superInObjectLiterals_ES6.symbols │ ├── superInObjectLiterals_ES6.types │ ├── superInStaticMembers1(target=es2015).errors.txt │ ├── superInStaticMembers1(target=es2015).js │ ├── superInStaticMembers1(target=es2021).errors.txt │ ├── superInStaticMembers1(target=es2021).js │ ├── superInStaticMembers1(target=es2022).js │ ├── superInStaticMembers1(target=es5).errors.txt │ ├── superInStaticMembers1(target=es5).js │ ├── superInStaticMembers1(target=esnext).js │ ├── superMethodCall.js │ ├── superMethodCall.symbols │ ├── superMethodCall.types │ ├── superNewCall1.errors.txt │ ├── superNewCall1.js │ ├── superNewCall1.symbols │ ├── superNewCall1.types │ ├── superNoModifiersCrash.js │ ├── superNoModifiersCrash.symbols │ ├── superNoModifiersCrash.types │ ├── superPropertyAccess(target=es2015).errors.txt │ ├── superPropertyAccess(target=es2015).js │ ├── superPropertyAccess(target=es2015).symbols │ ├── superPropertyAccess(target=es2015).types │ ├── superPropertyAccess(target=es5).errors.txt │ ├── superPropertyAccess(target=es5).js │ ├── superPropertyAccess(target=es5).symbols │ ├── superPropertyAccess(target=es5).types │ ├── superPropertyAccess1(target=es2015).js │ ├── superPropertyAccess1(target=es2015).symbols │ ├── superPropertyAccess1(target=es2015).types │ ├── superPropertyAccess1(target=es5).errors.txt │ ├── superPropertyAccess1(target=es5).js │ ├── superPropertyAccess1(target=es5).symbols │ ├── superPropertyAccess1(target=es5).types │ ├── superPropertyAccess2(target=es2015).errors.txt │ ├── superPropertyAccess2(target=es2015).js │ ├── superPropertyAccess2(target=es2015).symbols │ ├── superPropertyAccess2(target=es2015).types │ ├── superPropertyAccess2(target=es5).errors.txt │ ├── superPropertyAccess2(target=es5).js │ ├── superPropertyAccess2(target=es5).symbols │ ├── superPropertyAccess2(target=es5).types │ ├── superPropertyAccessInComputedPropertiesOfNestedType_ES5(target=es2015).js │ ├── superPropertyAccessInComputedPropertiesOfNestedType_ES5(target=es2015).symbols │ ├── superPropertyAccessInComputedPropertiesOfNestedType_ES5(target=es2015).types │ ├── superPropertyAccessInComputedPropertiesOfNestedType_ES5(target=es5).errors.txt │ ├── superPropertyAccessInComputedPropertiesOfNestedType_ES5(target=es5).js │ ├── superPropertyAccessInComputedPropertiesOfNestedType_ES5(target=es5).symbols │ ├── superPropertyAccessInComputedPropertiesOfNestedType_ES5(target=es5).types │ ├── superPropertyAccessInComputedPropertiesOfNestedType_ES6.js │ ├── superPropertyAccessInComputedPropertiesOfNestedType_ES6.symbols │ ├── superPropertyAccessInComputedPropertiesOfNestedType_ES6.types │ ├── superPropertyAccessInSuperCall01.errors.txt │ ├── superPropertyAccessInSuperCall01.js │ ├── superPropertyAccessInSuperCall01.symbols │ ├── superPropertyAccessInSuperCall01.types │ ├── superPropertyAccessNoError(target=es2015).js │ ├── superPropertyAccessNoError(target=es2015).symbols │ ├── superPropertyAccessNoError(target=es2015).types │ ├── superPropertyAccessNoError(target=es5).errors.txt │ ├── superPropertyAccessNoError(target=es5).js │ ├── superPropertyAccessNoError(target=es5).symbols │ ├── superPropertyAccessNoError(target=es5).types │ ├── superPropertyAccess_ES5(target=es2015).errors.txt │ ├── superPropertyAccess_ES5(target=es2015).js │ ├── superPropertyAccess_ES5(target=es2015).symbols │ ├── superPropertyAccess_ES5(target=es2015).types │ ├── superPropertyAccess_ES5(target=es5).errors.txt │ ├── superPropertyAccess_ES5(target=es5).js │ ├── superPropertyAccess_ES5(target=es5).symbols │ ├── superPropertyAccess_ES5(target=es5).types │ ├── superPropertyAccess_ES6.errors.txt │ ├── superPropertyAccess_ES6.js │ ├── superPropertyAccess_ES6.symbols │ ├── superPropertyAccess_ES6.types │ ├── superPropertyElementNoUnusedLexicalThisCapture.js │ ├── superPropertyElementNoUnusedLexicalThisCapture.symbols │ ├── superPropertyElementNoUnusedLexicalThisCapture.types │ ├── superPropertyInConstructorBeforeSuperCall.errors.txt │ ├── superPropertyInConstructorBeforeSuperCall.js │ ├── superPropertyInConstructorBeforeSuperCall.symbols │ ├── superPropertyInConstructorBeforeSuperCall.types │ ├── superSymbolIndexedAccess1.js │ ├── superSymbolIndexedAccess1.symbols │ ├── superSymbolIndexedAccess1.types │ ├── superSymbolIndexedAccess2.js │ ├── superSymbolIndexedAccess2.symbols │ ├── superSymbolIndexedAccess2.types │ ├── superSymbolIndexedAccess3.errors.txt │ ├── superSymbolIndexedAccess3.js │ ├── superSymbolIndexedAccess3.symbols │ ├── superSymbolIndexedAccess3.types │ ├── superSymbolIndexedAccess4.errors.txt │ ├── superSymbolIndexedAccess4.js │ ├── superSymbolIndexedAccess4.symbols │ ├── superSymbolIndexedAccess4.types │ ├── superSymbolIndexedAccess5(target=es2015).js │ ├── superSymbolIndexedAccess5(target=es2015).symbols │ ├── superSymbolIndexedAccess5(target=es2015).types │ ├── superSymbolIndexedAccess5(target=es5).errors.txt │ ├── superSymbolIndexedAccess5(target=es5).js │ ├── superSymbolIndexedAccess5(target=es5).symbols │ ├── superSymbolIndexedAccess5(target=es5).types │ ├── superSymbolIndexedAccess6(target=es2015).js │ ├── superSymbolIndexedAccess6(target=es2015).symbols │ ├── superSymbolIndexedAccess6(target=es2015).types │ ├── superSymbolIndexedAccess6(target=es5).errors.txt │ ├── superSymbolIndexedAccess6(target=es5).js │ ├── superSymbolIndexedAccess6(target=es5).symbols │ ├── superSymbolIndexedAccess6(target=es5).types │ ├── superWithGenericSpecialization.errors.txt │ ├── superWithGenericSpecialization.js │ ├── superWithGenericSpecialization.symbols │ ├── superWithGenericSpecialization.types │ ├── superWithGenerics.js │ ├── superWithGenerics.symbols │ ├── superWithGenerics.types │ ├── superWithTypeArgument.errors.txt │ ├── superWithTypeArgument.js │ ├── superWithTypeArgument.symbols │ ├── superWithTypeArgument.types │ ├── superWithTypeArgument2.errors.txt │ ├── superWithTypeArgument2.js │ ├── superWithTypeArgument2.symbols │ ├── superWithTypeArgument2.types │ ├── superWithTypeArgument3.errors.txt │ ├── superWithTypeArgument3.js │ ├── superWithTypeArgument3.symbols │ ├── superWithTypeArgument3.types │ ├── super_inside-object-literal-getters-and-setters(target=es2015).errors.txt │ ├── super_inside-object-literal-getters-and-setters(target=es2015).js │ ├── super_inside-object-literal-getters-and-setters(target=es2015).symbols │ ├── super_inside-object-literal-getters-and-setters(target=es2015).types │ ├── super_inside-object-literal-getters-and-setters(target=es5).errors.txt │ ├── super_inside-object-literal-getters-and-setters(target=es5).js │ ├── super_inside-object-literal-getters-and-setters(target=es5).symbols │ ├── super_inside-object-literal-getters-and-setters(target=es5).types │ ├── switchAssignmentCompat.errors.txt │ ├── switchAssignmentCompat.js │ ├── switchAssignmentCompat.symbols │ ├── switchAssignmentCompat.types │ ├── switchBreakStatements.errors.txt │ ├── switchBreakStatements.js │ ├── switchBreakStatements.symbols │ ├── switchBreakStatements.types │ ├── switchCaseCircularRefeference.errors.txt │ ├── switchCaseCircularRefeference.js │ ├── switchCaseCircularRefeference.symbols │ ├── switchCaseCircularRefeference.types │ ├── switchCaseInternalComments.js │ ├── switchCaseInternalComments.symbols │ ├── switchCaseInternalComments.types │ ├── switchCaseNarrowsMatchingClausesEvenWhenNonMatchingClausesExist.js │ ├── switchCaseNarrowsMatchingClausesEvenWhenNonMatchingClausesExist.symbols │ ├── switchCaseNarrowsMatchingClausesEvenWhenNonMatchingClausesExist.types │ ├── switchCaseWithIntersectionTypes01.errors.txt │ ├── switchCaseWithIntersectionTypes01.js │ ├── switchCaseWithIntersectionTypes01.symbols │ ├── switchCaseWithIntersectionTypes01.types │ ├── switchCaseWithUnionTypes01.errors.txt │ ├── switchCaseWithUnionTypes01.js │ ├── switchCaseWithUnionTypes01.symbols │ ├── switchCaseWithUnionTypes01.types │ ├── switchCases.errors.txt │ ├── switchCases.js │ ├── switchCases.symbols │ ├── switchCases.types │ ├── switchCasesExpressionTypeMismatch.errors.txt │ ├── switchCasesExpressionTypeMismatch.js │ ├── switchCasesExpressionTypeMismatch.symbols │ ├── switchCasesExpressionTypeMismatch.types │ ├── switchComparableCompatForBrands.errors.txt │ ├── switchComparableCompatForBrands.js │ ├── switchComparableCompatForBrands.symbols │ ├── switchComparableCompatForBrands.types │ ├── switchFallThroughs.js │ ├── switchFallThroughs.symbols │ ├── switchFallThroughs.types │ ├── switchStatements.errors.txt │ ├── switchStatements.js │ ├── switchStatements.symbols │ ├── switchStatements.types │ ├── switchStatementsWithMultipleDefaults.errors.txt │ ├── switchStatementsWithMultipleDefaults.js │ ├── switchStatementsWithMultipleDefaults.symbols │ ├── switchStatementsWithMultipleDefaults.types │ ├── switchStatementsWithMultipleDefaults1.errors.txt │ ├── switchStatementsWithMultipleDefaults1.js │ ├── switchStatementsWithMultipleDefaults1.symbols │ ├── switchStatementsWithMultipleDefaults1.types │ ├── switchWithConstrainedTypeVariable.js │ ├── switchWithConstrainedTypeVariable.symbols │ ├── switchWithConstrainedTypeVariable.types │ ├── symbolDeclarationEmit1.errors.txt │ ├── symbolDeclarationEmit1.js │ ├── symbolDeclarationEmit1.symbols │ ├── symbolDeclarationEmit1.types │ ├── symbolDeclarationEmit10.js │ ├── symbolDeclarationEmit10.symbols │ ├── symbolDeclarationEmit10.types │ ├── symbolDeclarationEmit11.js │ ├── symbolDeclarationEmit11.symbols │ ├── symbolDeclarationEmit11.types │ ├── symbolDeclarationEmit12.errors.txt │ ├── symbolDeclarationEmit12.js │ ├── symbolDeclarationEmit12.symbols │ ├── symbolDeclarationEmit12.types │ ├── symbolDeclarationEmit13.js │ ├── symbolDeclarationEmit13.symbols │ ├── symbolDeclarationEmit13.types │ ├── symbolDeclarationEmit14.js │ ├── symbolDeclarationEmit14.symbols │ ├── symbolDeclarationEmit14.types │ ├── symbolDeclarationEmit2.js │ ├── symbolDeclarationEmit2.symbols │ ├── symbolDeclarationEmit2.types │ ├── symbolDeclarationEmit3.js │ ├── symbolDeclarationEmit3.symbols │ ├── symbolDeclarationEmit3.types │ ├── symbolDeclarationEmit4.js │ ├── symbolDeclarationEmit4.symbols │ ├── symbolDeclarationEmit4.types │ ├── symbolDeclarationEmit5.js │ ├── symbolDeclarationEmit5.symbols │ ├── symbolDeclarationEmit5.types │ ├── symbolDeclarationEmit6.js │ ├── symbolDeclarationEmit6.symbols │ ├── symbolDeclarationEmit6.types │ ├── symbolDeclarationEmit7.js │ ├── symbolDeclarationEmit7.symbols │ ├── symbolDeclarationEmit7.types │ ├── symbolDeclarationEmit8.js │ ├── symbolDeclarationEmit8.symbols │ ├── symbolDeclarationEmit8.types │ ├── symbolDeclarationEmit9.js │ ├── symbolDeclarationEmit9.symbols │ ├── symbolDeclarationEmit9.types │ ├── symbolLinkDeclarationEmitModuleNames.errors.txt │ ├── symbolLinkDeclarationEmitModuleNames.js │ ├── symbolLinkDeclarationEmitModuleNames.symbols │ ├── symbolLinkDeclarationEmitModuleNames.types │ ├── symbolLinkDeclarationEmitModuleNamesImportRef.js │ ├── symbolLinkDeclarationEmitModuleNamesImportRef.symbols │ ├── symbolLinkDeclarationEmitModuleNamesImportRef.types │ ├── symbolLinkDeclarationEmitModuleNamesRootDir.js │ ├── symbolLinkDeclarationEmitModuleNamesRootDir.symbols │ ├── symbolLinkDeclarationEmitModuleNamesRootDir.types │ ├── symbolMergeValueAndImportedType.js │ ├── symbolMergeValueAndImportedType.symbols │ ├── symbolMergeValueAndImportedType.types │ ├── symbolObserverMismatchingPolyfillsWorkTogether.js │ ├── symbolObserverMismatchingPolyfillsWorkTogether.symbols │ ├── symbolObserverMismatchingPolyfillsWorkTogether.types │ ├── symbolProperty1.errors.txt │ ├── symbolProperty1.js │ ├── symbolProperty1.symbols │ ├── symbolProperty1.types │ ├── symbolProperty10.errors.txt │ ├── symbolProperty10.js │ ├── symbolProperty10.symbols │ ├── symbolProperty10.types │ ├── symbolProperty11.js │ ├── symbolProperty11.symbols │ ├── symbolProperty11.types │ ├── symbolProperty12.errors.txt │ ├── symbolProperty12.js │ ├── symbolProperty12.symbols │ ├── symbolProperty12.types │ ├── symbolProperty13.js │ ├── symbolProperty13.symbols │ ├── symbolProperty13.types │ ├── symbolProperty14.js │ ├── symbolProperty14.symbols │ ├── symbolProperty14.types │ ├── symbolProperty15.js │ ├── symbolProperty15.symbols │ ├── symbolProperty15.types │ ├── symbolProperty16.js │ ├── symbolProperty16.symbols │ ├── symbolProperty16.types │ ├── symbolProperty17.errors.txt │ ├── symbolProperty17.js │ ├── symbolProperty17.symbols │ ├── symbolProperty17.types │ ├── symbolProperty18.js │ ├── symbolProperty18.symbols │ ├── symbolProperty18.types │ ├── symbolProperty19.js │ ├── symbolProperty19.symbols │ ├── symbolProperty19.types │ ├── symbolProperty2.js │ ├── symbolProperty2.symbols │ ├── symbolProperty2.types │ ├── symbolProperty20.js │ ├── symbolProperty20.symbols │ ├── symbolProperty20.types │ ├── symbolProperty21.errors.txt │ ├── symbolProperty21.js │ ├── symbolProperty21.symbols │ ├── symbolProperty21.types │ ├── symbolProperty22.js │ ├── symbolProperty22.symbols │ ├── symbolProperty22.types │ ├── symbolProperty23.js │ ├── symbolProperty23.symbols │ ├── symbolProperty23.types │ ├── symbolProperty24.errors.txt │ ├── symbolProperty24.js │ ├── symbolProperty24.symbols │ ├── symbolProperty24.types │ ├── symbolProperty25.errors.txt │ ├── symbolProperty25.js │ ├── symbolProperty25.symbols │ ├── symbolProperty25.types │ ├── symbolProperty26.js │ ├── symbolProperty26.symbols │ ├── symbolProperty26.types │ ├── symbolProperty27.js │ ├── symbolProperty27.symbols │ ├── symbolProperty27.types │ ├── symbolProperty28.errors.txt │ ├── symbolProperty28.js │ ├── symbolProperty28.symbols │ ├── symbolProperty28.types │ ├── symbolProperty29.js │ ├── symbolProperty29.symbols │ ├── symbolProperty29.types │ ├── symbolProperty3.errors.txt │ ├── symbolProperty3.js │ ├── symbolProperty3.symbols │ ├── symbolProperty3.types │ ├── symbolProperty30.errors.txt │ ├── symbolProperty30.js │ ├── symbolProperty30.symbols │ ├── symbolProperty30.types │ ├── symbolProperty31.js │ ├── symbolProperty31.symbols │ ├── symbolProperty31.types │ ├── symbolProperty32.errors.txt │ ├── symbolProperty32.js │ ├── symbolProperty32.symbols │ ├── symbolProperty32.types │ ├── symbolProperty33.errors.txt │ ├── symbolProperty33.js │ ├── symbolProperty33.symbols │ ├── symbolProperty33.types │ ├── symbolProperty34.errors.txt │ ├── symbolProperty34.js │ ├── symbolProperty34.symbols │ ├── symbolProperty34.types │ ├── symbolProperty35.errors.txt │ ├── symbolProperty35.js │ ├── symbolProperty35.symbols │ ├── symbolProperty35.types │ ├── symbolProperty36.errors.txt │ ├── symbolProperty36.js │ ├── symbolProperty36.symbols │ ├── symbolProperty36.types │ ├── symbolProperty37.js │ ├── symbolProperty37.symbols │ ├── symbolProperty37.types │ ├── symbolProperty38.js │ ├── symbolProperty38.symbols │ ├── symbolProperty38.types │ ├── symbolProperty39.errors.txt │ ├── symbolProperty39.js │ ├── symbolProperty39.symbols │ ├── symbolProperty39.types │ ├── symbolProperty4.js │ ├── symbolProperty4.symbols │ ├── symbolProperty4.types │ ├── symbolProperty40.js │ ├── symbolProperty40.symbols │ ├── symbolProperty40.types │ ├── symbolProperty41.js │ ├── symbolProperty41.symbols │ ├── symbolProperty41.types │ ├── symbolProperty42.errors.txt │ ├── symbolProperty42.js │ ├── symbolProperty42.symbols │ ├── symbolProperty42.types │ ├── symbolProperty43.errors.txt │ ├── symbolProperty43.js │ ├── symbolProperty43.symbols │ ├── symbolProperty43.types │ ├── symbolProperty44.errors.txt │ ├── symbolProperty44.js │ ├── symbolProperty44.symbols │ ├── symbolProperty44.types │ ├── symbolProperty45.js │ ├── symbolProperty45.symbols │ ├── symbolProperty45.types │ ├── symbolProperty46.errors.txt │ ├── symbolProperty46.js │ ├── symbolProperty46.symbols │ ├── symbolProperty46.types │ ├── symbolProperty47.errors.txt │ ├── symbolProperty47.js │ ├── symbolProperty47.symbols │ ├── symbolProperty47.types │ ├── symbolProperty48.js │ ├── symbolProperty48.symbols │ ├── symbolProperty48.types │ ├── symbolProperty49.js │ ├── symbolProperty49.symbols │ ├── symbolProperty49.types │ ├── symbolProperty5.js │ ├── symbolProperty5.symbols │ ├── symbolProperty5.types │ ├── symbolProperty50.js │ ├── symbolProperty50.symbols │ ├── symbolProperty50.types │ ├── symbolProperty51.js │ ├── symbolProperty51.symbols │ ├── symbolProperty51.types │ ├── symbolProperty52.errors.txt │ ├── symbolProperty52.js │ ├── symbolProperty52.symbols │ ├── symbolProperty52.types │ ├── symbolProperty53.errors.txt │ ├── symbolProperty53.js │ ├── symbolProperty53.symbols │ ├── symbolProperty53.types │ ├── symbolProperty54.errors.txt │ ├── symbolProperty54.js │ ├── symbolProperty54.symbols │ ├── symbolProperty54.types │ ├── symbolProperty55.errors.txt │ ├── symbolProperty55.js │ ├── symbolProperty55.symbols │ ├── symbolProperty55.types │ ├── symbolProperty56.js │ ├── symbolProperty56.symbols │ ├── symbolProperty56.types │ ├── symbolProperty57.js │ ├── symbolProperty57.symbols │ ├── symbolProperty57.types │ ├── symbolProperty58.js │ ├── symbolProperty58.symbols │ ├── symbolProperty58.types │ ├── symbolProperty59.errors.txt │ ├── symbolProperty59.js │ ├── symbolProperty59.symbols │ ├── symbolProperty59.types │ ├── symbolProperty6.errors.txt │ ├── symbolProperty6.js │ ├── symbolProperty6.symbols │ ├── symbolProperty6.types │ ├── symbolProperty60.js │ ├── symbolProperty60.symbols │ ├── symbolProperty60.types │ ├── symbolProperty61.js │ ├── symbolProperty61.symbols │ ├── symbolProperty61.types │ ├── symbolProperty7.errors.txt │ ├── symbolProperty7.js │ ├── symbolProperty7.symbols │ ├── symbolProperty7.types │ ├── symbolProperty8.js │ ├── symbolProperty8.symbols │ ├── symbolProperty8.types │ ├── symbolProperty9.errors.txt │ ├── symbolProperty9.js │ ├── symbolProperty9.symbols │ ├── symbolProperty9.types │ ├── symbolType1.errors.txt │ ├── symbolType1.js │ ├── symbolType1.symbols │ ├── symbolType1.types │ ├── symbolType10.errors.txt │ ├── symbolType10.js │ ├── symbolType10.symbols │ ├── symbolType10.types │ ├── symbolType11.errors.txt │ ├── symbolType11.js │ ├── symbolType11.symbols │ ├── symbolType11.types │ ├── symbolType12.errors.txt │ ├── symbolType12.js │ ├── symbolType12.symbols │ ├── symbolType12.types │ ├── symbolType13.errors.txt │ ├── symbolType13.js │ ├── symbolType13.symbols │ ├── symbolType13.types │ ├── symbolType14.errors.txt │ ├── symbolType14.js │ ├── symbolType14.symbols │ ├── symbolType14.types │ ├── symbolType15.errors.txt │ ├── symbolType15.js │ ├── symbolType15.symbols │ ├── symbolType15.types │ ├── symbolType16.errors.txt │ ├── symbolType16.js │ ├── symbolType16.symbols │ ├── symbolType16.types │ ├── symbolType17.js │ ├── symbolType17.symbols │ ├── symbolType17.types │ ├── symbolType18.js │ ├── symbolType18.symbols │ ├── symbolType18.types │ ├── symbolType19.errors.txt │ ├── symbolType19.js │ ├── symbolType19.symbols │ ├── symbolType19.types │ ├── symbolType2.errors.txt │ ├── symbolType2.js │ ├── symbolType2.symbols │ ├── symbolType2.types │ ├── symbolType20.errors.txt │ ├── symbolType20.js │ ├── symbolType20.symbols │ ├── symbolType20.types │ ├── symbolType3.errors.txt │ ├── symbolType3.js │ ├── symbolType3.symbols │ ├── symbolType3.types │ ├── symbolType4.errors.txt │ ├── symbolType4.js │ ├── symbolType4.symbols │ ├── symbolType4.types │ ├── symbolType5.errors.txt │ ├── symbolType5.js │ ├── symbolType5.symbols │ ├── symbolType5.types │ ├── symbolType6.errors.txt │ ├── symbolType6.js │ ├── symbolType6.symbols │ ├── symbolType6.types │ ├── symbolType7.errors.txt │ ├── symbolType7.js │ ├── symbolType7.symbols │ ├── symbolType7.types │ ├── symbolType8.errors.txt │ ├── symbolType8.js │ ├── symbolType8.symbols │ ├── symbolType8.types │ ├── symbolType9.errors.txt │ ├── symbolType9.js │ ├── symbolType9.symbols │ ├── symbolType9.types │ ├── symlinkedWorkspaceDependenciesNoDirectLinkGeneratesDeepNonrelativeName.js │ ├── symlinkedWorkspaceDependenciesNoDirectLinkGeneratesDeepNonrelativeName.symbols │ ├── symlinkedWorkspaceDependenciesNoDirectLinkGeneratesDeepNonrelativeName.types │ ├── symlinkedWorkspaceDependenciesNoDirectLinkGeneratesNonrelativeName.js │ ├── symlinkedWorkspaceDependenciesNoDirectLinkGeneratesNonrelativeName.symbols │ ├── symlinkedWorkspaceDependenciesNoDirectLinkGeneratesNonrelativeName.types │ ├── symlinkedWorkspaceDependenciesNoDirectLinkOptionalGeneratesNonrelativeName.js │ ├── symlinkedWorkspaceDependenciesNoDirectLinkOptionalGeneratesNonrelativeName.symbols │ ├── symlinkedWorkspaceDependenciesNoDirectLinkOptionalGeneratesNonrelativeName.types │ ├── symlinkedWorkspaceDependenciesNoDirectLinkPeerGeneratesNonrelativeName.js │ ├── symlinkedWorkspaceDependenciesNoDirectLinkPeerGeneratesNonrelativeName.symbols │ ├── symlinkedWorkspaceDependenciesNoDirectLinkPeerGeneratesNonrelativeName.types │ ├── syncIteratorHelpers.symbols │ ├── syncIteratorHelpers.types │ ├── syntaxErrors.errors.txt │ ├── syntaxErrors.symbols │ ├── syntaxErrors.types │ ├── syntheticDefaultExportsWithDynamicImports.errors.txt │ ├── syntheticDefaultExportsWithDynamicImports.js │ ├── syntheticDefaultExportsWithDynamicImports.symbols │ ├── syntheticDefaultExportsWithDynamicImports.types │ ├── systemDefaultExportCommentValidity.errors.txt │ ├── systemDefaultExportCommentValidity.js │ ├── systemDefaultExportCommentValidity.symbols │ ├── systemDefaultExportCommentValidity.types │ ├── systemDefaultImportCallable.errors.txt │ ├── systemDefaultImportCallable.js │ ├── systemDefaultImportCallable.symbols │ ├── systemDefaultImportCallable.types │ ├── systemExportAssignment(target=es2015).errors.txt │ ├── systemExportAssignment(target=es2015).js │ ├── systemExportAssignment(target=es2015).symbols │ ├── systemExportAssignment(target=es2015).types │ ├── systemExportAssignment(target=es5).errors.txt │ ├── systemExportAssignment(target=es5).js │ ├── systemExportAssignment(target=es5).symbols │ ├── systemExportAssignment(target=es5).types │ ├── systemExportAssignment2(target=es2015).errors.txt │ ├── systemExportAssignment2(target=es2015).js │ ├── systemExportAssignment2(target=es2015).symbols │ ├── systemExportAssignment2(target=es2015).types │ ├── systemExportAssignment2(target=es5).errors.txt │ ├── systemExportAssignment2(target=es5).js │ ├── systemExportAssignment2(target=es5).symbols │ ├── systemExportAssignment2(target=es5).types │ ├── systemExportAssignment3(target=es2015).errors.txt │ ├── systemExportAssignment3(target=es2015).js │ ├── systemExportAssignment3(target=es2015).symbols │ ├── systemExportAssignment3(target=es2015).types │ ├── systemExportAssignment3(target=es5).errors.txt │ ├── systemExportAssignment3(target=es5).js │ ├── systemExportAssignment3(target=es5).symbols │ ├── systemExportAssignment3(target=es5).types │ ├── systemJsForInNoException.errors.txt │ ├── systemJsForInNoException.js │ ├── systemJsForInNoException.symbols │ ├── systemJsForInNoException.types │ ├── systemModule1.errors.txt │ ├── systemModule1.js │ ├── systemModule1.symbols │ ├── systemModule1.types │ ├── systemModule10.errors.txt │ ├── systemModule10.js │ ├── systemModule10.symbols │ ├── systemModule10.types │ ├── systemModule10_ES5(target=es2015).errors.txt │ ├── systemModule10_ES5(target=es2015).js │ ├── systemModule10_ES5(target=es2015).symbols │ ├── systemModule10_ES5(target=es2015).types │ ├── systemModule10_ES5(target=es5).errors.txt │ ├── systemModule10_ES5(target=es5).js │ ├── systemModule10_ES5(target=es5).symbols │ ├── systemModule10_ES5(target=es5).types │ ├── systemModule11.errors.txt │ ├── systemModule11.js │ ├── systemModule11.symbols │ ├── systemModule11.types │ ├── systemModule12.errors.txt │ ├── systemModule12.js │ ├── systemModule12.symbols │ ├── systemModule12.types │ ├── systemModule13.errors.txt │ ├── systemModule13.js │ ├── systemModule13.symbols │ ├── systemModule13.types │ ├── systemModule14.errors.txt │ ├── systemModule14.js │ ├── systemModule14.symbols │ ├── systemModule14.types │ ├── systemModule15.errors.txt │ ├── systemModule15.js │ ├── systemModule15.symbols │ ├── systemModule15.types │ ├── systemModule16.errors.txt │ ├── systemModule16.js │ ├── systemModule16.symbols │ ├── systemModule16.types │ ├── systemModule17.errors.txt │ ├── systemModule17.js │ ├── systemModule17.symbols │ ├── systemModule17.types │ ├── systemModule18.errors.txt │ ├── systemModule18.js │ ├── systemModule18.symbols │ ├── systemModule18.types │ ├── systemModule2.errors.txt │ ├── systemModule2.js │ ├── systemModule2.symbols │ ├── systemModule2.types │ ├── systemModule3.errors.txt │ ├── systemModule3.js │ ├── systemModule3.symbols │ ├── systemModule3.types │ ├── systemModule4.errors.txt │ ├── systemModule4.js │ ├── systemModule4.symbols │ ├── systemModule4.types │ ├── systemModule5.errors.txt │ ├── systemModule5.js │ ├── systemModule5.symbols │ ├── systemModule5.types │ ├── systemModule6.errors.txt │ ├── systemModule6.js │ ├── systemModule6.symbols │ ├── systemModule6.types │ ├── systemModule7.errors.txt │ ├── systemModule7.js │ ├── systemModule7.symbols │ ├── systemModule7.types │ ├── systemModule8.errors.txt │ ├── systemModule8.js │ ├── systemModule8.symbols │ ├── systemModule8.types │ ├── systemModule9.errors.txt │ ├── systemModule9.js │ ├── systemModule9.symbols │ ├── systemModule9.types │ ├── systemModuleAmbientDeclarations.errors.txt │ ├── systemModuleAmbientDeclarations.js │ ├── systemModuleAmbientDeclarations.symbols │ ├── systemModuleAmbientDeclarations.types │ ├── systemModuleConstEnums.errors.txt │ ├── systemModuleConstEnums.js │ ├── systemModuleConstEnums.symbols │ ├── systemModuleConstEnums.types │ ├── systemModuleConstEnumsSeparateCompilation.errors.txt │ ├── systemModuleConstEnumsSeparateCompilation.js │ ├── systemModuleConstEnumsSeparateCompilation.symbols │ ├── systemModuleConstEnumsSeparateCompilation.types │ ├── systemModuleDeclarationMerging.errors.txt │ ├── systemModuleDeclarationMerging.js │ ├── systemModuleDeclarationMerging.symbols │ ├── systemModuleDeclarationMerging.types │ ├── systemModuleExportDefault.errors.txt │ ├── systemModuleExportDefault.js │ ├── systemModuleExportDefault.symbols │ ├── systemModuleExportDefault.types │ ├── systemModuleNonTopLevelModuleMembers.errors.txt │ ├── systemModuleNonTopLevelModuleMembers.js │ ├── systemModuleNonTopLevelModuleMembers.symbols │ ├── systemModuleNonTopLevelModuleMembers.types │ ├── systemModuleTargetES6.errors.txt │ ├── systemModuleTargetES6.js │ ├── systemModuleTargetES6.symbols │ ├── systemModuleTargetES6.types │ ├── systemModuleTrailingComments.errors.txt │ ├── systemModuleTrailingComments.js │ ├── systemModuleTrailingComments.symbols │ ├── systemModuleTrailingComments.types │ ├── systemModuleWithSuperClass.errors.txt │ ├── systemModuleWithSuperClass.js │ ├── systemModuleWithSuperClass.symbols │ ├── systemModuleWithSuperClass.types │ ├── systemNamespaceAliasEmit.errors.txt │ ├── systemNamespaceAliasEmit.js │ ├── systemNamespaceAliasEmit.symbols │ ├── systemNamespaceAliasEmit.types │ ├── systemObjectShorthandRename.errors.txt │ ├── systemObjectShorthandRename.js │ ├── systemObjectShorthandRename.symbols │ ├── systemObjectShorthandRename.types │ ├── taggedPrimitiveNarrowing.js │ ├── taggedPrimitiveNarrowing.symbols │ ├── taggedPrimitiveNarrowing.types │ ├── taggedTemplateChain.errors.txt │ ├── taggedTemplateChain.js │ ├── taggedTemplateChain.symbols │ ├── taggedTemplateChain.types │ ├── taggedTemplateContextualTyping1.errors.txt │ ├── taggedTemplateContextualTyping1.js │ ├── taggedTemplateContextualTyping1.symbols │ ├── taggedTemplateContextualTyping1.types │ ├── taggedTemplateContextualTyping2.errors.txt │ ├── taggedTemplateContextualTyping2.js │ ├── taggedTemplateContextualTyping2.symbols │ ├── taggedTemplateContextualTyping2.types │ ├── taggedTemplateStringWithSymbolExpression01.js │ ├── taggedTemplateStringWithSymbolExpression01.symbols │ ├── taggedTemplateStringWithSymbolExpression01.types │ ├── taggedTemplateStringsHexadecimalEscapes.js │ ├── taggedTemplateStringsHexadecimalEscapes.symbols │ ├── taggedTemplateStringsHexadecimalEscapes.types │ ├── taggedTemplateStringsHexadecimalEscapesES6.js │ ├── taggedTemplateStringsHexadecimalEscapesES6.symbols │ ├── taggedTemplateStringsHexadecimalEscapesES6.types │ ├── taggedTemplateStringsPlainCharactersThatArePartsOfEscapes01.js │ ├── taggedTemplateStringsPlainCharactersThatArePartsOfEscapes01.symbols │ ├── taggedTemplateStringsPlainCharactersThatArePartsOfEscapes01.types │ ├── taggedTemplateStringsPlainCharactersThatArePartsOfEscapes01_ES6.js │ ├── taggedTemplateStringsPlainCharactersThatArePartsOfEscapes01_ES6.symbols │ ├── taggedTemplateStringsPlainCharactersThatArePartsOfEscapes01_ES6.types │ ├── taggedTemplateStringsPlainCharactersThatArePartsOfEscapes02.js │ ├── taggedTemplateStringsPlainCharactersThatArePartsOfEscapes02.symbols │ ├── taggedTemplateStringsPlainCharactersThatArePartsOfEscapes02.types │ ├── taggedTemplateStringsPlainCharactersThatArePartsOfEscapes02_ES6.js │ ├── taggedTemplateStringsPlainCharactersThatArePartsOfEscapes02_ES6.symbols │ ├── taggedTemplateStringsPlainCharactersThatArePartsOfEscapes02_ES6.types │ ├── taggedTemplateStringsTypeArgumentInference.errors.txt │ ├── taggedTemplateStringsTypeArgumentInference.js │ ├── taggedTemplateStringsTypeArgumentInference.symbols │ ├── taggedTemplateStringsTypeArgumentInference.types │ ├── taggedTemplateStringsTypeArgumentInferenceES6.errors.txt │ ├── taggedTemplateStringsTypeArgumentInferenceES6.js │ ├── taggedTemplateStringsTypeArgumentInferenceES6.symbols │ ├── taggedTemplateStringsTypeArgumentInferenceES6.types │ ├── taggedTemplateStringsWithCurriedFunction(target=es2015).js │ ├── taggedTemplateStringsWithCurriedFunction(target=es2015).symbols │ ├── taggedTemplateStringsWithCurriedFunction(target=es2015).types │ ├── taggedTemplateStringsWithCurriedFunction(target=es5).errors.txt │ ├── taggedTemplateStringsWithCurriedFunction(target=es5).js │ ├── taggedTemplateStringsWithCurriedFunction(target=es5).symbols │ ├── taggedTemplateStringsWithCurriedFunction(target=es5).types │ ├── taggedTemplateStringsWithIncompatibleTypedTags.errors.txt │ ├── taggedTemplateStringsWithIncompatibleTypedTags.js │ ├── taggedTemplateStringsWithIncompatibleTypedTags.symbols │ ├── taggedTemplateStringsWithIncompatibleTypedTags.types │ ├── taggedTemplateStringsWithIncompatibleTypedTagsES6.errors.txt │ ├── taggedTemplateStringsWithIncompatibleTypedTagsES6.js │ ├── taggedTemplateStringsWithIncompatibleTypedTagsES6.symbols │ ├── taggedTemplateStringsWithIncompatibleTypedTagsES6.types │ ├── taggedTemplateStringsWithManyCallAndMemberExpressions.errors.txt │ ├── taggedTemplateStringsWithManyCallAndMemberExpressions.js │ ├── taggedTemplateStringsWithManyCallAndMemberExpressions.symbols │ ├── taggedTemplateStringsWithManyCallAndMemberExpressions.types │ ├── taggedTemplateStringsWithManyCallAndMemberExpressionsES6.errors.txt │ ├── taggedTemplateStringsWithManyCallAndMemberExpressionsES6.js │ ├── taggedTemplateStringsWithManyCallAndMemberExpressionsES6.symbols │ ├── taggedTemplateStringsWithManyCallAndMemberExpressionsES6.types │ ├── taggedTemplateStringsWithMultilineTemplate.js │ ├── taggedTemplateStringsWithMultilineTemplate.symbols │ ├── taggedTemplateStringsWithMultilineTemplate.types │ ├── taggedTemplateStringsWithMultilineTemplateES6.js │ ├── taggedTemplateStringsWithMultilineTemplateES6.symbols │ ├── taggedTemplateStringsWithMultilineTemplateES6.types │ ├── taggedTemplateStringsWithOverloadResolution1.errors.txt │ ├── taggedTemplateStringsWithOverloadResolution1.js │ ├── taggedTemplateStringsWithOverloadResolution1.symbols │ ├── taggedTemplateStringsWithOverloadResolution1.types │ ├── taggedTemplateStringsWithOverloadResolution1_ES6.errors.txt │ ├── taggedTemplateStringsWithOverloadResolution1_ES6.js │ ├── taggedTemplateStringsWithOverloadResolution1_ES6.symbols │ ├── taggedTemplateStringsWithOverloadResolution1_ES6.types │ ├── taggedTemplateStringsWithOverloadResolution2.js │ ├── taggedTemplateStringsWithOverloadResolution2.symbols │ ├── taggedTemplateStringsWithOverloadResolution2.types │ ├── taggedTemplateStringsWithOverloadResolution2_ES6.js │ ├── taggedTemplateStringsWithOverloadResolution2_ES6.symbols │ ├── taggedTemplateStringsWithOverloadResolution2_ES6.types │ ├── taggedTemplateStringsWithOverloadResolution3.errors.txt │ ├── taggedTemplateStringsWithOverloadResolution3.js │ ├── taggedTemplateStringsWithOverloadResolution3.symbols │ ├── taggedTemplateStringsWithOverloadResolution3.types │ ├── taggedTemplateStringsWithOverloadResolution3_ES6.errors.txt │ ├── taggedTemplateStringsWithOverloadResolution3_ES6.js │ ├── taggedTemplateStringsWithOverloadResolution3_ES6.symbols │ ├── taggedTemplateStringsWithOverloadResolution3_ES6.types │ ├── taggedTemplateStringsWithTagNamedDeclare.js │ ├── taggedTemplateStringsWithTagNamedDeclare.symbols │ ├── taggedTemplateStringsWithTagNamedDeclare.types │ ├── taggedTemplateStringsWithTagNamedDeclareES6.js │ ├── taggedTemplateStringsWithTagNamedDeclareES6.symbols │ ├── taggedTemplateStringsWithTagNamedDeclareES6.types │ ├── taggedTemplateStringsWithTagsTypedAsAny.js │ ├── taggedTemplateStringsWithTagsTypedAsAny.symbols │ ├── taggedTemplateStringsWithTagsTypedAsAny.types │ ├── taggedTemplateStringsWithTagsTypedAsAnyES6.js │ ├── taggedTemplateStringsWithTagsTypedAsAnyES6.symbols │ ├── taggedTemplateStringsWithTagsTypedAsAnyES6.types │ ├── taggedTemplateStringsWithTypeErrorInFunctionExpressionsInSubstitutionExpression.errors.txt │ ├── taggedTemplateStringsWithTypeErrorInFunctionExpressionsInSubstitutionExpression.js │ ├── taggedTemplateStringsWithTypeErrorInFunctionExpressionsInSubstitutionExpression.symbols │ ├── taggedTemplateStringsWithTypeErrorInFunctionExpressionsInSubstitutionExpression.types │ ├── taggedTemplateStringsWithTypeErrorInFunctionExpressionsInSubstitutionExpressionES6.errors.txt │ ├── taggedTemplateStringsWithTypeErrorInFunctionExpressionsInSubstitutionExpressionES6.js │ ├── taggedTemplateStringsWithTypeErrorInFunctionExpressionsInSubstitutionExpressionES6.symbols │ ├── taggedTemplateStringsWithTypeErrorInFunctionExpressionsInSubstitutionExpressionES6.types │ ├── taggedTemplateStringsWithTypedTags.errors.txt │ ├── taggedTemplateStringsWithTypedTags.js │ ├── taggedTemplateStringsWithTypedTags.symbols │ ├── taggedTemplateStringsWithTypedTags.types │ ├── taggedTemplateStringsWithTypedTagsES6.errors.txt │ ├── taggedTemplateStringsWithTypedTagsES6.js │ ├── taggedTemplateStringsWithTypedTagsES6.symbols │ ├── taggedTemplateStringsWithTypedTagsES6.types │ ├── taggedTemplateStringsWithUnicodeEscapes.js │ ├── taggedTemplateStringsWithUnicodeEscapes.symbols │ ├── taggedTemplateStringsWithUnicodeEscapes.types │ ├── taggedTemplateStringsWithUnicodeEscapesES6.js │ ├── taggedTemplateStringsWithUnicodeEscapesES6.symbols │ ├── taggedTemplateStringsWithUnicodeEscapesES6.types │ ├── taggedTemplateStringsWithWhitespaceEscapes.js │ ├── taggedTemplateStringsWithWhitespaceEscapes.symbols │ ├── taggedTemplateStringsWithWhitespaceEscapes.types │ ├── taggedTemplateStringsWithWhitespaceEscapesES6.js │ ├── taggedTemplateStringsWithWhitespaceEscapesES6.symbols │ ├── taggedTemplateStringsWithWhitespaceEscapesES6.types │ ├── taggedTemplateUntypedTagCall01.errors.txt │ ├── taggedTemplateUntypedTagCall01.js │ ├── taggedTemplateUntypedTagCall01.symbols │ ├── taggedTemplateUntypedTagCall01.types │ ├── taggedTemplateWithConstructableTag01.errors.txt │ ├── taggedTemplateWithConstructableTag01.js │ ├── taggedTemplateWithConstructableTag01.symbols │ ├── taggedTemplateWithConstructableTag01.types │ ├── taggedTemplateWithConstructableTag02.errors.txt │ ├── taggedTemplateWithConstructableTag02.js │ ├── taggedTemplateWithConstructableTag02.symbols │ ├── taggedTemplateWithConstructableTag02.types │ ├── taggedTemplateWithoutDeclaredHelper(target=es2015).js │ ├── taggedTemplateWithoutDeclaredHelper(target=es2015).symbols │ ├── taggedTemplateWithoutDeclaredHelper(target=es2015).types │ ├── taggedTemplateWithoutDeclaredHelper(target=es5).errors.txt │ ├── taggedTemplateWithoutDeclaredHelper(target=es5).js │ ├── taggedTemplateWithoutDeclaredHelper(target=es5).symbols │ ├── taggedTemplateWithoutDeclaredHelper(target=es5).types │ ├── taggedTemplatesInDifferentScopes.js │ ├── taggedTemplatesInDifferentScopes.symbols │ ├── taggedTemplatesInDifferentScopes.types │ ├── taggedTemplatesInModuleAndGlobal(target=es2015).js │ ├── taggedTemplatesInModuleAndGlobal(target=es2015).symbols │ ├── taggedTemplatesInModuleAndGlobal(target=es2015).types │ ├── taggedTemplatesInModuleAndGlobal(target=es5).errors.txt │ ├── taggedTemplatesInModuleAndGlobal(target=es5).js │ ├── taggedTemplatesInModuleAndGlobal(target=es5).symbols │ ├── taggedTemplatesInModuleAndGlobal(target=es5).types │ ├── taggedTemplatesWithIncompleteNoSubstitutionTemplate1.errors.txt │ ├── taggedTemplatesWithIncompleteNoSubstitutionTemplate1.js │ ├── taggedTemplatesWithIncompleteNoSubstitutionTemplate1.symbols │ ├── taggedTemplatesWithIncompleteNoSubstitutionTemplate1.types │ ├── taggedTemplatesWithIncompleteNoSubstitutionTemplate2.errors.txt │ ├── taggedTemplatesWithIncompleteNoSubstitutionTemplate2.js │ ├── taggedTemplatesWithIncompleteNoSubstitutionTemplate2.symbols │ ├── taggedTemplatesWithIncompleteNoSubstitutionTemplate2.types │ ├── taggedTemplatesWithIncompleteTemplateExpressions1.errors.txt │ ├── taggedTemplatesWithIncompleteTemplateExpressions1.js │ ├── taggedTemplatesWithIncompleteTemplateExpressions1.symbols │ ├── taggedTemplatesWithIncompleteTemplateExpressions1.types │ ├── taggedTemplatesWithIncompleteTemplateExpressions2.errors.txt │ ├── taggedTemplatesWithIncompleteTemplateExpressions2.js │ ├── taggedTemplatesWithIncompleteTemplateExpressions2.symbols │ ├── taggedTemplatesWithIncompleteTemplateExpressions2.types │ ├── taggedTemplatesWithIncompleteTemplateExpressions3.errors.txt │ ├── taggedTemplatesWithIncompleteTemplateExpressions3.js │ ├── taggedTemplatesWithIncompleteTemplateExpressions3.symbols │ ├── taggedTemplatesWithIncompleteTemplateExpressions3.types │ ├── taggedTemplatesWithIncompleteTemplateExpressions4.errors.txt │ ├── taggedTemplatesWithIncompleteTemplateExpressions4.js │ ├── taggedTemplatesWithIncompleteTemplateExpressions4.symbols │ ├── taggedTemplatesWithIncompleteTemplateExpressions4.types │ ├── taggedTemplatesWithIncompleteTemplateExpressions5.errors.txt │ ├── taggedTemplatesWithIncompleteTemplateExpressions5.js │ ├── taggedTemplatesWithIncompleteTemplateExpressions5.symbols │ ├── taggedTemplatesWithIncompleteTemplateExpressions5.types │ ├── taggedTemplatesWithIncompleteTemplateExpressions6.errors.txt │ ├── taggedTemplatesWithIncompleteTemplateExpressions6.js │ ├── taggedTemplatesWithIncompleteTemplateExpressions6.symbols │ ├── taggedTemplatesWithIncompleteTemplateExpressions6.types │ ├── taggedTemplatesWithTypeArguments1.js │ ├── taggedTemplatesWithTypeArguments1.symbols │ ├── taggedTemplatesWithTypeArguments1.types │ ├── taggedTemplatesWithTypeArguments2.errors.txt │ ├── taggedTemplatesWithTypeArguments2.js │ ├── taggedTemplatesWithTypeArguments2.symbols │ ├── taggedTemplatesWithTypeArguments2.types │ ├── tailRecursiveConditionalTypes.js │ ├── tailRecursiveConditionalTypes.symbols │ ├── tailRecursiveConditionalTypes.types │ ├── targetEs6DecoratorMetadataImportNotElided(target=es2015).errors.txt │ ├── targetEs6DecoratorMetadataImportNotElided(target=es2015).js │ ├── targetEs6DecoratorMetadataImportNotElided(target=es2015).symbols │ ├── targetEs6DecoratorMetadataImportNotElided(target=es2015).types │ ├── targetEs6DecoratorMetadataImportNotElided(target=es5).errors.txt │ ├── targetEs6DecoratorMetadataImportNotElided(target=es5).js │ ├── targetEs6DecoratorMetadataImportNotElided(target=es5).symbols │ ├── targetEs6DecoratorMetadataImportNotElided(target=es5).types │ ├── targetTypeArgs.js │ ├── targetTypeArgs.symbols │ ├── targetTypeArgs.types │ ├── targetTypeBaseCalls.errors.txt │ ├── targetTypeBaseCalls.js │ ├── targetTypeBaseCalls.symbols │ ├── targetTypeBaseCalls.types │ ├── targetTypeCalls.js │ ├── targetTypeCalls.symbols │ ├── targetTypeCalls.types │ ├── targetTypeCastTest.errors.txt │ ├── targetTypeCastTest.js │ ├── targetTypeCastTest.symbols │ ├── targetTypeCastTest.types │ ├── targetTypeObjectLiteral.js │ ├── targetTypeObjectLiteral.symbols │ ├── targetTypeObjectLiteral.types │ ├── targetTypeObjectLiteralToAny.errors.txt │ ├── targetTypeObjectLiteralToAny.js │ ├── targetTypeObjectLiteralToAny.symbols │ ├── targetTypeObjectLiteralToAny.types │ ├── targetTypeTest1.errors.txt │ ├── targetTypeTest1.js │ ├── targetTypeTest1.symbols │ ├── targetTypeTest1.types │ ├── targetTypeTest2.js │ ├── targetTypeTest2.symbols │ ├── targetTypeTest2.types │ ├── targetTypeTest3.errors.txt │ ├── targetTypeTest3.js │ ├── targetTypeTest3.symbols │ ├── targetTypeTest3.types │ ├── targetTypeVoidFunc.errors.txt │ ├── targetTypeVoidFunc.js │ ├── targetTypeVoidFunc.symbols │ ├── targetTypeVoidFunc.types │ ├── targetTypingOnFunctions.js │ ├── targetTypingOnFunctions.symbols │ ├── targetTypingOnFunctions.types │ ├── templateExpressionAsPossiblyDiscriminantValue.symbols │ ├── templateExpressionAsPossiblyDiscriminantValue.types │ ├── templateExpressionNoInlininingOfConstantBindingWithInitializer.js │ ├── templateExpressionNoInlininingOfConstantBindingWithInitializer.symbols │ ├── templateExpressionNoInlininingOfConstantBindingWithInitializer.types │ ├── templateInsideCallback.errors.txt │ ├── templateInsideCallback.js │ ├── templateInsideCallback.symbols │ ├── templateInsideCallback.types │ ├── templateLiteralConstantEvaluation.symbols │ ├── templateLiteralConstantEvaluation.types │ ├── templateLiteralEscapeSequence.errors.txt │ ├── templateLiteralEscapeSequence.js │ ├── templateLiteralEscapeSequence.symbols │ ├── templateLiteralEscapeSequence.types │ ├── templateLiteralIntersection.js │ ├── templateLiteralIntersection.symbols │ ├── templateLiteralIntersection.types │ ├── templateLiteralIntersection2.errors.txt │ ├── templateLiteralIntersection2.symbols │ ├── templateLiteralIntersection2.types │ ├── templateLiteralIntersection3.symbols │ ├── templateLiteralIntersection3.types │ ├── templateLiteralIntersection4.js │ ├── templateLiteralIntersection4.symbols │ ├── templateLiteralIntersection4.types │ ├── templateLiteralTypes1.errors.txt │ ├── templateLiteralTypes1.js │ ├── templateLiteralTypes1.symbols │ ├── templateLiteralTypes1.types │ ├── templateLiteralTypes2.errors.txt │ ├── templateLiteralTypes2.js │ ├── templateLiteralTypes2.symbols │ ├── templateLiteralTypes2.types │ ├── templateLiteralTypes3.errors.txt │ ├── templateLiteralTypes3.js │ ├── templateLiteralTypes3.symbols │ ├── templateLiteralTypes3.types │ ├── templateLiteralTypes4.errors.txt │ ├── templateLiteralTypes4.js │ ├── templateLiteralTypes4.symbols │ ├── templateLiteralTypes4.types │ ├── templateLiteralTypes5.errors.txt │ ├── templateLiteralTypes5.symbols │ ├── templateLiteralTypes5.types │ ├── templateLiteralTypes6.symbols │ ├── templateLiteralTypes6.types │ ├── templateLiteralTypes7.errors.txt │ ├── templateLiteralTypes7.symbols │ ├── templateLiteralTypes7.types │ ├── templateLiteralTypes8.symbols │ ├── templateLiteralTypes8.types │ ├── templateLiteralTypesPatterns.errors.txt │ ├── templateLiteralTypesPatterns.js │ ├── templateLiteralTypesPatterns.symbols │ ├── templateLiteralTypesPatterns.types │ ├── templateLiteralTypesPatternsPrefixSuffixAssignability.errors.txt │ ├── templateLiteralTypesPatternsPrefixSuffixAssignability.js │ ├── templateLiteralTypesPatternsPrefixSuffixAssignability.symbols │ ├── templateLiteralTypesPatternsPrefixSuffixAssignability.types │ ├── templateLiteralsAndDecoratorMetadata.js │ ├── templateLiteralsAndDecoratorMetadata.symbols │ ├── templateLiteralsAndDecoratorMetadata.types │ ├── templateLiteralsInTypes.errors.txt │ ├── templateLiteralsInTypes.js │ ├── templateLiteralsInTypes.symbols │ ├── templateLiteralsInTypes.types │ ├── templateLiteralsSourceMap.js │ ├── templateLiteralsSourceMap.sourcemap.txt │ ├── templateLiteralsSourceMap.symbols │ ├── templateLiteralsSourceMap.types │ ├── templateStringBinaryOperations.js │ ├── templateStringBinaryOperations.symbols │ ├── templateStringBinaryOperations.types │ ├── templateStringBinaryOperationsES6.js │ ├── templateStringBinaryOperationsES6.symbols │ ├── templateStringBinaryOperationsES6.types │ ├── templateStringBinaryOperationsES6Invalid.errors.txt │ ├── templateStringBinaryOperationsES6Invalid.js │ ├── templateStringBinaryOperationsES6Invalid.symbols │ ├── templateStringBinaryOperationsES6Invalid.types │ ├── templateStringBinaryOperationsInvalid.errors.txt │ ├── templateStringBinaryOperationsInvalid.js │ ├── templateStringBinaryOperationsInvalid.symbols │ ├── templateStringBinaryOperationsInvalid.types │ ├── templateStringControlCharacterEscapes01.js │ ├── templateStringControlCharacterEscapes01.symbols │ ├── templateStringControlCharacterEscapes01.types │ ├── templateStringControlCharacterEscapes01_ES6.js │ ├── templateStringControlCharacterEscapes01_ES6.symbols │ ├── templateStringControlCharacterEscapes01_ES6.types │ ├── templateStringControlCharacterEscapes02.js │ ├── templateStringControlCharacterEscapes02.symbols │ ├── templateStringControlCharacterEscapes02.types │ ├── templateStringControlCharacterEscapes02_ES6.js │ ├── templateStringControlCharacterEscapes02_ES6.symbols │ ├── templateStringControlCharacterEscapes02_ES6.types │ ├── templateStringControlCharacterEscapes03.js │ ├── templateStringControlCharacterEscapes03.symbols │ ├── templateStringControlCharacterEscapes03.types │ ├── templateStringControlCharacterEscapes03_ES6.js │ ├── templateStringControlCharacterEscapes03_ES6.symbols │ ├── templateStringControlCharacterEscapes03_ES6.types │ ├── templateStringControlCharacterEscapes04.js │ ├── templateStringControlCharacterEscapes04.symbols │ ├── templateStringControlCharacterEscapes04.types │ ├── templateStringControlCharacterEscapes04_ES6.js │ ├── templateStringControlCharacterEscapes04_ES6.symbols │ ├── templateStringControlCharacterEscapes04_ES6.types │ ├── templateStringInArray.js │ ├── templateStringInArray.symbols │ ├── templateStringInArray.types │ ├── templateStringInArrowFunction.errors.txt │ ├── templateStringInArrowFunction.js │ ├── templateStringInArrowFunction.symbols │ ├── templateStringInArrowFunction.types │ ├── templateStringInArrowFunctionES6.js │ ├── templateStringInArrowFunctionES6.symbols │ ├── templateStringInArrowFunctionES6.types │ ├── templateStringInCallExpression.errors.txt │ ├── templateStringInCallExpression.js │ ├── templateStringInCallExpression.symbols │ ├── templateStringInCallExpression.types │ ├── templateStringInCallExpressionES6.errors.txt │ ├── templateStringInCallExpressionES6.js │ ├── templateStringInCallExpressionES6.symbols │ ├── templateStringInCallExpressionES6.types │ ├── templateStringInConditional.js │ ├── templateStringInConditional.symbols │ ├── templateStringInConditional.types │ ├── templateStringInConditionalES6.js │ ├── templateStringInConditionalES6.symbols │ ├── templateStringInConditionalES6.types │ ├── templateStringInDeleteExpression.errors.txt │ ├── templateStringInDeleteExpression.js │ ├── templateStringInDeleteExpression.symbols │ ├── templateStringInDeleteExpression.types │ ├── templateStringInDeleteExpressionES6.errors.txt │ ├── templateStringInDeleteExpressionES6.js │ ├── templateStringInDeleteExpressionES6.symbols │ ├── templateStringInDeleteExpressionES6.types │ ├── templateStringInDivision.errors.txt │ ├── templateStringInDivision.js │ ├── templateStringInDivision.symbols │ ├── templateStringInDivision.types │ ├── templateStringInEqualityChecks.errors.txt │ ├── templateStringInEqualityChecks.js │ ├── templateStringInEqualityChecks.symbols │ ├── templateStringInEqualityChecks.types │ ├── templateStringInEqualityChecksES6.errors.txt │ ├── templateStringInEqualityChecksES6.js │ ├── templateStringInEqualityChecksES6.symbols │ ├── templateStringInEqualityChecksES6.types │ ├── templateStringInFunctionExpression.js │ ├── templateStringInFunctionExpression.symbols │ ├── templateStringInFunctionExpression.types │ ├── templateStringInFunctionExpressionES6.js │ ├── templateStringInFunctionExpressionES6.symbols │ ├── templateStringInFunctionExpressionES6.types │ ├── templateStringInFunctionParameterType.errors.txt │ ├── templateStringInFunctionParameterType.js │ ├── templateStringInFunctionParameterType.symbols │ ├── templateStringInFunctionParameterType.types │ ├── templateStringInFunctionParameterTypeES6.errors.txt │ ├── templateStringInFunctionParameterTypeES6.js │ ├── templateStringInFunctionParameterTypeES6.symbols │ ├── templateStringInFunctionParameterTypeES6.types │ ├── templateStringInInOperator.js │ ├── templateStringInInOperator.symbols │ ├── templateStringInInOperator.types │ ├── templateStringInInOperatorES6.js │ ├── templateStringInInOperatorES6.symbols │ ├── templateStringInInOperatorES6.types │ ├── templateStringInIndexExpression.js │ ├── templateStringInIndexExpression.symbols │ ├── templateStringInIndexExpression.types │ ├── templateStringInIndexExpressionES6.js │ ├── templateStringInIndexExpressionES6.symbols │ ├── templateStringInIndexExpressionES6.types │ ├── templateStringInInstanceOf.errors.txt │ ├── templateStringInInstanceOf.js │ ├── templateStringInInstanceOf.symbols │ ├── templateStringInInstanceOf.types │ ├── templateStringInInstanceOfES6.errors.txt │ ├── templateStringInInstanceOfES6.js │ ├── templateStringInInstanceOfES6.symbols │ ├── templateStringInInstanceOfES6.types │ ├── templateStringInModuleName.errors.txt │ ├── templateStringInModuleName.js │ ├── templateStringInModuleName.symbols │ ├── templateStringInModuleName.types │ ├── templateStringInModuleNameES6.errors.txt │ ├── templateStringInModuleNameES6.js │ ├── templateStringInModuleNameES6.symbols │ ├── templateStringInModuleNameES6.types │ ├── templateStringInModulo.errors.txt │ ├── templateStringInModulo.js │ ├── templateStringInModulo.symbols │ ├── templateStringInModulo.types │ ├── templateStringInModuloES6.errors.txt │ ├── templateStringInModuloES6.js │ ├── templateStringInModuloES6.symbols │ ├── templateStringInModuloES6.types │ ├── templateStringInMultiplication.errors.txt │ ├── templateStringInMultiplication.js │ ├── templateStringInMultiplication.symbols │ ├── templateStringInMultiplication.types │ ├── templateStringInMultiplicationES6.errors.txt │ ├── templateStringInMultiplicationES6.js │ ├── templateStringInMultiplicationES6.symbols │ ├── templateStringInMultiplicationES6.types │ ├── templateStringInNewExpression.errors.txt │ ├── templateStringInNewExpression.js │ ├── templateStringInNewExpression.symbols │ ├── templateStringInNewExpression.types │ ├── templateStringInNewExpressionES6.errors.txt │ ├── templateStringInNewExpressionES6.js │ ├── templateStringInNewExpressionES6.symbols │ ├── templateStringInNewExpressionES6.types │ ├── templateStringInNewOperator.errors.txt │ ├── templateStringInNewOperator.js │ ├── templateStringInNewOperator.symbols │ ├── templateStringInNewOperator.types │ ├── templateStringInNewOperatorES6.errors.txt │ ├── templateStringInNewOperatorES6.js │ ├── templateStringInNewOperatorES6.symbols │ ├── templateStringInNewOperatorES6.types │ ├── templateStringInObjectLiteral.errors.txt │ ├── templateStringInObjectLiteral.js │ ├── templateStringInObjectLiteral.symbols │ ├── templateStringInObjectLiteral.types │ ├── templateStringInObjectLiteralES6.errors.txt │ ├── templateStringInObjectLiteralES6.js │ ├── templateStringInObjectLiteralES6.symbols │ ├── templateStringInObjectLiteralES6.types │ ├── templateStringInParentheses.js │ ├── templateStringInParentheses.symbols │ ├── templateStringInParentheses.types │ ├── templateStringInParenthesesES6.js │ ├── templateStringInParenthesesES6.symbols │ ├── templateStringInParenthesesES6.types │ ├── templateStringInPropertyAssignment.js │ ├── templateStringInPropertyAssignment.symbols │ ├── templateStringInPropertyAssignment.types │ ├── templateStringInPropertyAssignmentES6.js │ ├── templateStringInPropertyAssignmentES6.symbols │ ├── templateStringInPropertyAssignmentES6.types │ ├── templateStringInPropertyName1.errors.txt │ ├── templateStringInPropertyName1.js │ ├── templateStringInPropertyName1.symbols │ ├── templateStringInPropertyName1.types │ ├── templateStringInPropertyName2.errors.txt │ ├── templateStringInPropertyName2.js │ ├── templateStringInPropertyName2.symbols │ ├── templateStringInPropertyName2.types │ ├── templateStringInPropertyNameES6_1.errors.txt │ ├── templateStringInPropertyNameES6_1.js │ ├── templateStringInPropertyNameES6_1.symbols │ ├── templateStringInPropertyNameES6_1.types │ ├── templateStringInPropertyNameES6_2.errors.txt │ ├── templateStringInPropertyNameES6_2.js │ ├── templateStringInPropertyNameES6_2.symbols │ ├── templateStringInPropertyNameES6_2.types │ ├── templateStringInSwitchAndCase.errors.txt │ ├── templateStringInSwitchAndCase.js │ ├── templateStringInSwitchAndCase.symbols │ ├── templateStringInSwitchAndCase.types │ ├── templateStringInSwitchAndCaseES6.errors.txt │ ├── templateStringInSwitchAndCaseES6.js │ ├── templateStringInSwitchAndCaseES6.symbols │ ├── templateStringInSwitchAndCaseES6.types │ ├── templateStringInTaggedTemplate.errors.txt │ ├── templateStringInTaggedTemplate.js │ ├── templateStringInTaggedTemplate.symbols │ ├── templateStringInTaggedTemplate.types │ ├── templateStringInTaggedTemplateES6.errors.txt │ ├── templateStringInTaggedTemplateES6.js │ ├── templateStringInTaggedTemplateES6.symbols │ ├── templateStringInTaggedTemplateES6.types │ ├── templateStringInTypeAssertion.js │ ├── templateStringInTypeAssertion.symbols │ ├── templateStringInTypeAssertion.types │ ├── templateStringInTypeAssertionES6.js │ ├── templateStringInTypeAssertionES6.symbols │ ├── templateStringInTypeAssertionES6.types │ ├── templateStringInTypeOf.js │ ├── templateStringInTypeOf.symbols │ ├── templateStringInTypeOf.types │ ├── templateStringInTypeOfES6.js │ ├── templateStringInTypeOfES6.symbols │ ├── templateStringInTypeOfES6.types │ ├── templateStringInUnaryPlus.js │ ├── templateStringInUnaryPlus.symbols │ ├── templateStringInUnaryPlus.types │ ├── templateStringInUnaryPlusES6.js │ ├── templateStringInUnaryPlusES6.symbols │ ├── templateStringInUnaryPlusES6.types │ ├── templateStringInWhile.js │ ├── templateStringInWhile.symbols │ ├── templateStringInWhile.types │ ├── templateStringInWhileES6.js │ ├── templateStringInWhileES6.symbols │ ├── templateStringInWhileES6.types │ ├── templateStringInYieldKeyword.js │ ├── templateStringInYieldKeyword.symbols │ ├── templateStringInYieldKeyword.types │ ├── templateStringMultiline1.js │ ├── templateStringMultiline1.symbols │ ├── templateStringMultiline1.types │ ├── templateStringMultiline1_ES6.js │ ├── templateStringMultiline1_ES6.symbols │ ├── templateStringMultiline1_ES6.types │ ├── templateStringMultiline2.js │ ├── templateStringMultiline2.symbols │ ├── templateStringMultiline2.types │ ├── templateStringMultiline2_ES6.js │ ├── templateStringMultiline2_ES6.symbols │ ├── templateStringMultiline2_ES6.types │ ├── templateStringMultiline3.js │ ├── templateStringMultiline3.symbols │ ├── templateStringMultiline3.types │ ├── templateStringMultiline3_ES6.js │ ├── templateStringMultiline3_ES6.symbols │ ├── templateStringMultiline3_ES6.types │ ├── templateStringPlainCharactersThatArePartsOfEscapes01.js │ ├── templateStringPlainCharactersThatArePartsOfEscapes01.symbols │ ├── templateStringPlainCharactersThatArePartsOfEscapes01.types │ ├── templateStringPlainCharactersThatArePartsOfEscapes01_ES6.js │ ├── templateStringPlainCharactersThatArePartsOfEscapes01_ES6.symbols │ ├── templateStringPlainCharactersThatArePartsOfEscapes01_ES6.types │ ├── templateStringPlainCharactersThatArePartsOfEscapes02.js │ ├── templateStringPlainCharactersThatArePartsOfEscapes02.symbols │ ├── templateStringPlainCharactersThatArePartsOfEscapes02.types │ ├── templateStringPlainCharactersThatArePartsOfEscapes02_ES6.js │ ├── templateStringPlainCharactersThatArePartsOfEscapes02_ES6.symbols │ ├── templateStringPlainCharactersThatArePartsOfEscapes02_ES6.types │ ├── templateStringTermination1.js │ ├── templateStringTermination1.symbols │ ├── templateStringTermination1.types │ ├── templateStringTermination1_ES6.js │ ├── templateStringTermination1_ES6.symbols │ ├── templateStringTermination1_ES6.types │ ├── templateStringTermination2.js │ ├── templateStringTermination2.symbols │ ├── templateStringTermination2.types │ ├── templateStringTermination2_ES6.js │ ├── templateStringTermination2_ES6.symbols │ ├── templateStringTermination2_ES6.types │ ├── templateStringTermination3.js │ ├── templateStringTermination3.symbols │ ├── templateStringTermination3.types │ ├── templateStringTermination3_ES6.js │ ├── templateStringTermination3_ES6.symbols │ ├── templateStringTermination3_ES6.types │ ├── templateStringTermination4.js │ ├── templateStringTermination4.symbols │ ├── templateStringTermination4.types │ ├── templateStringTermination4_ES6.js │ ├── templateStringTermination4_ES6.symbols │ ├── templateStringTermination4_ES6.types │ ├── templateStringTermination5.js │ ├── templateStringTermination5.symbols │ ├── templateStringTermination5.types │ ├── templateStringTermination5_ES6.js │ ├── templateStringTermination5_ES6.symbols │ ├── templateStringTermination5_ES6.types │ ├── templateStringUnterminated1.errors.txt │ ├── templateStringUnterminated1.js │ ├── templateStringUnterminated1.symbols │ ├── templateStringUnterminated1.types │ ├── templateStringUnterminated1_ES6.errors.txt │ ├── templateStringUnterminated1_ES6.js │ ├── templateStringUnterminated1_ES6.symbols │ ├── templateStringUnterminated1_ES6.types │ ├── templateStringUnterminated2.errors.txt │ ├── templateStringUnterminated2.js │ ├── templateStringUnterminated2.symbols │ ├── templateStringUnterminated2.types │ ├── templateStringUnterminated2_ES6.errors.txt │ ├── templateStringUnterminated2_ES6.js │ ├── templateStringUnterminated2_ES6.symbols │ ├── templateStringUnterminated2_ES6.types │ ├── templateStringUnterminated3.errors.txt │ ├── templateStringUnterminated3.js │ ├── templateStringUnterminated3.symbols │ ├── templateStringUnterminated3.types │ ├── templateStringUnterminated3_ES6.errors.txt │ ├── templateStringUnterminated3_ES6.js │ ├── templateStringUnterminated3_ES6.symbols │ ├── templateStringUnterminated3_ES6.types │ ├── templateStringUnterminated4.errors.txt │ ├── templateStringUnterminated4.js │ ├── templateStringUnterminated4.symbols │ ├── templateStringUnterminated4.types │ ├── templateStringUnterminated4_ES6.errors.txt │ ├── templateStringUnterminated4_ES6.js │ ├── templateStringUnterminated4_ES6.symbols │ ├── templateStringUnterminated4_ES6.types │ ├── templateStringUnterminated5.errors.txt │ ├── templateStringUnterminated5.js │ ├── templateStringUnterminated5.symbols │ ├── templateStringUnterminated5.types │ ├── templateStringUnterminated5_ES6.errors.txt │ ├── templateStringUnterminated5_ES6.js │ ├── templateStringUnterminated5_ES6.symbols │ ├── templateStringUnterminated5_ES6.types │ ├── templateStringWhitespaceEscapes1.js │ ├── templateStringWhitespaceEscapes1.symbols │ ├── templateStringWhitespaceEscapes1.types │ ├── templateStringWhitespaceEscapes1_ES6.js │ ├── templateStringWhitespaceEscapes1_ES6.symbols │ ├── templateStringWhitespaceEscapes1_ES6.types │ ├── templateStringWhitespaceEscapes2.js │ ├── templateStringWhitespaceEscapes2.symbols │ ├── templateStringWhitespaceEscapes2.types │ ├── templateStringWhitespaceEscapes2_ES6.js │ ├── templateStringWhitespaceEscapes2_ES6.symbols │ ├── templateStringWhitespaceEscapes2_ES6.types │ ├── templateStringWithBackslashEscapes01.js │ ├── templateStringWithBackslashEscapes01.symbols │ ├── templateStringWithBackslashEscapes01.types │ ├── templateStringWithBackslashEscapes01_ES6.js │ ├── templateStringWithBackslashEscapes01_ES6.symbols │ ├── templateStringWithBackslashEscapes01_ES6.types │ ├── templateStringWithCommentsInArrowFunction.js │ ├── templateStringWithCommentsInArrowFunction.symbols │ ├── templateStringWithCommentsInArrowFunction.types │ ├── templateStringWithEmbeddedAddition.js │ ├── templateStringWithEmbeddedAddition.symbols │ ├── templateStringWithEmbeddedAddition.types │ ├── templateStringWithEmbeddedAdditionES6.js │ ├── templateStringWithEmbeddedAdditionES6.symbols │ ├── templateStringWithEmbeddedAdditionES6.types │ ├── templateStringWithEmbeddedArray.js │ ├── templateStringWithEmbeddedArray.symbols │ ├── templateStringWithEmbeddedArray.types │ ├── templateStringWithEmbeddedArrayES6.js │ ├── templateStringWithEmbeddedArrayES6.symbols │ ├── templateStringWithEmbeddedArrayES6.types │ ├── templateStringWithEmbeddedArrowFunction.errors.txt │ ├── templateStringWithEmbeddedArrowFunction.js │ ├── templateStringWithEmbeddedArrowFunction.symbols │ ├── templateStringWithEmbeddedArrowFunction.types │ ├── templateStringWithEmbeddedArrowFunctionES6.js │ ├── templateStringWithEmbeddedArrowFunctionES6.symbols │ ├── templateStringWithEmbeddedArrowFunctionES6.types │ ├── templateStringWithEmbeddedComments.js │ ├── templateStringWithEmbeddedComments.symbols │ ├── templateStringWithEmbeddedComments.types │ ├── templateStringWithEmbeddedCommentsES6.js │ ├── templateStringWithEmbeddedCommentsES6.symbols │ ├── templateStringWithEmbeddedCommentsES6.types │ ├── templateStringWithEmbeddedConditional.js │ ├── templateStringWithEmbeddedConditional.symbols │ ├── templateStringWithEmbeddedConditional.types │ ├── templateStringWithEmbeddedConditionalES6.js │ ├── templateStringWithEmbeddedConditionalES6.symbols │ ├── templateStringWithEmbeddedConditionalES6.types │ ├── templateStringWithEmbeddedDivision.js │ ├── templateStringWithEmbeddedDivision.symbols │ ├── templateStringWithEmbeddedDivision.types │ ├── templateStringWithEmbeddedDivisionES6.js │ ├── templateStringWithEmbeddedDivisionES6.symbols │ ├── templateStringWithEmbeddedDivisionES6.types │ ├── templateStringWithEmbeddedFunctionExpression.js │ ├── templateStringWithEmbeddedFunctionExpression.symbols │ ├── templateStringWithEmbeddedFunctionExpression.types │ ├── templateStringWithEmbeddedFunctionExpressionES6.js │ ├── templateStringWithEmbeddedFunctionExpressionES6.symbols │ ├── templateStringWithEmbeddedFunctionExpressionES6.types │ ├── templateStringWithEmbeddedInOperator.js │ ├── templateStringWithEmbeddedInOperator.symbols │ ├── templateStringWithEmbeddedInOperator.types │ ├── templateStringWithEmbeddedInOperatorES6.js │ ├── templateStringWithEmbeddedInOperatorES6.symbols │ ├── templateStringWithEmbeddedInOperatorES6.types │ ├── templateStringWithEmbeddedInstanceOf.errors.txt │ ├── templateStringWithEmbeddedInstanceOf.js │ ├── templateStringWithEmbeddedInstanceOf.symbols │ ├── templateStringWithEmbeddedInstanceOf.types │ ├── templateStringWithEmbeddedInstanceOfES6.errors.txt │ ├── templateStringWithEmbeddedInstanceOfES6.js │ ├── templateStringWithEmbeddedInstanceOfES6.symbols │ ├── templateStringWithEmbeddedInstanceOfES6.types │ ├── templateStringWithEmbeddedModulo.js │ ├── templateStringWithEmbeddedModulo.symbols │ ├── templateStringWithEmbeddedModulo.types │ ├── templateStringWithEmbeddedModuloES6.js │ ├── templateStringWithEmbeddedModuloES6.symbols │ ├── templateStringWithEmbeddedModuloES6.types │ ├── templateStringWithEmbeddedMultiplication.js │ ├── templateStringWithEmbeddedMultiplication.symbols │ ├── templateStringWithEmbeddedMultiplication.types │ ├── templateStringWithEmbeddedMultiplicationES6.js │ ├── templateStringWithEmbeddedMultiplicationES6.symbols │ ├── templateStringWithEmbeddedMultiplicationES6.types │ ├── templateStringWithEmbeddedNewOperator.js │ ├── templateStringWithEmbeddedNewOperator.symbols │ ├── templateStringWithEmbeddedNewOperator.types │ ├── templateStringWithEmbeddedNewOperatorES6.js │ ├── templateStringWithEmbeddedNewOperatorES6.symbols │ ├── templateStringWithEmbeddedNewOperatorES6.types │ ├── templateStringWithEmbeddedObjectLiteral.js │ ├── templateStringWithEmbeddedObjectLiteral.symbols │ ├── templateStringWithEmbeddedObjectLiteral.types │ ├── templateStringWithEmbeddedObjectLiteralES6.js │ ├── templateStringWithEmbeddedObjectLiteralES6.symbols │ ├── templateStringWithEmbeddedObjectLiteralES6.types │ ├── templateStringWithEmbeddedTemplateString.js │ ├── templateStringWithEmbeddedTemplateString.symbols │ ├── templateStringWithEmbeddedTemplateString.types │ ├── templateStringWithEmbeddedTemplateStringES6.js │ ├── templateStringWithEmbeddedTemplateStringES6.symbols │ ├── templateStringWithEmbeddedTemplateStringES6.types │ ├── templateStringWithEmbeddedTypeAssertionOnAddition.js │ ├── templateStringWithEmbeddedTypeAssertionOnAddition.symbols │ ├── templateStringWithEmbeddedTypeAssertionOnAddition.types │ ├── templateStringWithEmbeddedTypeAssertionOnAdditionES6.js │ ├── templateStringWithEmbeddedTypeAssertionOnAdditionES6.symbols │ ├── templateStringWithEmbeddedTypeAssertionOnAdditionES6.types │ ├── templateStringWithEmbeddedTypeOfOperator.js │ ├── templateStringWithEmbeddedTypeOfOperator.symbols │ ├── templateStringWithEmbeddedTypeOfOperator.types │ ├── templateStringWithEmbeddedTypeOfOperatorES6.js │ ├── templateStringWithEmbeddedTypeOfOperatorES6.symbols │ ├── templateStringWithEmbeddedTypeOfOperatorES6.types │ ├── templateStringWithEmbeddedUnaryPlus.js │ ├── templateStringWithEmbeddedUnaryPlus.symbols │ ├── templateStringWithEmbeddedUnaryPlus.types │ ├── templateStringWithEmbeddedUnaryPlusES6.js │ ├── templateStringWithEmbeddedUnaryPlusES6.symbols │ ├── templateStringWithEmbeddedUnaryPlusES6.types │ ├── templateStringWithEmbeddedYieldKeyword.errors.txt │ ├── templateStringWithEmbeddedYieldKeyword.js │ ├── templateStringWithEmbeddedYieldKeyword.symbols │ ├── templateStringWithEmbeddedYieldKeyword.types │ ├── templateStringWithEmbeddedYieldKeywordES6.js │ ├── templateStringWithEmbeddedYieldKeywordES6.symbols │ ├── templateStringWithEmbeddedYieldKeywordES6.types │ ├── templateStringWithEmptyLiteralPortions.js │ ├── templateStringWithEmptyLiteralPortions.symbols │ ├── templateStringWithEmptyLiteralPortions.types │ ├── templateStringWithEmptyLiteralPortionsES6.js │ ├── templateStringWithEmptyLiteralPortionsES6.symbols │ ├── templateStringWithEmptyLiteralPortionsES6.types │ ├── templateStringWithOpenCommentInStringPortion.js │ ├── templateStringWithOpenCommentInStringPortion.symbols │ ├── templateStringWithOpenCommentInStringPortion.types │ ├── templateStringWithOpenCommentInStringPortionES6.js │ ├── templateStringWithOpenCommentInStringPortionES6.symbols │ ├── templateStringWithOpenCommentInStringPortionES6.types │ ├── templateStringWithPropertyAccess.js │ ├── templateStringWithPropertyAccess.symbols │ ├── templateStringWithPropertyAccess.types │ ├── templateStringWithPropertyAccessES6.js │ ├── templateStringWithPropertyAccessES6.symbols │ ├── templateStringWithPropertyAccessES6.types │ ├── templateStringsArrayTypeDefinedInES5Mode(target=es2015).errors.txt │ ├── templateStringsArrayTypeDefinedInES5Mode(target=es2015).js │ ├── templateStringsArrayTypeDefinedInES5Mode(target=es2015).symbols │ ├── templateStringsArrayTypeDefinedInES5Mode(target=es2015).types │ ├── templateStringsArrayTypeDefinedInES5Mode(target=es5).errors.txt │ ├── templateStringsArrayTypeDefinedInES5Mode(target=es5).js │ ├── templateStringsArrayTypeDefinedInES5Mode(target=es5).symbols │ ├── templateStringsArrayTypeDefinedInES5Mode(target=es5).types │ ├── templateStringsArrayTypeNotDefinedES5Mode(target=es2015).errors.txt │ ├── templateStringsArrayTypeNotDefinedES5Mode(target=es2015).js │ ├── templateStringsArrayTypeNotDefinedES5Mode(target=es2015).symbols │ ├── templateStringsArrayTypeNotDefinedES5Mode(target=es2015).types │ ├── templateStringsArrayTypeNotDefinedES5Mode(target=es5).errors.txt │ ├── templateStringsArrayTypeNotDefinedES5Mode(target=es5).js │ ├── templateStringsArrayTypeNotDefinedES5Mode(target=es5).symbols │ ├── templateStringsArrayTypeNotDefinedES5Mode(target=es5).types │ ├── templateStringsArrayTypeRedefinedInES6Mode.errors.txt │ ├── templateStringsArrayTypeRedefinedInES6Mode.js │ ├── templateStringsArrayTypeRedefinedInES6Mode.symbols │ ├── templateStringsArrayTypeRedefinedInES6Mode.types │ ├── templateStringsWithTypeErrorInFunctionExpressionsInSubstitutionExpression.errors.txt │ ├── templateStringsWithTypeErrorInFunctionExpressionsInSubstitutionExpression.js │ ├── templateStringsWithTypeErrorInFunctionExpressionsInSubstitutionExpression.symbols │ ├── templateStringsWithTypeErrorInFunctionExpressionsInSubstitutionExpression.types │ ├── templateStringsWithTypeErrorInFunctionExpressionsInSubstitutionExpressionES6.errors.txt │ ├── templateStringsWithTypeErrorInFunctionExpressionsInSubstitutionExpressionES6.js │ ├── templateStringsWithTypeErrorInFunctionExpressionsInSubstitutionExpressionES6.symbols │ ├── templateStringsWithTypeErrorInFunctionExpressionsInSubstitutionExpressionES6.types │ ├── temporal.errors.txt │ ├── temporal.js │ ├── temporal.symbols │ ├── temporal.types │ ├── ternaryExpressionSourceMap.js │ ├── ternaryExpressionSourceMap.sourcemap.txt │ ├── ternaryExpressionSourceMap.symbols │ ├── ternaryExpressionSourceMap.types │ ├── testContainerList.js │ ├── testContainerList.symbols │ ├── testContainerList.types │ ├── testTypings.js │ ├── testTypings.symbols │ ├── testTypings.types │ ├── textChanges/ │ │ ├── deleteNode1.js │ │ ├── deleteNode2.js │ │ ├── deleteNode3.js │ │ ├── deleteNode4.js │ │ ├── deleteNode5.js │ │ ├── deleteNodeAfterInClass1.js │ │ ├── deleteNodeAfterInClass2.js │ │ ├── deleteNodeInList1.js │ │ ├── deleteNodeInList10.js │ │ ├── deleteNodeInList11.js │ │ ├── deleteNodeInList12.js │ │ ├── deleteNodeInList13.js │ │ ├── deleteNodeInList14.js │ │ ├── deleteNodeInList15.js │ │ ├── deleteNodeInList1_1.js │ │ ├── deleteNodeInList2.js │ │ ├── deleteNodeInList2_1.js │ │ ├── deleteNodeInList3.js │ │ ├── deleteNodeInList3_1.js │ │ ├── deleteNodeInList4.js │ │ ├── deleteNodeInList4_1.js │ │ ├── deleteNodeInList5.js │ │ ├── deleteNodeInList5_1.js │ │ ├── deleteNodeInList6.js │ │ ├── deleteNodeInList6_1.js │ │ ├── deleteNodeInList7.js │ │ ├── deleteNodeInList8.js │ │ ├── deleteNodeInList9.js │ │ ├── deleteNodeRange1.js │ │ ├── deleteNodeRange2.js │ │ ├── deleteNodeRange3.js │ │ ├── deleteNodeRange4.js │ │ ├── deleteRange1.js │ │ ├── extractMethodLike.js │ │ ├── insertNodeAfter1.js │ │ ├── insertNodeAfter2.js │ │ ├── insertNodeAfter4.js │ │ ├── insertNodeAfterInClass1.js │ │ ├── insertNodeAfterInClass2.js │ │ ├── insertNodeAfterMultipleNodes.js │ │ ├── insertNodeAfterVariableDeclaration.js │ │ ├── insertNodeAtConstructorStart-block with newline.js │ │ ├── insertNodeAtConstructorStart.js │ │ ├── insertNodeBefore1.js │ │ ├── insertNodeBefore2.js │ │ ├── insertNodeBefore3.js │ │ ├── insertNodeInClassAfterNodeWithoutSeparator1.js │ │ ├── insertNodeInClassAfterNodeWithoutSeparator2.js │ │ ├── insertNodeInInterfaceAfterNodeWithoutSeparator1.js │ │ ├── insertNodeInInterfaceAfterNodeWithoutSeparator2.js │ │ ├── insertNodeInListAfter1.js │ │ ├── insertNodeInListAfter10.js │ │ ├── insertNodeInListAfter11.js │ │ ├── insertNodeInListAfter12.js │ │ ├── insertNodeInListAfter13.js │ │ ├── insertNodeInListAfter14.js │ │ ├── insertNodeInListAfter15.js │ │ ├── insertNodeInListAfter16.js │ │ ├── insertNodeInListAfter17.js │ │ ├── insertNodeInListAfter18.js │ │ ├── insertNodeInListAfter19.js │ │ ├── insertNodeInListAfter2.js │ │ ├── insertNodeInListAfter20.js │ │ ├── insertNodeInListAfter3.js │ │ ├── insertNodeInListAfter4.js │ │ ├── insertNodeInListAfter5.js │ │ ├── insertNodeInListAfter6.js │ │ ├── insertNodeInListAfter7.js │ │ ├── insertNodeInListAfter8.js │ │ ├── insertNodeInListAfter9.js │ │ ├── insertNodeInStatementListAfterNodeWithoutSeparator1.js │ │ ├── replaceNode1.js │ │ ├── replaceNode1NoLineBreakBefore.js │ │ ├── replaceNode2.js │ │ ├── replaceNode3.js │ │ ├── replaceNode4.js │ │ ├── replaceNode5.js │ │ ├── replaceNodeRange1.js │ │ ├── replaceNodeRange2.js │ │ ├── replaceNodeRange3.js │ │ ├── replaceNodeRange4.js │ │ ├── replaceRange.js │ │ ├── replaceRangeNoLineBreakBefore.js │ │ └── replaceRangeWithForcedIndentation.js │ ├── thisAndSuperInStaticMembers1(target=es2015).js │ ├── thisAndSuperInStaticMembers1(target=es2022).js │ ├── thisAndSuperInStaticMembers1(target=esnext).js │ ├── thisAndSuperInStaticMembers2(target=es2015).js │ ├── thisAndSuperInStaticMembers2(target=es2022).js │ ├── thisAndSuperInStaticMembers2(target=esnext).js │ ├── thisAndSuperInStaticMembers3(target=es2015).js │ ├── thisAndSuperInStaticMembers3(target=es5).errors.txt │ ├── thisAndSuperInStaticMembers3(target=es5).js │ ├── thisAndSuperInStaticMembers4(target=es2015).js │ ├── thisAndSuperInStaticMembers4(target=es5).errors.txt │ ├── thisAndSuperInStaticMembers4(target=es5).js │ ├── thisAssignmentInNamespaceDeclaration1.errors.txt │ ├── thisAssignmentInNamespaceDeclaration1.js │ ├── thisAssignmentInNamespaceDeclaration1.symbols │ ├── thisAssignmentInNamespaceDeclaration1.types │ ├── thisBinding.errors.txt │ ├── thisBinding.js │ ├── thisBinding.symbols │ ├── thisBinding.types │ ├── thisBinding2.errors.txt │ ├── thisBinding2.js │ ├── thisBinding2.symbols │ ├── thisBinding2.types │ ├── thisCapture1.js │ ├── thisCapture1.symbols │ ├── thisCapture1.types │ ├── thisConditionalOnMethodReturnOfGenericInstance.js │ ├── thisConditionalOnMethodReturnOfGenericInstance.symbols │ ├── thisConditionalOnMethodReturnOfGenericInstance.types │ ├── thisExpressionInCallExpressionWithTypeArguments.errors.txt │ ├── thisExpressionInCallExpressionWithTypeArguments.js │ ├── thisExpressionInCallExpressionWithTypeArguments.symbols │ ├── thisExpressionInCallExpressionWithTypeArguments.types │ ├── thisExpressionInIndexExpression.js │ ├── thisExpressionInIndexExpression.symbols │ ├── thisExpressionInIndexExpression.types │ ├── thisExpressionOfGenericObject.errors.txt │ ├── thisExpressionOfGenericObject.js │ ├── thisExpressionOfGenericObject.symbols │ ├── thisExpressionOfGenericObject.types │ ├── thisInAccessors.js │ ├── thisInAccessors.symbols │ ├── thisInAccessors.types │ ├── thisInArrowFunctionInStaticInitializer1.js │ ├── thisInArrowFunctionInStaticInitializer1.symbols │ ├── thisInArrowFunctionInStaticInitializer1.types │ ├── thisInClassBodyStaticESNext.errors.txt │ ├── thisInClassBodyStaticESNext.js │ ├── thisInClassBodyStaticESNext.symbols │ ├── thisInClassBodyStaticESNext.types │ ├── thisInConstructorParameter1.js │ ├── thisInConstructorParameter1.symbols │ ├── thisInConstructorParameter1.types │ ├── thisInConstructorParameter2.js │ ├── thisInConstructorParameter2.symbols │ ├── thisInConstructorParameter2.types │ ├── thisInFunctionCall.errors.txt │ ├── thisInFunctionCall.js │ ├── thisInFunctionCall.symbols │ ├── thisInFunctionCall.types │ ├── thisInFunctionCallJs.errors.txt │ ├── thisInFunctionCallJs.symbols │ ├── thisInFunctionCallJs.types │ ├── thisInGenericStaticMembers.js │ ├── thisInGenericStaticMembers.symbols │ ├── thisInGenericStaticMembers.types │ ├── thisInInnerFunctions.errors.txt │ ├── thisInInnerFunctions.js │ ├── thisInInnerFunctions.symbols │ ├── thisInInnerFunctions.types │ ├── thisInInstanceMemberInitializer.errors.txt │ ├── thisInInstanceMemberInitializer.js │ ├── thisInInstanceMemberInitializer.symbols │ ├── thisInInstanceMemberInitializer.types │ ├── thisInInvalidContexts.errors.txt │ ├── thisInInvalidContexts.js │ ├── thisInInvalidContexts.symbols │ ├── thisInInvalidContexts.types │ ├── thisInInvalidContextsExternalModule(target=es2015).errors.txt │ ├── thisInInvalidContextsExternalModule(target=es2015).js │ ├── thisInInvalidContextsExternalModule(target=es2015).symbols │ ├── thisInInvalidContextsExternalModule(target=es2015).types │ ├── thisInInvalidContextsExternalModule(target=es5).errors.txt │ ├── thisInInvalidContextsExternalModule(target=es5).js │ ├── thisInInvalidContextsExternalModule(target=es5).symbols │ ├── thisInInvalidContextsExternalModule(target=es5).types │ ├── thisInLambda.js │ ├── thisInLambda.symbols │ ├── thisInLambda.types │ ├── thisInModule.errors.txt │ ├── thisInModule.js │ ├── thisInModule.symbols │ ├── thisInModule.types │ ├── thisInModuleFunction1.errors.txt │ ├── thisInModuleFunction1.js │ ├── thisInModuleFunction1.symbols │ ├── thisInModuleFunction1.types │ ├── thisInObjectJs.js │ ├── thisInObjectJs.symbols │ ├── thisInObjectJs.types │ ├── thisInObjectLiterals.errors.txt │ ├── thisInObjectLiterals.js │ ├── thisInObjectLiterals.symbols │ ├── thisInObjectLiterals.types │ ├── thisInOuterClassBody.errors.txt │ ├── thisInOuterClassBody.js │ ├── thisInOuterClassBody.symbols │ ├── thisInOuterClassBody.types │ ├── thisInPropertyBoundDeclarations.errors.txt │ ├── thisInPropertyBoundDeclarations.js │ ├── thisInPropertyBoundDeclarations.symbols │ ├── thisInPropertyBoundDeclarations.types │ ├── thisInStaticMethod1.js │ ├── thisInStaticMethod1.symbols │ ├── thisInStaticMethod1.types │ ├── thisInStatics.js │ ├── thisInStatics.symbols │ ├── thisInStatics.types │ ├── thisInSuperCall.errors.txt │ ├── thisInSuperCall.js │ ├── thisInSuperCall.symbols │ ├── thisInSuperCall.types │ ├── thisInSuperCall1.errors.txt │ ├── thisInSuperCall1.js │ ├── thisInSuperCall1.symbols │ ├── thisInSuperCall1.types │ ├── thisInSuperCall2.errors.txt │ ├── thisInSuperCall2.js │ ├── thisInSuperCall2.symbols │ ├── thisInSuperCall2.types │ ├── thisInSuperCall3.errors.txt │ ├── thisInSuperCall3.js │ ├── thisInSuperCall3.symbols │ ├── thisInSuperCall3.types │ ├── thisInTupleTypeParameterConstraints.errors.txt │ ├── thisInTupleTypeParameterConstraints.js │ ├── thisInTupleTypeParameterConstraints.symbols │ ├── thisInTupleTypeParameterConstraints.types │ ├── thisInTypeQuery.symbols │ ├── thisInTypeQuery.types │ ├── thisIndexOnExistingReadonlyFieldIsNotNever.js │ ├── thisIndexOnExistingReadonlyFieldIsNotNever.symbols │ ├── thisIndexOnExistingReadonlyFieldIsNotNever.types │ ├── thisKeyword.errors.txt │ ├── thisKeyword.js │ ├── thisKeyword.symbols │ ├── thisKeyword.types │ ├── thisMethodCall.js │ ├── thisMethodCall.symbols │ ├── thisMethodCall.types │ ├── thisPredicateInObjectLiteral.errors.txt │ ├── thisPredicateInObjectLiteral.js │ ├── thisPredicateInObjectLiteral.symbols │ ├── thisPredicateInObjectLiteral.types │ ├── thisPropertyAssignment.errors.txt │ ├── thisPropertyAssignment.js │ ├── thisPropertyAssignment.symbols │ ├── thisPropertyAssignment.types │ ├── thisPropertyAssignmentCircular.js │ ├── thisPropertyAssignmentCircular.symbols │ ├── thisPropertyAssignmentCircular.types │ ├── thisPropertyAssignmentComputed.errors.txt │ ├── thisPropertyAssignmentComputed.symbols │ ├── thisPropertyAssignmentComputed.types │ ├── thisPropertyAssignmentInherited.js │ ├── thisPropertyAssignmentInherited.symbols │ ├── thisPropertyAssignmentInherited.types │ ├── thisPropertyOverridesAccessors.symbols │ ├── thisPropertyOverridesAccessors.types │ ├── thisPrototypeMethodCompoundAssignment.symbols │ ├── thisPrototypeMethodCompoundAssignment.types │ ├── thisPrototypeMethodCompoundAssignmentJs.symbols │ ├── thisPrototypeMethodCompoundAssignmentJs.types │ ├── thisReferencedInFunctionInsideArrowFunction1.js │ ├── thisReferencedInFunctionInsideArrowFunction1.symbols │ ├── thisReferencedInFunctionInsideArrowFunction1.types │ ├── thisShadowingErrorSpans.errors.txt │ ├── thisShadowingErrorSpans.js │ ├── thisShadowingErrorSpans.symbols │ ├── thisShadowingErrorSpans.types │ ├── thisTag1.symbols │ ├── thisTag1.types │ ├── thisTag2.js │ ├── thisTag2.symbols │ ├── thisTag2.types │ ├── thisTag3.errors.txt │ ├── thisTag3.symbols │ ├── thisTag3.types │ ├── thisTypeAccessibility.errors.txt │ ├── thisTypeAccessibility.js │ ├── thisTypeAccessibility.symbols │ ├── thisTypeAccessibility.types │ ├── thisTypeAndConstraints.js │ ├── thisTypeAndConstraints.symbols │ ├── thisTypeAndConstraints.types │ ├── thisTypeAsConstraint.js │ ├── thisTypeAsConstraint.symbols │ ├── thisTypeAsConstraint.types │ ├── thisTypeErrors.errors.txt │ ├── thisTypeErrors.js │ ├── thisTypeErrors.symbols │ ├── thisTypeErrors.types │ ├── thisTypeErrors2.errors.txt │ ├── thisTypeErrors2.js │ ├── thisTypeErrors2.symbols │ ├── thisTypeErrors2.types │ ├── thisTypeInAccessors(target=es2015).errors.txt │ ├── thisTypeInAccessors(target=es2015).js │ ├── thisTypeInAccessors(target=es2015).symbols │ ├── thisTypeInAccessors(target=es2015).types │ ├── thisTypeInAccessors(target=es5).errors.txt │ ├── thisTypeInAccessors(target=es5).js │ ├── thisTypeInAccessors(target=es5).symbols │ ├── thisTypeInAccessors(target=es5).types │ ├── thisTypeInAccessorsNegative(target=es2015).errors.txt │ ├── thisTypeInAccessorsNegative(target=es2015).js │ ├── thisTypeInAccessorsNegative(target=es2015).symbols │ ├── thisTypeInAccessorsNegative(target=es2015).types │ ├── thisTypeInAccessorsNegative(target=es5).errors.txt │ ├── thisTypeInAccessorsNegative(target=es5).js │ ├── thisTypeInAccessorsNegative(target=es5).symbols │ ├── thisTypeInAccessorsNegative(target=es5).types │ ├── thisTypeInBasePropertyAndDerivedContainerOfBase01.js │ ├── thisTypeInBasePropertyAndDerivedContainerOfBase01.symbols │ ├── thisTypeInBasePropertyAndDerivedContainerOfBase01.types │ ├── thisTypeInClasses.errors.txt │ ├── thisTypeInClasses.js │ ├── thisTypeInClasses.symbols │ ├── thisTypeInClasses.types │ ├── thisTypeInFunctions.errors.txt │ ├── thisTypeInFunctions.js │ ├── thisTypeInFunctions.symbols │ ├── thisTypeInFunctions.types │ ├── thisTypeInFunctions2.errors.txt │ ├── thisTypeInFunctions2.js │ ├── thisTypeInFunctions2.symbols │ ├── thisTypeInFunctions2.types │ ├── thisTypeInFunctions3.js │ ├── thisTypeInFunctions3.symbols │ ├── thisTypeInFunctions3.types │ ├── thisTypeInFunctions4.js │ ├── thisTypeInFunctions4.symbols │ ├── thisTypeInFunctions4.types │ ├── thisTypeInFunctionsNegative.errors.txt │ ├── thisTypeInFunctionsNegative.js │ ├── thisTypeInFunctionsNegative.symbols │ ├── thisTypeInFunctionsNegative.types │ ├── thisTypeInInterfaces.js │ ├── thisTypeInInterfaces.symbols │ ├── thisTypeInInterfaces.types │ ├── thisTypeInObjectLiterals.js │ ├── thisTypeInObjectLiterals.symbols │ ├── thisTypeInObjectLiterals.types │ ├── thisTypeInObjectLiterals2(target=es2015).js │ ├── thisTypeInObjectLiterals2(target=es2015).symbols │ ├── thisTypeInObjectLiterals2(target=es2015).types │ ├── thisTypeInObjectLiterals2(target=es5).errors.txt │ ├── thisTypeInObjectLiterals2(target=es5).js │ ├── thisTypeInObjectLiterals2(target=es5).symbols │ ├── thisTypeInObjectLiterals2(target=es5).types │ ├── thisTypeInTaggedTemplateCall.js │ ├── thisTypeInTaggedTemplateCall.symbols │ ├── thisTypeInTaggedTemplateCall.types │ ├── thisTypeInTuples.js │ ├── thisTypeInTuples.symbols │ ├── thisTypeInTuples.types │ ├── thisTypeInTypePredicate.js │ ├── thisTypeInTypePredicate.symbols │ ├── thisTypeInTypePredicate.types │ ├── thisTypeOfConstructorFunctions.symbols │ ├── thisTypeOfConstructorFunctions.types │ ├── thisTypeOptionalCall.js │ ├── thisTypeOptionalCall.symbols │ ├── thisTypeOptionalCall.types │ ├── thisTypeSyntacticContext.js │ ├── thisTypeSyntacticContext.symbols │ ├── thisTypeSyntacticContext.types │ ├── thisWhenTypeCheckFails.errors.txt │ ├── thisWhenTypeCheckFails.js │ ├── thisWhenTypeCheckFails.symbols │ ├── thisWhenTypeCheckFails.types │ ├── this_inside-enum-should-not-be-allowed.errors.txt │ ├── this_inside-enum-should-not-be-allowed.js │ ├── this_inside-enum-should-not-be-allowed.symbols │ ├── this_inside-enum-should-not-be-allowed.types │ ├── this_inside-object-literal-getters-and-setters.js │ ├── this_inside-object-literal-getters-and-setters.symbols │ ├── this_inside-object-literal-getters-and-setters.types │ ├── thislessFunctionsNotContextSensitive1.errors.txt │ ├── thislessFunctionsNotContextSensitive1.symbols │ ├── thislessFunctionsNotContextSensitive1.types │ ├── thislessFunctionsNotContextSensitive2.errors.txt │ ├── thislessFunctionsNotContextSensitive2.symbols │ ├── thislessFunctionsNotContextSensitive2.types │ ├── thislessFunctionsNotContextSensitive3.errors.txt │ ├── thislessFunctionsNotContextSensitive3.symbols │ ├── thislessFunctionsNotContextSensitive3.types │ ├── throwInEnclosingStatements.js │ ├── throwInEnclosingStatements.symbols │ ├── throwInEnclosingStatements.types │ ├── throwStatements.js │ ├── throwStatements.symbols │ ├── throwStatements.types │ ├── throwWithoutNewLine1.errors.txt │ ├── throwWithoutNewLine1.js │ ├── throwWithoutNewLine1.symbols │ ├── throwWithoutNewLine1.types │ ├── throwWithoutNewLine2.errors.txt │ ├── throwWithoutNewLine2.js │ ├── throwWithoutNewLine2.symbols │ ├── throwWithoutNewLine2.types │ ├── toStringOnPrimitives.js │ ├── toStringOnPrimitives.symbols │ ├── toStringOnPrimitives.types │ ├── tooFewArgumentsInGenericFunctionTypedArgument.errors.txt │ ├── tooFewArgumentsInGenericFunctionTypedArgument.js │ ├── tooFewArgumentsInGenericFunctionTypedArgument.symbols │ ├── tooFewArgumentsInGenericFunctionTypedArgument.types │ ├── tooManyTypeParameters1.errors.txt │ ├── tooManyTypeParameters1.js │ ├── tooManyTypeParameters1.symbols │ ├── tooManyTypeParameters1.types │ ├── topFunctionTypeNotCallable.errors.txt │ ├── topFunctionTypeNotCallable.symbols │ ├── topFunctionTypeNotCallable.types │ ├── topLevel.js │ ├── topLevel.symbols │ ├── topLevel.types │ ├── topLevelAmbientModule.js │ ├── topLevelAmbientModule.symbols │ ├── topLevelAmbientModule.types │ ├── topLevelAwait.1(module=es2022,target=es2015).errors.txt │ ├── topLevelAwait.1(module=es2022,target=es2015).js │ ├── topLevelAwait.1(module=es2022,target=es2015).symbols │ ├── topLevelAwait.1(module=es2022,target=es2015).types │ ├── topLevelAwait.1(module=es2022,target=es2017).js │ ├── topLevelAwait.1(module=es2022,target=es2017).symbols │ ├── topLevelAwait.1(module=es2022,target=es2017).types │ ├── topLevelAwait.1(module=esnext,target=es2015).errors.txt │ ├── topLevelAwait.1(module=esnext,target=es2015).js │ ├── topLevelAwait.1(module=esnext,target=es2015).symbols │ ├── topLevelAwait.1(module=esnext,target=es2015).types │ ├── topLevelAwait.1(module=esnext,target=es2017).js │ ├── topLevelAwait.1(module=esnext,target=es2017).symbols │ ├── topLevelAwait.1(module=esnext,target=es2017).types │ ├── topLevelAwait.1(module=system,target=es2015).errors.txt │ ├── topLevelAwait.1(module=system,target=es2015).js │ ├── topLevelAwait.1(module=system,target=es2015).symbols │ ├── topLevelAwait.1(module=system,target=es2015).types │ ├── topLevelAwait.1(module=system,target=es2017).errors.txt │ ├── topLevelAwait.1(module=system,target=es2017).js │ ├── topLevelAwait.1(module=system,target=es2017).symbols │ ├── topLevelAwait.1(module=system,target=es2017).types │ ├── topLevelAwait.2(module=es2022).js │ ├── topLevelAwait.2(module=es2022).symbols │ ├── topLevelAwait.2(module=es2022).types │ ├── topLevelAwait.2(module=esnext).js │ ├── topLevelAwait.2(module=esnext).symbols │ ├── topLevelAwait.2(module=esnext).types │ ├── topLevelAwait.3(module=es2022).symbols │ ├── topLevelAwait.3(module=es2022).types │ ├── topLevelAwait.3(module=esnext).symbols │ ├── topLevelAwait.3(module=esnext).types │ ├── topLevelAwaitErrors.1(module=es2022).errors.txt │ ├── topLevelAwaitErrors.1(module=es2022).js │ ├── topLevelAwaitErrors.1(module=es2022).symbols │ ├── topLevelAwaitErrors.1(module=es2022).types │ ├── topLevelAwaitErrors.1(module=esnext).errors.txt │ ├── topLevelAwaitErrors.1(module=esnext).js │ ├── topLevelAwaitErrors.1(module=esnext).symbols │ ├── topLevelAwaitErrors.1(module=esnext).types │ ├── topLevelAwaitErrors.10(module=es2022).errors.txt │ ├── topLevelAwaitErrors.10(module=es2022).js │ ├── topLevelAwaitErrors.10(module=es2022).symbols │ ├── topLevelAwaitErrors.10(module=es2022).types │ ├── topLevelAwaitErrors.10(module=esnext).errors.txt │ ├── topLevelAwaitErrors.10(module=esnext).js │ ├── topLevelAwaitErrors.10(module=esnext).symbols │ ├── topLevelAwaitErrors.10(module=esnext).types │ ├── topLevelAwaitErrors.11.errors.txt │ ├── topLevelAwaitErrors.11.js │ ├── topLevelAwaitErrors.11.symbols │ ├── topLevelAwaitErrors.11.types │ ├── topLevelAwaitErrors.12(module=es2022).errors.txt │ ├── topLevelAwaitErrors.12(module=es2022).js │ ├── topLevelAwaitErrors.12(module=es2022).symbols │ ├── topLevelAwaitErrors.12(module=es2022).types │ ├── topLevelAwaitErrors.12(module=esnext).errors.txt │ ├── topLevelAwaitErrors.12(module=esnext).js │ ├── topLevelAwaitErrors.12(module=esnext).symbols │ ├── topLevelAwaitErrors.12(module=esnext).types │ ├── topLevelAwaitErrors.2(module=es2022).errors.txt │ ├── topLevelAwaitErrors.2(module=es2022).js │ ├── topLevelAwaitErrors.2(module=es2022).symbols │ ├── topLevelAwaitErrors.2(module=es2022).types │ ├── topLevelAwaitErrors.2(module=esnext).errors.txt │ ├── topLevelAwaitErrors.2(module=esnext).js │ ├── topLevelAwaitErrors.2(module=esnext).symbols │ ├── topLevelAwaitErrors.2(module=esnext).types │ ├── topLevelAwaitErrors.3(module=es2022).errors.txt │ ├── topLevelAwaitErrors.3(module=es2022).js │ ├── topLevelAwaitErrors.3(module=es2022).symbols │ ├── topLevelAwaitErrors.3(module=es2022).types │ ├── topLevelAwaitErrors.3(module=esnext).errors.txt │ ├── topLevelAwaitErrors.3(module=esnext).js │ ├── topLevelAwaitErrors.3(module=esnext).symbols │ ├── topLevelAwaitErrors.3(module=esnext).types │ ├── topLevelAwaitErrors.4(module=es2022).errors.txt │ ├── topLevelAwaitErrors.4(module=es2022).js │ ├── topLevelAwaitErrors.4(module=es2022).symbols │ ├── topLevelAwaitErrors.4(module=es2022).types │ ├── topLevelAwaitErrors.4(module=esnext).errors.txt │ ├── topLevelAwaitErrors.4(module=esnext).js │ ├── topLevelAwaitErrors.4(module=esnext).symbols │ ├── topLevelAwaitErrors.4(module=esnext).types │ ├── topLevelAwaitErrors.5(module=es2022).errors.txt │ ├── topLevelAwaitErrors.5(module=es2022).js │ ├── topLevelAwaitErrors.5(module=es2022).symbols │ ├── topLevelAwaitErrors.5(module=es2022).types │ ├── topLevelAwaitErrors.5(module=esnext).errors.txt │ ├── topLevelAwaitErrors.5(module=esnext).js │ ├── topLevelAwaitErrors.5(module=esnext).symbols │ ├── topLevelAwaitErrors.5(module=esnext).types │ ├── topLevelAwaitErrors.6(module=es2022).errors.txt │ ├── topLevelAwaitErrors.6(module=es2022).js │ ├── topLevelAwaitErrors.6(module=es2022).symbols │ ├── topLevelAwaitErrors.6(module=es2022).types │ ├── topLevelAwaitErrors.6(module=esnext).errors.txt │ ├── topLevelAwaitErrors.6(module=esnext).js │ ├── topLevelAwaitErrors.6(module=esnext).symbols │ ├── topLevelAwaitErrors.6(module=esnext).types │ ├── topLevelAwaitErrors.7(module=es2022).errors.txt │ ├── topLevelAwaitErrors.7(module=es2022).js │ ├── topLevelAwaitErrors.7(module=es2022).symbols │ ├── topLevelAwaitErrors.7(module=es2022).types │ ├── topLevelAwaitErrors.7(module=esnext).errors.txt │ ├── topLevelAwaitErrors.7(module=esnext).js │ ├── topLevelAwaitErrors.7(module=esnext).symbols │ ├── topLevelAwaitErrors.7(module=esnext).types │ ├── topLevelAwaitErrors.8(module=es2022).errors.txt │ ├── topLevelAwaitErrors.8(module=es2022).js │ ├── topLevelAwaitErrors.8(module=es2022).symbols │ ├── topLevelAwaitErrors.8(module=es2022).types │ ├── topLevelAwaitErrors.8(module=esnext).errors.txt │ ├── topLevelAwaitErrors.8(module=esnext).js │ ├── topLevelAwaitErrors.8(module=esnext).symbols │ ├── topLevelAwaitErrors.8(module=esnext).types │ ├── topLevelAwaitErrors.9(module=es2022).errors.txt │ ├── topLevelAwaitErrors.9(module=es2022).js │ ├── topLevelAwaitErrors.9(module=es2022).symbols │ ├── topLevelAwaitErrors.9(module=es2022).types │ ├── topLevelAwaitErrors.9(module=esnext).errors.txt │ ├── topLevelAwaitErrors.9(module=esnext).js │ ├── topLevelAwaitErrors.9(module=esnext).symbols │ ├── topLevelAwaitErrors.9(module=esnext).types │ ├── topLevelAwaitNonModule(module=es2022).errors.txt │ ├── topLevelAwaitNonModule(module=es2022).js │ ├── topLevelAwaitNonModule(module=es2022).symbols │ ├── topLevelAwaitNonModule(module=es2022).types │ ├── topLevelAwaitNonModule(module=esnext).errors.txt │ ├── topLevelAwaitNonModule(module=esnext).js │ ├── topLevelAwaitNonModule(module=esnext).symbols │ ├── topLevelAwaitNonModule(module=esnext).types │ ├── topLevelBlockExpando.symbols │ ├── topLevelBlockExpando.types │ ├── topLevelExports.errors.txt │ ├── topLevelExports.js │ ├── topLevelExports.symbols │ ├── topLevelExports.types │ ├── topLevelFileModule.js │ ├── topLevelFileModule.symbols │ ├── topLevelFileModule.types │ ├── topLevelFileModuleMissing.errors.txt │ ├── topLevelFileModuleMissing.js │ ├── topLevelFileModuleMissing.symbols │ ├── topLevelFileModuleMissing.types │ ├── topLevelLambda.errors.txt │ ├── topLevelLambda.js │ ├── topLevelLambda.symbols │ ├── topLevelLambda.types │ ├── topLevelLambda2.js │ ├── topLevelLambda2.symbols │ ├── topLevelLambda2.types │ ├── topLevelLambda3.errors.txt │ ├── topLevelLambda3.js │ ├── topLevelLambda3.symbols │ ├── topLevelLambda3.types │ ├── topLevelLambda4.errors.txt │ ├── topLevelLambda4.js │ ├── topLevelLambda4.symbols │ ├── topLevelLambda4.types │ ├── topLevelModuleDeclarationAndFile.errors.txt │ ├── topLevelModuleDeclarationAndFile.js │ ├── topLevelModuleDeclarationAndFile.symbols │ ├── topLevelModuleDeclarationAndFile.types │ ├── topLevelThisAssignment.errors.txt │ ├── topLevelThisAssignment.js │ ├── topLevelThisAssignment.symbols │ ├── topLevelThisAssignment.types │ ├── topLevelVarHoistingCommonJS.js │ ├── topLevelVarHoistingSystem.errors.txt │ ├── topLevelVarHoistingSystem.js │ ├── trackedSymbolsNoCrash.js │ ├── trackedSymbolsNoCrash.symbols │ ├── trackedSymbolsNoCrash.types │ ├── trailingCommaInHeterogenousArrayLiteral1.errors.txt │ ├── trailingCommaInHeterogenousArrayLiteral1.js │ ├── trailingCommaInHeterogenousArrayLiteral1.symbols │ ├── trailingCommaInHeterogenousArrayLiteral1.types │ ├── trailingCommaSignatureHelp.baseline │ ├── trailingCommasES5(target=es2015).js │ ├── trailingCommasES5(target=es2015).symbols │ ├── trailingCommasES5(target=es2015).types │ ├── trailingCommasES5(target=es5).errors.txt │ ├── trailingCommasES5(target=es5).js │ ├── trailingCommasES5(target=es5).symbols │ ├── trailingCommasES5(target=es5).types │ ├── trailingCommasInBindingPatterns.errors.txt │ ├── trailingCommasInBindingPatterns.js │ ├── trailingCommasInBindingPatterns.symbols │ ├── trailingCommasInBindingPatterns.types │ ├── trailingCommasInFunctionParametersAndArguments(target=es2015).errors.txt │ ├── trailingCommasInFunctionParametersAndArguments(target=es2015).js │ ├── trailingCommasInFunctionParametersAndArguments(target=es2015).symbols │ ├── trailingCommasInFunctionParametersAndArguments(target=es2015).types │ ├── trailingCommasInFunctionParametersAndArguments(target=es5).errors.txt │ ├── trailingCommasInFunctionParametersAndArguments(target=es5).js │ ├── trailingCommasInFunctionParametersAndArguments(target=es5).symbols │ ├── trailingCommasInFunctionParametersAndArguments(target=es5).types │ ├── trailingCommasInGetter.errors.txt │ ├── trailingCommasInGetter.js │ ├── trailingCommasInGetter.symbols │ ├── trailingCommasInGetter.types │ ├── transferableArrayBuffer.symbols │ ├── transferableArrayBuffer.types │ ├── transformApi/ │ │ ├── transformsCorrectly.fromTranspileModule.js │ │ ├── transformsCorrectly.issue24709.js │ │ ├── transformsCorrectly.issue27854.js │ │ ├── transformsCorrectly.issue44068.js │ │ ├── transformsCorrectly.jsxExpression.js │ │ ├── transformsCorrectly.rewrittenNamespace.js │ │ ├── transformsCorrectly.rewrittenNamespaceFollowingClass.js │ │ ├── transformsCorrectly.substitution.js │ │ ├── transformsCorrectly.synthesizedClassAndNamespaceCombination.js │ │ ├── transformsCorrectly.templateSpans.js │ │ ├── transformsCorrectly.transformAddCommentToArrowReturnValue.js │ │ ├── transformsCorrectly.transformAddCommentToExportedVar.js │ │ ├── transformsCorrectly.transformAddCommentToImport.js │ │ ├── transformsCorrectly.transformAddCommentToNamespace.js │ │ ├── transformsCorrectly.transformAddCommentToProperties.js │ │ ├── transformsCorrectly.transformAddDecoratedNode.js │ │ ├── transformsCorrectly.transformAddImportStar.js │ │ ├── transformsCorrectly.transformAwayExportStar.js │ │ ├── transformsCorrectly.transformDeclarationFile.js │ │ ├── transformsCorrectly.transformDefiniteAssignmentAssertions.js │ │ ├── transformsCorrectly.transformParameterProperty.js │ │ ├── transformsCorrectly.transformSyntheticCommentOnStaticFieldInClassDeclaration.js │ │ ├── transformsCorrectly.transformSyntheticCommentOnStaticFieldInClassExpression.js │ │ ├── transformsCorrectly.transformTaggedTemplateLiteral.js │ │ ├── transformsCorrectly.transformTypesInExportDefault.js │ │ ├── transformsCorrectly.transformUpdateModuleMember.js │ │ └── transformsCorrectly.types.js │ ├── transformArrowInBlockScopedLoopVarInitializer(target=es2015).js │ ├── transformArrowInBlockScopedLoopVarInitializer(target=es2015).symbols │ ├── transformArrowInBlockScopedLoopVarInitializer(target=es2015).types │ ├── transformArrowInBlockScopedLoopVarInitializer(target=es5).errors.txt │ ├── transformArrowInBlockScopedLoopVarInitializer(target=es5).js │ ├── transformArrowInBlockScopedLoopVarInitializer(target=es5).symbols │ ├── transformArrowInBlockScopedLoopVarInitializer(target=es5).types │ ├── transformNestedGeneratorsWithTry(target=es2015).js │ ├── transformNestedGeneratorsWithTry(target=es2015).symbols │ ├── transformNestedGeneratorsWithTry(target=es2015).types │ ├── transformNestedGeneratorsWithTry(target=es5).errors.txt │ ├── transformNestedGeneratorsWithTry(target=es5).js │ ├── transformNestedGeneratorsWithTry(target=es5).symbols │ ├── transformNestedGeneratorsWithTry(target=es5).types │ ├── transformParenthesizesConditionalSubexpression(target=es2015).js │ ├── transformParenthesizesConditionalSubexpression(target=es2015).symbols │ ├── transformParenthesizesConditionalSubexpression(target=es2015).types │ ├── transformParenthesizesConditionalSubexpression(target=es5).errors.txt │ ├── transformParenthesizesConditionalSubexpression(target=es5).js │ ├── transformParenthesizesConditionalSubexpression(target=es5).symbols │ ├── transformParenthesizesConditionalSubexpression(target=es5).types │ ├── transformsElideNullUndefinedType.js │ ├── transformsElideNullUndefinedType.symbols │ ├── transformsElideNullUndefinedType.types │ ├── transitiveExportImports.baseline.jsonc │ ├── transitiveExportImports2.baseline.jsonc │ ├── transitiveExportImports3.baseline.jsonc │ ├── transitiveTypeArgumentInference1.errors.txt │ ├── transitiveTypeArgumentInference1.js │ ├── transitiveTypeArgumentInference1.symbols │ ├── transitiveTypeArgumentInference1.types │ ├── transpile/ │ │ ├── Accepts string as enum values for compile-options.js │ │ ├── Accepts string as enum values for compile-options.oldTranspile.js │ │ ├── Can transpile .ts extensions without error (verbatimModuleSyntax=true).js │ │ ├── Can transpile .ts extensions without error (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Can transpile .ts extensions without error.js │ │ ├── Can transpile .ts extensions without error.oldTranspile.js │ │ ├── Correctly serialize metadata when transpile with CommonJS option (verbatimModuleSyntax=true).errors.txt │ │ ├── Correctly serialize metadata when transpile with CommonJS option (verbatimModuleSyntax=true).js │ │ ├── Correctly serialize metadata when transpile with CommonJS option (verbatimModuleSyntax=true).oldTranspile.errors.txt │ │ ├── Correctly serialize metadata when transpile with CommonJS option (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Correctly serialize metadata when transpile with CommonJS option.errors.txt │ │ ├── Correctly serialize metadata when transpile with CommonJS option.js │ │ ├── Correctly serialize metadata when transpile with CommonJS option.oldTranspile.errors.txt │ │ ├── Correctly serialize metadata when transpile with CommonJS option.oldTranspile.js │ │ ├── Correctly serialize metadata when transpile with System option.errors.txt │ │ ├── Correctly serialize metadata when transpile with System option.js │ │ ├── Correctly serialize metadata when transpile with System option.oldTranspile.errors.txt │ │ ├── Correctly serialize metadata when transpile with System option.oldTranspile.js │ │ ├── Does not elide import equals referenced only by export type (verbatimModuleSyntax=true).js │ │ ├── Does not elide import equals referenced only by export type (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Does not elide import equals referenced only by type only export specifier (verbatimModuleSyntax=true).js │ │ ├── Does not elide import equals referenced only by type only export specifier (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Does not generate semantic diagnostics (verbatimModuleSyntax=true).js │ │ ├── Does not generate semantic diagnostics (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Does not generate semantic diagnostics.js │ │ ├── Does not generate semantic diagnostics.oldTranspile.js │ │ ├── Does not support setting isolatedModules (verbatimModuleSyntax=true).js │ │ ├── Does not support setting isolatedModules (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Elides import equals referenced only by export type.js │ │ ├── Elides import equals referenced only by export type.oldTranspile.js │ │ ├── Elides import equals referenced only by type only export specifier.js │ │ ├── Elides import equals referenced only by type only export specifier.oldTranspile.js │ │ ├── Elides re-export of type-only import.js │ │ ├── Elides re-export of type-only import.oldTranspile.js │ │ ├── Export star as ns conflict does not crash (verbatimModuleSyntax=true).js │ │ ├── Export star as ns conflict does not crash (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Export star as ns conflict does not crash.js │ │ ├── Export star as ns conflict does not crash.oldTranspile.js │ │ ├── Generates expected syntactic diagnostics (verbatimModuleSyntax=true).errors.txt │ │ ├── Generates expected syntactic diagnostics (verbatimModuleSyntax=true).js │ │ ├── Generates expected syntactic diagnostics (verbatimModuleSyntax=true).oldTranspile.errors.txt │ │ ├── Generates expected syntactic diagnostics (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Generates expected syntactic diagnostics.errors.txt │ │ ├── Generates expected syntactic diagnostics.js │ │ ├── Generates expected syntactic diagnostics.oldTranspile.errors.txt │ │ ├── Generates expected syntactic diagnostics.oldTranspile.js │ │ ├── Generates module output.js │ │ ├── Generates module output.oldTranspile.js │ │ ├── Generates no diagnostics for missing file references (verbatimModuleSyntax=true).js │ │ ├── Generates no diagnostics for missing file references (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Generates no diagnostics for missing file references.js │ │ ├── Generates no diagnostics for missing file references.oldTranspile.js │ │ ├── Generates no diagnostics for missing module imports (verbatimModuleSyntax=true).js │ │ ├── Generates no diagnostics for missing module imports (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Generates no diagnostics for missing module imports.js │ │ ├── Generates no diagnostics for missing module imports.oldTranspile.js │ │ ├── Generates no diagnostics with valid inputs (verbatimModuleSyntax=true).js │ │ ├── Generates no diagnostics with valid inputs (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Generates no diagnostics with valid inputs.js │ │ ├── Generates no diagnostics with valid inputs.oldTranspile.js │ │ ├── Ignores allowImportingTsExtensions without noEmit error (verbatimModuleSyntax=true).js │ │ ├── Ignores allowImportingTsExtensions without noEmit error (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Ignores allowImportingTsExtensions without noEmit error.js │ │ ├── Ignores allowImportingTsExtensions without noEmit error.oldTranspile.js │ │ ├── Infer correct file extension (verbatimModuleSyntax=true).js │ │ ├── Infer correct file extension (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Infer correct file extension.js │ │ ├── Infer correct file extension.oldTranspile.js │ │ ├── No extra errors for file without extension (verbatimModuleSyntax=true).js │ │ ├── No extra errors for file without extension (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── No extra errors for file without extension.js │ │ ├── No extra errors for file without extension.oldTranspile.js │ │ ├── Preserves exported const merged with type-only import (verbatimModuleSyntax=true).js │ │ ├── Preserves exported const merged with type-only import (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Preserves exported const merged with type-only import.js │ │ ├── Preserves exported const merged with type-only import.oldTranspile.js │ │ ├── Rename dependencies - AMD.js │ │ ├── Rename dependencies - System.js │ │ ├── Rename dependencies - UMD.js │ │ ├── Report an error when compiler-options module-kind is out-of-range.errors.txt │ │ ├── Report an error when compiler-options module-kind is out-of-range.js │ │ ├── Report an error when compiler-options module-kind is out-of-range.oldTranspile.errors.txt │ │ ├── Report an error when compiler-options module-kind is out-of-range.oldTranspile.js │ │ ├── Report an error when compiler-options target-script is out-of-range.errors.txt │ │ ├── Report an error when compiler-options target-script is out-of-range.js │ │ ├── Report an error when compiler-options target-script is out-of-range.oldTranspile.errors.txt │ │ ├── Report an error when compiler-options target-script is out-of-range.oldTranspile.js │ │ ├── Sets module name.js │ │ ├── Sets module name.oldTranspile.js │ │ ├── Support options with lib values (verbatimModuleSyntax=true).js │ │ ├── Support options with lib values (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Support options with lib values.js │ │ ├── Support options with lib values.oldTranspile.js │ │ ├── Support options with types values (verbatimModuleSyntax=true).js │ │ ├── Support options with types values (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Support options with types values.js │ │ ├── Support options with types values.oldTranspile.js │ │ ├── Supports as const arrays (verbatimModuleSyntax=true).js │ │ ├── Supports as const arrays (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports as const arrays.js │ │ ├── Supports as const arrays.oldTranspile.js │ │ ├── Supports backslashes in file name.js │ │ ├── Supports backslashes in file name.oldTranspile.js │ │ ├── Supports readonly keyword for arrays (verbatimModuleSyntax=true).js │ │ ├── Supports readonly keyword for arrays (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports readonly keyword for arrays.js │ │ ├── Supports readonly keyword for arrays.oldTranspile.js │ │ ├── Supports setting allowJs (verbatimModuleSyntax=true).js │ │ ├── Supports setting allowJs (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting allowJs.js │ │ ├── Supports setting allowJs.oldTranspile.js │ │ ├── Supports setting allowSyntheticDefaultImports (verbatimModuleSyntax=true).js │ │ ├── Supports setting allowSyntheticDefaultImports (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting allowSyntheticDefaultImports.js │ │ ├── Supports setting allowSyntheticDefaultImports.oldTranspile.js │ │ ├── Supports setting allowUnreachableCode (verbatimModuleSyntax=true).js │ │ ├── Supports setting allowUnreachableCode (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting allowUnreachableCode.js │ │ ├── Supports setting allowUnreachableCode.oldTranspile.js │ │ ├── Supports setting allowUnusedLabels (verbatimModuleSyntax=true).js │ │ ├── Supports setting allowUnusedLabels (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting allowUnusedLabels.js │ │ ├── Supports setting allowUnusedLabels.oldTranspile.js │ │ ├── Supports setting alwaysStrict (verbatimModuleSyntax=true).js │ │ ├── Supports setting alwaysStrict (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting alwaysStrict.js │ │ ├── Supports setting alwaysStrict.oldTranspile.js │ │ ├── Supports setting baseUrl (verbatimModuleSyntax=true).js │ │ ├── Supports setting baseUrl (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting baseUrl.js │ │ ├── Supports setting baseUrl.oldTranspile.js │ │ ├── Supports setting charset (verbatimModuleSyntax=true).errors.txt │ │ ├── Supports setting charset (verbatimModuleSyntax=true).js │ │ ├── Supports setting charset (verbatimModuleSyntax=true).oldTranspile.errors.txt │ │ ├── Supports setting charset (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting charset.errors.txt │ │ ├── Supports setting charset.js │ │ ├── Supports setting charset.oldTranspile.errors.txt │ │ ├── Supports setting charset.oldTranspile.js │ │ ├── Supports setting composite (verbatimModuleSyntax=true).js │ │ ├── Supports setting composite (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting composite.js │ │ ├── Supports setting composite.oldTranspile.js │ │ ├── Supports setting declaration (verbatimModuleSyntax=true).js │ │ ├── Supports setting declaration (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting declaration.js │ │ ├── Supports setting declaration.oldTranspile.js │ │ ├── Supports setting declarationDir (verbatimModuleSyntax=true).js │ │ ├── Supports setting declarationDir (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting declarationDir.js │ │ ├── Supports setting declarationDir.oldTranspile.js │ │ ├── Supports setting declarationMap (verbatimModuleSyntax=true).js │ │ ├── Supports setting declarationMap (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting declarationMap.js │ │ ├── Supports setting declarationMap.oldTranspile.js │ │ ├── Supports setting emitBOM (verbatimModuleSyntax=true).js │ │ ├── Supports setting emitBOM (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting emitBOM.js │ │ ├── Supports setting emitBOM.oldTranspile.js │ │ ├── Supports setting emitDecoratorMetadata (verbatimModuleSyntax=true).js │ │ ├── Supports setting emitDecoratorMetadata (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting emitDecoratorMetadata.js │ │ ├── Supports setting emitDecoratorMetadata.oldTranspile.js │ │ ├── Supports setting experimentalDecorators (verbatimModuleSyntax=true).js │ │ ├── Supports setting experimentalDecorators (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting experimentalDecorators.js │ │ ├── Supports setting experimentalDecorators.oldTranspile.js │ │ ├── Supports setting forceConsistentCasingInFileNames (verbatimModuleSyntax=true).js │ │ ├── Supports setting forceConsistentCasingInFileNames (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting forceConsistentCasingInFileNames.js │ │ ├── Supports setting forceConsistentCasingInFileNames.oldTranspile.js │ │ ├── Supports setting incremental (verbatimModuleSyntax=true).js │ │ ├── Supports setting incremental (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting incremental.js │ │ ├── Supports setting incremental.oldTranspile.js │ │ ├── Supports setting isolatedModules.js │ │ ├── Supports setting isolatedModules.oldTranspile.js │ │ ├── Supports setting jsx (verbatimModuleSyntax=true).js │ │ ├── Supports setting jsx (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting jsx.js │ │ ├── Supports setting jsx.oldTranspile.js │ │ ├── Supports setting jsxFactory (verbatimModuleSyntax=true).js │ │ ├── Supports setting jsxFactory (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting jsxFactory.js │ │ ├── Supports setting jsxFactory.oldTranspile.js │ │ ├── Supports setting jsxFragmentFactory (verbatimModuleSyntax=true).js │ │ ├── Supports setting jsxFragmentFactory (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting jsxFragmentFactory.js │ │ ├── Supports setting jsxFragmentFactory.oldTranspile.js │ │ ├── Supports setting lib (verbatimModuleSyntax=true).js │ │ ├── Supports setting lib (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting lib.js │ │ ├── Supports setting lib.oldTranspile.js │ │ ├── Supports setting locale (verbatimModuleSyntax=true).js │ │ ├── Supports setting locale (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting locale.js │ │ ├── Supports setting locale.oldTranspile.js │ │ ├── Supports setting module (verbatimModuleSyntax=true).js │ │ ├── Supports setting module (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting module.js │ │ ├── Supports setting module.oldTranspile.js │ │ ├── Supports setting moduleResolution (verbatimModuleSyntax=true).js │ │ ├── Supports setting moduleResolution (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting moduleResolution.js │ │ ├── Supports setting moduleResolution.oldTranspile.js │ │ ├── Supports setting newLine (verbatimModuleSyntax=true).js │ │ ├── Supports setting newLine (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting newLine.js │ │ ├── Supports setting newLine.oldTranspile.js │ │ ├── Supports setting noEmit (verbatimModuleSyntax=true).js │ │ ├── Supports setting noEmit (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting noEmit.js │ │ ├── Supports setting noEmit.oldTranspile.js │ │ ├── Supports setting noEmitHelpers (verbatimModuleSyntax=true).js │ │ ├── Supports setting noEmitHelpers (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting noEmitHelpers.js │ │ ├── Supports setting noEmitHelpers.oldTranspile.js │ │ ├── Supports setting noEmitOnError (verbatimModuleSyntax=true).js │ │ ├── Supports setting noEmitOnError (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting noEmitOnError.js │ │ ├── Supports setting noEmitOnError.oldTranspile.js │ │ ├── Supports setting noErrorTruncation (verbatimModuleSyntax=true).js │ │ ├── Supports setting noErrorTruncation (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting noErrorTruncation.js │ │ ├── Supports setting noErrorTruncation.oldTranspile.js │ │ ├── Supports setting noFallthroughCasesInSwitch (verbatimModuleSyntax=true).js │ │ ├── Supports setting noFallthroughCasesInSwitch (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting noFallthroughCasesInSwitch.js │ │ ├── Supports setting noFallthroughCasesInSwitch.oldTranspile.js │ │ ├── Supports setting noImplicitAny (verbatimModuleSyntax=true).js │ │ ├── Supports setting noImplicitAny (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting noImplicitAny.js │ │ ├── Supports setting noImplicitAny.oldTranspile.js │ │ ├── Supports setting noImplicitReturns (verbatimModuleSyntax=true).js │ │ ├── Supports setting noImplicitReturns (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting noImplicitReturns.js │ │ ├── Supports setting noImplicitReturns.oldTranspile.js │ │ ├── Supports setting noImplicitThis (verbatimModuleSyntax=true).js │ │ ├── Supports setting noImplicitThis (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting noImplicitThis.js │ │ ├── Supports setting noImplicitThis.oldTranspile.js │ │ ├── Supports setting noImplicitUseStrict (verbatimModuleSyntax=true).errors.txt │ │ ├── Supports setting noImplicitUseStrict (verbatimModuleSyntax=true).js │ │ ├── Supports setting noImplicitUseStrict (verbatimModuleSyntax=true).oldTranspile.errors.txt │ │ ├── Supports setting noImplicitUseStrict (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting noImplicitUseStrict.errors.txt │ │ ├── Supports setting noImplicitUseStrict.js │ │ ├── Supports setting noImplicitUseStrict.oldTranspile.errors.txt │ │ ├── Supports setting noImplicitUseStrict.oldTranspile.js │ │ ├── Supports setting noLib (verbatimModuleSyntax=true).js │ │ ├── Supports setting noLib (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting noLib.js │ │ ├── Supports setting noLib.oldTranspile.js │ │ ├── Supports setting noResolve (verbatimModuleSyntax=true).js │ │ ├── Supports setting noResolve (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting noResolve.js │ │ ├── Supports setting noResolve.oldTranspile.js │ │ ├── Supports setting out (verbatimModuleSyntax=true).js │ │ ├── Supports setting out (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting out.js │ │ ├── Supports setting out.oldTranspile.js │ │ ├── Supports setting outDir (verbatimModuleSyntax=true).js │ │ ├── Supports setting outDir (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting outDir.js │ │ ├── Supports setting outDir.oldTranspile.js │ │ ├── Supports setting outFile (verbatimModuleSyntax=true).js │ │ ├── Supports setting outFile (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting outFile.js │ │ ├── Supports setting outFile.oldTranspile.js │ │ ├── Supports setting paths (verbatimModuleSyntax=true).js │ │ ├── Supports setting paths (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting paths.js │ │ ├── Supports setting paths.oldTranspile.js │ │ ├── Supports setting preserveConstEnums (verbatimModuleSyntax=true).js │ │ ├── Supports setting preserveConstEnums (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting preserveConstEnums.js │ │ ├── Supports setting preserveConstEnums.oldTranspile.js │ │ ├── Supports setting reactNamespace (verbatimModuleSyntax=true).js │ │ ├── Supports setting reactNamespace (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting reactNamespace.js │ │ ├── Supports setting reactNamespace.oldTranspile.js │ │ ├── Supports setting removeComments (verbatimModuleSyntax=true).js │ │ ├── Supports setting removeComments (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting removeComments.js │ │ ├── Supports setting removeComments.oldTranspile.js │ │ ├── Supports setting rootDir (verbatimModuleSyntax=true).js │ │ ├── Supports setting rootDir (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting rootDir.js │ │ ├── Supports setting rootDir.oldTranspile.js │ │ ├── Supports setting rootDirs (verbatimModuleSyntax=true).js │ │ ├── Supports setting rootDirs (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting rootDirs.js │ │ ├── Supports setting rootDirs.oldTranspile.js │ │ ├── Supports setting skipDefaultLibCheck (verbatimModuleSyntax=true).js │ │ ├── Supports setting skipDefaultLibCheck (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting skipDefaultLibCheck.js │ │ ├── Supports setting skipDefaultLibCheck.oldTranspile.js │ │ ├── Supports setting skipLibCheck (verbatimModuleSyntax=true).js │ │ ├── Supports setting skipLibCheck (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting skipLibCheck.js │ │ ├── Supports setting skipLibCheck.oldTranspile.js │ │ ├── Supports setting strictNullChecks (verbatimModuleSyntax=true).js │ │ ├── Supports setting strictNullChecks (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting strictNullChecks.js │ │ ├── Supports setting strictNullChecks.oldTranspile.js │ │ ├── Supports setting stripInternal (verbatimModuleSyntax=true).js │ │ ├── Supports setting stripInternal (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting stripInternal.js │ │ ├── Supports setting stripInternal.oldTranspile.js │ │ ├── Supports setting suppressExcessPropertyErrors (verbatimModuleSyntax=true).errors.txt │ │ ├── Supports setting suppressExcessPropertyErrors (verbatimModuleSyntax=true).js │ │ ├── Supports setting suppressExcessPropertyErrors (verbatimModuleSyntax=true).oldTranspile.errors.txt │ │ ├── Supports setting suppressExcessPropertyErrors (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting suppressExcessPropertyErrors.errors.txt │ │ ├── Supports setting suppressExcessPropertyErrors.js │ │ ├── Supports setting suppressExcessPropertyErrors.oldTranspile.errors.txt │ │ ├── Supports setting suppressExcessPropertyErrors.oldTranspile.js │ │ ├── Supports setting suppressImplicitAnyIndexErrors (verbatimModuleSyntax=true).errors.txt │ │ ├── Supports setting suppressImplicitAnyIndexErrors (verbatimModuleSyntax=true).js │ │ ├── Supports setting suppressImplicitAnyIndexErrors (verbatimModuleSyntax=true).oldTranspile.errors.txt │ │ ├── Supports setting suppressImplicitAnyIndexErrors (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting suppressImplicitAnyIndexErrors.errors.txt │ │ ├── Supports setting suppressImplicitAnyIndexErrors.js │ │ ├── Supports setting suppressImplicitAnyIndexErrors.oldTranspile.errors.txt │ │ ├── Supports setting suppressImplicitAnyIndexErrors.oldTranspile.js │ │ ├── Supports setting target (verbatimModuleSyntax=true).js │ │ ├── Supports setting target (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting target.js │ │ ├── Supports setting target.oldTranspile.js │ │ ├── Supports setting tsbuildinfo (verbatimModuleSyntax=true).js │ │ ├── Supports setting tsbuildinfo (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting tsbuildinfo.js │ │ ├── Supports setting tsbuildinfo.oldTranspile.js │ │ ├── Supports setting typeRoots (verbatimModuleSyntax=true).js │ │ ├── Supports setting typeRoots (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting typeRoots.js │ │ ├── Supports setting typeRoots.oldTranspile.js │ │ ├── Supports setting types (verbatimModuleSyntax=true).js │ │ ├── Supports setting types (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Supports setting types.js │ │ ├── Supports setting types.oldTranspile.js │ │ ├── Supports urls in file name.js │ │ ├── Supports urls in file name.oldTranspile.js │ │ ├── Syntactically string but non-evaluatable enum members do not get reverse mapping.js │ │ ├── Syntactically string but non-evaluatable enum members do not get reverse mapping.oldTranspile.js │ │ ├── Transpile with emit decorators and emit metadata (verbatimModuleSyntax=true).js │ │ ├── Transpile with emit decorators and emit metadata (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Transpile with emit decorators and emit metadata.js │ │ ├── Transpile with emit decorators and emit metadata.oldTranspile.js │ │ ├── Uses correct newLine character (verbatimModuleSyntax=true).js │ │ ├── Uses correct newLine character (verbatimModuleSyntax=true).oldTranspile.js │ │ ├── Uses correct newLine character.js │ │ ├── Uses correct newLine character.oldTranspile.js │ │ ├── declarationAsyncAndGeneratorFunctions.d.ts │ │ ├── declarationAsyncAndGeneratorFunctions.js │ │ ├── declarationBasicSyntax(declarationMap=false).d.ts │ │ ├── declarationBasicSyntax(declarationMap=false).js │ │ ├── declarationBasicSyntax(declarationMap=true).d.ts │ │ ├── declarationBasicSyntax(declarationMap=true).js │ │ ├── declarationComputedPropertyNames.d.ts │ │ ├── declarationCrossFileInferences.d.ts │ │ ├── declarationCrossFileInferences.js │ │ ├── declarationEmitPartialNodeReuse.d.ts │ │ ├── declarationFunctionDeclarations.d.ts │ │ ├── declarationFunctionDeclarations.js │ │ ├── declarationLinkedAliases.d.ts │ │ ├── declarationLinkedAliases.js │ │ ├── declarationLocalAliasOfImportAlias.d.ts │ │ ├── declarationLocalAliasOfImportAlias.js │ │ ├── declarationNotInScopeTypes.d.ts │ │ ├── declarationNotInScopeTypes.js │ │ ├── declarationPartialNodeReuseTypeOf.d.ts │ │ ├── declarationRestParameters.d.ts │ │ ├── declarationSelfReferentialConstraint.d.ts │ │ ├── declarationSingleFileHasErrors.d.ts │ │ ├── declarationSingleFileHasErrors.js │ │ ├── declarationSingleFileHasErrorsReported.d.ts │ │ ├── declarationSingleFileHasErrorsReported.js │ │ ├── declarationTypeParameterConstraint.d.ts │ │ ├── declarationTypeParameterConstraint.js │ │ ├── declarationTypeWithComputedName.d.ts │ │ ├── declarationUnresolvedGlobalReferencesNoErrors.d.ts │ │ ├── declarationUnresolvedTypeReference.d.ts │ │ ├── declarationUnresolvedTypeReference2.d.ts │ │ ├── declarationsSimple.d.ts │ │ ├── declarationsSimple.js │ │ ├── jsWithInlineSourceMapBasic(inlineSourceMap=false).js │ │ ├── jsWithInlineSourceMapBasic(inlineSourceMap=true).js │ │ ├── jsWithSourceMapBasic(sourceMap=false).js │ │ ├── jsWithSourceMapBasic(sourceMap=true).js │ │ ├── transpile .js files.js │ │ ├── transpile .js files.oldTranspile.js │ │ ├── transpile file as tsx if jsx is specified.js │ │ └── transpile file as tsx if jsx is specified.oldTranspile.js │ ├── tripleSlashInCommentNotParsed.js │ ├── tripleSlashInCommentNotParsed.symbols │ ├── tripleSlashInCommentNotParsed.types │ ├── tripleSlashReferenceAbsoluteWindowsPath.js │ ├── tripleSlashReferenceAbsoluteWindowsPath.symbols │ ├── tripleSlashReferenceAbsoluteWindowsPath.types │ ├── tripleSlashTypesReferenceWithMissingExports(module=commonjs).errors.txt │ ├── tripleSlashTypesReferenceWithMissingExports(module=commonjs).js │ ├── tripleSlashTypesReferenceWithMissingExports(module=commonjs).symbols │ ├── tripleSlashTypesReferenceWithMissingExports(module=commonjs).types │ ├── tripleSlashTypesReferenceWithMissingExports(module=node16).errors.txt │ ├── tripleSlashTypesReferenceWithMissingExports(module=node16).js │ ├── tripleSlashTypesReferenceWithMissingExports(module=node16).symbols │ ├── tripleSlashTypesReferenceWithMissingExports(module=node16).types │ ├── tripleSlashTypesReferenceWithMissingExports(module=node18).errors.txt │ ├── tripleSlashTypesReferenceWithMissingExports(module=node18).js │ ├── tripleSlashTypesReferenceWithMissingExports(module=node18).symbols │ ├── tripleSlashTypesReferenceWithMissingExports(module=node18).types │ ├── tripleSlashTypesReferenceWithMissingExports(module=node20).errors.txt │ ├── tripleSlashTypesReferenceWithMissingExports(module=node20).js │ ├── tripleSlashTypesReferenceWithMissingExports(module=node20).symbols │ ├── tripleSlashTypesReferenceWithMissingExports(module=node20).types │ ├── tripleSlashTypesReferenceWithMissingExports(module=nodenext).errors.txt │ ├── tripleSlashTypesReferenceWithMissingExports(module=nodenext).js │ ├── tripleSlashTypesReferenceWithMissingExports(module=nodenext).symbols │ ├── tripleSlashTypesReferenceWithMissingExports(module=nodenext).types │ ├── trivialSubtypeReductionNoStructuralCheck(target=es2015).errors.txt │ ├── trivialSubtypeReductionNoStructuralCheck(target=es2015).js │ ├── trivialSubtypeReductionNoStructuralCheck(target=es2015).symbols │ ├── trivialSubtypeReductionNoStructuralCheck(target=es2015).types │ ├── trivialSubtypeReductionNoStructuralCheck(target=es5).errors.txt │ ├── trivialSubtypeReductionNoStructuralCheck(target=es5).js │ ├── trivialSubtypeReductionNoStructuralCheck(target=es5).symbols │ ├── trivialSubtypeReductionNoStructuralCheck(target=es5).types │ ├── trivialSubtypeReductionNoStructuralCheck2(target=es2015).js │ ├── trivialSubtypeReductionNoStructuralCheck2(target=es2015).symbols │ ├── trivialSubtypeReductionNoStructuralCheck2(target=es2015).types │ ├── trivialSubtypeReductionNoStructuralCheck2(target=es5).errors.txt │ ├── trivialSubtypeReductionNoStructuralCheck2(target=es5).js │ ├── trivialSubtypeReductionNoStructuralCheck2(target=es5).symbols │ ├── trivialSubtypeReductionNoStructuralCheck2(target=es5).types │ ├── truthinessCallExpressionCoercion.errors.txt │ ├── truthinessCallExpressionCoercion.js │ ├── truthinessCallExpressionCoercion.symbols │ ├── truthinessCallExpressionCoercion.types │ ├── truthinessCallExpressionCoercion1.errors.txt │ ├── truthinessCallExpressionCoercion1.js │ ├── truthinessCallExpressionCoercion1.symbols │ ├── truthinessCallExpressionCoercion1.types │ ├── truthinessCallExpressionCoercion2.errors.txt │ ├── truthinessCallExpressionCoercion2.js │ ├── truthinessCallExpressionCoercion2.symbols │ ├── truthinessCallExpressionCoercion2.types │ ├── truthinessCallExpressionCoercion3.js │ ├── truthinessCallExpressionCoercion3.symbols │ ├── truthinessCallExpressionCoercion3.types │ ├── truthinessCallExpressionCoercion4.symbols │ ├── truthinessCallExpressionCoercion4.types │ ├── truthinessPromiseCoercion.errors.txt │ ├── truthinessPromiseCoercion.js │ ├── truthinessPromiseCoercion.symbols │ ├── truthinessPromiseCoercion.types │ ├── tryCatchFinally.js │ ├── tryCatchFinally.symbols │ ├── tryCatchFinally.types │ ├── tryCatchFinallyControlFlow.errors.txt │ ├── tryCatchFinallyControlFlow.js │ ├── tryCatchFinallyControlFlow.symbols │ ├── tryCatchFinallyControlFlow.types │ ├── tryStatementInternalComments.js │ ├── tryStatementInternalComments.symbols │ ├── tryStatementInternalComments.types │ ├── tryStatements.js │ ├── tryStatements.symbols │ ├── tryStatements.types │ ├── ts-expect-error-js.errors.txt │ ├── ts-expect-error-js.symbols │ ├── ts-expect-error-js.types │ ├── ts-expect-error-nocheck-js.symbols │ ├── ts-expect-error-nocheck-js.types │ ├── ts-expect-error-nocheck.js │ ├── ts-expect-error-nocheck.symbols │ ├── ts-expect-error-nocheck.types │ ├── ts-expect-error.errors.txt │ ├── ts-expect-error.js │ ├── ts-expect-error.symbols │ ├── ts-expect-error.types │ ├── ts-ignore.errors.txt │ ├── ts-ignore.js │ ├── ts-ignore.symbols │ ├── ts-ignore.types │ ├── tsNoCheckForTypescript.js │ ├── tsNoCheckForTypescript.symbols │ ├── tsNoCheckForTypescript.types │ ├── tsNoCheckForTypescriptComments1.js │ ├── tsNoCheckForTypescriptComments1.symbols │ ├── tsNoCheckForTypescriptComments1.types │ ├── tsNoCheckForTypescriptComments2.js │ ├── tsNoCheckForTypescriptComments2.symbols │ ├── tsNoCheckForTypescriptComments2.types │ ├── tsbuild/ │ │ ├── amdModulesWithOut/ │ │ │ ├── modules-and-globals-mixed-in-amd.js │ │ │ ├── prepend-reports-deprecation-error.js │ │ │ └── when-the-module-resolution-finds-original-source-file.js │ │ ├── clean/ │ │ │ ├── file-name-and-output-name-clashing.js │ │ │ └── tsx-with-dts-emit.js │ │ ├── commandLine/ │ │ │ ├── help.js │ │ │ ├── multiFile/ │ │ │ │ ├── different-options-discrepancies.js │ │ │ │ ├── different-options-with-incremental-discrepancies.js │ │ │ │ ├── different-options-with-incremental.js │ │ │ │ ├── different-options.js │ │ │ │ ├── emitDeclarationOnly-false-on-commandline-discrepancies.js │ │ │ │ ├── emitDeclarationOnly-false-on-commandline-with-declaration-and-incremental-discrepancies.js │ │ │ │ ├── emitDeclarationOnly-false-on-commandline-with-declaration-and-incremental.js │ │ │ │ ├── emitDeclarationOnly-false-on-commandline-with-declaration.js │ │ │ │ ├── emitDeclarationOnly-false-on-commandline.js │ │ │ │ ├── emitDeclarationOnly-on-commandline-discrepancies.js │ │ │ │ ├── emitDeclarationOnly-on-commandline-with-declaration-and-incremental-discrepancies.js │ │ │ │ ├── emitDeclarationOnly-on-commandline-with-declaration-and-incremental.js │ │ │ │ ├── emitDeclarationOnly-on-commandline-with-declaration.js │ │ │ │ └── emitDeclarationOnly-on-commandline.js │ │ │ └── outFile/ │ │ │ ├── different-options-discrepancies.js │ │ │ ├── different-options-with-incremental-discrepancies.js │ │ │ ├── different-options-with-incremental.js │ │ │ ├── different-options.js │ │ │ ├── emitDeclarationOnly-false-on-commandline-discrepancies.js │ │ │ ├── emitDeclarationOnly-false-on-commandline-with-declaration-and-incremental-discrepancies.js │ │ │ ├── emitDeclarationOnly-false-on-commandline-with-declaration-and-incremental.js │ │ │ ├── emitDeclarationOnly-false-on-commandline-with-declaration.js │ │ │ ├── emitDeclarationOnly-false-on-commandline.js │ │ │ ├── emitDeclarationOnly-on-commandline-discrepancies.js │ │ │ ├── emitDeclarationOnly-on-commandline-with-declaration-and-incremental-discrepancies.js │ │ │ ├── emitDeclarationOnly-on-commandline-with-declaration-and-incremental.js │ │ │ ├── emitDeclarationOnly-on-commandline-with-declaration.js │ │ │ └── emitDeclarationOnly-on-commandline.js │ │ ├── configFileErrors/ │ │ │ ├── multiFile/ │ │ │ │ ├── reports-syntax-errors-in-config-file-discrepancies.js │ │ │ │ └── reports-syntax-errors-in-config-file.js │ │ │ ├── outFile/ │ │ │ │ ├── reports-syntax-errors-in-config-file-discrepancies.js │ │ │ │ └── reports-syntax-errors-in-config-file.js │ │ │ └── when-tsconfig-extends-the-missing-file.js │ │ ├── configFileExtends/ │ │ │ ├── when-building-project-uses-reference-and-both-extend-config-with-include.js │ │ │ └── when-building-solution-with-projects-extends-config-with-include.js │ │ ├── containerOnlyReferenced/ │ │ │ ├── verify-that-subsequent-builds-after-initial-build-doesnt-build-anything.js │ │ │ └── when-solution-is-referenced-indirectly.js │ │ ├── declarationEmit/ │ │ │ ├── multiFile/ │ │ │ │ ├── reports-dts-generation-errors-with-incremental.js │ │ │ │ └── reports-dts-generation-errors.js │ │ │ ├── outFile/ │ │ │ │ ├── reports-dts-generation-errors-with-incremental.js │ │ │ │ └── reports-dts-generation-errors.js │ │ │ ├── when-declaration-file-is-referenced-through-triple-slash-but-uses-no-references.js │ │ │ ├── when-declaration-file-is-referenced-through-triple-slash.js │ │ │ └── when-declaration-file-used-inferred-type-from-referenced-project.js │ │ ├── demo/ │ │ │ ├── in-bad-ref-branch-reports-the-error-about-files-not-in-rootDir-at-the-import-location.js │ │ │ ├── in-circular-branch-reports-the-error-about-it-by-stopping-build.js │ │ │ └── in-master-branch-with-everything-setup-correctly-and-reports-no-error.js │ │ ├── emitDeclarationOnly/ │ │ │ ├── only-dts-output-in-circular-import-project-with-emitDeclarationOnly-and-declarationMap.js │ │ │ ├── only-dts-output-in-circular-import-project-with-emitDeclarationOnly.js │ │ │ └── only-dts-output-in-non-circular-imports-project-with-emitDeclarationOnly.js │ │ ├── emptyFiles/ │ │ │ ├── does-not-have-empty-files-diagnostic-when-files-is-empty-and-references-are-provided.js │ │ │ └── has-empty-files-diagnostic-when-files-is-empty-and-no-references-are-provided.js │ │ ├── exitCodeOnBogusFile/ │ │ │ └── test-exit-code.js │ │ ├── extends/ │ │ │ ├── configDir-template.js │ │ │ └── resolves-the-symlink-path.js │ │ ├── fileDelete/ │ │ │ ├── multiFile/ │ │ │ │ ├── deleted-file-without-composite.js │ │ │ │ └── detects-deleted-file.js │ │ │ └── outFile/ │ │ │ ├── deleted-file-without-composite.js │ │ │ └── detects-deleted-file.js │ │ ├── inferredTypeFromTransitiveModule/ │ │ │ ├── inferred-type-from-transitive-module-with-isolatedModules.js │ │ │ ├── inferred-type-from-transitive-module.js │ │ │ └── reports-errors-in-files-affected-by-change-in-signature-with-isolatedModules.js │ │ ├── javascriptProjectEmit/ │ │ │ ├── loads-js-based-projects-and-emits-them-correctly.js │ │ │ └── loads-js-based-projects-with-non-moved-json-files-and-emits-them-correctly.js │ │ ├── lateBoundSymbol/ │ │ │ └── interface-is-merged-and-contains-late-bound-member.js │ │ ├── libraryResolution/ │ │ │ ├── with-config-with-redirection.js │ │ │ └── with-config.js │ │ ├── moduleResolution/ │ │ │ ├── impliedNodeFormat-differs-between-projects-for-shared-file.js │ │ │ ├── resolution-from-d.ts-of-referenced-project.js │ │ │ ├── resolves-specifier-in-output-declaration-file-from-referenced-project-correctly-with-preserveSymlinks.js │ │ │ ├── resolves-specifier-in-output-declaration-file-from-referenced-project-correctly.js │ │ │ ├── shared-resolution-should-not-report-error.js │ │ │ ├── type-reference-resolution-uses-correct-options-for-different-resolution-options-referenced-project.js │ │ │ └── when-resolution-is-not-shared.js │ │ ├── moduleSpecifiers/ │ │ │ ├── synthesized-module-specifiers-across-projects-resolve-correctly.js │ │ │ └── synthesized-module-specifiers-resolve-correctly.js │ │ ├── noCheck/ │ │ │ ├── multiFile/ │ │ │ │ ├── dts-errors-discrepancies.js │ │ │ │ ├── dts-errors-with-incremental-discrepancies.js │ │ │ │ ├── dts-errors-with-incremental.js │ │ │ │ ├── dts-errors.js │ │ │ │ ├── semantic-errors-discrepancies.js │ │ │ │ ├── semantic-errors-with-incremental-discrepancies.js │ │ │ │ ├── semantic-errors-with-incremental.js │ │ │ │ ├── semantic-errors.js │ │ │ │ ├── syntax-errors-discrepancies.js │ │ │ │ ├── syntax-errors-with-incremental-discrepancies.js │ │ │ │ ├── syntax-errors-with-incremental.js │ │ │ │ └── syntax-errors.js │ │ │ └── outFile/ │ │ │ ├── dts-errors-discrepancies.js │ │ │ ├── dts-errors-with-incremental-discrepancies.js │ │ │ ├── dts-errors-with-incremental.js │ │ │ ├── dts-errors.js │ │ │ ├── semantic-errors-discrepancies.js │ │ │ ├── semantic-errors-with-incremental-discrepancies.js │ │ │ ├── semantic-errors-with-incremental.js │ │ │ ├── semantic-errors.js │ │ │ ├── syntax-errors-discrepancies.js │ │ │ ├── syntax-errors-with-incremental-discrepancies.js │ │ │ ├── syntax-errors-with-incremental.js │ │ │ └── syntax-errors.js │ │ ├── noEmit/ │ │ │ ├── multiFile/ │ │ │ │ ├── changes-composite-discrepancies.js │ │ │ │ ├── changes-composite.js │ │ │ │ ├── changes-incremental-declaration.js │ │ │ │ ├── changes-incremental.js │ │ │ │ ├── changes-with-initial-noEmit-composite-discrepancies.js │ │ │ │ ├── changes-with-initial-noEmit-composite.js │ │ │ │ ├── changes-with-initial-noEmit-incremental-declaration.js │ │ │ │ ├── changes-with-initial-noEmit-incremental.js │ │ │ │ ├── dts-errors-with-declaration-enable-changes-with-incremental-as-modules-discrepancies.js │ │ │ │ ├── dts-errors-with-declaration-enable-changes-with-incremental-as-modules.js │ │ │ │ ├── dts-errors-with-declaration-enable-changes-with-incremental-discrepancies.js │ │ │ │ ├── dts-errors-with-declaration-enable-changes-with-incremental.js │ │ │ │ ├── dts-errors-with-declaration-enable-changes-with-multiple-files-discrepancies.js │ │ │ │ ├── dts-errors-with-declaration-enable-changes-with-multiple-files.js │ │ │ │ ├── dts-errors-with-declaration-enable-changes.js │ │ │ │ ├── dts-errors-with-incremental-as-modules.js │ │ │ │ ├── dts-errors-with-incremental.js │ │ │ │ ├── dts-errors-without-dts-enabled-with-incremental-as-modules.js │ │ │ │ ├── dts-errors-without-dts-enabled-with-incremental.js │ │ │ │ ├── dts-errors-without-dts-enabled.js │ │ │ │ ├── dts-errors.js │ │ │ │ ├── semantic-errors-with-incremental-as-modules.js │ │ │ │ ├── semantic-errors-with-incremental.js │ │ │ │ ├── semantic-errors.js │ │ │ │ ├── syntax-errors-with-incremental-as-modules-discrepancies.js │ │ │ │ ├── syntax-errors-with-incremental-as-modules.js │ │ │ │ ├── syntax-errors-with-incremental-discrepancies.js │ │ │ │ ├── syntax-errors-with-incremental.js │ │ │ │ └── syntax-errors.js │ │ │ └── outFile/ │ │ │ ├── changes-composite-discrepancies.js │ │ │ ├── changes-composite.js │ │ │ ├── changes-incremental-declaration.js │ │ │ ├── changes-incremental.js │ │ │ ├── changes-with-initial-noEmit-composite-discrepancies.js │ │ │ ├── changes-with-initial-noEmit-composite.js │ │ │ ├── changes-with-initial-noEmit-incremental-declaration.js │ │ │ ├── changes-with-initial-noEmit-incremental.js │ │ │ ├── dts-errors-with-declaration-enable-changes-with-incremental-as-modules-discrepancies.js │ │ │ ├── dts-errors-with-declaration-enable-changes-with-incremental-as-modules.js │ │ │ ├── dts-errors-with-declaration-enable-changes-with-incremental-discrepancies.js │ │ │ ├── dts-errors-with-declaration-enable-changes-with-incremental.js │ │ │ ├── dts-errors-with-declaration-enable-changes-with-multiple-files-discrepancies.js │ │ │ ├── dts-errors-with-declaration-enable-changes-with-multiple-files.js │ │ │ ├── dts-errors-with-declaration-enable-changes.js │ │ │ ├── dts-errors-with-incremental-as-modules-discrepancies.js │ │ │ ├── dts-errors-with-incremental-as-modules.js │ │ │ ├── dts-errors-with-incremental-discrepancies.js │ │ │ ├── dts-errors-with-incremental.js │ │ │ ├── dts-errors-without-dts-enabled-with-incremental-as-modules.js │ │ │ ├── dts-errors-without-dts-enabled-with-incremental.js │ │ │ ├── dts-errors-without-dts-enabled.js │ │ │ ├── dts-errors.js │ │ │ ├── semantic-errors-with-incremental-as-modules.js │ │ │ ├── semantic-errors-with-incremental.js │ │ │ ├── semantic-errors.js │ │ │ ├── syntax-errors-with-incremental-as-modules.js │ │ │ ├── syntax-errors-with-incremental.js │ │ │ └── syntax-errors.js │ │ ├── noEmitOnError/ │ │ │ ├── multiFile/ │ │ │ │ ├── dts-errors-with-declaration-with-incremental.js │ │ │ │ ├── dts-errors-with-declaration.js │ │ │ │ ├── dts-errors-with-incremental.js │ │ │ │ ├── dts-errors.js │ │ │ │ ├── semantic-errors-with-declaration-with-incremental.js │ │ │ │ ├── semantic-errors-with-declaration.js │ │ │ │ ├── semantic-errors-with-incremental.js │ │ │ │ ├── semantic-errors.js │ │ │ │ ├── syntax-errors-with-declaration-with-incremental.js │ │ │ │ ├── syntax-errors-with-declaration.js │ │ │ │ ├── syntax-errors-with-incremental.js │ │ │ │ └── syntax-errors.js │ │ │ └── outFile/ │ │ │ ├── dts-errors-with-declaration-with-incremental.js │ │ │ ├── dts-errors-with-declaration.js │ │ │ ├── dts-errors-with-incremental.js │ │ │ ├── dts-errors.js │ │ │ ├── semantic-errors-with-declaration-with-incremental.js │ │ │ ├── semantic-errors-with-declaration.js │ │ │ ├── semantic-errors-with-incremental.js │ │ │ ├── semantic-errors.js │ │ │ ├── syntax-errors-with-declaration-with-incremental.js │ │ │ ├── syntax-errors-with-declaration.js │ │ │ ├── syntax-errors-with-incremental.js │ │ │ └── syntax-errors.js │ │ ├── outFile/ │ │ │ ├── baseline-sectioned-sourcemaps.js │ │ │ ├── builds-till-project-specified.js │ │ │ ├── clean-projects.js │ │ │ ├── cleans-till-project-specified.js │ │ │ ├── non-module-projects-without-prepend.js │ │ │ ├── rebuilds-completely-when-command-line-incremental-flag-changes-between-non-dts-changes-discrepancies.js │ │ │ ├── rebuilds-completely-when-command-line-incremental-flag-changes-between-non-dts-changes.js │ │ │ ├── rebuilds-completely-when-version-in-tsbuildinfo-doesnt-match-ts-version.js │ │ │ ├── tsbuildinfo-is-not-generated-when-incremental-is-set-to-false.js │ │ │ ├── verify-buildInfo-absence-results-in-new-build.js │ │ │ ├── when-final-project-is-not-composite-but-incremental.js │ │ │ ├── when-final-project-is-not-composite-but-uses-project-references.js │ │ │ ├── when-final-project-specifies-tsBuildInfoFile.js │ │ │ └── when-input-file-text-does-not-change-but-its-modified-time-changes.js │ │ ├── outputPaths/ │ │ │ ├── when-rootDir-is-not-specified-and-is-composite.js │ │ │ ├── when-rootDir-is-not-specified.js │ │ │ ├── when-rootDir-is-specified-but-not-all-files-belong-to-rootDir-and-is-composite.js │ │ │ ├── when-rootDir-is-specified-but-not-all-files-belong-to-rootDir.js │ │ │ └── when-rootDir-is-specified.js │ │ ├── projectReferenceWithRootDirInParent/ │ │ │ ├── builds-correctly.js │ │ │ ├── reports-error-for-same-tsbuildinfo-file-because-no-rootDir-in-the-base.js │ │ │ ├── reports-error-for-same-tsbuildinfo-file-without-incremental-with-tsc.js │ │ │ ├── reports-error-for-same-tsbuildinfo-file-without-incremental.js │ │ │ ├── reports-error-for-same-tsbuildinfo-file.js │ │ │ └── reports-no-error-when-tsbuildinfo-differ.js │ │ ├── publicAPI/ │ │ │ └── build-with-custom-transformers.js │ │ ├── resolveJsonModule/ │ │ │ ├── files-containing-json-file-non-composite.js │ │ │ ├── files-containing-json-file.js │ │ │ ├── importing-json-module-from-project-reference.js │ │ │ ├── include-and-files-non-composite.js │ │ │ ├── include-and-files.js │ │ │ ├── include-of-json-along-with-other-include-and-file-name-matches-ts-file-non-composite.js │ │ │ ├── include-of-json-along-with-other-include-and-file-name-matches-ts-file.js │ │ │ ├── include-of-json-along-with-other-include-non-composite.js │ │ │ ├── include-of-json-along-with-other-include.js │ │ │ ├── include-only-non-composite.js │ │ │ ├── include-only-with-json-not-in-rootDir-non-composite.js │ │ │ ├── include-only-with-json-not-in-rootDir.js │ │ │ ├── include-only-with-json-without-rootDir-but-outside-configDirectory-non-composite.js │ │ │ ├── include-only-with-json-without-rootDir-but-outside-configDirectory.js │ │ │ ├── include-only-without-outDir-non-composite.js │ │ │ ├── include-only-without-outDir.js │ │ │ ├── include-only.js │ │ │ ├── sourcemap-non-composite.js │ │ │ ├── sourcemap.js │ │ │ ├── without-outDir-non-composite.js │ │ │ └── without-outDir.js │ │ ├── roots/ │ │ │ ├── when-consecutive-and-non-consecutive-are-mixed.js │ │ │ ├── when-files-are-not-consecutive.js │ │ │ ├── when-multiple-root-files-are-consecutive.js │ │ │ ├── when-root-file-is-from-referenced-project-and-shared-is-first.js │ │ │ ├── when-root-file-is-from-referenced-project.js │ │ │ └── when-two-root-files-are-consecutive.js │ │ ├── sample1/ │ │ │ ├── always-builds-under-with-force-option.js │ │ │ ├── building-project-in-not-build-order-doesnt-throw-error.js │ │ │ ├── building-using-buildReferencedProject.js │ │ │ ├── building-using-getNextInvalidatedProject.js │ │ │ ├── builds-correctly-when-declarationDir-is-specified.js │ │ │ ├── builds-correctly-when-outDir-is-specified.js │ │ │ ├── builds-correctly-when-project-is-not-composite-or-doesnt-have-any-references.js │ │ │ ├── builds-downstream-projects-even-if-upstream-projects-have-errors.js │ │ │ ├── builds-till-project-specified.js │ │ │ ├── can-detect-when-and-what-to-rebuild.js │ │ │ ├── cleaning-project-in-not-build-order-doesnt-throw-error.js │ │ │ ├── cleans-till-project-specified.js │ │ │ ├── does-not-rebuild-if-there-is-no-program-and-bundle-in-the-ts-build-info-event-if-version-doesnt-match-ts-version.js │ │ │ ├── does-not-write-any-files-in-a-dry-build.js │ │ │ ├── explainFiles.js │ │ │ ├── indicates-that-it-would-skip-builds-during-a-dry-build.js │ │ │ ├── invalidates-projects-correctly.js │ │ │ ├── listEmittedFiles.js │ │ │ ├── listFiles.js │ │ │ ├── rebuilds-completely-when-version-in-tsbuildinfo-doesnt-match-ts-version.js │ │ │ ├── rebuilds-from-start-if-force-option-is-set.js │ │ │ ├── rebuilds-when-extended-config-file-changes.js │ │ │ ├── removes-all-files-it-built.js │ │ │ ├── reports-error-if-input-file-is-missing-with-force.js │ │ │ ├── reports-error-if-input-file-is-missing.js │ │ │ ├── sample.js │ │ │ ├── skips-builds-downstream-projects-if-upstream-projects-have-errors-with-stopBuildOnErrors-when-test-does-not-reference-core.js │ │ │ ├── skips-builds-downstream-projects-if-upstream-projects-have-errors-with-stopBuildOnErrors.js │ │ │ ├── tsbuildinfo-has-error.js │ │ │ ├── when-declaration-option-changes.js │ │ │ ├── when-declarationMap-changes.js │ │ │ ├── when-esModuleInterop-option-changes.js │ │ │ ├── when-input-file-text-does-not-change-but-its-modified-time-changes.js │ │ │ ├── when-logic-specifies-tsBuildInfoFile.js │ │ │ ├── when-module-option-changes-discrepancies.js │ │ │ ├── when-module-option-changes.js │ │ │ └── when-target-option-changes.js │ │ └── transitiveReferences/ │ │ ├── builds-correctly-when-the-referenced-project-uses-different-module-resolution.js │ │ ├── builds-correctly.js │ │ └── reports-error-about-module-not-found-with-node-resolution-with-external-module-name.js │ ├── tsbuildWatch/ │ │ ├── configFileErrors/ │ │ │ ├── multiFile/ │ │ │ │ └── reports-syntax-errors-in-config-file.js │ │ │ └── outFile/ │ │ │ └── reports-syntax-errors-in-config-file.js │ │ ├── demo/ │ │ │ ├── updates-with-bad-reference.js │ │ │ └── updates-with-circular-reference.js │ │ ├── extends/ │ │ │ └── configDir-template.js │ │ ├── libraryResolution/ │ │ │ ├── with-config-with-redirection.js │ │ │ └── with-config.js │ │ ├── moduleResolution/ │ │ │ ├── build-mode-watches-for-changes-to-package-json-main-fields.js │ │ │ └── resolves-specifier-in-output-declaration-file-from-referenced-project-correctly-with-cts-and-mts-extensions.js │ │ ├── moduleResolutionCache/ │ │ │ └── handles-the-cache-correctly-when-two-projects-use-different-module-resolution-settings.js │ │ ├── noEmit/ │ │ │ ├── multiFile/ │ │ │ │ ├── does-not-go-in-loop-when-watching-when-no-files-are-emitted-with-incremental.js │ │ │ │ ├── does-not-go-in-loop-when-watching-when-no-files-are-emitted.js │ │ │ │ ├── dts-errors-with-incremental-as-modules.js │ │ │ │ ├── dts-errors-with-incremental.js │ │ │ │ ├── dts-errors-without-dts-enabled-with-incremental-as-modules.js │ │ │ │ ├── dts-errors-without-dts-enabled-with-incremental.js │ │ │ │ ├── dts-errors-without-dts-enabled.js │ │ │ │ ├── dts-errors.js │ │ │ │ ├── semantic-errors-with-incremental-as-modules.js │ │ │ │ ├── semantic-errors-with-incremental.js │ │ │ │ ├── semantic-errors.js │ │ │ │ ├── syntax-errors-with-incremental-as-modules.js │ │ │ │ ├── syntax-errors-with-incremental.js │ │ │ │ └── syntax-errors.js │ │ │ └── outFile/ │ │ │ ├── does-not-go-in-loop-when-watching-when-no-files-are-emitted-with-incremental.js │ │ │ ├── does-not-go-in-loop-when-watching-when-no-files-are-emitted.js │ │ │ ├── dts-errors-with-incremental-as-modules.js │ │ │ ├── dts-errors-with-incremental.js │ │ │ ├── dts-errors-without-dts-enabled-with-incremental-as-modules.js │ │ │ ├── dts-errors-without-dts-enabled-with-incremental.js │ │ │ ├── dts-errors-without-dts-enabled.js │ │ │ ├── dts-errors.js │ │ │ ├── semantic-errors-with-incremental-as-modules.js │ │ │ ├── semantic-errors-with-incremental.js │ │ │ ├── semantic-errors.js │ │ │ ├── syntax-errors-with-incremental-as-modules.js │ │ │ ├── syntax-errors-with-incremental.js │ │ │ └── syntax-errors.js │ │ ├── noEmitOnError/ │ │ │ ├── multiFile/ │ │ │ │ ├── noEmitOnError-with-declaration-with-incremental.js │ │ │ │ ├── noEmitOnError-with-declaration.js │ │ │ │ ├── noEmitOnError-with-incremental.js │ │ │ │ └── noEmitOnError.js │ │ │ └── outFile/ │ │ │ ├── noEmitOnError-with-declaration-with-incremental.js │ │ │ ├── noEmitOnError-with-declaration.js │ │ │ ├── noEmitOnError-with-incremental.js │ │ │ └── noEmitOnError.js │ │ ├── programUpdates/ │ │ │ ├── creates-solution-in-watch-mode.js │ │ │ ├── incremental-updates-in-verbose-mode.js │ │ │ ├── reportErrors/ │ │ │ │ ├── declarationEmitErrors/ │ │ │ │ │ ├── introduceError/ │ │ │ │ │ │ ├── when-file-with-no-error-changes.js │ │ │ │ │ │ └── when-fixing-errors-only-changed-file-is-emitted.js │ │ │ │ │ ├── when-file-with-no-error-changes.js │ │ │ │ │ └── when-fixing-error-files-all-files-are-emitted.js │ │ │ │ ├── when-preserveWatchOutput-is-not-used.js │ │ │ │ ├── when-preserveWatchOutput-is-passed-on-command-line.js │ │ │ │ └── when-stopBuildOnErrors-is-passed-on-command-line.js │ │ │ ├── should-not-trigger-recompilation-because-of-program-emit-with-outDir-specified.js │ │ │ ├── should-not-trigger-recompilation-because-of-program-emit.js │ │ │ ├── skips-builds-downstream-projects-if-upstream-projects-have-errors-with-stopBuildOnErrors-when-test-does-not-reference-core.js │ │ │ ├── skips-builds-downstream-projects-if-upstream-projects-have-errors-with-stopBuildOnErrors.js │ │ │ ├── tsbuildinfo-has-error.js │ │ │ ├── verify-building-references-watches-only-those-projects.js │ │ │ ├── watches-config-files-that-are-not-present.js │ │ │ ├── when-referenced-project-change-introduces-error-in-the-down-stream-project-and-then-fixes-it.js │ │ │ ├── with-circular-project-reference/ │ │ │ │ ├── builds-when-new-file-is-added,-and-its-subsequent-updates.js │ │ │ │ ├── change-builds-changes-and-reports-found-errors-message.js │ │ │ │ └── non-local-change-does-not-start-build-of-referencing-projects.js │ │ │ ├── with-outFile-and-non-local-change.js │ │ │ ├── with-simple-project-reference-graph/ │ │ │ │ ├── builds-when-new-file-is-added,-and-its-subsequent-updates.js │ │ │ │ ├── change-builds-changes-and-reports-found-errors-message.js │ │ │ │ └── non-local-change-does-not-start-build-of-referencing-projects.js │ │ │ ├── works-correctly-when-project-with-extended-config-is-removed.js │ │ │ ├── works-when-noUnusedParameters-changes-to-false.js │ │ │ └── works-with-extended-source-files.js │ │ ├── projectsBuilding/ │ │ │ ├── when-there-are-23-projects-in-a-solution.js │ │ │ ├── when-there-are-3-projects-in-a-solution.js │ │ │ ├── when-there-are-5-projects-in-a-solution.js │ │ │ └── when-there-are-8-projects-in-a-solution.js │ │ ├── publicApi/ │ │ │ └── with-custom-transformers.js │ │ ├── reexport/ │ │ │ └── Reports-errors-correctly.js │ │ ├── roots/ │ │ │ ├── when-root-file-is-from-referenced-project-and-shared-is-first.js │ │ │ └── when-root-file-is-from-referenced-project.js │ │ └── watchEnvironment/ │ │ └── same-file-in-multiple-projects-with-single-watcher-per-file.js │ ├── tsc/ │ │ ├── cancellationToken/ │ │ │ ├── when-emitting-buildInfo.js │ │ │ └── when-using-state.js │ │ ├── commandLine/ │ │ │ ├── adds-color-when-FORCE_COLOR-is-set.js │ │ │ ├── does-not-add-color-when-NO_COLOR-is-set-even-if-FORCE_COLOR-is-set.js │ │ │ ├── does-not-add-color-when-NO_COLOR-is-set.js │ │ │ ├── help-all.js │ │ │ ├── help.js │ │ │ ├── show-help-with-ExitStatus.DiagnosticsPresent_OutputsSkipped-when-host-can't-provide-terminal-width.js │ │ │ ├── show-help-with-ExitStatus.DiagnosticsPresent_OutputsSkipped.js │ │ │ └── when-build-not-first-argument.js │ │ ├── composite/ │ │ │ ├── converting-to-modules.js │ │ │ ├── synthetic-jsx-import-of-ESM-module-from-CJS-module-error-on-jsx-element.js │ │ │ ├── synthetic-jsx-import-of-ESM-module-from-CJS-module-no-crash-no-jsx-element.js │ │ │ ├── when-setting-composite-false-and-tsbuildinfo-as-null-on-command-line-but-has-tsbuild-info-in-config.js │ │ │ ├── when-setting-composite-false-on-command-line-but-has-tsbuild-info-in-config.js │ │ │ ├── when-setting-composite-false-on-command-line.js │ │ │ └── when-setting-composite-null-on-command-line.js │ │ ├── declarationEmit/ │ │ │ ├── multiFile/ │ │ │ │ ├── reports-dts-generation-errors-with-incremental.js │ │ │ │ └── reports-dts-generation-errors.js │ │ │ ├── outFile/ │ │ │ │ ├── reports-dts-generation-errors-with-incremental.js │ │ │ │ └── reports-dts-generation-errors.js │ │ │ ├── when-pkg-references-sibling-package-through-indirect-symlink-moduleCaseChange.js │ │ │ ├── when-pkg-references-sibling-package-through-indirect-symlink.js │ │ │ ├── when-same-version-is-referenced-through-source-and-another-symlinked-package-moduleCaseChange.js │ │ │ ├── when-same-version-is-referenced-through-source-and-another-symlinked-package-with-indirect-link-moduleCaseChange.js │ │ │ ├── when-same-version-is-referenced-through-source-and-another-symlinked-package-with-indirect-link.js │ │ │ ├── when-same-version-is-referenced-through-source-and-another-symlinked-package.js │ │ │ └── when-using-Windows-paths-and-uppercase-letters.js │ │ ├── extends/ │ │ │ ├── configDir-template-showConfig.js │ │ │ ├── configDir-template-with-commandline.js │ │ │ ├── configDir-template.js │ │ │ └── resolves-the-symlink-path.js │ │ ├── forceConsistentCasingInFileNames/ │ │ │ ├── when-file-is-included-from-multiple-places-with-different-casing.js │ │ │ ├── with-relative-and-non-relative-file-resolutions.js │ │ │ └── with-type-ref-from-file.js │ │ ├── ignoreConfig/ │ │ │ ├── mixing-project-and-files-when-config-file-absent-with---ignoreConfig.js │ │ │ ├── mixing-project-and-files-when-config-file-absent.js │ │ │ ├── mixing-project-and-files-with---ignoreConfig.js │ │ │ ├── mixing-project-and-files.js │ │ │ ├── specifying-files-when-config-file-absent-with---ignoreConfig.js │ │ │ ├── specifying-files-when-config-file-absent.js │ │ │ ├── specifying-files-with---ignoreConfig.js │ │ │ ├── specifying-files.js │ │ │ ├── specifying-project-when-config-file-absent-with---ignoreConfig.js │ │ │ ├── specifying-project-when-config-file-absent.js │ │ │ ├── specifying-project-with---ignoreConfig.js │ │ │ ├── specifying-project.js │ │ │ ├── without-any-options-when-config-file-absent-with---ignoreConfig.js │ │ │ ├── without-any-options-when-config-file-absent.js │ │ │ ├── without-any-options-with---ignoreConfig.js │ │ │ └── without-any-options.js │ │ ├── incremental/ │ │ │ ├── change-to-modifier-of-class-expression-field-with-declaration-emit-enabled.js │ │ │ ├── change-to-modifier-of-class-expression-field.js │ │ │ ├── change-to-type-that-gets-used-as-global-through-export-in-another-file-through-indirect-import.js │ │ │ ├── change-to-type-that-gets-used-as-global-through-export-in-another-file.js │ │ │ ├── generates-typerefs-correctly.js │ │ │ ├── multiFile/ │ │ │ │ ├── different-options-discrepancies.js │ │ │ │ ├── different-options-with-incremental-discrepancies.js │ │ │ │ ├── different-options-with-incremental.js │ │ │ │ └── different-options.js │ │ │ ├── outFile/ │ │ │ │ ├── different-options-discrepancies.js │ │ │ │ ├── different-options-with-incremental-discrepancies.js │ │ │ │ ├── different-options-with-incremental.js │ │ │ │ └── different-options.js │ │ │ ├── react-jsx-emit-mode-with-no-backing-types-found-doesn't-crash-under---strict.js │ │ │ ├── react-jsx-emit-mode-with-no-backing-types-found-doesn't-crash.js │ │ │ ├── serializing-error-chains.js │ │ │ ├── tsbuildinfo-has-error.js │ │ │ ├── when-file-is-deleted.js │ │ │ ├── when-global-file-is-added,-the-signatures-are-updated.js │ │ │ ├── when-new-file-is-added-to-the-referenced-project-discrepancies.js │ │ │ ├── when-new-file-is-added-to-the-referenced-project.js │ │ │ ├── when-passing-filename-for-buildinfo-on-commandline.js │ │ │ ├── when-passing-rootDir-from-commandline.js │ │ │ ├── when-passing-rootDir-is-in-the-tsconfig.js │ │ │ ├── with-aliased-const-enums-with-preserveConstEnums.js │ │ │ ├── with-aliased-const-enums.js │ │ │ ├── with-aliased-in-different-file-const-enums-with-preserveConstEnums.js │ │ │ ├── with-aliased-in-different-file-const-enums.js │ │ │ ├── with-const-enums-with-preserveConstEnums.js │ │ │ ├── with-const-enums.js │ │ │ └── with-only-dts-files.js │ │ ├── libraryResolution/ │ │ │ ├── unknown-lib.js │ │ │ ├── when-noLib-toggles.js │ │ │ ├── with-config-with-redirection.js │ │ │ ├── with-config.js │ │ │ ├── without-config-with-redirection.js │ │ │ └── without-config.js │ │ ├── listFilesOnly/ │ │ │ ├── combined-with-incremental.js │ │ │ └── loose-file.js │ │ ├── moduleResolution/ │ │ │ ├── alternateResult.js │ │ │ ├── package-json-scope.js │ │ │ └── pnpm-style-layout.js │ │ ├── noCheck/ │ │ │ ├── multiFile/ │ │ │ │ ├── dts-errors-with-incremental-discrepancies.js │ │ │ │ ├── dts-errors-with-incremental.js │ │ │ │ ├── dts-errors.js │ │ │ │ ├── semantic-errors-with-incremental-discrepancies.js │ │ │ │ ├── semantic-errors-with-incremental.js │ │ │ │ ├── semantic-errors.js │ │ │ │ ├── syntax-errors-with-incremental-discrepancies.js │ │ │ │ ├── syntax-errors-with-incremental.js │ │ │ │ └── syntax-errors.js │ │ │ └── outFile/ │ │ │ ├── dts-errors-with-incremental-discrepancies.js │ │ │ ├── dts-errors-with-incremental.js │ │ │ ├── dts-errors.js │ │ │ ├── semantic-errors-with-incremental-discrepancies.js │ │ │ ├── semantic-errors-with-incremental.js │ │ │ ├── semantic-errors.js │ │ │ ├── syntax-errors-with-incremental-discrepancies.js │ │ │ ├── syntax-errors-with-incremental.js │ │ │ └── syntax-errors.js │ │ ├── noEmit/ │ │ │ ├── multiFile/ │ │ │ │ ├── changes-composite-discrepancies.js │ │ │ │ ├── changes-composite.js │ │ │ │ ├── changes-incremental-declaration.js │ │ │ │ ├── changes-incremental.js │ │ │ │ ├── changes-with-initial-noEmit-composite-discrepancies.js │ │ │ │ ├── changes-with-initial-noEmit-composite.js │ │ │ │ ├── changes-with-initial-noEmit-incremental-declaration.js │ │ │ │ ├── changes-with-initial-noEmit-incremental.js │ │ │ │ ├── dts-errors-with-declaration-enable-changes-with-multiple-files-discrepancies.js │ │ │ │ ├── dts-errors-with-declaration-enable-changes-with-multiple-files.js │ │ │ │ ├── dts-errors-with-incremental-as-modules.js │ │ │ │ ├── dts-errors-with-incremental.js │ │ │ │ ├── dts-errors-without-dts-enabled-with-incremental-as-modules.js │ │ │ │ ├── dts-errors-without-dts-enabled-with-incremental.js │ │ │ │ ├── dts-errors-without-dts-enabled.js │ │ │ │ ├── dts-errors.js │ │ │ │ ├── semantic-errors-with-incremental-as-modules.js │ │ │ │ ├── semantic-errors-with-incremental.js │ │ │ │ ├── semantic-errors.js │ │ │ │ ├── syntax-errors-with-incremental-as-modules-discrepancies.js │ │ │ │ ├── syntax-errors-with-incremental-as-modules.js │ │ │ │ ├── syntax-errors-with-incremental-discrepancies.js │ │ │ │ ├── syntax-errors-with-incremental.js │ │ │ │ └── syntax-errors.js │ │ │ ├── outFile/ │ │ │ │ ├── changes-composite-discrepancies.js │ │ │ │ ├── changes-composite.js │ │ │ │ ├── changes-incremental-declaration.js │ │ │ │ ├── changes-incremental.js │ │ │ │ ├── changes-with-initial-noEmit-composite-discrepancies.js │ │ │ │ ├── changes-with-initial-noEmit-composite.js │ │ │ │ ├── changes-with-initial-noEmit-incremental-declaration.js │ │ │ │ ├── changes-with-initial-noEmit-incremental.js │ │ │ │ ├── dts-errors-with-declaration-enable-changes-with-multiple-files-discrepancies.js │ │ │ │ ├── dts-errors-with-declaration-enable-changes-with-multiple-files.js │ │ │ │ ├── dts-errors-with-incremental-as-modules-discrepancies.js │ │ │ │ ├── dts-errors-with-incremental-as-modules.js │ │ │ │ ├── dts-errors-with-incremental-discrepancies.js │ │ │ │ ├── dts-errors-with-incremental.js │ │ │ │ ├── dts-errors-without-dts-enabled-with-incremental-as-modules.js │ │ │ │ ├── dts-errors-without-dts-enabled-with-incremental.js │ │ │ │ ├── dts-errors-without-dts-enabled.js │ │ │ │ ├── dts-errors.js │ │ │ │ ├── semantic-errors-with-incremental-as-modules.js │ │ │ │ ├── semantic-errors-with-incremental.js │ │ │ │ ├── semantic-errors.js │ │ │ │ ├── syntax-errors-with-incremental-as-modules.js │ │ │ │ ├── syntax-errors-with-incremental.js │ │ │ │ └── syntax-errors.js │ │ │ └── when-project-has-strict-true.js │ │ ├── noEmitOnError/ │ │ │ ├── multiFile/ │ │ │ │ ├── dts-errors-with-declaration-with-incremental.js │ │ │ │ ├── dts-errors-with-declaration.js │ │ │ │ ├── dts-errors-with-incremental.js │ │ │ │ ├── dts-errors.js │ │ │ │ ├── file-deleted-before-fixing-error-with-noEmitOnError.js │ │ │ │ ├── semantic-errors-with-declaration-with-incremental.js │ │ │ │ ├── semantic-errors-with-declaration.js │ │ │ │ ├── semantic-errors-with-incremental.js │ │ │ │ ├── semantic-errors.js │ │ │ │ ├── syntax-errors-with-declaration-with-incremental.js │ │ │ │ ├── syntax-errors-with-declaration.js │ │ │ │ ├── syntax-errors-with-incremental.js │ │ │ │ ├── syntax-errors.js │ │ │ │ ├── when-declarationMap-changes-discrepancies.js │ │ │ │ └── when-declarationMap-changes.js │ │ │ └── outFile/ │ │ │ ├── dts-errors-with-declaration-with-incremental.js │ │ │ ├── dts-errors-with-declaration.js │ │ │ ├── dts-errors-with-incremental.js │ │ │ ├── dts-errors.js │ │ │ ├── file-deleted-before-fixing-error-with-noEmitOnError.js │ │ │ ├── semantic-errors-with-declaration-with-incremental.js │ │ │ ├── semantic-errors-with-declaration.js │ │ │ ├── semantic-errors-with-incremental.js │ │ │ ├── semantic-errors.js │ │ │ ├── syntax-errors-with-declaration-with-incremental.js │ │ │ ├── syntax-errors-with-declaration.js │ │ │ ├── syntax-errors-with-incremental.js │ │ │ ├── syntax-errors.js │ │ │ ├── when-declarationMap-changes-discrepancies.js │ │ │ └── when-declarationMap-changes.js │ │ ├── projectReferences/ │ │ │ ├── default-import-interop-uses-referenced-project-settings.js │ │ │ ├── importing-const-enum-from-referenced-project-with-preserveConstEnums-and-verbatimModuleSyntax.js │ │ │ ├── referenced-project-with-esnext-module-disallows-synthetic-default-imports.js │ │ │ ├── referencing-ambient-const-enum-from-referenced-project-with-preserveConstEnums.js │ │ │ ├── when-project-contains-invalid-project-reference.js │ │ │ └── when-project-references-composite-project-with-noEmit.js │ │ ├── projectReferencesConfig/ │ │ │ ├── default-setup-was-created-correctly.js │ │ │ ├── does-not-error-when-the-referenced-project-doesnt-have-composite-if-its-a-container-project.js │ │ │ ├── doesnt-infer-the-rootDir-from-source-paths.js │ │ │ ├── errors-when-a-file-is-outside-the-rootdir.js │ │ │ ├── errors-when-declaration-=-false.js │ │ │ ├── errors-when-the-file-list-is-not-exhaustive.js │ │ │ ├── errors-when-the-referenced-project-doesnt-exist.js │ │ │ ├── errors-when-the-referenced-project-doesnt-have-composite.js │ │ │ ├── issues-a-nice-error-when-the-input-file-is-missing-when-module-reference-is-not-relative.js │ │ │ ├── issues-a-nice-error-when-the-input-file-is-missing.js │ │ │ └── redirects-to-the-output-dts-file.js │ │ └── redirect/ │ │ └── when-redirecting-ts-file.js │ ├── tscWatch/ │ │ ├── consoleClearing/ │ │ │ ├── when-preserveWatchOutput-is-true-in-config-file/ │ │ │ │ ├── createWatchOfConfigFile.js │ │ │ │ └── when-createWatchProgram-is-invoked-with-configFileParseResult-on-WatchCompilerHostOfConfigFile.js │ │ │ ├── with---diagnostics.js │ │ │ ├── with---extendedDiagnostics.js │ │ │ ├── with---preserveWatchOutput.js │ │ │ └── without---diagnostics-or---extendedDiagnostics.js │ │ ├── emit/ │ │ │ ├── emit-file-content/ │ │ │ │ ├── elides-const-enums-correctly-in-incremental-compilation.js │ │ │ │ ├── file-is-deleted-and-created-as-part-of-change.js │ │ │ │ ├── handles-new-lines-carriageReturn-lineFeed.js │ │ │ │ ├── handles-new-lines-lineFeed.js │ │ │ │ └── should-emit-specified-file.js │ │ │ ├── emit-for-configured-projects/ │ │ │ │ ├── should-always-return-the-file-itself-if-'--isolatedModules'-is-specified.js │ │ │ │ ├── should-always-return-the-file-itself-if-'--out'-or-'--outFile'-is-specified.js │ │ │ │ ├── should-be-up-to-date-with-deleted-files.js │ │ │ │ ├── should-be-up-to-date-with-newly-created-files.js │ │ │ │ ├── should-be-up-to-date-with-the-reference-map-changes.js │ │ │ │ ├── should-contains-only-itself-if-a-module-file's-shape-didn't-change,-and-all-files-referencing-it-if-its-shape-changed.js │ │ │ │ ├── should-detect-changes-in-non-root-files.js │ │ │ │ ├── should-detect-non-existing-code-file.js │ │ │ │ ├── should-detect-removed-code-file.js │ │ │ │ ├── should-return-all-files-if-a-global-file-changed-shape.js │ │ │ │ ├── should-return-cascaded-affected-file-list.js │ │ │ │ └── should-work-fine-for-files-with-circular-references.js │ │ │ ├── emit-with-outFile-or-out-setting/ │ │ │ │ ├── config-does-not-have-out-or-outFile.js │ │ │ │ ├── config-has-out.js │ │ │ │ ├── config-has-outFile.js │ │ │ │ ├── with---outFile-and-multiple-declaration-files-in-the-program.js │ │ │ │ └── without---outFile-and-multiple-declaration-files-in-the-program.js │ │ │ └── when-module-emit-is-specified-as-node/ │ │ │ └── when-instead-of-filechanged-recursive-directory-watcher-is-invoked.js │ │ ├── emitAndErrorUpdates/ │ │ │ ├── assumeChangesOnlyAffectDirectDependencies/ │ │ │ │ ├── deepImportChanges/ │ │ │ │ │ ├── errors-for-.d.ts-change-with-incremental.js │ │ │ │ │ ├── errors-for-.d.ts-change.js │ │ │ │ │ ├── errors-for-.ts-change-with-incremental.js │ │ │ │ │ └── errors-for-.ts-change.js │ │ │ │ ├── file-not-exporting-a-deep-multilevel-import-that-changes-with-incremental.js │ │ │ │ ├── file-not-exporting-a-deep-multilevel-import-that-changes.js │ │ │ │ └── transitive-exports/ │ │ │ │ ├── no-circular-import/ │ │ │ │ │ ├── export-with-incremental.js │ │ │ │ │ └── export.js │ │ │ │ └── yes-circular-import/ │ │ │ │ ├── exports-with-incremental.js │ │ │ │ └── exports.js │ │ │ ├── assumeChangesOnlyAffectDirectDependenciesAndD/ │ │ │ │ ├── deepImportChanges/ │ │ │ │ │ ├── errors-for-.d.ts-change-with-incremental.js │ │ │ │ │ ├── errors-for-.d.ts-change.js │ │ │ │ │ ├── errors-for-.ts-change-with-incremental.js │ │ │ │ │ └── errors-for-.ts-change.js │ │ │ │ ├── file-not-exporting-a-deep-multilevel-import-that-changes-with-incremental.js │ │ │ │ ├── file-not-exporting-a-deep-multilevel-import-that-changes.js │ │ │ │ └── transitive-exports/ │ │ │ │ ├── no-circular-import/ │ │ │ │ │ ├── export-with-incremental.js │ │ │ │ │ └── export.js │ │ │ │ └── yes-circular-import/ │ │ │ │ ├── exports-with-incremental.js │ │ │ │ └── exports.js │ │ │ ├── default/ │ │ │ │ ├── deepImportChanges/ │ │ │ │ │ ├── errors-for-.d.ts-change-with-incremental.js │ │ │ │ │ ├── errors-for-.d.ts-change.js │ │ │ │ │ ├── errors-for-.ts-change-with-incremental.js │ │ │ │ │ └── errors-for-.ts-change.js │ │ │ │ ├── file-not-exporting-a-deep-multilevel-import-that-changes-with-incremental.js │ │ │ │ ├── file-not-exporting-a-deep-multilevel-import-that-changes.js │ │ │ │ └── transitive-exports/ │ │ │ │ ├── no-circular-import/ │ │ │ │ │ ├── export-with-incremental.js │ │ │ │ │ └── export.js │ │ │ │ └── yes-circular-import/ │ │ │ │ ├── exports-with-incremental.js │ │ │ │ └── exports.js │ │ │ ├── defaultAndD/ │ │ │ │ ├── deepImportChanges/ │ │ │ │ │ ├── errors-for-.d.ts-change-with-incremental.js │ │ │ │ │ ├── errors-for-.d.ts-change.js │ │ │ │ │ ├── errors-for-.ts-change-with-incremental.js │ │ │ │ │ └── errors-for-.ts-change.js │ │ │ │ ├── file-not-exporting-a-deep-multilevel-import-that-changes-with-incremental.js │ │ │ │ ├── file-not-exporting-a-deep-multilevel-import-that-changes.js │ │ │ │ └── transitive-exports/ │ │ │ │ ├── no-circular-import/ │ │ │ │ │ ├── export-with-incremental.js │ │ │ │ │ └── export.js │ │ │ │ └── yes-circular-import/ │ │ │ │ ├── exports-with-incremental.js │ │ │ │ └── exports.js │ │ │ ├── isolatedModules/ │ │ │ │ ├── deepImportChanges/ │ │ │ │ │ ├── errors-for-.d.ts-change-with-incremental.js │ │ │ │ │ ├── errors-for-.d.ts-change.js │ │ │ │ │ ├── errors-for-.ts-change-with-incremental.js │ │ │ │ │ └── errors-for-.ts-change.js │ │ │ │ ├── file-not-exporting-a-deep-multilevel-import-that-changes-with-incremental.js │ │ │ │ ├── file-not-exporting-a-deep-multilevel-import-that-changes.js │ │ │ │ └── transitive-exports/ │ │ │ │ ├── no-circular-import/ │ │ │ │ │ ├── export-with-incremental.js │ │ │ │ │ └── export.js │ │ │ │ └── yes-circular-import/ │ │ │ │ ├── exports-with-incremental.js │ │ │ │ └── exports.js │ │ │ └── isolatedModulesAndD/ │ │ │ ├── deepImportChanges/ │ │ │ │ ├── errors-for-.d.ts-change-with-incremental.js │ │ │ │ ├── errors-for-.d.ts-change.js │ │ │ │ ├── errors-for-.ts-change-with-incremental.js │ │ │ │ └── errors-for-.ts-change.js │ │ │ ├── file-not-exporting-a-deep-multilevel-import-that-changes-with-incremental.js │ │ │ ├── file-not-exporting-a-deep-multilevel-import-that-changes.js │ │ │ └── transitive-exports/ │ │ │ ├── no-circular-import/ │ │ │ │ ├── export-with-incremental.js │ │ │ │ └── export.js │ │ │ └── yes-circular-import/ │ │ │ ├── exports-with-incremental.js │ │ │ └── exports.js │ │ ├── extends/ │ │ │ ├── configDir-template.js │ │ │ └── resolves-the-symlink-path.js │ │ ├── forceConsistentCasingInFileNames/ │ │ │ ├── jsxImportSource-option-changed.js │ │ │ ├── package-json-is-looked-up-for-file.js │ │ │ ├── self-name-package-reference.js │ │ │ ├── when-Windows-style-drive-root-is-lowercase.js │ │ │ ├── when-Windows-style-drive-root-is-uppercase.js │ │ │ ├── when-both-directory-symlink-target-and-import-match-disk.js │ │ │ ├── when-both-file-symlink-target-and-import-match-disk.js │ │ │ ├── when-changing-module-name-with-different-casing.js │ │ │ ├── when-directory-symlink-target-matches-disk-but-import-does-not.js │ │ │ ├── when-file-is-included-from-multiple-places-with-different-casing.js │ │ │ ├── when-file-symlink-target-matches-disk-but-import-does-not.js │ │ │ ├── when-import,-directory-symlink-target,-and-disk-are-all-different.js │ │ │ ├── when-import,-file-symlink-target,-and-disk-are-all-different.js │ │ │ ├── when-import-and-directory-symlink-target-agree-but-do-not-match-disk.js │ │ │ ├── when-import-and-file-symlink-target-agree-but-do-not-match-disk.js │ │ │ ├── when-import-matches-disk-but-directory-symlink-target-does-not.js │ │ │ ├── when-import-matches-disk-but-file-symlink-target-does-not.js │ │ │ ├── when-relative-information-file-location-changes.js │ │ │ ├── when-renaming-file-with-different-casing.js │ │ │ └── with-nodeNext-resolution.js │ │ ├── incremental/ │ │ │ ├── editing-module-augmentation-incremental.js │ │ │ ├── editing-module-augmentation-watch.js │ │ │ ├── importHelpers-backing-types-removed-incremental.js │ │ │ ├── importHelpers-backing-types-removed-watch.js │ │ │ ├── incremental-with-circular-references-incremental.js │ │ │ ├── incremental-with-circular-references-watch.js │ │ │ ├── jsxImportSource-backing-types-added-incremental.js │ │ │ ├── jsxImportSource-backing-types-added-watch.js │ │ │ ├── jsxImportSource-backing-types-removed-incremental.js │ │ │ ├── jsxImportSource-backing-types-removed-watch.js │ │ │ ├── jsxImportSource-option-changed-incremental.js │ │ │ ├── jsxImportSource-option-changed-watch.js │ │ │ ├── module-compilation/ │ │ │ │ ├── own-file-emit-with-errors-incremental.js │ │ │ │ ├── own-file-emit-with-errors-watch.js │ │ │ │ ├── own-file-emit-without-errors-incremental.js │ │ │ │ ├── own-file-emit-without-errors-watch.js │ │ │ │ ├── with---out-incremental.js │ │ │ │ └── with---out-watch.js │ │ │ ├── own-file-emit-with-errors-incremental.js │ │ │ ├── own-file-emit-with-errors-watch.js │ │ │ ├── own-file-emit-without-errors/ │ │ │ │ ├── with-commandline-parameters-that-are-not-relative-incremental.js │ │ │ │ ├── with-commandline-parameters-that-are-not-relative-watch.js │ │ │ │ ├── without-commandline-options-incremental.js │ │ │ │ └── without-commandline-options-watch.js │ │ │ ├── tsbuildinfo-has-error.js │ │ │ ├── when-file-with-ambient-global-declaration-file-is-deleted-incremental.js │ │ │ ├── when-file-with-ambient-global-declaration-file-is-deleted-watch.js │ │ │ ├── with---out-incremental.js │ │ │ └── with---out-watch.js │ │ ├── libraryResolution/ │ │ │ ├── unknwon-lib.js │ │ │ ├── with-config-with-redirection.js │ │ │ ├── with-config.js │ │ │ ├── without-config-with-redirection.js │ │ │ └── without-config.js │ │ ├── listFilesOnly/ │ │ │ └── combined-with-watch.js │ │ ├── moduleResolution/ │ │ │ ├── alternateResult.js │ │ │ ├── ambient-module-names-are-resolved-correctly.js │ │ │ ├── diagnostics-from-cache.js │ │ │ ├── late-discovered-dependency-symlink.js │ │ │ ├── module-resolutions-from-file-are-partially-used.js │ │ │ ├── module-resolutions-from-files-with-partially-used-import-attributes.js │ │ │ ├── package-json-file-is-edited-when-package-json-with-type-module-exists.js │ │ │ ├── package-json-file-is-edited.js │ │ │ ├── type-reference-resolutions-reuse.js │ │ │ ├── type-reference-resolutions-with-impliedMode.js │ │ │ └── watches-for-changes-to-package-json-main-fields.js │ │ ├── noEmit/ │ │ │ ├── multiFile/ │ │ │ │ ├── dts-errors-with-incremental-as-modules.js │ │ │ │ ├── dts-errors-with-incremental.js │ │ │ │ ├── dts-errors-without-dts-enabled-with-incremental-as-modules.js │ │ │ │ ├── dts-errors-without-dts-enabled-with-incremental.js │ │ │ │ ├── dts-errors-without-dts-enabled.js │ │ │ │ ├── dts-errors.js │ │ │ │ ├── semantic-errors-with-incremental-as-modules.js │ │ │ │ ├── semantic-errors-with-incremental.js │ │ │ │ ├── semantic-errors.js │ │ │ │ ├── syntax-errors-with-incremental-as-modules.js │ │ │ │ ├── syntax-errors-with-incremental.js │ │ │ │ └── syntax-errors.js │ │ │ └── outFile/ │ │ │ ├── dts-errors-with-incremental-as-modules.js │ │ │ ├── dts-errors-with-incremental.js │ │ │ ├── dts-errors-without-dts-enabled-with-incremental-as-modules.js │ │ │ ├── dts-errors-without-dts-enabled-with-incremental.js │ │ │ ├── dts-errors-without-dts-enabled.js │ │ │ ├── dts-errors.js │ │ │ ├── semantic-errors-with-incremental-as-modules.js │ │ │ ├── semantic-errors-with-incremental.js │ │ │ ├── semantic-errors.js │ │ │ ├── syntax-errors-with-incremental-as-modules.js │ │ │ ├── syntax-errors-with-incremental.js │ │ │ └── syntax-errors.js │ │ ├── noEmitOnError/ │ │ │ ├── multiFile/ │ │ │ │ ├── noEmitOnError-with-declaration-with-incremental.js │ │ │ │ ├── noEmitOnError-with-declaration.js │ │ │ │ ├── noEmitOnError-with-incremental.js │ │ │ │ └── noEmitOnError.js │ │ │ └── outFile/ │ │ │ ├── noEmitOnError-with-declaration-with-incremental.js │ │ │ ├── noEmitOnError-with-declaration.js │ │ │ ├── noEmitOnError-with-incremental.js │ │ │ └── noEmitOnError.js │ │ ├── nodeNextWatch/ │ │ │ └── esm-mode-file-is-edited.js │ │ ├── programUpdates/ │ │ │ ├── Configure-file-diagnostics-events-are-generated-when-the-config-file-has-errors.js │ │ │ ├── Options-Diagnostic-locations-reported-correctly-with-changes-in-configFile-contents-when-options-change.js │ │ │ ├── Proper-errors-document-is-not-contained-in-project.js │ │ │ ├── Reports-errors-when-the-config-file-changes.js │ │ │ ├── Updates-diagnostics-when-'--allowArbitraryExtensions'-changes.js │ │ │ ├── Updates-diagnostics-when-'--noUnusedLabels'-changes.js │ │ │ ├── add-new-files-to-a-configured-program-without-file-list.js │ │ │ ├── add-the-missing-module-file-for-inferred-project-should-remove-the-module-not-found-error.js │ │ │ ├── can-correctly-update-configured-project-when-set-of-root-files-has-changed-(new-file-in-list-of-files).js │ │ │ ├── can-correctly-update-configured-project-when-set-of-root-files-has-changed-(new-file-on-disk).js │ │ │ ├── can-correctly-update-configured-project-when-set-of-root-files-has-changed-through-include.js │ │ │ ├── can-handle-tsconfig-file-name-with-difference-casing.js │ │ │ ├── can-update-configured-project-when-set-of-root-files-was-not-changed.js │ │ │ ├── change-module-to-none.js │ │ │ ├── changes-in-files-are-reflected-in-project-structure.js │ │ │ ├── config-file-includes-the-file.js │ │ │ ├── config-file-is-deleted.js │ │ │ ├── correctly-handles-changes-in-lib-section-of-config-file.js │ │ │ ├── correctly-parses-wild-card-directories-from-implicit-glob-when-two-keys-differ-only-in-directory-seperator.js │ │ │ ├── create-configured-project-without-file-list.js │ │ │ ├── create-watch-without-config-file.js │ │ │ ├── deleted-files-affect-project-structure-2.js │ │ │ ├── deleted-files-affect-project-structure.js │ │ │ ├── extended-source-files-are-watched.js │ │ │ ├── file-in-files-is-deleted.js │ │ │ ├── files-explicitly-excluded-in-config-file.js │ │ │ ├── handle-recreated-files-correctly.js │ │ │ ├── handles-the-missing-files---that-were-added-to-program-because-they-were-added-with-tripleSlashRefs.js │ │ │ ├── if-config-file-doesnt-have-errors,-they-are-not-reported.js │ │ │ ├── non-existing-directories-listed-in-config-file-input-array-should-be-able-to-handle-@types-if-input-file-list-is-empty.js │ │ │ ├── non-existing-directories-listed-in-config-file-input-array-should-be-tolerated-without-crashing-the-server.js │ │ │ ├── rename-a-module-file-and-rename-back-should-restore-the-states-for-configured-projects.js │ │ │ ├── rename-a-module-file-and-rename-back-should-restore-the-states-for-inferred-projects.js │ │ │ ├── reports-errors-correctly-with-file-not-in-rootDir.js │ │ │ ├── reports-errors-correctly-with-isolatedModules.js │ │ │ ├── should-handle-non-existing-directories-in-config-file.js │ │ │ ├── should-ignore-non-existing-files-specified-in-the-config-file.js │ │ │ ├── should-not-trigger-recompilation-because-of-program-emit/ │ │ │ │ ├── declarationDir-is-specified.js │ │ │ │ ├── when-outDir-and-declarationDir-is-specified.js │ │ │ │ ├── when-outDir-is-specified.js │ │ │ │ ├── with-outFile.js │ │ │ │ ├── without-outDir-or-outFile-is-specified-with-declaration-enabled.js │ │ │ │ └── without-outDir-or-outFile-is-specified.js │ │ │ ├── should-properly-handle-module-resolution-changes-in-config-file.js │ │ │ ├── should-reflect-change-in-config-file.js │ │ │ ├── should-support-files-without-extensions.js │ │ │ ├── should-tolerate-config-file-errors-and-still-try-to-build-a-project.js │ │ │ ├── shouldnt-report-error-about-unused-function-incorrectly-when-file-changes-from-global-to-module.js │ │ │ ├── two-watch-programs-are-not-affected-by-each-other.js │ │ │ ├── types-should-load-from-config-file-path-if-config-exists.js │ │ │ ├── types-should-not-load-from-config-file-path-if-config-exists-but-does-not-specifies-typeRoots.js │ │ │ ├── updates-diagnostics-and-emit-for-decorators.js │ │ │ ├── updates-diagnostics-and-emit-when-useDefineForClassFields-changes.js │ │ │ ├── updates-emit-on-jsx-option-add.js │ │ │ ├── updates-emit-on-jsx-option-change.js │ │ │ ├── updates-errors-and-emit-when-verbatimModuleSyntax-changes.js │ │ │ ├── updates-errors-correctly-when-declaration-emit-is-disabled-in-compiler-options.js │ │ │ ├── updates-errors-in-lib-file/ │ │ │ │ ├── when-module-file-with-global-definitions-changes/ │ │ │ │ │ ├── with-default-options.js │ │ │ │ │ ├── with-skipDefaultLibCheck.js │ │ │ │ │ └── with-skipLibCheck.js │ │ │ │ └── when-non-module-file-changes/ │ │ │ │ ├── with-default-options.js │ │ │ │ ├── with-skipDefaultLibCheck.js │ │ │ │ └── with-skipLibCheck.js │ │ │ ├── updates-errors-when-ambient-modules-of-program-changes.js │ │ │ ├── updates-errors-when-forceConsistentCasingInFileNames-changes.js │ │ │ ├── updates-errors-when-noErrorTruncation-changes.js │ │ │ ├── updates-errors-when-strictNullChecks-changes.js │ │ │ ├── updates-moduleResolution-when-resolveJsonModule-changes.js │ │ │ ├── watched-files-when-file-is-deleted-and-new-file-is-added-as-part-of-change.js │ │ │ ├── when-changing-`allowImportingTsExtensions`-of-config-file-2.js │ │ │ ├── when-changing-`allowImportingTsExtensions`-of-config-file.js │ │ │ ├── when-changing-checkJs-of-config-file.js │ │ │ ├── when-changing-noUncheckedSideEffectImports-of-config-file.js │ │ │ ├── when-creating-extensionless-file.js │ │ │ ├── when-creating-new-file-in-symlinked-folder.js │ │ │ ├── when-new-file-is-added-to-the-referenced-project.js │ │ │ ├── when-skipLibCheck-and-skipDefaultLibCheck-changes.js │ │ │ └── works-correctly-when-config-file-is-changed-but-its-content-havent.js │ │ ├── projectsWithReferences/ │ │ │ ├── on-sample-project-with-nodenext.js │ │ │ ├── on-sample-project.js │ │ │ ├── on-transitive-references-in-different-folders-with-no-files-clause.js │ │ │ ├── on-transitive-references-in-different-folders.js │ │ │ ├── on-transitive-references-with-nodenext.js │ │ │ ├── on-transitive-references.js │ │ │ ├── watch-options-differing-between-projects.js │ │ │ ├── when-declarationMap-changes-for-dependency.js │ │ │ └── when-referenced-project-uses-different-module-resolution.js │ │ ├── resolutionCache/ │ │ │ ├── caching-works.js │ │ │ ├── ignores-changes-in-node_modules-that-start-with-dot/ │ │ │ │ ├── watch-with-configFile.js │ │ │ │ └── watch-without-configFile.js │ │ │ ├── loads-missing-files-from-disk.js │ │ │ ├── reusing-type-ref-resolution.js │ │ │ ├── scoped-package-installation.js │ │ │ ├── should-compile-correctly-when-resolved-module-goes-missing-and-then-comes-back.js │ │ │ ├── when-dir-watcher-is-invoked-without-file-change.js │ │ │ ├── when-types-in-compiler-option-are-global-and-installed-at-later-point.js │ │ │ ├── with-modules-linked-to-sibling-folder.js │ │ │ ├── works-when-included-file-with-ambient-module-changes.js │ │ │ ├── works-when-installing-something-in-node_modules-or-@types-when-there-is-no-notification-from-fs-for-index-file.js │ │ │ ├── works-when-module-resolution-changes-to-ambient-module.js │ │ │ ├── works-when-renaming-node_modules-folder-that-already-contains-@types-folder.js │ │ │ └── works-when-reusing-program-with-files-from-external-library.js │ │ ├── resolveJsonModule/ │ │ │ └── incremental-always-prefers-declaration-file-over-document.js │ │ ├── sourceOfProjectReferenceRedirect/ │ │ │ ├── when-packageJson-has-types-field-when-solution-is-already-built.js │ │ │ ├── when-packageJson-has-types-field-with-preserveSymlinks-when-solution-is-already-built.js │ │ │ ├── when-packageJson-has-types-field-with-preserveSymlinks.js │ │ │ ├── when-packageJson-has-types-field-with-scoped-package-when-solution-is-already-built.js │ │ │ ├── when-packageJson-has-types-field-with-scoped-package-with-preserveSymlinks-when-solution-is-already-built.js │ │ │ ├── when-packageJson-has-types-field-with-scoped-package-with-preserveSymlinks.js │ │ │ ├── when-packageJson-has-types-field-with-scoped-package.js │ │ │ ├── when-packageJson-has-types-field.js │ │ │ ├── when-referencing-file-from-subFolder-when-solution-is-already-built.js │ │ │ ├── when-referencing-file-from-subFolder-with-preserveSymlinks-when-solution-is-already-built.js │ │ │ ├── when-referencing-file-from-subFolder-with-preserveSymlinks.js │ │ │ ├── when-referencing-file-from-subFolder-with-scoped-package-when-solution-is-already-built.js │ │ │ ├── when-referencing-file-from-subFolder-with-scoped-package-with-preserveSymlinks-when-solution-is-already-built.js │ │ │ ├── when-referencing-file-from-subFolder-with-scoped-package-with-preserveSymlinks.js │ │ │ ├── when-referencing-file-from-subFolder-with-scoped-package.js │ │ │ ├── when-referencing-file-from-subFolder.js │ │ │ ├── with-simple-project-when-solution-is-already-built.js │ │ │ └── with-simple-project.js │ │ ├── symlinks/ │ │ │ ├── monorepo-style-sibling-packages-symlinked-Linux.js │ │ │ ├── monorepo-style-sibling-packages-symlinked-package1-built-Linux.js │ │ │ ├── monorepo-style-sibling-packages-symlinked-package1-built.js │ │ │ ├── monorepo-style-sibling-packages-symlinked.js │ │ │ ├── packages-outside-project-folder-Linux.js │ │ │ ├── packages-outside-project-folder-MacOs.js │ │ │ ├── packages-outside-project-folder-Windows.js │ │ │ ├── packages-outside-project-folder-built-Linux.js │ │ │ ├── packages-outside-project-folder-built-MacOs.js │ │ │ └── packages-outside-project-folder-built-Windows.js │ │ ├── watchApi/ │ │ │ ├── extraFileExtensions-are-supported.js │ │ │ ├── host-implements-does-not-implement-hasInvalidatedResolutions.js │ │ │ ├── host-implements-hasInvalidatedResolutions.js │ │ │ ├── multiFile/ │ │ │ │ ├── noEmit-with-composite-with-emit-builder.js │ │ │ │ ├── noEmit-with-composite-with-semantic-builder.js │ │ │ │ ├── noEmitOnError-with-composite-with-emit-builder.js │ │ │ │ ├── noEmitOnError-with-composite-with-semantic-builder.js │ │ │ │ ├── semantic-builder-emitOnlyDts.js │ │ │ │ ├── verifies-that-noEmit-is-handled-on-createSemanticDiagnosticsBuilderProgram.js │ │ │ │ └── when-emitting-with-emitOnlyDtsFiles.js │ │ │ ├── outFile/ │ │ │ │ ├── noEmit-with-composite-with-emit-builder.js │ │ │ │ ├── noEmit-with-composite-with-semantic-builder.js │ │ │ │ ├── noEmitOnError-with-composite-with-emit-builder.js │ │ │ │ ├── noEmitOnError-with-composite-with-semantic-builder.js │ │ │ │ ├── semantic-builder-emitOnlyDts.js │ │ │ │ ├── verifies-that-noEmit-is-handled-on-createSemanticDiagnosticsBuilderProgram.js │ │ │ │ └── when-emitting-with-emitOnlyDtsFiles.js │ │ │ ├── verify-that-module-resolution-with-json-extension-works-when-returned-without-extension.js │ │ │ ├── verify-that-the-error-count-is-correctly-passed-down-to-the-watch-status-reporter.js │ │ │ ├── when-new-file-is-added-to-the-referenced-project-with-host-implementing-getParsedCommandLine-without-implementing-useSourceOfProjectReferenceRedirect.js │ │ │ ├── when-new-file-is-added-to-the-referenced-project-with-host-implementing-getParsedCommandLine.js │ │ │ ├── when-watching-referenced-project-when-there-is-no-config-file-name.js │ │ │ ├── when-watching-referenced-project-with-extends-when-there-is-no-config-file-name.js │ │ │ └── without-timesouts-on-host-program-gets-updated.js │ │ └── watchEnvironment/ │ │ ├── fsEvent-for-change-is-repeated.js │ │ ├── fsWatch/ │ │ │ ├── fsWatchWithTimestamp-false-useFsEventsOnParentDirectory.js │ │ │ ├── fsWatchWithTimestamp-false.js │ │ │ ├── fsWatchWithTimestamp-true-useFsEventsOnParentDirectory.js │ │ │ ├── fsWatchWithTimestamp-true.js │ │ │ ├── when-using-file-watching-thats-on-inode-when-rename-event-ends-with-tilde.js │ │ │ ├── when-using-file-watching-thats-on-inode-when-rename-occurs-when-file-is-still-on-the-disk.js │ │ │ ├── when-using-file-watching-thats-on-inode.js │ │ │ └── when-using-file-watching-thats-when-rename-occurs-when-file-is-still-on-the-disk.js │ │ ├── watchDirectories/ │ │ │ ├── uses-non-recursive-dynamic-polling-when-renaming-file-in-subfolder.js │ │ │ ├── uses-non-recursive-watchDirectory-when-renaming-file-in-subfolder.js │ │ │ ├── uses-watchFile-when-renaming-file-in-subfolder.js │ │ │ ├── when-there-are-symlinks-to-folders-in-recursive-folders-with-synchronousWatchDirectory.js │ │ │ ├── when-there-are-symlinks-to-folders-in-recursive-folders.js │ │ │ ├── with-non-synchronous-watch-directory-renaming-a-file.js │ │ │ ├── with-non-synchronous-watch-directory-with-outDir-and-declaration-enabled.js │ │ │ └── with-non-synchronous-watch-directory.js │ │ ├── watchFile/ │ │ │ ├── using-dynamic-priority-polling.js │ │ │ └── using-fixed-chunk-size-polling.js │ │ └── watchOptions/ │ │ ├── with-excludeDirectories-option-extendedDiagnostics.js │ │ ├── with-excludeDirectories-option-with-recursive-directory-watching-extendedDiagnostics.js │ │ ├── with-excludeDirectories-option-with-recursive-directory-watching.js │ │ ├── with-excludeDirectories-option.js │ │ ├── with-excludeFiles-option-extendedDiagnostics.js │ │ ├── with-excludeFiles-option.js │ │ ├── with-fallbackPolling-option.js │ │ ├── with-watchDirectory-option.js │ │ ├── with-watchFile-as-watch-options-to-extend.js │ │ └── with-watchFile-option.js │ ├── tsconfigExtendsPackageJsonExportsWildcard.errors.txt │ ├── tsconfigMapOptionsAreCaseInsensitive.errors.txt │ ├── tsconfigMapOptionsAreCaseInsensitive.js │ ├── tsconfigMapOptionsAreCaseInsensitive.symbols │ ├── tsconfigMapOptionsAreCaseInsensitive.types │ ├── tslibFindAllReferencesOnRuntimeImportWithPaths1.baseline.jsonc │ ├── tslibInJs.errors.txt │ ├── tslibInJs.symbols │ ├── tslibInJs.types │ ├── tslibMissingHelper.errors.txt │ ├── tslibMissingHelper.js │ ├── tslibMissingHelper.symbols │ ├── tslibMissingHelper.types │ ├── tslibMultipleMissingHelper.errors.txt │ ├── tslibMultipleMissingHelper.js │ ├── tslibMultipleMissingHelper.symbols │ ├── tslibMultipleMissingHelper.types │ ├── tslibNotFoundDifferentModules.errors.txt │ ├── tslibNotFoundDifferentModules.js │ ├── tslibNotFoundDifferentModules.symbols │ ├── tslibNotFoundDifferentModules.types │ ├── tslibReExportHelpers.js │ ├── tslibReExportHelpers.symbols │ ├── tslibReExportHelpers.types │ ├── tslibReExportHelpers2.js │ ├── tslibReExportHelpers2.symbols │ ├── tslibReExportHelpers2.types │ ├── tsserver/ │ │ ├── applyChangesToOpenFiles/ │ │ │ ├── with-applyChangedToOpenFiles-request.js │ │ │ └── with-updateOpen-request.js │ │ ├── autoImportProvider/ │ │ │ ├── Auto-importable-file-is-in-inferred-project-until-imported.js │ │ │ ├── Closes-AutoImportProviderProject-when-host-project-closes.js │ │ │ ├── Does-not-close-when-root-files-are-redirects-that-dont-actually-exist.js │ │ │ ├── Does-not-create-an-auto-import-provider-if-there-are-too-many-dependencies.js │ │ │ ├── Does-not-create-auto-import-providers-upon-opening-projects-for-find-all-references.js │ │ │ ├── Does-not-schedule-ensureProjectForOpenFiles-on-AutoImportProviderProject-creation.js │ │ │ ├── Recovers-from-an-unparseable-package_json.js │ │ │ ├── Responds-to-automatic-changes-in-node_modules.js │ │ │ ├── Responds-to-manual-changes-in-node_modules.js │ │ │ ├── Responds-to-package_json-changes.js │ │ │ ├── Reuses-autoImportProvider-when-program-structure-is-unchanged.js │ │ │ ├── Shared-source-files-between-AutoImportProvider-and-main-program.js │ │ │ ├── dependencies-are-already-in-main-program.js │ │ │ ├── projects-already-inside-node_modules.js │ │ │ └── without-dependencies-listed.js │ │ ├── auxiliaryProject/ │ │ │ ├── does-not-remove-scrips-from-InferredProject.js │ │ │ ├── file-is-added-later-through-finding-definition.js │ │ │ └── resolution-is-reused-from-different-folder.js │ │ ├── cachingFileSystemInformation/ │ │ │ ├── includes-the-parent-folder-FLLs-in-Classic-module-resolution-mode.js │ │ │ ├── includes-the-parent-folder-FLLs-in-Node-module-resolution-mode.js │ │ │ ├── loads-missing-files-from-disk.js │ │ │ ├── npm-install-works-when-timeout-occurs-after-installation.js │ │ │ ├── npm-install-works-when-timeout-occurs-inbetween-installation.js │ │ │ ├── watchDirectories-for-config-file-with-case-insensitive-file-system.js │ │ │ ├── watchDirectories-for-config-file-with-case-sensitive-file-system.js │ │ │ ├── when-calling-goto-definition-of-module.js │ │ │ ├── when-creating-new-file-in-symlinked-folder.js │ │ │ ├── when-node_modules-dont-receive-event-for-the-@types-file-addition.js │ │ │ └── works-using-legacy-resolution-logic.js │ │ ├── cancellationT/ │ │ │ ├── Geterr-is-cancellable.js │ │ │ ├── Lower-priority-tasks-are-cancellable.js │ │ │ └── is-attached-to-request.js │ │ ├── codeFix/ │ │ │ ├── install-package-when-serialized.js │ │ │ └── install-package.js │ │ ├── compileOnSave/ │ │ │ ├── CompileOnSaveAffectedFileListRequest-when-projectFile-is-not-specified.js │ │ │ ├── CompileOnSaveAffectedFileListRequest-when-projectFile-is-specified.js │ │ │ ├── compileOnSaveAffectedFileList-projectUsesOutFile-should-be-true-if-outFile-is-set.js │ │ │ ├── compileOnSaveAffectedFileList-projectUsesOutFile-should-not-be-returned-if-not-set.js │ │ │ ├── configProjects-all-projects-without-projectPath.js │ │ │ ├── configProjects-cascaded-affected-file-list.js │ │ │ ├── configProjects-circular-references.js │ │ │ ├── configProjects-compileOnSave-disabled.js │ │ │ ├── configProjects-compileOnSave-in-base-tsconfig.js │ │ │ ├── configProjects-detect-changes-in-non-root-files.js │ │ │ ├── configProjects-global-file-shape-changed.js │ │ │ ├── configProjects-isolatedModules.js │ │ │ ├── configProjects-module-shape-changed.js │ │ │ ├── configProjects-noEmit.js │ │ │ ├── configProjects-non-existing-code.js │ │ │ ├── configProjects-outFile.js │ │ │ ├── configProjects-removed-code.js │ │ │ ├── configProjects-uptodate-with-changes-in-non-open-files.js │ │ │ ├── configProjects-uptodate-with-deleted-files.js │ │ │ ├── configProjects-uptodate-with-new-files.js │ │ │ ├── configProjects-uptodate-with-reference-map-changes.js │ │ │ ├── dtsFileChange-in-global-file-with-composite.js │ │ │ ├── dtsFileChange-in-global-file-with-decorator-emit.js │ │ │ ├── dtsFileChange-in-global-file-with-dts-emit.js │ │ │ ├── dtsFileChange-in-global-file.js │ │ │ ├── dtsFileChange-in-module-file.js │ │ │ ├── emit-in-project-with-dts-emit.js │ │ │ ├── emit-in-project-with-module-with-dts-emit.js │ │ │ ├── emit-in-project-with-module.js │ │ │ ├── emit-in-project.js │ │ │ ├── emit-specified-file.js │ │ │ ├── emit-with-richRepsonse-as-false.js │ │ │ ├── emit-with-richRepsonse-as-true.js │ │ │ ├── emit-with-richRepsonse-as-undefined.js │ │ │ ├── line-endings.js │ │ │ ├── should-not-emit-js-files-in-external-projects.js │ │ │ └── use-projectRoot-as-current-directory.js │ │ ├── completions/ │ │ │ ├── in-project-reference-setup-with-path-mapping-with-existing-import-without-includeCompletionsForModuleExports.js │ │ │ ├── in-project-reference-setup-with-path-mapping-with-existing-import.js │ │ │ ├── in-project-reference-setup-with-path-mapping-without-includeCompletionsForModuleExports.js │ │ │ ├── in-project-reference-setup-with-path-mapping.js │ │ │ ├── in-project-where-there-are-no-imports-but-has-project-references-setup.js │ │ │ ├── works-when-files-are-included-from-two-different-drives-of-windows.js │ │ │ └── works.js │ │ ├── completionsIncomplete/ │ │ │ ├── ambient-module-specifier-resolutions-do-not-count-against-the-resolution-limit.js │ │ │ ├── resolves-more-when-available-from-module-specifier-cache-(1).js │ │ │ ├── resolves-more-when-available-from-module-specifier-cache-(2).js │ │ │ ├── works-for-transient-symbols-between-requests.js │ │ │ ├── works-with-PackageJsonAutoImportProvider.js │ │ │ └── works.js │ │ ├── configFileSearch/ │ │ │ ├── should-stop-at-projectRootPath-if-given.js │ │ │ ├── should-use-projectRootPath-when-searching-for-inferred-project-again-2.js │ │ │ ├── should-use-projectRootPath-when-searching-for-inferred-project-again.js │ │ │ ├── tsconfig-for-the-file-does-not-exist.js │ │ │ ├── tsconfig-for-the-file-exists.js │ │ │ ├── when-projectRootPath-is-not-present.js │ │ │ └── when-projectRootPath-is-present-but-file-is-not-from-project-root.js │ │ ├── configuredProjects/ │ │ │ ├── Open-ref-of-configured-project-when-open-file-gets-added-to-the-project-as-part-of-configured-file-update-buts-its-open-file-references-are-all-closed-when-the-update-happens.js │ │ │ ├── Open-ref-of-configured-project-when-open-file-gets-added-to-the-project-as-part-of-configured-file-update.js │ │ │ ├── add-and-then-remove-a-config-file-in-a-folder-with-loose-files.js │ │ │ ├── add-and-then-remove-a-config-file-when-parent-folder-has-config-file-and-file-from-first-config-is-not-open.js │ │ │ ├── add-and-then-remove-a-config-file-when-parent-folder-has-config-file.js │ │ │ ├── add-and-then-remove-a-config-file-with-sibling-jsconfig-file-and-file-from-first-config-is-not-open.js │ │ │ ├── add-and-then-remove-a-config-file-with-sibling-jsconfig-file.js │ │ │ ├── add-new-files-to-a-configured-project-without-file-list.js │ │ │ ├── can-correctly-update-configured-project-when-set-of-root-files-has-changed-(new-file-in-list-of-files).js │ │ │ ├── can-correctly-update-configured-project-when-set-of-root-files-has-changed-(new-file-on-disk).js │ │ │ ├── can-update-configured-project-when-set-of-root-files-was-not-changed.js │ │ │ ├── changed-module-resolution-reflected-when-specifying-files-list.js │ │ │ ├── create-configured-project-with-the-file-list.js │ │ │ ├── create-configured-project-without-file-list.js │ │ │ ├── creating-new-file-and-then-open-it-after-watcher-is-invoked,-ask-errors-on-it-after-old-one-without-file-being-in-config.js │ │ │ ├── creating-new-file-and-then-open-it-after-watcher-is-invoked,-ask-errors-on-it-after-old-one.js │ │ │ ├── creating-new-file-and-then-open-it-after-watcher-is-invoked,-ask-errors-on-it-before-old-one-without-file-being-in-config.js │ │ │ ├── creating-new-file-and-then-open-it-after-watcher-is-invoked,-ask-errors-on-it-before-old-one.js │ │ │ ├── creating-new-file-and-then-open-it-before-watcher-is-invoked,-ask-errors-on-it-after-old-one-without-file-being-in-config.js │ │ │ ├── creating-new-file-and-then-open-it-before-watcher-is-invoked,-ask-errors-on-it-after-old-one.js │ │ │ ├── creating-new-file-and-then-open-it-before-watcher-is-invoked,-ask-errors-on-it-before-old-one-without-file-being-in-config.js │ │ │ ├── creating-new-file-and-then-open-it-before-watcher-is-invoked,-ask-errors-on-it-before-old-one.js │ │ │ ├── failed-lookup-locations-uses-parent-most-node_modules-directory.js │ │ │ ├── files-are-properly-detached-when-language-service-is-disabled.js │ │ │ ├── files-explicitly-excluded-in-config-file.js │ │ │ ├── handle-recreated-files-correctly.js │ │ │ ├── open-file-become-a-part-of-configured-project-if-it-is-referenced-from-root-file.js │ │ │ ├── should-be-able-to-handle-@types-if-input-file-list-is-empty.js │ │ │ ├── should-be-tolerated-without-crashing-the-server-when-reading-tsconfig-file-fails.js │ │ │ ├── should-be-tolerated-without-crashing-the-server.js │ │ │ ├── should-ignore-non-existing-files-specified-in-the-config-file.js │ │ │ ├── should-keep-the-configured-project-when-the-opened-file-is-referenced-by-the-project-but-not-its-root.js │ │ │ ├── should-not-close-configured-project-after-closing-last-open-file,-but-should-be-closed-on-next-file-open-if-its-not-the-file-from-same-project.js │ │ │ ├── should-properly-handle-module-resolution-changes-in-config-file.js │ │ │ ├── should-reuse-same-project-if-file-is-opened-from-the-configured-project-that-has-no-open-files.js │ │ │ ├── should-stop-watching-the-extended-configs-of-closed-projects.js │ │ │ ├── should-tolerate-config-file-errors-and-still-try-to-build-a-project.js │ │ │ ├── should-tolerate-invalid-include-files-that-start-in-subDirectory.js │ │ │ ├── should-watch-the-extended-configs-of-multiple-projects.js │ │ │ ├── syntactic-features-work-even-if-language-service-is-disabled.js │ │ │ ├── when-default-configured-project-does-not-contain-the-file.js │ │ │ ├── when-file-name-starts-with-caret.js │ │ │ └── when-multiple-projects-are-open-detects-correct-default-project.js │ │ ├── declarationFileMaps/ │ │ │ ├── does-not-jump-to-source-if-inlined-sources.js │ │ │ ├── findAllReferences-starting-at-definition.js │ │ │ ├── findAllReferences-target-does-not-exist.js │ │ │ ├── findAllReferences.js │ │ │ ├── findAllReferencesFull-definition-is-in-mapped-file.js │ │ │ ├── findAllReferencesFull.js │ │ │ ├── getDefinitionAndBoundSpan-with-file-navigation.js │ │ │ ├── getDefinitionAndBoundSpan.js │ │ │ ├── getEditsForFileRename-when-referencing-project-doesnt-include-file-and-its-renamed.js │ │ │ ├── getEditsForFileRename.js │ │ │ ├── goToDefinition-target-does-not-exist.js │ │ │ ├── goToDefinition.js │ │ │ ├── goToImplementation.js │ │ │ ├── goToType.js │ │ │ ├── navigateTo.js │ │ │ ├── navigateToAll-file-is-not-specified-but-project-is.js │ │ │ ├── navigateToAll-neither-file-not-project-is-specified.js │ │ │ ├── renameLocations-starting-at-definition.js │ │ │ ├── renameLocations-target-does-not-exist.js │ │ │ ├── renameLocations.js │ │ │ └── renameLocationsFull.js │ │ ├── documentRegistry/ │ │ │ ├── Caches-the-source-file-if-script-info-is-orphan,-and-orphan-script-info-changes.js │ │ │ ├── Caches-the-source-file-if-script-info-is-orphan.js │ │ │ └── works-when-reusing-orphan-script-info-with-different-scriptKind.js │ │ ├── duplicatePackages/ │ │ │ └── works-with-import-fixes.js │ │ ├── dynamicFiles/ │ │ │ ├── chat-block-with-imports.js │ │ │ ├── dynamic-file-with-projectRootPath-fails-when-useInferredProjectPerProjectRoot-is-false.js │ │ │ ├── dynamic-file-with-projectRootPath-with-useInferredProjectPerProjectRoot.js │ │ │ ├── dynamic-file-with-reference-paths-without-external-project.js │ │ │ ├── dynamic-file-without-external-project.js │ │ │ ├── opening-and-closing-untitled-files-when-projectRootPath-is-different-from-currentDirectory.js │ │ │ ├── opening-untitled-files-without-inferred-project-per-projectRootPath.js │ │ │ ├── opening-untitled-files.js │ │ │ ├── untitled-can-convert-positions-to-locations.js │ │ │ ├── untitled.js │ │ │ ├── walkThroughSnippet.js │ │ │ └── when-changing-scriptKind-of-the-untitled-files.js │ │ ├── events/ │ │ │ ├── largeFileReferenced/ │ │ │ │ ├── when-large-js-file-is-included-by-module-resolution.js │ │ │ │ ├── when-large-js-file-is-included-by-tsconfig.js │ │ │ │ ├── when-large-ts-file-is-included-by-module-resolution.js │ │ │ │ └── when-large-ts-file-is-included-by-tsconfig.js │ │ │ ├── projectLanguageServiceState/ │ │ │ │ ├── language-service-disabled-events-are-triggered.js │ │ │ │ └── large-file-size-is-determined-correctly.js │ │ │ ├── projectLoading/ │ │ │ │ ├── change-is-detected-in-an-extended-config-file-when-using-default-event-handler.js │ │ │ │ ├── change-is-detected-in-an-extended-config-file-when-using-event-handler.js │ │ │ │ ├── change-is-detected-in-the-config-file-when-using-default-event-handler.js │ │ │ │ ├── change-is-detected-in-the-config-file-when-using-event-handler.js │ │ │ │ ├── lazyConfiguredProjectsFromExternalProject-is-disabled-when-using-default-event-handler.js │ │ │ │ ├── lazyConfiguredProjectsFromExternalProject-is-disabled-when-using-event-handler.js │ │ │ │ ├── lazyConfiguredProjectsFromExternalProject-is-false-when-using-default-event-handler.js │ │ │ │ ├── lazyConfiguredProjectsFromExternalProject-is-false-when-using-event-handler.js │ │ │ │ ├── lazyConfiguredProjectsFromExternalProject-is-true-and-file-is-opened-when-using-default-event-handler.js │ │ │ │ ├── lazyConfiguredProjectsFromExternalProject-is-true-and-file-is-opened-when-using-event-handler.js │ │ │ │ ├── opening-original-location-project-disableSourceOfProjectReferenceRedirect-when-using-default-event-handler.js │ │ │ │ ├── opening-original-location-project-disableSourceOfProjectReferenceRedirect-when-using-event-handler.js │ │ │ │ ├── opening-original-location-project-when-using-default-event-handler.js │ │ │ │ ├── opening-original-location-project-when-using-event-handler.js │ │ │ │ ├── project-is-created-by-open-file-when-using-default-event-handler.js │ │ │ │ └── project-is-created-by-open-file-when-using-event-handler.js │ │ │ ├── projectUpdatedInBackground/ │ │ │ │ ├── when-event-handler-is-set-in-the-session-and-project-is-at-root-level.js │ │ │ │ ├── when-event-handler-is-set-in-the-session-and-project-is-not-at-root-level.js │ │ │ │ ├── when-event-handler-is-set-in-the-session-and-should-always-return-the-file-itself-if---isolatedModules-is-specified.js │ │ │ │ ├── when-event-handler-is-set-in-the-session-and-should-always-return-the-file-itself-if---out-or---outFile-is-specified.js │ │ │ │ ├── when-event-handler-is-set-in-the-session-and-should-be-up-to-date-with-deleted-files.js │ │ │ │ ├── when-event-handler-is-set-in-the-session-and-should-be-up-to-date-with-newly-created-files.js │ │ │ │ ├── when-event-handler-is-set-in-the-session-and-should-be-up-to-date-with-the-reference-map-changes.js │ │ │ │ ├── when-event-handler-is-set-in-the-session-and-should-contains-only-itself.js │ │ │ │ ├── when-event-handler-is-set-in-the-session-and-should-detect-changes-in-non-root-files.js │ │ │ │ ├── when-event-handler-is-set-in-the-session-and-should-detect-non-existing-code-file.js │ │ │ │ ├── when-event-handler-is-set-in-the-session-and-should-detect-removed-code-file.js │ │ │ │ ├── when-event-handler-is-set-in-the-session-and-should-return-all-files-if-a-global-file-changed-shape.js │ │ │ │ ├── when-event-handler-is-set-in-the-session-and-should-return-cascaded-affected-file-list.js │ │ │ │ ├── when-event-handler-is-set-in-the-session-and-should-work-fine-for-files-with-circular-references.js │ │ │ │ ├── when-event-handler-is-set-in-the-session-and-when---outFile-is-set.js │ │ │ │ ├── when-event-handler-is-set-in-the-session-and-when-adding-new-file.js │ │ │ │ ├── when-event-handler-is-set-in-the-session-and-when-both-options-are-not-set.js │ │ │ │ ├── with-noGetErrOnBackgroundUpdate-and-project-is-at-root-level.js │ │ │ │ ├── with-noGetErrOnBackgroundUpdate-and-project-is-not-at-root-level.js │ │ │ │ ├── with-noGetErrOnBackgroundUpdate-and-should-always-return-the-file-itself-if---isolatedModules-is-specified.js │ │ │ │ ├── with-noGetErrOnBackgroundUpdate-and-should-always-return-the-file-itself-if---out-or---outFile-is-specified.js │ │ │ │ ├── with-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-deleted-files.js │ │ │ │ ├── with-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-newly-created-files.js │ │ │ │ ├── with-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-the-reference-map-changes.js │ │ │ │ ├── with-noGetErrOnBackgroundUpdate-and-should-contains-only-itself.js │ │ │ │ ├── with-noGetErrOnBackgroundUpdate-and-should-detect-changes-in-non-root-files.js │ │ │ │ ├── with-noGetErrOnBackgroundUpdate-and-should-detect-non-existing-code-file.js │ │ │ │ ├── with-noGetErrOnBackgroundUpdate-and-should-detect-removed-code-file.js │ │ │ │ ├── with-noGetErrOnBackgroundUpdate-and-should-return-all-files-if-a-global-file-changed-shape.js │ │ │ │ ├── with-noGetErrOnBackgroundUpdate-and-should-return-cascaded-affected-file-list.js │ │ │ │ ├── with-noGetErrOnBackgroundUpdate-and-should-work-fine-for-files-with-circular-references.js │ │ │ │ ├── with-noGetErrOnBackgroundUpdate-and-when---outFile-is-set.js │ │ │ │ ├── with-noGetErrOnBackgroundUpdate-and-when-adding-new-file.js │ │ │ │ ├── with-noGetErrOnBackgroundUpdate-and-when-both-options-are-not-set.js │ │ │ │ ├── without-noGetErrOnBackgroundUpdate-and-project-is-at-root-level.js │ │ │ │ ├── without-noGetErrOnBackgroundUpdate-and-project-is-not-at-root-level.js │ │ │ │ ├── without-noGetErrOnBackgroundUpdate-and-should-always-return-the-file-itself-if---isolatedModules-is-specified.js │ │ │ │ ├── without-noGetErrOnBackgroundUpdate-and-should-always-return-the-file-itself-if---out-or---outFile-is-specified.js │ │ │ │ ├── without-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-deleted-files.js │ │ │ │ ├── without-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-newly-created-files.js │ │ │ │ ├── without-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-the-reference-map-changes.js │ │ │ │ ├── without-noGetErrOnBackgroundUpdate-and-should-contains-only-itself.js │ │ │ │ ├── without-noGetErrOnBackgroundUpdate-and-should-detect-changes-in-non-root-files.js │ │ │ │ ├── without-noGetErrOnBackgroundUpdate-and-should-detect-non-existing-code-file.js │ │ │ │ ├── without-noGetErrOnBackgroundUpdate-and-should-detect-removed-code-file.js │ │ │ │ ├── without-noGetErrOnBackgroundUpdate-and-should-return-all-files-if-a-global-file-changed-shape.js │ │ │ │ ├── without-noGetErrOnBackgroundUpdate-and-should-return-cascaded-affected-file-list.js │ │ │ │ ├── without-noGetErrOnBackgroundUpdate-and-should-work-fine-for-files-with-circular-references.js │ │ │ │ ├── without-noGetErrOnBackgroundUpdate-and-when---outFile-is-set.js │ │ │ │ ├── without-noGetErrOnBackgroundUpdate-and-when-adding-new-file.js │ │ │ │ └── without-noGetErrOnBackgroundUpdate-and-when-both-options-are-not-set.js │ │ │ └── watchEvents/ │ │ │ ├── canUseWatchEvents-on-windows.js │ │ │ ├── canUseWatchEvents-without-canUseEvents.js │ │ │ └── canUseWatchEvents.js │ │ ├── exportMapCache/ │ │ │ ├── caches-auto-imports-in-the-same-file.js │ │ │ ├── does-not-invalidate-the-cache-when-package.json-is-changed-inconsequentially.js │ │ │ ├── does-not-invalidate-the-cache-when-referenced-project-changes-inconsequentially-referencedInProject.js │ │ │ ├── does-not-invalidate-the-cache-when-referenced-project-changes-inconsequentially.js │ │ │ ├── does-not-store-transient-symbols-through-program-updates.js │ │ │ ├── invalidates-the-cache-when-a-file-is-opened-with-different-contents.js │ │ │ ├── invalidates-the-cache-when-files-are-deleted.js │ │ │ ├── invalidates-the-cache-when-new-files-are-added.js │ │ │ ├── invalidates-the-cache-when-package.json-change-results-in-AutoImportProvider-change.js │ │ │ ├── invalidates-the-cache-when-referenced-project-changes-signatures-referencedInProject.js │ │ │ └── invalidates-the-cache-when-referenced-project-changes-signatures.js │ │ ├── extends/ │ │ │ ├── configDir-template.js │ │ │ └── resolves-the-symlink-path.js │ │ ├── externalProjects/ │ │ │ ├── can-correctly-update-external-project-when-set-of-root-files-has-changed.js │ │ │ ├── can-handle-tsconfig-file-name-with-difference-casing-with-lazyConfiguredProjectsFromExternalProject.js │ │ │ ├── can-handle-tsconfig-file-name-with-difference-casing.js │ │ │ ├── can-update-external-project-when-set-of-root-files-was-not-changed.js │ │ │ ├── correctly-handles-changes-in-lib-section-of-config-file.js │ │ │ ├── correctly-handling-add-or-remove-tsconfig---1-with-lazyConfiguredProjectsFromExternalProject.js │ │ │ ├── correctly-handling-add-or-remove-tsconfig---1.js │ │ │ ├── correctly-handling-add-or-remove-tsconfig---2-with-lazyConfiguredProjectsFromExternalProject.js │ │ │ ├── correctly-handling-add-or-remove-tsconfig---2.js │ │ │ ├── deleting-config-file-opened-from-the-external-project-works-with-lazyConfiguredProjectsFromExternalProject.js │ │ │ ├── deleting-config-file-opened-from-the-external-project-works.js │ │ │ ├── does-not-crash-if-external-file-does-not-exist.js │ │ │ ├── external-project-for-dynamic-file.js │ │ │ ├── external-project-that-included-config-files.js │ │ │ ├── external-project-with-included-config-file-opened-after-configured-project-and-then-closed.js │ │ │ ├── external-project-with-included-config-file-opened-after-configured-project.js │ │ │ ├── handles-creation-of-external-project-with-jsconfig-before-jsconfig-creation-watcher-is-invoked.js │ │ │ ├── handles-loads-existing-configured-projects-of-external-projects-when-lazyConfiguredProjectsFromExternalProject-is-disabled.js │ │ │ ├── language-service-disabled-state-is-updated-in-external-projects.js │ │ │ ├── load-global-plugins.js │ │ │ ├── remove-not-listed-external-projects.js │ │ │ ├── should-handle-non-existing-directories-in-config-file.js │ │ │ ├── should-not-close-external-project-with-no-open-files.js │ │ │ └── when-file-name-starts-with-caret.js │ │ ├── findAllReferences/ │ │ │ └── does-not-try-to-open-a-file-in-a-project-that-was-updated-and-no-longer-has-the-file.js │ │ ├── forceConsistentCasingInFileNames/ │ │ │ ├── when-both-directory-symlink-target-and-import-match-disk-with-link-open.js │ │ │ ├── when-both-directory-symlink-target-and-import-match-disk-with-target-and-link-open.js │ │ │ ├── when-both-directory-symlink-target-and-import-match-disk-with-target-open.js │ │ │ ├── when-both-directory-symlink-target-and-import-match-disk.js │ │ │ ├── when-both-file-symlink-target-and-import-match-disk-with-link-open.js │ │ │ ├── when-both-file-symlink-target-and-import-match-disk-with-target-and-link-open.js │ │ │ ├── when-both-file-symlink-target-and-import-match-disk-with-target-open.js │ │ │ ├── when-both-file-symlink-target-and-import-match-disk.js │ │ │ ├── when-changing-module-name-with-different-casing.js │ │ │ ├── when-directory-symlink-target-matches-disk-but-import-does-not-with-link-open.js │ │ │ ├── when-directory-symlink-target-matches-disk-but-import-does-not-with-target-and-link-open.js │ │ │ ├── when-directory-symlink-target-matches-disk-but-import-does-not-with-target-open.js │ │ │ ├── when-directory-symlink-target-matches-disk-but-import-does-not.js │ │ │ ├── when-file-is-included-from-multiple-places-with-different-casing.js │ │ │ ├── when-file-symlink-target-matches-disk-but-import-does-not-with-link-open.js │ │ │ ├── when-file-symlink-target-matches-disk-but-import-does-not-with-target-and-link-open.js │ │ │ ├── when-file-symlink-target-matches-disk-but-import-does-not-with-target-open.js │ │ │ ├── when-file-symlink-target-matches-disk-but-import-does-not.js │ │ │ ├── when-import,-directory-symlink-target,-and-disk-are-all-different-with-link-open.js │ │ │ ├── when-import,-directory-symlink-target,-and-disk-are-all-different-with-target-and-link-open.js │ │ │ ├── when-import,-directory-symlink-target,-and-disk-are-all-different-with-target-open.js │ │ │ ├── when-import,-directory-symlink-target,-and-disk-are-all-different.js │ │ │ ├── when-import,-file-symlink-target,-and-disk-are-all-different-with-link-open.js │ │ │ ├── when-import,-file-symlink-target,-and-disk-are-all-different-with-target-and-link-open.js │ │ │ ├── when-import,-file-symlink-target,-and-disk-are-all-different-with-target-open.js │ │ │ ├── when-import,-file-symlink-target,-and-disk-are-all-different.js │ │ │ ├── when-import-and-directory-symlink-target-agree-but-do-not-match-disk-with-link-open.js │ │ │ ├── when-import-and-directory-symlink-target-agree-but-do-not-match-disk-with-target-and-link-open.js │ │ │ ├── when-import-and-directory-symlink-target-agree-but-do-not-match-disk-with-target-open.js │ │ │ ├── when-import-and-directory-symlink-target-agree-but-do-not-match-disk.js │ │ │ ├── when-import-and-file-symlink-target-agree-but-do-not-match-disk-with-link-open.js │ │ │ ├── when-import-and-file-symlink-target-agree-but-do-not-match-disk-with-target-and-link-open.js │ │ │ ├── when-import-and-file-symlink-target-agree-but-do-not-match-disk-with-target-open.js │ │ │ ├── when-import-and-file-symlink-target-agree-but-do-not-match-disk.js │ │ │ ├── when-import-matches-disk-but-directory-symlink-target-does-not-with-link-open.js │ │ │ ├── when-import-matches-disk-but-directory-symlink-target-does-not-with-target-and-link-open.js │ │ │ ├── when-import-matches-disk-but-directory-symlink-target-does-not-with-target-open.js │ │ │ ├── when-import-matches-disk-but-directory-symlink-target-does-not.js │ │ │ ├── when-import-matches-disk-but-file-symlink-target-does-not-with-link-open.js │ │ │ ├── when-import-matches-disk-but-file-symlink-target-does-not-with-target-and-link-open.js │ │ │ ├── when-import-matches-disk-but-file-symlink-target-does-not-with-target-open.js │ │ │ ├── when-import-matches-disk-but-file-symlink-target-does-not.js │ │ │ ├── works-when-extends-is-specified-with-a-case-insensitive-file-system.js │ │ │ └── works-when-renaming-file-with-different-casing.js │ │ ├── formatSettings/ │ │ │ └── works-when-extends-is-specified-with-a-case-insensitive-file-system.js │ │ ├── fourslashServer/ │ │ │ ├── autoImportCrossPackage_pathsAndSymlink.js │ │ │ ├── autoImportCrossProject_baseUrl_toDist.js │ │ │ ├── autoImportCrossProject_paths_sharedOutDir.js │ │ │ ├── autoImportCrossProject_paths_stripSrc.js │ │ │ ├── autoImportCrossProject_paths_toDist.js │ │ │ ├── autoImportCrossProject_paths_toDist2.js │ │ │ ├── autoImportCrossProject_paths_toSrc.js │ │ │ ├── autoImportCrossProject_symlinks_stripSrc.js │ │ │ ├── autoImportCrossProject_symlinks_toDist.js │ │ │ ├── autoImportCrossProject_symlinks_toSrc.js │ │ │ ├── autoImportFileExcludePatterns1.js │ │ │ ├── autoImportFileExcludePatterns2.js │ │ │ ├── autoImportFileExcludePatterns_networkPaths.js │ │ │ ├── autoImportFileExcludePatterns_symlinks.js │ │ │ ├── autoImportFileExcludePatterns_symlinks2.js │ │ │ ├── autoImportFileExcludePatterns_windowsPaths.js │ │ │ ├── autoImportNodeModuleSymlinkRenamed.js │ │ │ ├── autoImportPackageJsonFilterExistingImport1.js │ │ │ ├── autoImportPackageJsonFilterExistingImport2.js │ │ │ ├── autoImportPackageJsonFilterExistingImport3.js │ │ │ ├── autoImportProvider1.js │ │ │ ├── autoImportProvider2.js │ │ │ ├── autoImportProvider3.js │ │ │ ├── autoImportProvider4.js │ │ │ ├── autoImportProvider5.js │ │ │ ├── autoImportProvider6.js │ │ │ ├── autoImportProvider7.js │ │ │ ├── autoImportProvider8.js │ │ │ ├── autoImportProvider9.js │ │ │ ├── autoImportProvider_exportMap1.js │ │ │ ├── autoImportProvider_exportMap2.js │ │ │ ├── autoImportProvider_exportMap3.js │ │ │ ├── autoImportProvider_exportMap4.js │ │ │ ├── autoImportProvider_exportMap5.js │ │ │ ├── autoImportProvider_exportMap6.js │ │ │ ├── autoImportProvider_exportMap7.js │ │ │ ├── autoImportProvider_exportMap8.js │ │ │ ├── autoImportProvider_exportMap9.js │ │ │ ├── autoImportProvider_globalTypingsCache.js │ │ │ ├── autoImportProvider_importsMap1.js │ │ │ ├── autoImportProvider_importsMap2.js │ │ │ ├── autoImportProvider_importsMap3.js │ │ │ ├── autoImportProvider_importsMap4.js │ │ │ ├── autoImportProvider_importsMap5.js │ │ │ ├── autoImportProvider_namespaceSameNameAsIntrinsic.js │ │ │ ├── autoImportProvider_pnpm.js │ │ │ ├── autoImportProvider_referencesCrash.js │ │ │ ├── autoImportProvider_wildcardExports1.js │ │ │ ├── autoImportProvider_wildcardExports2.js │ │ │ ├── autoImportProvider_wildcardExports3.js │ │ │ ├── autoImportReExportFromAmbientModule.js │ │ │ ├── autoImportRelativePathToMonorepoPackage.js │ │ │ ├── autoImportSymlinkedJsPackages.js │ │ │ ├── brace01.js │ │ │ ├── callHierarchyContainerNameServer.js │ │ │ ├── completionEntryDetailAcrossFiles01.js │ │ │ ├── completionEntryDetailAcrossFiles02.js │ │ │ ├── completions01.js │ │ │ ├── completions02.js │ │ │ ├── completions03.js │ │ │ ├── completionsImport_addToNamedWithDifferentCacheValue.js │ │ │ ├── completionsImport_computedSymbolName.js │ │ │ ├── completionsImport_defaultAndNamedConflict_server.js │ │ │ ├── completionsImport_jsModuleExportsAssignment.js │ │ │ ├── completionsImport_mergedReExport.js │ │ │ ├── completionsImport_sortingModuleSpecifiers.js │ │ │ ├── completionsOverridingMethodCrash2.js │ │ │ ├── completionsServerCommitCharacters.js │ │ │ ├── configurePlugin.js │ │ │ ├── convertFunctionToEs6Class-server1.js │ │ │ ├── convertFunctionToEs6Class-server2.js │ │ │ ├── declarationMapGoToDefinition.js │ │ │ ├── declarationMapsEnableMapping_NoInline.js │ │ │ ├── declarationMapsEnableMapping_NoInlineSources.js │ │ │ ├── declarationMapsGeneratedMapsEnableMapping.js │ │ │ ├── declarationMapsGeneratedMapsEnableMapping2.js │ │ │ ├── declarationMapsGeneratedMapsEnableMapping3.js │ │ │ ├── declarationMapsGoToDefinitionRelativeSourceRoot.js │ │ │ ├── declarationMapsGoToDefinitionSameNameDifferentDirectory.js │ │ │ ├── declarationMapsOutOfDateMapping.js │ │ │ ├── definition01.js │ │ │ ├── documentHighlights01.js │ │ │ ├── documentHighlights02.js │ │ │ ├── documentHighlightsTypeParameterInHeritageClause01.js │ │ │ ├── fixExtractToInnerFunctionDuplicaton.js │ │ │ ├── format01.js │ │ │ ├── formatBracketInSwitchCase.js │ │ │ ├── formatOnEnter.js │ │ │ ├── formatSpaceBetweenFunctionAndArrayIndex.js │ │ │ ├── formatTrimRemainingRange.js │ │ │ ├── formatonkey01.js │ │ │ ├── getFileReferences_deduplicate.js │ │ │ ├── getFileReferences_server1.js │ │ │ ├── getFileReferences_server2.js │ │ │ ├── getJavaScriptSyntacticDiagnostics01.js │ │ │ ├── getJavaScriptSyntacticDiagnostics02.js │ │ │ ├── getOutliningSpansForComments.js │ │ │ ├── getOutliningSpansForRegions.js │ │ │ ├── getOutliningSpansForRegionsNoSingleLineFolds.js │ │ │ ├── goToDefinitionScriptImportServer.js │ │ │ ├── goToImplementation_inDifferentFiles.js │ │ │ ├── goToSource10_mapFromAtTypes3.js │ │ │ ├── goToSource11_propertyOfAlias.js │ │ │ ├── goToSource12_callbackParam.js │ │ │ ├── goToSource13_nodenext.js │ │ │ ├── goToSource14_unresolvedRequireDestructuring.js │ │ │ ├── goToSource15_bundler.js │ │ │ ├── goToSource16_callbackParamDifferentFile.js │ │ │ ├── goToSource17_AddsFileToProject.js │ │ │ ├── goToSource18_reusedFromDifferentFolder.js │ │ │ ├── goToSource1_localJsBesideDts.js │ │ │ ├── goToSource2_nodeModulesWithTypes.js │ │ │ ├── goToSource3_nodeModulesAtTypes.js │ │ │ ├── goToSource5_sameAsGoToDef1.js │ │ │ ├── goToSource6_sameAsGoToDef2.js │ │ │ ├── goToSource7_conditionallyMinified.js │ │ │ ├── goToSource8_mapFromAtTypes.js │ │ │ ├── goToSource9_mapFromAtTypes2.js │ │ │ ├── implementation01.js │ │ │ ├── impliedNodeFormat.js │ │ │ ├── importCompletions_importsMap1.js │ │ │ ├── importCompletions_importsMap2.js │ │ │ ├── importCompletions_importsMap3.js │ │ │ ├── importCompletions_importsMap4.js │ │ │ ├── importCompletions_importsMap5.js │ │ │ ├── importFixes_ambientCircularDefaultCrash.js │ │ │ ├── importNameCodeFix_externalNonRelateive2.js │ │ │ ├── importNameCodeFix_externalNonRelative1.js │ │ │ ├── importNameCodeFix_pnpm1.js │ │ │ ├── importStatementCompletions_pnpm1.js │ │ │ ├── importStatementCompletions_pnpmTransitive.js │ │ │ ├── importSuggestionsCache_ambient.js │ │ │ ├── importSuggestionsCache_coreNodeModules.js │ │ │ ├── importSuggestionsCache_exportUndefined.js │ │ │ ├── importSuggestionsCache_invalidPackageJson.js │ │ │ ├── importSuggestionsCache_moduleAugmentation.js │ │ │ ├── isDefinitionAcrossGlobalProjects.js │ │ │ ├── isDefinitionAcrossModuleProjects.js │ │ │ ├── jsdocCallbackTag.js │ │ │ ├── jsdocCallbackTagNavigateTo.js │ │ │ ├── jsdocCallbackTagRename01.js │ │ │ ├── jsdocParamTagSpecialKeywords.js │ │ │ ├── jsdocTypedefTag.js │ │ │ ├── jsdocTypedefTag1.js │ │ │ ├── jsdocTypedefTag2.js │ │ │ ├── jsdocTypedefTagGoToDefinition.js │ │ │ ├── jsdocTypedefTagNamespace.js │ │ │ ├── jsdocTypedefTagNavigateTo.js │ │ │ ├── jsdocTypedefTagRename01.js │ │ │ ├── jsdocTypedefTagRename02.js │ │ │ ├── jsdocTypedefTagRename03.js │ │ │ ├── jsdocTypedefTagRename04.js │ │ │ ├── moveToFile_emptyTargetFile.js │ │ │ ├── navbar01.js │ │ │ ├── navto01.js │ │ │ ├── navto_serverExcludeLib.js │ │ │ ├── ngProxy1.js │ │ │ ├── ngProxy2.js │ │ │ ├── ngProxy3.js │ │ │ ├── ngProxy4.js │ │ │ ├── nodeNextModuleKindCaching1.js │ │ │ ├── nodeNextPathCompletions.js │ │ │ ├── nonJsDeclarationFilePathCompletions.js │ │ │ ├── occurrences01.js │ │ │ ├── occurrences02.js │ │ │ ├── openFile.js │ │ │ ├── openFileWithSyntaxKind.js │ │ │ ├── packageJsonImportsFailedLookups.js │ │ │ ├── pasteEdits_addInNextLine.js │ │ │ ├── pasteEdits_blankTargetFile.js │ │ │ ├── pasteEdits_defaultExport1.js │ │ │ ├── pasteEdits_defaultExport2.js │ │ │ ├── pasteEdits_defaultImport.js │ │ │ ├── pasteEdits_existingImports1.js │ │ │ ├── pasteEdits_existingImports2.js │ │ │ ├── pasteEdits_globalAndLocal1.js │ │ │ ├── pasteEdits_globalAndLocal2.js │ │ │ ├── pasteEdits_knownSourceFile.js │ │ │ ├── pasteEdits_multiplePastes1.js │ │ │ ├── pasteEdits_multiplePastes2.js │ │ │ ├── pasteEdits_multiplePastes3.js │ │ │ ├── pasteEdits_multiplePastes4.js │ │ │ ├── pasteEdits_multiplePastesConsistentlyLargerInSize.js │ │ │ ├── pasteEdits_multiplePastesConsistentlySmallerInSize.js │ │ │ ├── pasteEdits_multiplePastesEqualInSize.js │ │ │ ├── pasteEdits_multiplePastesGrowingAndShrinkingInSize.js │ │ │ ├── pasteEdits_multiplePastesGrowingInSize.js │ │ │ ├── pasteEdits_multiplePastesShrinkingInSize.js │ │ │ ├── pasteEdits_namespaceImport.js │ │ │ ├── pasteEdits_noImportNeeded.js │ │ │ ├── pasteEdits_noImportNeededInUpdatedProgram.js │ │ │ ├── pasteEdits_pasteComments.js │ │ │ ├── pasteEdits_pasteIntoSameFile.js │ │ │ ├── pasteEdits_rangeSelection0.js │ │ │ ├── pasteEdits_rangeSelection1.js │ │ │ ├── pasteEdits_rangeSelection2.js │ │ │ ├── pasteEdits_rangeSelection3.js │ │ │ ├── pasteEdits_rangeSelection4.js │ │ │ ├── pasteEdits_rangeSelection5.js │ │ │ ├── pasteEdits_rangeSelection6.js │ │ │ ├── pasteEdits_rangeSelection7.js │ │ │ ├── pasteEdits_rangeSelection8.js │ │ │ ├── pasteEdits_rangeSelection9.js │ │ │ ├── pasteEdits_requireImportJsx.js │ │ │ ├── pasteEdits_revertUpdatedFile.js │ │ │ ├── pasteEdits_unknownSourceFile.js │ │ │ ├── pathCompletionsPackageJsonImportsSrcNoDistWildcard1.js │ │ │ ├── pathCompletionsPackageJsonImportsSrcNoDistWildcard2.js │ │ │ ├── pathCompletionsPackageJsonImportsSrcNoDistWildcard3.js │ │ │ ├── pathCompletionsPackageJsonImportsSrcNoDistWildcard4.js │ │ │ ├── pathCompletionsPackageJsonImportsSrcNoDistWildcard5.js │ │ │ ├── pathCompletionsPackageJsonImportsSrcNoDistWildcard6.js │ │ │ ├── pathCompletionsPackageJsonImportsSrcNoDistWildcard7.js │ │ │ ├── pathCompletionsPackageJsonImportsSrcNoDistWildcard8.js │ │ │ ├── pathCompletionsPackageJsonImportsSrcNoDistWildcard9.js │ │ │ ├── projectInfo01.js │ │ │ ├── projectInfo02.js │ │ │ ├── projectWithNonExistentFiles.js │ │ │ ├── quickinfo01.js │ │ │ ├── quickinfoVerbosityServer.js │ │ │ ├── quickinfoWrongComment.js │ │ │ ├── referenceToEmptyObject.js │ │ │ ├── references01.js │ │ │ ├── referencesInConfiguredProject.js │ │ │ ├── referencesInEmptyFile.js │ │ │ ├── referencesInEmptyFileWithMultipleProjects.js │ │ │ ├── referencesInStringLiteralValueWithMultipleProjects.js │ │ │ ├── referencesToNonPropertyNameStringLiteral.js │ │ │ ├── referencesToStringLiteralValue.js │ │ │ ├── rename01.js │ │ │ ├── renameInConfiguredProject.js │ │ │ ├── renameNamedImport.js │ │ │ ├── renameNamespaceImport.js │ │ │ ├── rewriteRelativeImportExtensionsProjectReferences1.js │ │ │ ├── rewriteRelativeImportExtensionsProjectReferences2.js │ │ │ ├── rewriteRelativeImportExtensionsProjectReferences3.js │ │ │ ├── semanticClassificationJs1.js │ │ │ ├── signatureHelp01.js │ │ │ ├── signatureHelpJSDocCallbackTag.js │ │ │ ├── tripleSlashReferenceResolutionMode.js │ │ │ ├── tsconfigComputedPropertyError.js │ │ │ ├── tsxIncrementalServer.js │ │ │ ├── typeReferenceOnServer.js │ │ │ └── typedefinition01.js │ │ ├── getApplicableRefactors/ │ │ │ ├── returns-the-affected-range-of-text-for-'move-to-file'-and-'move-to-new-file'-refactors.js │ │ │ ├── returns-the-affected-range-of-text-for-extract-symbol-refactor.js │ │ │ ├── returns-the-affected-range-of-text-for-extract-type-refactor.js │ │ │ └── works-when-taking-position.js │ │ ├── getEditsForFileRename/ │ │ │ ├── works-when-moving-file-to-and-from-folder-canUseWatchEvents.js │ │ │ ├── works-when-moving-file-to-and-from-folder.js │ │ │ ├── works-with-file-moved-to-inferred-project.js │ │ │ ├── works-with-multiple-projects.js │ │ │ ├── works-with-when-file-is-opened-after-seeing-file-existance-on-the-disk-with-updateOpen.js │ │ │ ├── works-with-when-file-is-opened-after-seeing-file-existance-on-the-disk.js │ │ │ ├── works-with-when-file-is-opened-before-seeing-file-existance-on-the-disk-closed-before-change-with-updateOpen.js │ │ │ ├── works-with-when-file-is-opened-before-seeing-file-existance-on-the-disk-closed-before-change.js │ │ │ ├── works-with-when-file-is-opened-before-seeing-file-existance-on-the-disk-with-updateOpen.js │ │ │ └── works-with-when-file-is-opened-before-seeing-file-existance-on-the-disk.js │ │ ├── getExportReferences/ │ │ │ ├── array-destructuring-declaration.js │ │ │ ├── const-variable-declaration.js │ │ │ ├── nested-object-declaration.js │ │ │ ├── object-declaration-references-that-renames-destructured-property.js │ │ │ └── object-destructuring-declaration.js │ │ ├── getFileReferences/ │ │ │ ├── should-get-file-references.js │ │ │ └── should-skip-lineText-from-file-references.js │ │ ├── getMoveToRefactoringFileSuggestions/ │ │ │ ├── should-show-js-files-when-moving-non-jsx-content-from-jsx-file.js │ │ │ ├── should-show-ts-files-when-moving-non-tsx-content-from-tsx-file.js │ │ │ ├── skips-lib.d.ts-files.js │ │ │ ├── suggests-only-.js-file-for-a-.js-filepath.js │ │ │ ├── suggests-only-.ts-file-for-a-.ts-filepath.js │ │ │ └── works-for-suggesting-a-list-of-files,-excluding-node_modules-within-a-project.js │ │ ├── goToDefinition/ │ │ │ ├── does-not-issue-errors-on-jsdoc-in-TS.js │ │ │ └── does-not-issue-errors-on-jsdoc-in-TS2.js │ │ ├── importHelpers/ │ │ │ ├── import-helpers-successfully.js │ │ │ └── should-not-crash-in-tsserver.js │ │ ├── inconsistentErrorInEditor/ │ │ │ ├── should-not-error-2.js │ │ │ └── should-not-error.js │ │ ├── inferredProjects/ │ │ │ ├── Setting-compiler-options-for-inferred-projects-when-there-are-no-open-files-should-not-schedule-any-refresh.js │ │ │ ├── closing-file-with-shared-resolutions.js │ │ │ ├── create-inferred-project.js │ │ │ ├── disable-inferred-project.js │ │ │ ├── inferred-projects-per-project-root-with-case-insensitive-system.js │ │ │ ├── inferred-projects-per-project-root-with-case-sensitive-system.js │ │ │ ├── inferred-projects-per-project-root.js │ │ │ ├── project-settings-for-inferred-projects.js │ │ │ ├── regression-test---should-infer-typeAcquisition-for-inferred-projects-when-set-undefined.js │ │ │ ├── should-still-retain-configured-project-created-while-opening-the-file.js │ │ │ ├── should-support-files-without-extensions.js │ │ │ ├── should-use-only-one-inferred-project-if-useOneInferredProject-is-set.js │ │ │ └── when-existing-inferred-project-has-no-root-files.js │ │ ├── inlayHints/ │ │ │ └── with-updateOpen-request-does-not-corrupt-documents.js │ │ ├── jsdocTag/ │ │ │ ├── for-completions,-should-provide-a-string-for-a-working-link-in-a-comment.js │ │ │ ├── for-completions,-should-provide-display-parts-for-a-working-link-in-a-comment.js │ │ │ ├── for-completions-full,-should-provide-a-string-for-a-working-link-in-a-comment.js │ │ │ ├── for-completions-full,-should-provide-display-parts-for-a-working-link-in-a-comment.js │ │ │ ├── for-quickinfo,-should-provide-a-string-for-a-working-link-in-a-comment.js │ │ │ ├── for-quickinfo,-should-provide-a-string-for-a-working-link-in-a-tag.js │ │ │ ├── for-quickinfo,-should-provide-display-parts-for-a-working-link-in-a-comment.js │ │ │ ├── for-quickinfo,-should-provide-display-parts-plus-a-span-for-a-working-link-in-a-tag.js │ │ │ ├── for-quickinfo-full,-should-provide-a-string-for-a-working-link-in-a-comment.js │ │ │ ├── for-quickinfo-full,-should-provide-a-string-for-a-working-link-in-a-tag.js │ │ │ ├── for-quickinfo-full,-should-provide-display-parts-plus-a-span-for-a-working-link-in-a-comment.js │ │ │ ├── for-quickinfo-full,-should-provide-display-parts-plus-a-span-for-a-working-link-in-a-tag.js │ │ │ ├── for-signature-help,-should-provide-a-string-for-a-working-link-in-a-comment.js │ │ │ ├── for-signature-help,-should-provide-display-parts-for-a-working-link-in-a-comment.js │ │ │ ├── for-signature-help-full,-should-provide-a-string-for-a-working-link-in-a-comment.js │ │ │ └── for-signature-help-full,-should-provide-display-parts-for-a-working-link-in-a-comment.js │ │ ├── languageService/ │ │ │ ├── should-support-multiple-projects-with-the-same-file-under-differing-paths-settings.js │ │ │ └── should-work-correctly-on-case-sensitive-file-systems.js │ │ ├── libraryResolution/ │ │ │ ├── with-config-with-redirection.js │ │ │ └── with-config.js │ │ ├── maxNodeModuleJsDepth/ │ │ │ ├── handles-resolutions-when-currentNodeModulesDepth-changes-when-referencing-file-from-another-file.js │ │ │ ├── should-be-set-to-2-if-the-project-has-js-root-files.js │ │ │ └── should-return-to-normal-state-when-all-js-root-files-are-removed-from-project.js │ │ ├── metadataInResponse/ │ │ │ ├── can-pass-through-metadata-when-the-command-returns-array.js │ │ │ ├── can-pass-through-metadata-when-the-command-returns-object.js │ │ │ └── returns-undefined-correctly.js │ │ ├── moduleResolution/ │ │ │ ├── alternateResult.js │ │ │ ├── package-json-file-is-edited-when-package-json-with-type-module-exists.js │ │ │ ├── package-json-file-is-edited.js │ │ │ ├── using-referenced-project-built.js │ │ │ └── using-referenced-project.js │ │ ├── moduleSpecifierCache/ │ │ │ ├── caches-importability-within-a-file.js │ │ │ ├── caches-module-specifiers-within-a-file.js │ │ │ ├── does-not-invalidate-the-cache-when-new-files-are-added.js │ │ │ ├── invalidates-module-specifiers-when-changes-happen-in-contained-node_modules-directories.js │ │ │ ├── invalidates-the-cache-when-local-packageJson-changes.js │ │ │ ├── invalidates-the-cache-when-module-resolution-settings-change.js │ │ │ ├── invalidates-the-cache-when-symlinks-are-added-or-removed.js │ │ │ └── invalidates-the-cache-when-user-preferences-change.js │ │ ├── navTo/ │ │ │ ├── should-de-duplicate-symbols-when-searching-all-projects.js │ │ │ ├── should-de-duplicate-symbols.js │ │ │ ├── should-not-include-type-symbols.js │ │ │ └── should-work-with-Deprecated.js │ │ ├── occurences/ │ │ │ └── should-be-marked-if-only-on-string-values.js │ │ ├── openfile/ │ │ │ ├── can-open-same-file-again.js │ │ │ ├── different-content-refreshes-sourceFile.js │ │ │ ├── does-not-refresh-sourceFile.js │ │ │ ├── edits-on-file-and-then-close-does-not-refresh-sourceFile-if-contents-match.js │ │ │ ├── edits-on-file-and-then-close-refreshes-sourceFile.js │ │ │ ├── project-root-is-used-with-case-insensitive-system.js │ │ │ ├── project-root-is-used-with-case-sensitive-system.js │ │ │ ├── realoaded-with-empty-content.js │ │ │ ├── uses-existing-project-even-if-project-refresh-is-pending.js │ │ │ └── when-file-makes-edits-to-add/ │ │ │ └── remove-comment-directives,-they-are-handled-correcrly.js │ │ ├── packageJsonInfo/ │ │ │ ├── detects-new-package.json-files-that-are-added,-caches-them,-and-watches-them.js │ │ │ ├── finds-multiple-package.json-files-when-present.js │ │ │ ├── finds-package.json-on-demand,-watches-for-deletion,-and-removes-them-from-cache.js │ │ │ ├── handles-empty-package.json.js │ │ │ └── handles-errors-in-json-parsing-of-package.json.js │ │ ├── partialSemanticServer/ │ │ │ ├── files-are-added-to-inferred-project.js │ │ │ ├── should-not-crash-when-external-module-name-resolution-is-reused.js │ │ │ ├── should-not-create-autoImportProvider-or-handle-package-jsons.js │ │ │ ├── should-not-include-auto-type-reference-directives.js │ │ │ ├── should-not-include-referenced-files-from-unopened-files.js │ │ │ ├── should-support-go-to-definition-on-module-specifiers.js │ │ │ ├── syntactic-diagnostics-are-returned-with-no-error.js │ │ │ └── throws-unsupported-commands.js │ │ ├── pasteEdits/ │ │ │ ├── adds-paste-edits.js │ │ │ └── should-not-error.js │ │ ├── plugins/ │ │ │ ├── With-global-plugins.js │ │ │ ├── With-local-plugins.js │ │ │ ├── With-session-and-custom-protocol-message.js │ │ │ ├── getSupportedCodeFixes-can-be-proxied.js │ │ │ ├── gets-external-files-with-config-file-reload.js │ │ │ ├── new-files-with-non-ts-extensions-with-wildcard-matching.js │ │ │ ├── when-plugins-use-LS-to-get-program-and-update-is-pending.js │ │ │ └── when-scriptKind-changes-for-the-external-file.js │ │ ├── pluginsAsync/ │ │ │ ├── adds-external-files.js │ │ │ ├── plugins-are-not-loaded-immediately.js │ │ │ ├── plugins-evaluation-in-correct-order-even-if-imports-resolve-out-of-order.js │ │ │ ├── project-is-closed-before-plugins-are-loaded.js │ │ │ ├── project-is-deferred-closed-before-plugins-are-loaded.js │ │ │ └── sends-projectsUpdatedInBackground-event.js │ │ ├── projectErrors/ │ │ │ ├── configFileDiagnostic-events-are-generated-when-the-config-file-changes.js │ │ │ ├── configFileDiagnostic-events-are-generated-when-the-config-file-doesnt-have-errors.js │ │ │ ├── configFileDiagnostic-events-are-generated-when-the-config-file-has-errors.js │ │ │ ├── configFileDiagnostic-events-are-not-generated-when-the-config-file-does-not-include-file-opened-and-config-file-has-errors.js │ │ │ ├── configFileDiagnostic-events-are-not-generated-when-the-config-file-does-not-include-file-opened-and-doesnt-contain-any-errors.js │ │ │ ├── configFileDiagnostic-events-are-not-generated-when-the-config-file-has-errors-but-suppressDiagnosticEvents-is-true.js │ │ │ ├── configFileDiagnostic-events-contains-the-project-reference-errors.js │ │ │ ├── configured-projects---diagnostics-for-corrupted-config-1.js │ │ │ ├── configured-projects---diagnostics-for-corrupted-config-2.js │ │ │ ├── configured-projects---diagnostics-for-missing-files.js │ │ │ ├── correct-errors-when-resolution-resolves-to-file-that-has-same-ambient-module-and-is-also-module.js │ │ │ ├── diagnostics-after-noUnusedLabels-changes.js │ │ │ ├── document-is-not-contained-in-project.js │ │ │ ├── dts-errors-when-files-dont-belong-to-common-root-with-declarationDir.js │ │ │ ├── dts-errors-when-files-dont-belong-to-common-root.js │ │ │ ├── external-project---diagnostics-for-missing-files.js │ │ │ ├── file-rename-on-wsl2.js │ │ │ ├── folder-rename-updates-project-structure-and-reports-no-errors.js │ │ │ ├── for-external-project.js │ │ │ ├── for-inferred-project.js │ │ │ ├── getting-errors-before-opening-file.js │ │ │ ├── npm-install-when-timeout-occurs-after-installation.js │ │ │ ├── npm-install-when-timeout-occurs-inbetween-installation.js │ │ │ ├── reports-errors-correctly-when-file-referenced-by-inferred-project-root,-is-opened-right-after-closing-the-root-file.js │ │ │ ├── should-not-report-incorrect-error-when-json-is-root-file-found-by-tsconfig.js │ │ │ ├── should-report-error-when-json-is-not-root-file-found-by-tsconfig.js │ │ │ ├── when-opening-new-file-that-doesnt-exist-on-disk-yet-with-projectRoot.js │ │ │ ├── when-opening-new-file-that-doesnt-exist-on-disk-yet-without-projectRoot.js │ │ │ ├── when-options-change.js │ │ │ ├── when-semantic-error-returns-includes-global-error-gerErr-with-sync-commands.js │ │ │ ├── when-semantic-error-returns-includes-global-error-getErr.js │ │ │ └── when-semantic-error-returns-includes-global-error-geterrForProject.js │ │ ├── projectReferenceCompileOnSave/ │ │ │ ├── compile-on-save-emits-same-output-as-project-build-with-external-project.js │ │ │ ├── save-on-dependency-and-change-to-dependency.js │ │ │ ├── save-on-dependency-and-change-to-usage.js │ │ │ ├── save-on-dependency-and-local-change-to-dependency.js │ │ │ ├── save-on-dependency-and-local-change-to-usage.js │ │ │ ├── save-on-dependency-with-project-and-change-to-dependency.js │ │ │ ├── save-on-dependency-with-project-and-change-to-usage.js │ │ │ ├── save-on-dependency-with-project-and-local-change-to-dependency.js │ │ │ ├── save-on-dependency-with-project-and-local-change-to-usage.js │ │ │ ├── save-on-dependency-with-project.js │ │ │ ├── save-on-dependency-with-usage-project-and-change-to-dependency.js │ │ │ ├── save-on-dependency-with-usage-project-and-change-to-usage.js │ │ │ ├── save-on-dependency-with-usage-project-and-local-change-to-dependency.js │ │ │ ├── save-on-dependency-with-usage-project-and-local-change-to-usage.js │ │ │ ├── save-on-dependency-with-usage-project.js │ │ │ ├── save-on-dependency.js │ │ │ ├── save-on-usage-and-change-to-dependency.js │ │ │ ├── save-on-usage-and-change-to-usage.js │ │ │ ├── save-on-usage-and-local-change-to-dependency-with-file.js │ │ │ ├── save-on-usage-and-local-change-to-dependency.js │ │ │ ├── save-on-usage-and-local-change-to-usage-with-project.js │ │ │ ├── save-on-usage-and-local-change-to-usage.js │ │ │ ├── save-on-usage-with-project-and-change-to-dependency.js │ │ │ ├── save-on-usage-with-project-and-change-to-usage.js │ │ │ ├── save-on-usage-with-project.js │ │ │ ├── save-on-usage.js │ │ │ ├── when-dependency-project-is-not-open-and-save-on-dependency-and-change-to-dependency.js │ │ │ ├── when-dependency-project-is-not-open-and-save-on-dependency-and-change-to-usage.js │ │ │ ├── when-dependency-project-is-not-open-and-save-on-dependency-and-local-change-to-dependency.js │ │ │ ├── when-dependency-project-is-not-open-and-save-on-dependency-and-local-change-to-usage.js │ │ │ ├── when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-change-to-dependency.js │ │ │ ├── when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-change-to-usage.js │ │ │ ├── when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-local-change-to-dependency.js │ │ │ ├── when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-local-change-to-usage.js │ │ │ ├── when-dependency-project-is-not-open-and-save-on-dependency-with-project.js │ │ │ ├── when-dependency-project-is-not-open-and-save-on-dependency.js │ │ │ ├── when-dependency-project-is-not-open-and-save-on-usage-and-change-to-depenedency.js │ │ │ ├── when-dependency-project-is-not-open-and-save-on-usage-and-change-to-usage.js │ │ │ ├── when-dependency-project-is-not-open-and-save-on-usage-and-local-change-to-dependency.js │ │ │ ├── when-dependency-project-is-not-open-and-save-on-usage-and-local-change-to-usage.js │ │ │ ├── when-dependency-project-is-not-open-and-save-on-usage-with-project-and-change-to-depenedency.js │ │ │ ├── when-dependency-project-is-not-open-and-save-on-usage-with-project-and-change-to-usage.js │ │ │ ├── when-dependency-project-is-not-open-and-save-on-usage-with-project-and-local-change-to-dependency.js │ │ │ ├── when-dependency-project-is-not-open-and-save-on-usage-with-project-and-local-change-to-usage.js │ │ │ ├── when-dependency-project-is-not-open-and-save-on-usage-with-project.js │ │ │ └── when-dependency-project-is-not-open-and-save-on-usage.js │ │ ├── projectReferenceErrors/ │ │ │ ├── when-options-for-dependency-project-are-different-from-usage-project.js │ │ │ ├── with-module-scenario-when-dependency-project-is-not-open-gerErr-with-sync-commands.js │ │ │ ├── with-module-scenario-when-dependency-project-is-not-open-getErr.js │ │ │ ├── with-module-scenario-when-dependency-project-is-not-open-geterrForProject.js │ │ │ ├── with-module-scenario-when-the-depedency-file-is-open-gerErr-with-sync-commands.js │ │ │ ├── with-module-scenario-when-the-depedency-file-is-open-getErr.js │ │ │ ├── with-module-scenario-when-the-depedency-file-is-open-geterrForProject.js │ │ │ ├── with-non-module-when-dependency-project-is-not-open-gerErr-with-sync-commands.js │ │ │ ├── with-non-module-when-dependency-project-is-not-open-getErr.js │ │ │ ├── with-non-module-when-dependency-project-is-not-open-geterrForProject.js │ │ │ ├── with-non-module-when-the-depedency-file-is-open-gerErr-with-sync-commands.js │ │ │ ├── with-non-module-when-the-depedency-file-is-open-getErr.js │ │ │ └── with-non-module-when-the-depedency-file-is-open-geterrForProject.js │ │ ├── projectReferences/ │ │ │ ├── ancestor-and-project-ref-management.js │ │ │ ├── auto-import-with-referenced-project-when-built-with-disableSourceOfProjectReferenceRedirect.js │ │ │ ├── auto-import-with-referenced-project-when-built.js │ │ │ ├── auto-import-with-referenced-project.js │ │ │ ├── can-successfully-find-references-with-out-option.js │ │ │ ├── disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set-in-first-indirect-project-but-not-in-another-one.js │ │ │ ├── disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set-in-indirect-project.js │ │ │ ├── disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set.js │ │ │ ├── does-not-error-on-container-only-project.js │ │ │ ├── find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-missing.js │ │ │ ├── find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js │ │ │ ├── find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-missing.js │ │ │ ├── find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js │ │ │ ├── find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-missing.js │ │ │ ├── find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js │ │ │ ├── find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-missing.js │ │ │ ├── find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js │ │ │ ├── find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-missing.js │ │ │ ├── find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js │ │ │ ├── find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-missing.js │ │ │ ├── find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js │ │ │ ├── find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-missing.js │ │ │ ├── find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js │ │ │ ├── find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-missing.js │ │ │ ├── find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js │ │ │ ├── finding-local-reference-doesnt-load-ancestor-sibling-projects.js │ │ │ ├── finding-references-in-overlapping-projects.js │ │ │ ├── monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-built-with-preserveSymlinks.js │ │ │ ├── monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-built.js │ │ │ ├── monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-not-built-with-preserveSymlinks.js │ │ │ ├── monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-not-built.js │ │ │ ├── monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-built-with-preserveSymlinks.js │ │ │ ├── monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-built.js │ │ │ ├── monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-not-built-with-preserveSymlinks.js │ │ │ ├── monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-not-built.js │ │ │ ├── monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-built-with-preserveSymlinks.js │ │ │ ├── monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-built.js │ │ │ ├── monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-not-built-with-preserveSymlinks.js │ │ │ ├── monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-not-built.js │ │ │ ├── monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-built-with-preserveSymlinks.js │ │ │ ├── monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-built.js │ │ │ ├── monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-not-built-with-preserveSymlinks.js │ │ │ ├── monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-not-built.js │ │ │ ├── new-file-is-added-to-the-referenced-project-when-referenced-project-is-not-open-with-disableSourceOfProjectReferenceRedirect.js │ │ │ ├── new-file-is-added-to-the-referenced-project-when-referenced-project-is-not-open.js │ │ │ ├── new-file-is-added-to-the-referenced-project-when-referenced-project-is-open-with-disableSourceOfProjectReferenceRedirect.js │ │ │ ├── new-file-is-added-to-the-referenced-project-when-referenced-project-is-open.js │ │ │ ├── project-is-directly-referenced-by-solution.js │ │ │ ├── project-is-indirectly-referenced-by-solution.js │ │ │ ├── referencing-const-enum-from-referenced-project-with-preserveConstEnums.js │ │ │ ├── reusing-d.ts-files-from-composite-and-non-composite-projects.js │ │ │ ├── root-file-is-file-from-referenced-project-and-using-declaration-maps.js │ │ │ ├── root-file-is-file-from-referenced-project.js │ │ │ ├── solution-with-its-own-files-and-disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set-in-first-indirect-project-but-not-in-another-one.js │ │ │ ├── solution-with-its-own-files-and-disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set-in-indirect-project.js │ │ │ ├── solution-with-its-own-files-and-disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set.js │ │ │ ├── solution-with-its-own-files-and-project-found-is-not-solution-but-references-open-file-through-project-reference.js │ │ │ ├── solution-with-its-own-files-and-project-is-indirectly-referenced-by-solution.js │ │ │ ├── special-handling-of-localness-when-using-arrow-function-as-object-literal-property-types.js │ │ │ ├── special-handling-of-localness-when-using-arrow-function-as-object-literal-property.js │ │ │ ├── special-handling-of-localness-when-using-arrow-function-assignment.js │ │ │ ├── special-handling-of-localness-when-using-method-of-class-expression.js │ │ │ ├── special-handling-of-localness-when-using-object-literal-property.js │ │ │ ├── when-file-is-not-part-of-first-config-tree-found-appConfig-not-composite-with-file-open-before-revert.js │ │ │ ├── when-file-is-not-part-of-first-config-tree-found-appConfig-not-composite.js │ │ │ ├── when-file-is-not-part-of-first-config-tree-found-demoConfig-change-with-file-open-before-revert.js │ │ │ ├── when-file-is-not-part-of-first-config-tree-found-demoConfig-change.js │ │ │ ├── when-file-is-not-part-of-first-config-tree-found-finds-default-project.js │ │ │ ├── when-file-is-not-part-of-first-config-tree-found-reload-projects.js │ │ │ ├── when-file-is-not-part-of-first-config-tree-found-solutionConfig-delete-with-file-open-before-revert.js │ │ │ ├── when-file-is-not-part-of-first-config-tree-found-solutionConfig-delete.js │ │ │ ├── when-file-is-not-part-of-first-config-tree-found-solutionConfig-without-reference-to-demo-with-file-open-before-revert.js │ │ │ ├── when-file-is-not-part-of-first-config-tree-found-solutionConfig-without-reference-to-demo.js │ │ │ ├── when-files-from-two-projects-are-open-and-one-project-references.js │ │ │ ├── when-the-referenced-projects-have-allowJs-and-emitDeclarationOnly.js │ │ │ ├── with-disableSolutionSearching-solution-and-siblings-are-not-loaded.js │ │ │ └── with-dts-file-next-to-ts-file.js │ │ ├── projectReferencesSourcemap/ │ │ │ ├── dependency/ │ │ │ │ ├── configHasNoReference/ │ │ │ │ │ ├── dependency-dts-change-as-rename-action-before-write.js │ │ │ │ │ ├── dependency-dts-change-as-rename-no-timeout.js │ │ │ │ │ ├── dependency-dts-change-as-rename-timeout-after-delete.js │ │ │ │ │ ├── dependency-dts-change-as-rename-timeout-after-write.js │ │ │ │ │ ├── dependency-dts-changes-with-timeout-before-request.js │ │ │ │ │ ├── dependency-dts-changes.js │ │ │ │ │ ├── dependency-dts-created.js │ │ │ │ │ ├── dependency-dts-deleted.js │ │ │ │ │ ├── dependency-dts-not-present.js │ │ │ │ │ ├── dependency-dts-rewrite-as-rename-action-before-write.js │ │ │ │ │ ├── dependency-dts-rewrite-as-rename-no-timeout.js │ │ │ │ │ ├── dependency-dts-rewrite-as-rename-timeout-after-delete.js │ │ │ │ │ ├── dependency-dts-rewrite-as-rename-timeout-after-write.js │ │ │ │ │ ├── dependency-dtsMap-change-as-rename-action-before-write.js │ │ │ │ │ ├── dependency-dtsMap-change-as-rename-no-timeout.js │ │ │ │ │ ├── dependency-dtsMap-change-as-rename-timeout-after-delete.js │ │ │ │ │ ├── dependency-dtsMap-change-as-rename-timeout-after-write.js │ │ │ │ │ ├── dependency-dtsMap-changes-with-timeout-before-request.js │ │ │ │ │ ├── dependency-dtsMap-changes.js │ │ │ │ │ ├── dependency-dtsMap-created.js │ │ │ │ │ ├── dependency-dtsMap-deleted.js │ │ │ │ │ ├── dependency-dtsMap-not-present.js │ │ │ │ │ ├── dependency-dtsMap-rewrite-as-rename-action-before-write.js │ │ │ │ │ ├── dependency-dtsMap-rewrite-as-rename-no-timeout.js │ │ │ │ │ ├── dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js │ │ │ │ │ ├── dependency-dtsMap-rewrite-as-rename-timeout-after-write.js │ │ │ │ │ ├── rename-locations.js │ │ │ │ │ ├── usage-file-changes-with-timeout-before-request.js │ │ │ │ │ └── usage-file-changes.js │ │ │ │ ├── configWithReference/ │ │ │ │ │ ├── dependency-dts-change-as-rename-action-before-write.js │ │ │ │ │ ├── dependency-dts-change-as-rename-no-timeout.js │ │ │ │ │ ├── dependency-dts-change-as-rename-timeout-after-delete.js │ │ │ │ │ ├── dependency-dts-change-as-rename-timeout-after-write.js │ │ │ │ │ ├── dependency-dts-changes-with-timeout-before-request.js │ │ │ │ │ ├── dependency-dts-changes.js │ │ │ │ │ ├── dependency-dts-created.js │ │ │ │ │ ├── dependency-dts-deleted.js │ │ │ │ │ ├── dependency-dts-not-present.js │ │ │ │ │ ├── dependency-dts-rewrite-as-rename-action-before-write.js │ │ │ │ │ ├── dependency-dts-rewrite-as-rename-no-timeout.js │ │ │ │ │ ├── dependency-dts-rewrite-as-rename-timeout-after-delete.js │ │ │ │ │ ├── dependency-dts-rewrite-as-rename-timeout-after-write.js │ │ │ │ │ ├── dependency-dtsMap-change-as-rename-action-before-write.js │ │ │ │ │ ├── dependency-dtsMap-change-as-rename-no-timeout.js │ │ │ │ │ ├── dependency-dtsMap-change-as-rename-timeout-after-delete.js │ │ │ │ │ ├── dependency-dtsMap-change-as-rename-timeout-after-write.js │ │ │ │ │ ├── dependency-dtsMap-changes-with-timeout-before-request.js │ │ │ │ │ ├── dependency-dtsMap-changes.js │ │ │ │ │ ├── dependency-dtsMap-created.js │ │ │ │ │ ├── dependency-dtsMap-deleted.js │ │ │ │ │ ├── dependency-dtsMap-not-present.js │ │ │ │ │ ├── dependency-dtsMap-rewrite-as-rename-action-before-write.js │ │ │ │ │ ├── dependency-dtsMap-rewrite-as-rename-no-timeout.js │ │ │ │ │ ├── dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js │ │ │ │ │ ├── dependency-dtsMap-rewrite-as-rename-timeout-after-write.js │ │ │ │ │ ├── dependency-source-changes-with-timeout-before-request.js │ │ │ │ │ ├── dependency-source-changes.js │ │ │ │ │ ├── rename-locations.js │ │ │ │ │ ├── usage-file-changes-with-timeout-before-request.js │ │ │ │ │ ├── usage-file-changes.js │ │ │ │ │ └── when-projects-are-not-built.js │ │ │ │ └── disabledSourceRef/ │ │ │ │ ├── dependency-dts-change-as-rename-action-before-write.js │ │ │ │ ├── dependency-dts-change-as-rename-no-timeout.js │ │ │ │ ├── dependency-dts-change-as-rename-timeout-after-delete.js │ │ │ │ ├── dependency-dts-change-as-rename-timeout-after-write.js │ │ │ │ ├── dependency-dts-changes-with-timeout-before-request.js │ │ │ │ ├── dependency-dts-changes.js │ │ │ │ ├── dependency-dts-created.js │ │ │ │ ├── dependency-dts-deleted.js │ │ │ │ ├── dependency-dts-not-present.js │ │ │ │ ├── dependency-dts-rewrite-as-rename-action-before-write.js │ │ │ │ ├── dependency-dts-rewrite-as-rename-no-timeout.js │ │ │ │ ├── dependency-dts-rewrite-as-rename-timeout-after-delete.js │ │ │ │ ├── dependency-dts-rewrite-as-rename-timeout-after-write.js │ │ │ │ ├── dependency-dtsMap-change-as-rename-action-before-write.js │ │ │ │ ├── dependency-dtsMap-change-as-rename-no-timeout.js │ │ │ │ ├── dependency-dtsMap-change-as-rename-timeout-after-delete.js │ │ │ │ ├── dependency-dtsMap-change-as-rename-timeout-after-write.js │ │ │ │ ├── dependency-dtsMap-changes-with-timeout-before-request.js │ │ │ │ ├── dependency-dtsMap-changes.js │ │ │ │ ├── dependency-dtsMap-created.js │ │ │ │ ├── dependency-dtsMap-deleted.js │ │ │ │ ├── dependency-dtsMap-not-present.js │ │ │ │ ├── dependency-dtsMap-rewrite-as-rename-action-before-write.js │ │ │ │ ├── dependency-dtsMap-rewrite-as-rename-no-timeout.js │ │ │ │ ├── dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js │ │ │ │ ├── dependency-dtsMap-rewrite-as-rename-timeout-after-write.js │ │ │ │ ├── rename-locations.js │ │ │ │ ├── usage-file-changes-with-timeout-before-request.js │ │ │ │ └── usage-file-changes.js │ │ │ ├── dependencyAndUsage/ │ │ │ │ ├── configHasNoReference/ │ │ │ │ │ ├── dependency-dts-change-as-rename-action-before-write.js │ │ │ │ │ ├── dependency-dts-change-as-rename-no-timeout.js │ │ │ │ │ ├── dependency-dts-change-as-rename-timeout-after-delete.js │ │ │ │ │ ├── dependency-dts-change-as-rename-timeout-after-write.js │ │ │ │ │ ├── dependency-dts-changes-with-timeout-before-request.js │ │ │ │ │ ├── dependency-dts-changes.js │ │ │ │ │ ├── dependency-dts-created.js │ │ │ │ │ ├── dependency-dts-deleted.js │ │ │ │ │ ├── dependency-dts-not-present.js │ │ │ │ │ ├── dependency-dts-rewrite-as-rename-action-before-write.js │ │ │ │ │ ├── dependency-dts-rewrite-as-rename-no-timeout.js │ │ │ │ │ ├── dependency-dts-rewrite-as-rename-timeout-after-delete.js │ │ │ │ │ ├── dependency-dts-rewrite-as-rename-timeout-after-write.js │ │ │ │ │ ├── dependency-dtsMap-change-as-rename-action-before-write.js │ │ │ │ │ ├── dependency-dtsMap-change-as-rename-no-timeout.js │ │ │ │ │ ├── dependency-dtsMap-change-as-rename-timeout-after-delete.js │ │ │ │ │ ├── dependency-dtsMap-change-as-rename-timeout-after-write.js │ │ │ │ │ ├── dependency-dtsMap-changes-with-timeout-before-request.js │ │ │ │ │ ├── dependency-dtsMap-changes.js │ │ │ │ │ ├── dependency-dtsMap-created.js │ │ │ │ │ ├── dependency-dtsMap-deleted.js │ │ │ │ │ ├── dependency-dtsMap-not-present.js │ │ │ │ │ ├── dependency-dtsMap-rewrite-as-rename-action-before-write.js │ │ │ │ │ ├── dependency-dtsMap-rewrite-as-rename-no-timeout.js │ │ │ │ │ ├── dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js │ │ │ │ │ ├── dependency-dtsMap-rewrite-as-rename-timeout-after-write.js │ │ │ │ │ ├── goToDef-and-rename-locations-and-deleting-config-file.js │ │ │ │ │ ├── goToDef-and-rename-locations.js │ │ │ │ │ ├── usage-file-changes-with-timeout-before-request.js │ │ │ │ │ └── usage-file-changes.js │ │ │ │ ├── configWithReference/ │ │ │ │ │ ├── dependency-dts-change-as-rename-action-before-write.js │ │ │ │ │ ├── dependency-dts-change-as-rename-no-timeout.js │ │ │ │ │ ├── dependency-dts-change-as-rename-timeout-after-delete.js │ │ │ │ │ ├── dependency-dts-change-as-rename-timeout-after-write.js │ │ │ │ │ ├── dependency-dts-changes-with-timeout-before-request.js │ │ │ │ │ ├── dependency-dts-changes.js │ │ │ │ │ ├── dependency-dts-created.js │ │ │ │ │ ├── dependency-dts-deleted.js │ │ │ │ │ ├── dependency-dts-not-present.js │ │ │ │ │ ├── dependency-dts-rewrite-as-rename-action-before-write.js │ │ │ │ │ ├── dependency-dts-rewrite-as-rename-no-timeout.js │ │ │ │ │ ├── dependency-dts-rewrite-as-rename-timeout-after-delete.js │ │ │ │ │ ├── dependency-dts-rewrite-as-rename-timeout-after-write.js │ │ │ │ │ ├── dependency-dtsMap-change-as-rename-action-before-write.js │ │ │ │ │ ├── dependency-dtsMap-change-as-rename-no-timeout.js │ │ │ │ │ ├── dependency-dtsMap-change-as-rename-timeout-after-delete.js │ │ │ │ │ ├── dependency-dtsMap-change-as-rename-timeout-after-write.js │ │ │ │ │ ├── dependency-dtsMap-changes-with-timeout-before-request.js │ │ │ │ │ ├── dependency-dtsMap-changes.js │ │ │ │ │ ├── dependency-dtsMap-created.js │ │ │ │ │ ├── dependency-dtsMap-deleted.js │ │ │ │ │ ├── dependency-dtsMap-not-present.js │ │ │ │ │ ├── dependency-dtsMap-rewrite-as-rename-action-before-write.js │ │ │ │ │ ├── dependency-dtsMap-rewrite-as-rename-no-timeout.js │ │ │ │ │ ├── dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js │ │ │ │ │ ├── dependency-dtsMap-rewrite-as-rename-timeout-after-write.js │ │ │ │ │ ├── dependency-source-changes-with-timeout-before-request.js │ │ │ │ │ ├── dependency-source-changes.js │ │ │ │ │ ├── goToDef-and-rename-locations-and-deleting-config-file.js │ │ │ │ │ ├── goToDef-and-rename-locations.js │ │ │ │ │ ├── usage-file-changes-with-timeout-before-request.js │ │ │ │ │ ├── usage-file-changes.js │ │ │ │ │ └── when-projects-are-not-built.js │ │ │ │ └── disabledSourceRef/ │ │ │ │ ├── dependency-dts-change-as-rename-action-before-write.js │ │ │ │ ├── dependency-dts-change-as-rename-no-timeout.js │ │ │ │ ├── dependency-dts-change-as-rename-timeout-after-delete.js │ │ │ │ ├── dependency-dts-change-as-rename-timeout-after-write.js │ │ │ │ ├── dependency-dts-changes-with-timeout-before-request.js │ │ │ │ ├── dependency-dts-changes.js │ │ │ │ ├── dependency-dts-created.js │ │ │ │ ├── dependency-dts-deleted.js │ │ │ │ ├── dependency-dts-not-present.js │ │ │ │ ├── dependency-dts-rewrite-as-rename-action-before-write.js │ │ │ │ ├── dependency-dts-rewrite-as-rename-no-timeout.js │ │ │ │ ├── dependency-dts-rewrite-as-rename-timeout-after-delete.js │ │ │ │ ├── dependency-dts-rewrite-as-rename-timeout-after-write.js │ │ │ │ ├── dependency-dtsMap-change-as-rename-action-before-write.js │ │ │ │ ├── dependency-dtsMap-change-as-rename-no-timeout.js │ │ │ │ ├── dependency-dtsMap-change-as-rename-timeout-after-delete.js │ │ │ │ ├── dependency-dtsMap-change-as-rename-timeout-after-write.js │ │ │ │ ├── dependency-dtsMap-changes-with-timeout-before-request.js │ │ │ │ ├── dependency-dtsMap-changes.js │ │ │ │ ├── dependency-dtsMap-created.js │ │ │ │ ├── dependency-dtsMap-deleted.js │ │ │ │ ├── dependency-dtsMap-not-present.js │ │ │ │ ├── dependency-dtsMap-rewrite-as-rename-action-before-write.js │ │ │ │ ├── dependency-dtsMap-rewrite-as-rename-no-timeout.js │ │ │ │ ├── dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js │ │ │ │ ├── dependency-dtsMap-rewrite-as-rename-timeout-after-write.js │ │ │ │ ├── goToDef-and-rename-locations-and-deleting-config-file.js │ │ │ │ ├── goToDef-and-rename-locations.js │ │ │ │ ├── usage-file-changes-with-timeout-before-request.js │ │ │ │ └── usage-file-changes.js │ │ │ └── usageProject/ │ │ │ ├── configHasNoReference/ │ │ │ │ ├── can-go-to-definition-correctly.js │ │ │ │ ├── dependency-dts-change-as-rename-action-before-write.js │ │ │ │ ├── dependency-dts-change-as-rename-no-timeout.js │ │ │ │ ├── dependency-dts-change-as-rename-timeout-after-delete.js │ │ │ │ ├── dependency-dts-change-as-rename-timeout-after-write.js │ │ │ │ ├── dependency-dts-changes-with-timeout-before-request.js │ │ │ │ ├── dependency-dts-changes.js │ │ │ │ ├── dependency-dts-created.js │ │ │ │ ├── dependency-dts-deleted.js │ │ │ │ ├── dependency-dts-not-present.js │ │ │ │ ├── dependency-dts-rewrite-as-rename-action-before-write.js │ │ │ │ ├── dependency-dts-rewrite-as-rename-no-timeout.js │ │ │ │ ├── dependency-dts-rewrite-as-rename-timeout-after-delete.js │ │ │ │ ├── dependency-dts-rewrite-as-rename-timeout-after-write.js │ │ │ │ ├── dependency-dtsMap-change-as-rename-action-before-write.js │ │ │ │ ├── dependency-dtsMap-change-as-rename-no-timeout.js │ │ │ │ ├── dependency-dtsMap-change-as-rename-timeout-after-delete.js │ │ │ │ ├── dependency-dtsMap-change-as-rename-timeout-after-write.js │ │ │ │ ├── dependency-dtsMap-changes-with-timeout-before-request.js │ │ │ │ ├── dependency-dtsMap-changes.js │ │ │ │ ├── dependency-dtsMap-created.js │ │ │ │ ├── dependency-dtsMap-deleted.js │ │ │ │ ├── dependency-dtsMap-not-present.js │ │ │ │ ├── dependency-dtsMap-rewrite-as-rename-action-before-write.js │ │ │ │ ├── dependency-dtsMap-rewrite-as-rename-no-timeout.js │ │ │ │ ├── dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js │ │ │ │ ├── dependency-dtsMap-rewrite-as-rename-timeout-after-write.js │ │ │ │ ├── usage-file-changes-with-timeout-before-request.js │ │ │ │ └── usage-file-changes.js │ │ │ ├── configWithReference/ │ │ │ │ ├── can-go-to-definition-correctly.js │ │ │ │ ├── dependency-dts-change-as-rename-action-before-write.js │ │ │ │ ├── dependency-dts-change-as-rename-no-timeout.js │ │ │ │ ├── dependency-dts-change-as-rename-timeout-after-delete.js │ │ │ │ ├── dependency-dts-change-as-rename-timeout-after-write.js │ │ │ │ ├── dependency-dts-changes-with-timeout-before-request.js │ │ │ │ ├── dependency-dts-changes.js │ │ │ │ ├── dependency-dts-created.js │ │ │ │ ├── dependency-dts-deleted.js │ │ │ │ ├── dependency-dts-not-present.js │ │ │ │ ├── dependency-dts-rewrite-as-rename-action-before-write.js │ │ │ │ ├── dependency-dts-rewrite-as-rename-no-timeout.js │ │ │ │ ├── dependency-dts-rewrite-as-rename-timeout-after-delete.js │ │ │ │ ├── dependency-dts-rewrite-as-rename-timeout-after-write.js │ │ │ │ ├── dependency-dtsMap-change-as-rename-action-before-write.js │ │ │ │ ├── dependency-dtsMap-change-as-rename-no-timeout.js │ │ │ │ ├── dependency-dtsMap-change-as-rename-timeout-after-delete.js │ │ │ │ ├── dependency-dtsMap-change-as-rename-timeout-after-write.js │ │ │ │ ├── dependency-dtsMap-changes-with-timeout-before-request.js │ │ │ │ ├── dependency-dtsMap-changes.js │ │ │ │ ├── dependency-dtsMap-created.js │ │ │ │ ├── dependency-dtsMap-deleted.js │ │ │ │ ├── dependency-dtsMap-not-present.js │ │ │ │ ├── dependency-dtsMap-rewrite-as-rename-action-before-write.js │ │ │ │ ├── dependency-dtsMap-rewrite-as-rename-no-timeout.js │ │ │ │ ├── dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js │ │ │ │ ├── dependency-dtsMap-rewrite-as-rename-timeout-after-write.js │ │ │ │ ├── dependency-source-changes-with-timeout-before-request.js │ │ │ │ ├── dependency-source-changes.js │ │ │ │ ├── usage-file-changes-with-timeout-before-request.js │ │ │ │ ├── usage-file-changes.js │ │ │ │ └── when-projects-are-not-built.js │ │ │ └── disabledSourceRef/ │ │ │ ├── can-go-to-definition-correctly.js │ │ │ ├── dependency-dts-change-as-rename-action-before-write.js │ │ │ ├── dependency-dts-change-as-rename-no-timeout.js │ │ │ ├── dependency-dts-change-as-rename-timeout-after-delete.js │ │ │ ├── dependency-dts-change-as-rename-timeout-after-write.js │ │ │ ├── dependency-dts-changes-with-timeout-before-request.js │ │ │ ├── dependency-dts-changes.js │ │ │ ├── dependency-dts-created.js │ │ │ ├── dependency-dts-deleted.js │ │ │ ├── dependency-dts-not-present.js │ │ │ ├── dependency-dts-rewrite-as-rename-action-before-write.js │ │ │ ├── dependency-dts-rewrite-as-rename-no-timeout.js │ │ │ ├── dependency-dts-rewrite-as-rename-timeout-after-delete.js │ │ │ ├── dependency-dts-rewrite-as-rename-timeout-after-write.js │ │ │ ├── dependency-dtsMap-change-as-rename-action-before-write.js │ │ │ ├── dependency-dtsMap-change-as-rename-no-timeout.js │ │ │ ├── dependency-dtsMap-change-as-rename-timeout-after-delete.js │ │ │ ├── dependency-dtsMap-change-as-rename-timeout-after-write.js │ │ │ ├── dependency-dtsMap-changes-with-timeout-before-request.js │ │ │ ├── dependency-dtsMap-changes.js │ │ │ ├── dependency-dtsMap-created.js │ │ │ ├── dependency-dtsMap-deleted.js │ │ │ ├── dependency-dtsMap-not-present.js │ │ │ ├── dependency-dtsMap-rewrite-as-rename-action-before-write.js │ │ │ ├── dependency-dtsMap-rewrite-as-rename-no-timeout.js │ │ │ ├── dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js │ │ │ ├── dependency-dtsMap-rewrite-as-rename-timeout-after-write.js │ │ │ ├── usage-file-changes-with-timeout-before-request.js │ │ │ └── usage-file-changes.js │ │ ├── projectRootFiles/ │ │ │ ├── when-root-file-is-from-referenced-project-and-shared-is-first.js │ │ │ └── when-root-file-is-from-referenced-project.js │ │ ├── projects/ │ │ │ ├── File-in-multiple-projects-at-opened-and-closed-correctly.js │ │ │ ├── Orphan-source-files-are-handled-correctly-on-watch-trigger.js │ │ │ ├── Properly-handle-Windows-style-outDir.js │ │ │ ├── assert-when-removing-project.js │ │ │ ├── changes-in-closed-files-are-reflected-in-project-structure.js │ │ │ ├── clear-mixed-content-file-after-closing.js │ │ │ ├── config-file-is-deleted.js │ │ │ ├── correctly-migrate-files-between-projects.js │ │ │ ├── deferred-files-in-the-project-context-with-lazyConfiguredProjectsFromExternalProject.js │ │ │ ├── deferred-files-in-the-project-context.js │ │ │ ├── deleted-files-affect-project-structure.js │ │ │ ├── does-not-look-beyond-node_modules-folders-for-default-configured-projects.js │ │ │ ├── external-project-including-config-file.js │ │ │ ├── file-opened-is-in-configured-project-that-will-be-removed.js │ │ │ ├── file-with-name-constructor.js-doesnt-cause-issue-with-typeAcquisition-when-safe-type-list.js │ │ │ ├── files-opened-and-closed-affecting-multiple-projects.js │ │ │ ├── files-with-mixed-content-are-handled-correctly.js │ │ │ ├── getting-errors-from-closed-script-info-does-not-throw-exception-because-of-getting-project-from-orphan-script-info.js │ │ │ ├── handles-delayed-directory-watch-invoke-on-file-creation.js │ │ │ ├── handles-the-missing-files-added-with-tripleslash-ref.js │ │ │ ├── ignores-files-excluded-by-a-custom-safe-type-list.js │ │ │ ├── ignores-files-excluded-by-a-legacy-safe-type-list.js │ │ │ ├── ignores-files-excluded-by-the-default-type-list.js │ │ │ ├── js-file-opened-is-in-configured-project-that-will-be-removed.js │ │ │ ├── loading-files-with-correct-priority.js │ │ │ ├── loose-file-included-in-config-file-(applyCodeChanges).js │ │ │ ├── loose-file-included-in-config-file-(openClientFile).js │ │ │ ├── no-project-structure-update-on-directory-watch-invoke-on-open-file-save.js │ │ │ ├── no-tsconfig-script-block-diagnostic-errors.js │ │ │ ├── project-structure-update-is-deferred-if-files-are-not-added-or-removed.js │ │ │ ├── references-on-file-opened-is-in-configured-project-that-will-be-removed.js │ │ │ ├── regression-test-for-crash-in-acquireOrUpdateDocument.js │ │ │ ├── reload-regular-file-after-closing.js │ │ │ ├── requests-are-done-on-file-on-pendingReload-but-has-svc-for-previous-version.js │ │ │ ├── should-create-new-inferred-projects-for-files-excluded-from-a-configured-project.js │ │ │ ├── should-disable-features-when-the-files-are-too-large.js │ │ │ ├── should-not-crash-when-opening-a-file-in-a-project-with-a-disabled-language-service.js │ │ │ ├── snapshot-from-different-caches-are-incompatible.js │ │ │ ├── synchronizeProjectList-provides-redirect-info-when-requested.js │ │ │ ├── synchronizeProjectList-provides-updates-to-redirect-info-when-requested.js │ │ │ ├── synchronizeProjectList-returns-correct-information-when-base-configuration-file-cannot-be-resolved-and-redirect-info-is-requested.js │ │ │ ├── synchronizeProjectList-returns-correct-information-when-base-configuration-file-cannot-be-resolved.js │ │ │ ├── syntax-tree-cache-handles-changes-in-project-settings.js │ │ │ └── tsconfig-script-block-support.js │ │ ├── projectsWithReferences/ │ │ │ ├── sample-project.js │ │ │ ├── transitive-references-with-deleting-referenced-config-file.js │ │ │ ├── transitive-references-with-deleting-transitively-referenced-config-file.js │ │ │ ├── transitive-references-with-edit-in-referenced-config-file.js │ │ │ ├── transitive-references-with-edit-on-config-file.js │ │ │ ├── transitive-references-with-non-local-edit.js │ │ │ ├── trasitive-references-without-files-with-deleting-referenced-config-file.js │ │ │ ├── trasitive-references-without-files-with-deleting-transitively-referenced-config-file.js │ │ │ ├── trasitive-references-without-files-with-edit-in-referenced-config-file.js │ │ │ ├── trasitive-references-without-files-with-edit-on-config-file.js │ │ │ └── trasitive-references-without-files-with-non-local-edit.js │ │ ├── refactors/ │ │ │ ├── handles-canonicalization-of-tsconfig-path.js │ │ │ ├── handles-moving-statement-to-an-existing-file.js │ │ │ ├── handles-moving-statements-to-a-TS-file-that-is-not-included-in-the-TS-project.js │ │ │ ├── handles-moving-statements-to-a-non-TS-file.js │ │ │ ├── handles-text-changes-in-tsconfig.js │ │ │ └── use-formatting-options.js │ │ ├── regionDiagnostics/ │ │ │ ├── diagnostics-for-select-nodes-and-whole-file-for-multiple-files.js │ │ │ ├── diagnostics-for-select-nodes-in-a-single-file.js │ │ │ ├── region-diagnostics-is-skipped-for-@ts-nocheck-file.js │ │ │ ├── region-diagnostics-is-skipped-for-small-file.js │ │ │ ├── region-does-not-have-suggestion.js │ │ │ └── region-has-suggestion.js │ │ ├── reload/ │ │ │ ├── should-work-when-script-info-doesnt-have-any-project-open.js │ │ │ └── should-work-with-temp-file.js │ │ ├── reloadProjects/ │ │ │ ├── configured-project.js │ │ │ ├── external-project-with-config-file.js │ │ │ ├── external-project.js │ │ │ └── inferred-project.js │ │ ├── rename/ │ │ │ ├── export-default-anonymous-function-works-with-prefixText-and-suffixText-when-disabled.js │ │ │ ├── rename-TS-file-with-js-extension.js │ │ │ ├── rename-behavior-is-based-on-file-of-rename-initiation.js │ │ │ ├── with-symlinks-and-case-difference.js │ │ │ ├── works-with-fileToRename.js │ │ │ └── works-with-prefixText-and-suffixText-when-enabled.js │ │ ├── resolutionCache/ │ │ │ ├── avoid-unnecessary-lookup-invalidation-on-save.js │ │ │ ├── can-load-typings-that-are-proper-modules.js │ │ │ ├── disable-suggestion-diagnostics.js │ │ │ ├── non-relative-module-name-from-files-in-different-folders.js │ │ │ ├── non-relative-module-name-from-files-in-same-folder.js │ │ │ ├── non-relative-module-name-from-inferred-project.js │ │ │ ├── not-sharing-across-references.js │ │ │ ├── npm-install-@types-works.js │ │ │ ├── relative-module-name-from-files-in-different-folders.js │ │ │ ├── relative-module-name-from-files-in-same-folder.js │ │ │ ├── renaming-module-should-restore-the-states-for-configured-projects.js │ │ │ ├── renaming-module-should-restore-the-states-for-inferred-projects.js │ │ │ ├── sharing-across-references.js │ │ │ ├── should-property-handle-missing-config-files.js │ │ │ ├── should-remove-the-module-not-found-error.js │ │ │ ├── suggestion-diagnostics.js │ │ │ ├── suppressed-diagnostic-events.js │ │ │ ├── types-should-load-from-config-file-path-if-config-exists.js │ │ │ ├── types-should-not-load-from-config-file-path-if-config-exists-but-does-not-specifies-typeRoots.js │ │ │ ├── when-resolution-fails-in-global-typings-location-with-currentDirectory-at-root.js │ │ │ ├── when-resolution-fails-in-global-typings-location.js │ │ │ ├── when-resolution-fails.js │ │ │ ├── when-resolution-is-succeeds-in-global-typings-location-with-import-from-the-cache-file-failing-with-currentDirectory-at-root.js │ │ │ ├── when-resolution-is-succeeds-in-global-typings-location-with-import-from-the-cache-file-failing.js │ │ │ ├── when-resolution-is-succeeds-in-global-typings-location-with-import-from-the-cache-file-with-currentDirectory-at-root.js │ │ │ ├── when-resolution-is-succeeds-in-global-typings-location-with-import-from-the-cache-file.js │ │ │ ├── when-resolution-is-succeeds-in-global-typings-location-with-relative-import-from-the-cache-file-with-currentDirectory-at-root.js │ │ │ ├── when-resolution-is-succeeds-in-global-typings-location-with-relative-import-from-the-cache-file.js │ │ │ ├── when-resolves-to-ambient-module.js │ │ │ ├── when-watching-node_modules-as-part-of-wild-card-directories-in-config-project.js │ │ │ ├── when-watching-node_modules-in-inferred-project-for-failed-lookup-closed-script-infos.js │ │ │ └── works-correctly-when-typings-are-added-or-removed.js │ │ ├── skipLibCheck/ │ │ │ ├── jsonly-external-project-with-skipLibCheck-as-false.js │ │ │ ├── jsonly-external-project.js │ │ │ ├── jsonly-inferred-project.js │ │ │ ├── reports-semantic-error-in-configured-js-project-with-tscheck.js │ │ │ ├── reports-semantic-error-in-configured-project-with-tscheck.js │ │ │ ├── reports-semantic-error-with-tscheck.js │ │ │ └── should-not-report-bind-errors-for-declaration-files-with-skipLibCheck=true.js │ │ ├── smartSelection/ │ │ │ └── works-for-simple-JavaScript.js │ │ ├── symLinks/ │ │ │ ├── module-resolution-when-project-compiles-from-sources.js │ │ │ ├── module-resolution-when-project-has-node_modules-setup-but-doesnt-have-modules-in-typings-folder-and-then-recompiles.js │ │ │ ├── module-resolution-when-project-recompiles-after-deleting-generated-folders.js │ │ │ ├── module-resolution-with-path-mapping-when-project-compiles-from-sources.js │ │ │ ├── module-resolution-with-path-mapping-when-project-has-node_modules-setup-but-doesnt-have-modules-in-typings-folder-and-then-recompiles.js │ │ │ ├── module-resolution-with-path-mapping-when-project-recompiles-after-deleting-generated-folders.js │ │ │ ├── monorepo-style-sibling-packages-symlinked-Linux-canUseWatchEvents.js │ │ │ ├── monorepo-style-sibling-packages-symlinked-Linux.js │ │ │ ├── monorepo-style-sibling-packages-symlinked-canUseWatchEvents.js │ │ │ ├── monorepo-style-sibling-packages-symlinked-package1-built-Linux-canUseWatchEvents.js │ │ │ ├── monorepo-style-sibling-packages-symlinked-package1-built-Linux.js │ │ │ ├── monorepo-style-sibling-packages-symlinked-package1-built-canUseWatchEvents.js │ │ │ ├── monorepo-style-sibling-packages-symlinked-package1-built.js │ │ │ ├── monorepo-style-sibling-packages-symlinked.js │ │ │ ├── packages-outside-project-folder-Linux-canUseWatchEvents.js │ │ │ ├── packages-outside-project-folder-Linux.js │ │ │ ├── packages-outside-project-folder-MacOs-canUseWatchEvents.js │ │ │ ├── packages-outside-project-folder-MacOs.js │ │ │ ├── packages-outside-project-folder-Windows-canUseWatchEvents.js │ │ │ ├── packages-outside-project-folder-Windows.js │ │ │ ├── packages-outside-project-folder-built-Linux-canUseWatchEvents.js │ │ │ ├── packages-outside-project-folder-built-Linux.js │ │ │ ├── packages-outside-project-folder-built-MacOs-canUseWatchEvents.js │ │ │ ├── packages-outside-project-folder-built-MacOs.js │ │ │ ├── packages-outside-project-folder-built-Windows-canUseWatchEvents.js │ │ │ ├── packages-outside-project-folder-built-Windows.js │ │ │ ├── rename-in-common-file-renames-all-project.js │ │ │ └── when-not-symlink-but-differs-in-casing.js │ │ ├── symlinkCache/ │ │ │ └── contains-symlinks-discovered-by-project-references-resolution-after-program-creation.js │ │ ├── syntacticServer/ │ │ │ ├── files-go-to-inferred-project-and-semantic-operations-fail.js │ │ │ ├── should-not-include-auto-type-reference-directives.js │ │ │ ├── should-not-include-referenced-files-from-unopened-files.js │ │ │ └── throws-on-unsupported-commands.js │ │ ├── syntaxOperations/ │ │ │ └── file-is-removed-and-added-with-different-content.js │ │ ├── telemetry/ │ │ │ ├── counts-files-by-extension.js │ │ │ ├── detects-whether-language-service-was-disabled.js │ │ │ ├── does-not-expose-paths.js │ │ │ ├── does-nothing-for-inferred-project.js │ │ │ ├── even-for-project-with-ts-check-in-config.js │ │ │ ├── not-for-ts-file.js │ │ │ ├── only-sends-an-event-once.js │ │ │ ├── sends-event-for-inferred-project.js │ │ │ ├── sends-telemetry-for-extends,-files,-include,-exclude,-and-compileOnSave.js │ │ │ ├── sends-telemetry-for-file-sizes.js │ │ │ ├── sends-telemetry-for-typeAcquisition-settings.js │ │ │ └── works-with-external-project.js │ │ ├── textStorage/ │ │ │ └── should-be-able-to-return-the-file-size-when-a-JS-file-is-too-large-to-load-into-text.js │ │ ├── typeAquisition/ │ │ │ ├── does-not-depend-on-extension.js │ │ │ └── prefer-typings-in-second-pass.js │ │ ├── typeOnlyImportChains/ │ │ │ ├── exportDefault-typeOnlyImportDefault-exportDefault-importDefault.js │ │ │ ├── namedExport-exportNamespaceFrom-typeOnlyNamedImport-namedExport-namedImport.js │ │ │ ├── namedExport-typeOnlyExportFrom-exportStarFrom-namedImport.js │ │ │ ├── namedExport-typeOnlyNamedImport-namedExport-namedImport.js │ │ │ ├── namedExport-typeOnlyNamespaceImport-exportDefault-importDefault.js │ │ │ ├── namedExport-typeOnlyNamespaceImport-exportEquals-importEquals.js │ │ │ ├── namedExport-typeOnlyNamespaceImport-namedExport-namedImport.js │ │ │ └── namedExport-typeonlyExportFrom-exportNamespaceFrom-namedImport.js │ │ ├── typeReferenceDirectives/ │ │ │ ├── when-typeReferenceDirective-contains-UpperCasePackage.js │ │ │ └── when-typeReferenceDirective-is-relative-path-and-in-a-sibling-folder.js │ │ ├── typingsInstaller/ │ │ │ ├── cached-unresolved-typings-are-not-recomputed-if-program-structure-did-not-change.js │ │ │ ├── configured-projects-discover-from-bower_components.js │ │ │ ├── configured-projects.js │ │ │ ├── discover-from-bower.js │ │ │ ├── discover-from-node_modules-empty-types-has-import.js │ │ │ ├── discover-from-node_modules-empty-types.js │ │ │ ├── discover-from-node_modules-explicit-types.js │ │ │ ├── discover-from-node_modules.js │ │ │ ├── discover-typings-prerelease-typings-are-properly-handled.js │ │ │ ├── discover-typings-should-gracefully-handle-packages-that-have-been-removed-from-the-types-registry.js │ │ │ ├── discover-typings-should-install-expired-typings-with-prerelease-version-of-tsserver.js │ │ │ ├── discover-typings-should-install-expired-typings.js │ │ │ ├── discover-typings-should-return-node-for-core-modules.js │ │ │ ├── discover-typings-should-search-only-2-levels-deep.js │ │ │ ├── discover-typings-should-support-scoped-packages.js │ │ │ ├── discover-typings-should-use-cached-locations.js │ │ │ ├── discover-typings-should-use-mappings-from-safe-list.js │ │ │ ├── expired-cache-entry-lockFile3.js │ │ │ ├── expired-cache-entry.js │ │ │ ├── external-projects-autoDiscovery.js │ │ │ ├── external-projects-duplicate-package.js │ │ │ ├── external-projects-no-auto-typings.js │ │ │ ├── external-projects-no-type-acquisition-with-enable-false.js │ │ │ ├── external-projects-no-type-acquisition-with-js-ts-files.js │ │ │ ├── external-projects-no-type-acquisition.js │ │ │ ├── external-projects-type-acquisition-with-disableFilenameBasedTypeAcquisition.js │ │ │ ├── external-projects-type-acquisition.js │ │ │ ├── external-projects.js │ │ │ ├── inferred-projects-with-disableFilenameBasedTypeAcquisition.js │ │ │ ├── inferred-projects.js │ │ │ ├── install-typings-for-unresolved-imports.js │ │ │ ├── invalidate-the-resolutions-with-trimmed-names.js │ │ │ ├── invalidate-the-resolutions.js │ │ │ ├── local-module-should-not-be-picked-up.js │ │ │ ├── malformed-packagejson.js │ │ │ ├── multiple-projects.js │ │ │ ├── non-expired-cache-entry-lockFile3.js │ │ │ ├── non-expired-cache-entry.js │ │ │ ├── pick-typing-names-from-nonrelative-unresolved-imports.js │ │ │ ├── progress-notification-for-error.js │ │ │ ├── progress-notification.js │ │ │ ├── projectRootPath-is-provided-for-inferred-project.js │ │ │ ├── redo-resolutions-pointing-to-js-on-typing-install.js │ │ │ ├── scoped-name-discovery.js │ │ │ ├── should-handle-node-core-modules.js │ │ │ ├── should-not-initialize-invaalid-package-names.js │ │ │ ├── telemetry-events.js │ │ │ ├── throttle-delayed-run-install-requests.js │ │ │ ├── throttle-delayed-typings-to-install.js │ │ │ ├── throttle-scheduled-run-install-requests-with-defer-refreshed.js │ │ │ ├── throttle-scheduled-run-install-requests-with-defer-while-queuing-again.js │ │ │ ├── throttle-scheduled-run-install-requests-with-defer.js │ │ │ └── throttle-scheduled-run-install-requests-without-reaching-limit.js │ │ └── watchEnvironment/ │ │ ├── external-project-watch-options-errors.js │ │ ├── external-project-watch-options-in-host-configuration.js │ │ ├── external-project-watch-options.js │ │ ├── files-at-root.js │ │ ├── files-at-windows-style-root.js │ │ ├── files-not-at-root.js │ │ ├── files-not-at-windows-style-root.js │ │ ├── inferred-project-watch-options-errors.js │ │ ├── inferred-project-watch-options-in-host-configuration.js │ │ ├── inferred-project-watch-options.js │ │ ├── perVolumeCasing-and-new-file-addition.js │ │ ├── project-with-ascii-file-names-with-i.js │ │ ├── project-with-ascii-file-names.js │ │ ├── project-with-unicode-file-names.js │ │ ├── recursive-directory-does-not-watch-files-starting-with-dot-in-node_modules.js │ │ ├── uses-dynamic-polling-when-file-is-added-to-subfolder.js │ │ ├── uses-non-recursive-watchDirectory-when-file-is-added-to-subfolder.js │ │ ├── uses-watchFile-when-file-is-added-to-subfolder.js │ │ ├── watching-files-with-network-style-paths.js │ │ ├── watching-npm-install-in-codespaces-where-workspaces-folder-is-hosted-at-root.js │ │ ├── when-watchFile-is-single-watcher-per-file.js │ │ ├── with-excludeDirectories-option-in-configFile.js │ │ ├── with-excludeDirectories-option-in-configuration.js │ │ ├── with-fallbackPolling-option-as-host-configuration.js │ │ ├── with-fallbackPolling-option-in-configFile.js │ │ ├── with-watchDirectory-option-as-host-configuration.js │ │ ├── with-watchDirectory-option-in-configFile.js │ │ ├── with-watchFile-option-as-host-configuration.js │ │ └── with-watchFile-option-in-configFile.js │ ├── tsxAttributeErrors.errors.txt │ ├── tsxAttributeErrors.js │ ├── tsxAttributeErrors.symbols │ ├── tsxAttributeErrors.types │ ├── tsxAttributeInvalidNames.errors.txt │ ├── tsxAttributeInvalidNames.js │ ├── tsxAttributeInvalidNames.symbols │ ├── tsxAttributeInvalidNames.types │ ├── tsxAttributeQuickinfoTypesSameAsObjectLiteral.js │ ├── tsxAttributeQuickinfoTypesSameAsObjectLiteral.symbols │ ├── tsxAttributeQuickinfoTypesSameAsObjectLiteral.types │ ├── tsxAttributeResolution.js │ ├── tsxAttributeResolution.symbols │ ├── tsxAttributeResolution.types │ ├── tsxAttributeResolution1.errors.txt │ ├── tsxAttributeResolution1.js │ ├── tsxAttributeResolution1.symbols │ ├── tsxAttributeResolution1.types │ ├── tsxAttributeResolution10.errors.txt │ ├── tsxAttributeResolution10.js │ ├── tsxAttributeResolution10.symbols │ ├── tsxAttributeResolution10.types │ ├── tsxAttributeResolution11.errors.txt │ ├── tsxAttributeResolution11.js │ ├── tsxAttributeResolution11.symbols │ ├── tsxAttributeResolution11.types │ ├── tsxAttributeResolution12.errors.txt │ ├── tsxAttributeResolution12.js │ ├── tsxAttributeResolution12.symbols │ ├── tsxAttributeResolution12.types │ ├── tsxAttributeResolution13.js │ ├── tsxAttributeResolution13.symbols │ ├── tsxAttributeResolution13.types │ ├── tsxAttributeResolution14.errors.txt │ ├── tsxAttributeResolution14.js │ ├── tsxAttributeResolution14.symbols │ ├── tsxAttributeResolution14.types │ ├── tsxAttributeResolution15.errors.txt │ ├── tsxAttributeResolution15.js │ ├── tsxAttributeResolution15.symbols │ ├── tsxAttributeResolution15.types │ ├── tsxAttributeResolution16.js │ ├── tsxAttributeResolution16.symbols │ ├── tsxAttributeResolution16.types │ ├── tsxAttributeResolution2.errors.txt │ ├── tsxAttributeResolution2.js │ ├── tsxAttributeResolution2.symbols │ ├── tsxAttributeResolution2.types │ ├── tsxAttributeResolution3.errors.txt │ ├── tsxAttributeResolution3.js │ ├── tsxAttributeResolution3.symbols │ ├── tsxAttributeResolution3.types │ ├── tsxAttributeResolution4.errors.txt │ ├── tsxAttributeResolution4.js │ ├── tsxAttributeResolution4.symbols │ ├── tsxAttributeResolution4.types │ ├── tsxAttributeResolution5.errors.txt │ ├── tsxAttributeResolution5.js │ ├── tsxAttributeResolution5.symbols │ ├── tsxAttributeResolution5.types │ ├── tsxAttributeResolution6.errors.txt │ ├── tsxAttributeResolution6.js │ ├── tsxAttributeResolution6.symbols │ ├── tsxAttributeResolution6.types │ ├── tsxAttributeResolution7.errors.txt │ ├── tsxAttributeResolution7.js │ ├── tsxAttributeResolution7.symbols │ ├── tsxAttributeResolution7.types │ ├── tsxAttributeResolution8.js │ ├── tsxAttributeResolution8.symbols │ ├── tsxAttributeResolution8.types │ ├── tsxAttributeResolution9.errors.txt │ ├── tsxAttributeResolution9.js │ ├── tsxAttributeResolution9.symbols │ ├── tsxAttributeResolution9.types │ ├── tsxAttributesHasInferrableIndex.js │ ├── tsxAttributesHasInferrableIndex.symbols │ ├── tsxAttributesHasInferrableIndex.types │ ├── tsxCorrectlyParseLessThanComparison1.errors.txt │ ├── tsxCorrectlyParseLessThanComparison1.js │ ├── tsxCorrectlyParseLessThanComparison1.symbols │ ├── tsxCorrectlyParseLessThanComparison1.types │ ├── tsxDeepAttributeAssignabilityError.errors.txt │ ├── tsxDeepAttributeAssignabilityError.js │ ├── tsxDeepAttributeAssignabilityError.symbols │ ├── tsxDeepAttributeAssignabilityError.types │ ├── tsxDefaultAttributesResolution1.js │ ├── tsxDefaultAttributesResolution1.symbols │ ├── tsxDefaultAttributesResolution1.types │ ├── tsxDefaultAttributesResolution2.js │ ├── tsxDefaultAttributesResolution2.symbols │ ├── tsxDefaultAttributesResolution2.types │ ├── tsxDefaultAttributesResolution3.errors.txt │ ├── tsxDefaultAttributesResolution3.js │ ├── tsxDefaultAttributesResolution3.symbols │ ├── tsxDefaultAttributesResolution3.types │ ├── tsxDefaultImports.js │ ├── tsxDefaultImports.symbols │ ├── tsxDefaultImports.types │ ├── tsxDiscriminantPropertyInference.js │ ├── tsxDiscriminantPropertyInference.symbols │ ├── tsxDiscriminantPropertyInference.types │ ├── tsxDynamicTagName1.js │ ├── tsxDynamicTagName1.symbols │ ├── tsxDynamicTagName1.types │ ├── tsxDynamicTagName2.errors.txt │ ├── tsxDynamicTagName2.js │ ├── tsxDynamicTagName2.symbols │ ├── tsxDynamicTagName2.types │ ├── tsxDynamicTagName3.errors.txt │ ├── tsxDynamicTagName3.js │ ├── tsxDynamicTagName3.symbols │ ├── tsxDynamicTagName3.types │ ├── tsxDynamicTagName4.js │ ├── tsxDynamicTagName4.symbols │ ├── tsxDynamicTagName4.types │ ├── tsxDynamicTagName5.js │ ├── tsxDynamicTagName5.symbols │ ├── tsxDynamicTagName5.types │ ├── tsxDynamicTagName6.js │ ├── tsxDynamicTagName6.symbols │ ├── tsxDynamicTagName6.types │ ├── tsxDynamicTagName7.errors.txt │ ├── tsxDynamicTagName7.js │ ├── tsxDynamicTagName7.symbols │ ├── tsxDynamicTagName7.types │ ├── tsxDynamicTagName8.js │ ├── tsxDynamicTagName8.symbols │ ├── tsxDynamicTagName8.types │ ├── tsxDynamicTagName9.js │ ├── tsxDynamicTagName9.symbols │ ├── tsxDynamicTagName9.types │ ├── tsxElementResolution.errors.txt │ ├── tsxElementResolution.js │ ├── tsxElementResolution.symbols │ ├── tsxElementResolution.types │ ├── tsxElementResolution1.errors.txt │ ├── tsxElementResolution1.js │ ├── tsxElementResolution1.symbols │ ├── tsxElementResolution1.types │ ├── tsxElementResolution10.errors.txt │ ├── tsxElementResolution10.js │ ├── tsxElementResolution10.symbols │ ├── tsxElementResolution10.types │ ├── tsxElementResolution11.errors.txt │ ├── tsxElementResolution11.js │ ├── tsxElementResolution11.symbols │ ├── tsxElementResolution11.types │ ├── tsxElementResolution12.errors.txt │ ├── tsxElementResolution12.js │ ├── tsxElementResolution12.symbols │ ├── tsxElementResolution12.types │ ├── tsxElementResolution13.errors.txt │ ├── tsxElementResolution13.js │ ├── tsxElementResolution13.symbols │ ├── tsxElementResolution13.types │ ├── tsxElementResolution14.errors.txt │ ├── tsxElementResolution14.js │ ├── tsxElementResolution14.symbols │ ├── tsxElementResolution14.types │ ├── tsxElementResolution15.errors.txt │ ├── tsxElementResolution15.js │ ├── tsxElementResolution15.symbols │ ├── tsxElementResolution15.types │ ├── tsxElementResolution16.errors.txt │ ├── tsxElementResolution16.js │ ├── tsxElementResolution16.symbols │ ├── tsxElementResolution16.types │ ├── tsxElementResolution17.errors.txt │ ├── tsxElementResolution17.js │ ├── tsxElementResolution17.symbols │ ├── tsxElementResolution17.types │ ├── tsxElementResolution18.errors.txt │ ├── tsxElementResolution18.js │ ├── tsxElementResolution18.symbols │ ├── tsxElementResolution18.types │ ├── tsxElementResolution19.js │ ├── tsxElementResolution19.symbols │ ├── tsxElementResolution19.types │ ├── tsxElementResolution2.js │ ├── tsxElementResolution2.symbols │ ├── tsxElementResolution2.types │ ├── tsxElementResolution3.errors.txt │ ├── tsxElementResolution3.js │ ├── tsxElementResolution3.symbols │ ├── tsxElementResolution3.types │ ├── tsxElementResolution4.errors.txt │ ├── tsxElementResolution4.js │ ├── tsxElementResolution4.symbols │ ├── tsxElementResolution4.types │ ├── tsxElementResolution5.errors.txt │ ├── tsxElementResolution5.js │ ├── tsxElementResolution5.symbols │ ├── tsxElementResolution5.types │ ├── tsxElementResolution6.errors.txt │ ├── tsxElementResolution6.js │ ├── tsxElementResolution6.symbols │ ├── tsxElementResolution6.types │ ├── tsxElementResolution7.errors.txt │ ├── tsxElementResolution7.js │ ├── tsxElementResolution7.symbols │ ├── tsxElementResolution7.types │ ├── tsxElementResolution8.errors.txt │ ├── tsxElementResolution8.js │ ├── tsxElementResolution8.symbols │ ├── tsxElementResolution8.types │ ├── tsxElementResolution9.errors.txt │ ├── tsxElementResolution9.js │ ├── tsxElementResolution9.symbols │ ├── tsxElementResolution9.types │ ├── tsxEmit1.errors.txt │ ├── tsxEmit1.js │ ├── tsxEmit1.symbols │ ├── tsxEmit1.types │ ├── tsxEmit2.js │ ├── tsxEmit2.symbols │ ├── tsxEmit2.types │ ├── tsxEmit3.errors.txt │ ├── tsxEmit3.js │ ├── tsxEmit3.sourcemap.txt │ ├── tsxEmit3.symbols │ ├── tsxEmit3.types │ ├── tsxEmitSpreadAttribute(target=es2015).js │ ├── tsxEmitSpreadAttribute(target=es2015).symbols │ ├── tsxEmitSpreadAttribute(target=es2015).types │ ├── tsxEmitSpreadAttribute(target=es2018).js │ ├── tsxEmitSpreadAttribute(target=es2018).symbols │ ├── tsxEmitSpreadAttribute(target=es2018).types │ ├── tsxEmitSpreadAttribute(target=esnext).js │ ├── tsxEmitSpreadAttribute(target=esnext).symbols │ ├── tsxEmitSpreadAttribute(target=esnext).types │ ├── tsxErrorRecovery1.errors.txt │ ├── tsxErrorRecovery1.js │ ├── tsxErrorRecovery1.symbols │ ├── tsxErrorRecovery1.types │ ├── tsxErrorRecovery2.errors.txt │ ├── tsxErrorRecovery2.js │ ├── tsxErrorRecovery2.symbols │ ├── tsxErrorRecovery2.types │ ├── tsxErrorRecovery3.errors.txt │ ├── tsxErrorRecovery3.js │ ├── tsxErrorRecovery3.symbols │ ├── tsxErrorRecovery3.types │ ├── tsxExternalModuleEmit1.errors.txt │ ├── tsxExternalModuleEmit1.js │ ├── tsxExternalModuleEmit1.symbols │ ├── tsxExternalModuleEmit1.types │ ├── tsxExternalModuleEmit2.errors.txt │ ├── tsxExternalModuleEmit2.js │ ├── tsxExternalModuleEmit2.symbols │ ├── tsxExternalModuleEmit2.types │ ├── tsxFindAllReferences1.baseline.jsonc │ ├── tsxFindAllReferences10.baseline.jsonc │ ├── tsxFindAllReferences11.baseline.jsonc │ ├── tsxFindAllReferences2.baseline.jsonc │ ├── tsxFindAllReferences3.baseline.jsonc │ ├── tsxFindAllReferences4.baseline.jsonc │ ├── tsxFindAllReferences5.baseline.jsonc │ ├── tsxFindAllReferences6.baseline.jsonc │ ├── tsxFindAllReferences7.baseline.jsonc │ ├── tsxFindAllReferences8.baseline.jsonc │ ├── tsxFindAllReferences9.baseline.jsonc │ ├── tsxFindAllReferencesUnionElementType1.baseline.jsonc │ ├── tsxFindAllReferencesUnionElementType2.baseline.jsonc │ ├── tsxFragmentChildrenCheck.js │ ├── tsxFragmentChildrenCheck.symbols │ ├── tsxFragmentChildrenCheck.types │ ├── tsxFragmentErrors.errors.txt │ ├── tsxFragmentErrors.js │ ├── tsxFragmentErrors.symbols │ ├── tsxFragmentErrors.types │ ├── tsxFragmentPreserveEmit.js │ ├── tsxFragmentPreserveEmit.symbols │ ├── tsxFragmentPreserveEmit.types │ ├── tsxFragmentReactEmit.js │ ├── tsxFragmentReactEmit.symbols │ ├── tsxFragmentReactEmit.types │ ├── tsxGenericArrowFunctionParsing.errors.txt │ ├── tsxGenericArrowFunctionParsing.js │ ├── tsxGenericArrowFunctionParsing.symbols │ ├── tsxGenericArrowFunctionParsing.types │ ├── tsxGenericAttributesType1.errors.txt │ ├── tsxGenericAttributesType1.js │ ├── tsxGenericAttributesType1.symbols │ ├── tsxGenericAttributesType1.types │ ├── tsxGenericAttributesType2.js │ ├── tsxGenericAttributesType2.symbols │ ├── tsxGenericAttributesType2.types │ ├── tsxGenericAttributesType3.js │ ├── tsxGenericAttributesType3.symbols │ ├── tsxGenericAttributesType3.types │ ├── tsxGenericAttributesType4.js │ ├── tsxGenericAttributesType4.symbols │ ├── tsxGenericAttributesType4.types │ ├── tsxGenericAttributesType5.errors.txt │ ├── tsxGenericAttributesType5.js │ ├── tsxGenericAttributesType5.symbols │ ├── tsxGenericAttributesType5.types │ ├── tsxGenericAttributesType6.errors.txt │ ├── tsxGenericAttributesType6.js │ ├── tsxGenericAttributesType6.symbols │ ├── tsxGenericAttributesType6.types │ ├── tsxGenericAttributesType7.errors.txt │ ├── tsxGenericAttributesType7.js │ ├── tsxGenericAttributesType7.symbols │ ├── tsxGenericAttributesType7.types │ ├── tsxGenericAttributesType8.errors.txt │ ├── tsxGenericAttributesType8.js │ ├── tsxGenericAttributesType8.symbols │ ├── tsxGenericAttributesType8.types │ ├── tsxGenericAttributesType9.js │ ├── tsxGenericAttributesType9.symbols │ ├── tsxGenericAttributesType9.types │ ├── tsxGoToDefinitionClassInDifferentFile.baseline.jsonc │ ├── tsxGoToDefinitionClasses.baseline.jsonc │ ├── tsxGoToDefinitionIntrinsics.baseline.jsonc │ ├── tsxGoToDefinitionStatelessFunction1.baseline.jsonc │ ├── tsxGoToDefinitionStatelessFunction2.baseline.jsonc │ ├── tsxGoToDefinitionUnionElementType1.baseline.jsonc │ ├── tsxGoToDefinitionUnionElementType2.baseline.jsonc │ ├── tsxInArrowFunction.errors.txt │ ├── tsxInArrowFunction.js │ ├── tsxInArrowFunction.symbols │ ├── tsxInArrowFunction.types │ ├── tsxInferenceShouldNotYieldAnyOnUnions.errors.txt │ ├── tsxInferenceShouldNotYieldAnyOnUnions.js │ ├── tsxInferenceShouldNotYieldAnyOnUnions.symbols │ ├── tsxInferenceShouldNotYieldAnyOnUnions.types │ ├── tsxIntrinsicAttributeErrors.errors.txt │ ├── tsxIntrinsicAttributeErrors.js │ ├── tsxIntrinsicAttributeErrors.symbols │ ├── tsxIntrinsicAttributeErrors.types │ ├── tsxInvokeComponentType.errors.txt │ ├── tsxInvokeComponentType.js │ ├── tsxInvokeComponentType.symbols │ ├── tsxInvokeComponentType.types │ ├── tsxLibraryManagedAttributes.errors.txt │ ├── tsxLibraryManagedAttributes.js │ ├── tsxLibraryManagedAttributes.symbols │ ├── tsxLibraryManagedAttributes.types │ ├── tsxNamespacedAttributeName1.errors.txt │ ├── tsxNamespacedAttributeName1.js │ ├── tsxNamespacedAttributeName1.symbols │ ├── tsxNamespacedAttributeName1.types │ ├── tsxNamespacedAttributeName2.errors.txt │ ├── tsxNamespacedAttributeName2.js │ ├── tsxNamespacedAttributeName2.symbols │ ├── tsxNamespacedAttributeName2.types │ ├── tsxNamespacedTagName1.errors.txt │ ├── tsxNamespacedTagName1.js │ ├── tsxNamespacedTagName1.symbols │ ├── tsxNamespacedTagName1.types │ ├── tsxNamespacedTagName2.errors.txt │ ├── tsxNamespacedTagName2.js │ ├── tsxNamespacedTagName2.symbols │ ├── tsxNamespacedTagName2.types │ ├── tsxNoJsx.errors.txt │ ├── tsxNoJsx.js │ ├── tsxNoJsx.symbols │ ├── tsxNoJsx.types │ ├── tsxNoTypeAnnotatedSFC.errors.txt │ ├── tsxNoTypeAnnotatedSFC.js │ ├── tsxNoTypeAnnotatedSFC.symbols │ ├── tsxNoTypeAnnotatedSFC.types │ ├── tsxNotUsingApparentTypeOfSFC.errors.txt │ ├── tsxNotUsingApparentTypeOfSFC.js │ ├── tsxNotUsingApparentTypeOfSFC.symbols │ ├── tsxNotUsingApparentTypeOfSFC.types │ ├── tsxOpeningClosingNames.js │ ├── tsxOpeningClosingNames.symbols │ ├── tsxOpeningClosingNames.types │ ├── tsxParseTests1.errors.txt │ ├── tsxParseTests1.js │ ├── tsxParseTests1.symbols │ ├── tsxParseTests1.types │ ├── tsxParseTests2.errors.txt │ ├── tsxParseTests2.js │ ├── tsxParseTests2.symbols │ ├── tsxParseTests2.types │ ├── tsxPreserveEmit1(target=es2015).errors.txt │ ├── tsxPreserveEmit1(target=es2015).js │ ├── tsxPreserveEmit1(target=es2015).symbols │ ├── tsxPreserveEmit1(target=es2015).types │ ├── tsxPreserveEmit1(target=es5).errors.txt │ ├── tsxPreserveEmit1(target=es5).js │ ├── tsxPreserveEmit1(target=es5).symbols │ ├── tsxPreserveEmit1(target=es5).types │ ├── tsxPreserveEmit2(target=es2015).errors.txt │ ├── tsxPreserveEmit2(target=es2015).js │ ├── tsxPreserveEmit2(target=es2015).symbols │ ├── tsxPreserveEmit2(target=es2015).types │ ├── tsxPreserveEmit2(target=es5).errors.txt │ ├── tsxPreserveEmit2(target=es5).js │ ├── tsxPreserveEmit2(target=es5).symbols │ ├── tsxPreserveEmit2(target=es5).types │ ├── tsxPreserveEmit3.errors.txt │ ├── tsxPreserveEmit3.js │ ├── tsxPreserveEmit3.symbols │ ├── tsxPreserveEmit3.types │ ├── tsxReactComponentWithDefaultTypeParameter1.js │ ├── tsxReactComponentWithDefaultTypeParameter1.symbols │ ├── tsxReactComponentWithDefaultTypeParameter1.types │ ├── tsxReactComponentWithDefaultTypeParameter2.js │ ├── tsxReactComponentWithDefaultTypeParameter2.symbols │ ├── tsxReactComponentWithDefaultTypeParameter2.types │ ├── tsxReactComponentWithDefaultTypeParameter3.errors.txt │ ├── tsxReactComponentWithDefaultTypeParameter3.js │ ├── tsxReactComponentWithDefaultTypeParameter3.symbols │ ├── tsxReactComponentWithDefaultTypeParameter3.types │ ├── tsxReactEmit1.errors.txt │ ├── tsxReactEmit1.js │ ├── tsxReactEmit1.symbols │ ├── tsxReactEmit1.types │ ├── tsxReactEmit2.js │ ├── tsxReactEmit2.symbols │ ├── tsxReactEmit2.types │ ├── tsxReactEmit3.errors.txt │ ├── tsxReactEmit3.js │ ├── tsxReactEmit3.symbols │ ├── tsxReactEmit3.types │ ├── tsxReactEmit4.errors.txt │ ├── tsxReactEmit4.js │ ├── tsxReactEmit4.symbols │ ├── tsxReactEmit4.types │ ├── tsxReactEmit5.errors.txt │ ├── tsxReactEmit5.js │ ├── tsxReactEmit5.symbols │ ├── tsxReactEmit5.types │ ├── tsxReactEmit6.js │ ├── tsxReactEmit6.symbols │ ├── tsxReactEmit6.types │ ├── tsxReactEmit7.errors.txt │ ├── tsxReactEmit7.js │ ├── tsxReactEmit7.symbols │ ├── tsxReactEmit7.types │ ├── tsxReactEmit8(jsx=react-jsx).js │ ├── tsxReactEmit8(jsx=react-jsx).symbols │ ├── tsxReactEmit8(jsx=react-jsx).types │ ├── tsxReactEmit8(jsx=react-jsxdev).js │ ├── tsxReactEmit8(jsx=react-jsxdev).symbols │ ├── tsxReactEmit8(jsx=react-jsxdev).types │ ├── tsxReactEmitEntities.js │ ├── tsxReactEmitEntities.symbols │ ├── tsxReactEmitEntities.types │ ├── tsxReactEmitNesting.errors.txt │ ├── tsxReactEmitNesting.js │ ├── tsxReactEmitNesting.symbols │ ├── tsxReactEmitNesting.types │ ├── tsxReactEmitSpreadAttribute(target=es2015).js │ ├── tsxReactEmitSpreadAttribute(target=es2015).symbols │ ├── tsxReactEmitSpreadAttribute(target=es2015).types │ ├── tsxReactEmitSpreadAttribute(target=es2018).js │ ├── tsxReactEmitSpreadAttribute(target=es2018).symbols │ ├── tsxReactEmitSpreadAttribute(target=es2018).types │ ├── tsxReactEmitSpreadAttribute(target=esnext).js │ ├── tsxReactEmitSpreadAttribute(target=esnext).symbols │ ├── tsxReactEmitSpreadAttribute(target=esnext).types │ ├── tsxReactEmitWhitespace.js │ ├── tsxReactEmitWhitespace.symbols │ ├── tsxReactEmitWhitespace.types │ ├── tsxReactEmitWhitespace2.js │ ├── tsxReactEmitWhitespace2.symbols │ ├── tsxReactEmitWhitespace2.types │ ├── tsxReactPropsInferenceSucceedsOnIntersections.js │ ├── tsxReactPropsInferenceSucceedsOnIntersections.symbols │ ├── tsxReactPropsInferenceSucceedsOnIntersections.types │ ├── tsxRename1.baseline.jsonc │ ├── tsxRename2.baseline.jsonc │ ├── tsxRename3.baseline.jsonc │ ├── tsxRename4.baseline.jsonc │ ├── tsxRename5.baseline.jsonc │ ├── tsxRename6.baseline.jsonc │ ├── tsxRename7.baseline.jsonc │ ├── tsxRename8.baseline.jsonc │ ├── tsxRename9.baseline.jsonc │ ├── tsxResolveExternalModuleExportsTypes.errors.txt │ ├── tsxResolveExternalModuleExportsTypes.js │ ├── tsxResolveExternalModuleExportsTypes.symbols │ ├── tsxResolveExternalModuleExportsTypes.types │ ├── tsxSfcReturnNull.errors.txt │ ├── tsxSfcReturnNull.js │ ├── tsxSfcReturnNull.symbols │ ├── tsxSfcReturnNull.types │ ├── tsxSfcReturnNullStrictNullChecks.errors.txt │ ├── tsxSfcReturnNullStrictNullChecks.js │ ├── tsxSfcReturnNullStrictNullChecks.symbols │ ├── tsxSfcReturnNullStrictNullChecks.types │ ├── tsxSfcReturnUndefinedStrictNullChecks.errors.txt │ ├── tsxSfcReturnUndefinedStrictNullChecks.js │ ├── tsxSfcReturnUndefinedStrictNullChecks.symbols │ ├── tsxSfcReturnUndefinedStrictNullChecks.types │ ├── tsxSpreadAttributesResolution1.js │ ├── tsxSpreadAttributesResolution1.symbols │ ├── tsxSpreadAttributesResolution1.types │ ├── tsxSpreadAttributesResolution10.errors.txt │ ├── tsxSpreadAttributesResolution10.js │ ├── tsxSpreadAttributesResolution10.symbols │ ├── tsxSpreadAttributesResolution10.types │ ├── tsxSpreadAttributesResolution11.errors.txt │ ├── tsxSpreadAttributesResolution11.js │ ├── tsxSpreadAttributesResolution11.symbols │ ├── tsxSpreadAttributesResolution11.types │ ├── tsxSpreadAttributesResolution12.errors.txt │ ├── tsxSpreadAttributesResolution12.js │ ├── tsxSpreadAttributesResolution12.symbols │ ├── tsxSpreadAttributesResolution12.types │ ├── tsxSpreadAttributesResolution13.errors.txt │ ├── tsxSpreadAttributesResolution13.js │ ├── tsxSpreadAttributesResolution13.symbols │ ├── tsxSpreadAttributesResolution13.types │ ├── tsxSpreadAttributesResolution14.errors.txt │ ├── tsxSpreadAttributesResolution14.js │ ├── tsxSpreadAttributesResolution14.symbols │ ├── tsxSpreadAttributesResolution14.types │ ├── tsxSpreadAttributesResolution15.js │ ├── tsxSpreadAttributesResolution15.symbols │ ├── tsxSpreadAttributesResolution15.types │ ├── tsxSpreadAttributesResolution16.errors.txt │ ├── tsxSpreadAttributesResolution16.js │ ├── tsxSpreadAttributesResolution16.symbols │ ├── tsxSpreadAttributesResolution16.types │ ├── tsxSpreadAttributesResolution17.errors.txt │ ├── tsxSpreadAttributesResolution17.js │ ├── tsxSpreadAttributesResolution17.symbols │ ├── tsxSpreadAttributesResolution17.types │ ├── tsxSpreadAttributesResolution2.errors.txt │ ├── tsxSpreadAttributesResolution2.js │ ├── tsxSpreadAttributesResolution2.symbols │ ├── tsxSpreadAttributesResolution2.types │ ├── tsxSpreadAttributesResolution3.js │ ├── tsxSpreadAttributesResolution3.symbols │ ├── tsxSpreadAttributesResolution3.types │ ├── tsxSpreadAttributesResolution4.errors.txt │ ├── tsxSpreadAttributesResolution4.js │ ├── tsxSpreadAttributesResolution4.symbols │ ├── tsxSpreadAttributesResolution4.types │ ├── tsxSpreadAttributesResolution5.errors.txt │ ├── tsxSpreadAttributesResolution5.js │ ├── tsxSpreadAttributesResolution5.symbols │ ├── tsxSpreadAttributesResolution5.types │ ├── tsxSpreadAttributesResolution6.errors.txt │ ├── tsxSpreadAttributesResolution6.js │ ├── tsxSpreadAttributesResolution6.symbols │ ├── tsxSpreadAttributesResolution6.types │ ├── tsxSpreadAttributesResolution7.js │ ├── tsxSpreadAttributesResolution7.symbols │ ├── tsxSpreadAttributesResolution7.types │ ├── tsxSpreadAttributesResolution8.js │ ├── tsxSpreadAttributesResolution8.symbols │ ├── tsxSpreadAttributesResolution8.types │ ├── tsxSpreadAttributesResolution9.js │ ├── tsxSpreadAttributesResolution9.symbols │ ├── tsxSpreadAttributesResolution9.types │ ├── tsxSpreadChildren.errors.txt │ ├── tsxSpreadChildren.js │ ├── tsxSpreadChildren.symbols │ ├── tsxSpreadChildren.types │ ├── tsxSpreadChildrenInvalidType(jsx=react,target=es2015).errors.txt │ ├── tsxSpreadChildrenInvalidType(jsx=react,target=es2015).js │ ├── tsxSpreadChildrenInvalidType(jsx=react,target=es2015).symbols │ ├── tsxSpreadChildrenInvalidType(jsx=react,target=es2015).types │ ├── tsxSpreadChildrenInvalidType(jsx=react,target=es5).errors.txt │ ├── tsxSpreadChildrenInvalidType(jsx=react,target=es5).js │ ├── tsxSpreadChildrenInvalidType(jsx=react,target=es5).symbols │ ├── tsxSpreadChildrenInvalidType(jsx=react,target=es5).types │ ├── tsxSpreadChildrenInvalidType(jsx=react-jsx,target=es2015).errors.txt │ ├── tsxSpreadChildrenInvalidType(jsx=react-jsx,target=es2015).js │ ├── tsxSpreadChildrenInvalidType(jsx=react-jsx,target=es2015).symbols │ ├── tsxSpreadChildrenInvalidType(jsx=react-jsx,target=es2015).types │ ├── tsxSpreadChildrenInvalidType(jsx=react-jsx,target=es5).errors.txt │ ├── tsxSpreadChildrenInvalidType(jsx=react-jsx,target=es5).js │ ├── tsxSpreadChildrenInvalidType(jsx=react-jsx,target=es5).symbols │ ├── tsxSpreadChildrenInvalidType(jsx=react-jsx,target=es5).types │ ├── tsxSpreadDoesNotReportExcessProps.js │ ├── tsxSpreadDoesNotReportExcessProps.symbols │ ├── tsxSpreadDoesNotReportExcessProps.types │ ├── tsxSpreadInvalidType.errors.txt │ ├── tsxSpreadInvalidType.js │ ├── tsxSpreadInvalidType.symbols │ ├── tsxSpreadInvalidType.types │ ├── tsxStatelessComponentDefaultProps.js │ ├── tsxStatelessComponentDefaultProps.symbols │ ├── tsxStatelessComponentDefaultProps.types │ ├── tsxStatelessFunctionComponentOverload1.errors.txt │ ├── tsxStatelessFunctionComponentOverload1.js │ ├── tsxStatelessFunctionComponentOverload1.symbols │ ├── tsxStatelessFunctionComponentOverload1.types │ ├── tsxStatelessFunctionComponentOverload2.errors.txt │ ├── tsxStatelessFunctionComponentOverload2.js │ ├── tsxStatelessFunctionComponentOverload2.symbols │ ├── tsxStatelessFunctionComponentOverload2.types │ ├── tsxStatelessFunctionComponentOverload3.errors.txt │ ├── tsxStatelessFunctionComponentOverload3.js │ ├── tsxStatelessFunctionComponentOverload3.symbols │ ├── tsxStatelessFunctionComponentOverload3.types │ ├── tsxStatelessFunctionComponentOverload4.errors.txt │ ├── tsxStatelessFunctionComponentOverload4.js │ ├── tsxStatelessFunctionComponentOverload4.symbols │ ├── tsxStatelessFunctionComponentOverload4.types │ ├── tsxStatelessFunctionComponentOverload5.errors.txt │ ├── tsxStatelessFunctionComponentOverload5.js │ ├── tsxStatelessFunctionComponentOverload5.symbols │ ├── tsxStatelessFunctionComponentOverload5.types │ ├── tsxStatelessFunctionComponentOverload6.errors.txt │ ├── tsxStatelessFunctionComponentOverload6.js │ ├── tsxStatelessFunctionComponentOverload6.symbols │ ├── tsxStatelessFunctionComponentOverload6.types │ ├── tsxStatelessFunctionComponentWithDefaultTypeParameter1.errors.txt │ ├── tsxStatelessFunctionComponentWithDefaultTypeParameter1.js │ ├── tsxStatelessFunctionComponentWithDefaultTypeParameter1.symbols │ ├── tsxStatelessFunctionComponentWithDefaultTypeParameter1.types │ ├── tsxStatelessFunctionComponentWithDefaultTypeParameter2.errors.txt │ ├── tsxStatelessFunctionComponentWithDefaultTypeParameter2.js │ ├── tsxStatelessFunctionComponentWithDefaultTypeParameter2.symbols │ ├── tsxStatelessFunctionComponentWithDefaultTypeParameter2.types │ ├── tsxStatelessFunctionComponents1.errors.txt │ ├── tsxStatelessFunctionComponents1.js │ ├── tsxStatelessFunctionComponents1.symbols │ ├── tsxStatelessFunctionComponents1.types │ ├── tsxStatelessFunctionComponents2.errors.txt │ ├── tsxStatelessFunctionComponents2.js │ ├── tsxStatelessFunctionComponents2.symbols │ ├── tsxStatelessFunctionComponents2.types │ ├── tsxStatelessFunctionComponents3.errors.txt │ ├── tsxStatelessFunctionComponents3.js │ ├── tsxStatelessFunctionComponents3.symbols │ ├── tsxStatelessFunctionComponents3.types │ ├── tsxStatelessFunctionComponentsWithTypeArguments1.errors.txt │ ├── tsxStatelessFunctionComponentsWithTypeArguments1.js │ ├── tsxStatelessFunctionComponentsWithTypeArguments1.symbols │ ├── tsxStatelessFunctionComponentsWithTypeArguments1.types │ ├── tsxStatelessFunctionComponentsWithTypeArguments2.errors.txt │ ├── tsxStatelessFunctionComponentsWithTypeArguments2.js │ ├── tsxStatelessFunctionComponentsWithTypeArguments2.symbols │ ├── tsxStatelessFunctionComponentsWithTypeArguments2.types │ ├── tsxStatelessFunctionComponentsWithTypeArguments3.errors.txt │ ├── tsxStatelessFunctionComponentsWithTypeArguments3.js │ ├── tsxStatelessFunctionComponentsWithTypeArguments3.symbols │ ├── tsxStatelessFunctionComponentsWithTypeArguments3.types │ ├── tsxStatelessFunctionComponentsWithTypeArguments4.errors.txt │ ├── tsxStatelessFunctionComponentsWithTypeArguments4.js │ ├── tsxStatelessFunctionComponentsWithTypeArguments4.symbols │ ├── tsxStatelessFunctionComponentsWithTypeArguments4.types │ ├── tsxStatelessFunctionComponentsWithTypeArguments5.errors.txt │ ├── tsxStatelessFunctionComponentsWithTypeArguments5.js │ ├── tsxStatelessFunctionComponentsWithTypeArguments5.symbols │ ├── tsxStatelessFunctionComponentsWithTypeArguments5.types │ ├── tsxTypeArgumentPartialDefinitionStillErrors.errors.txt │ ├── tsxTypeArgumentPartialDefinitionStillErrors.js │ ├── tsxTypeArgumentPartialDefinitionStillErrors.symbols │ ├── tsxTypeArgumentPartialDefinitionStillErrors.types │ ├── tsxTypeArgumentResolution.errors.txt │ ├── tsxTypeArgumentResolution.js │ ├── tsxTypeArgumentResolution.symbols │ ├── tsxTypeArgumentResolution.types │ ├── tsxTypeArgumentsJsxPreserveOutput.js │ ├── tsxTypeArgumentsJsxPreserveOutput.symbols │ ├── tsxTypeArgumentsJsxPreserveOutput.types │ ├── tsxTypeErrors.errors.txt │ ├── tsxTypeErrors.js │ ├── tsxTypeErrors.symbols │ ├── tsxTypeErrors.types │ ├── tsxUnionElementType1.errors.txt │ ├── tsxUnionElementType1.js │ ├── tsxUnionElementType1.symbols │ ├── tsxUnionElementType1.types │ ├── tsxUnionElementType2.errors.txt │ ├── tsxUnionElementType2.js │ ├── tsxUnionElementType2.symbols │ ├── tsxUnionElementType2.types │ ├── tsxUnionElementType3.errors.txt │ ├── tsxUnionElementType3.js │ ├── tsxUnionElementType3.symbols │ ├── tsxUnionElementType3.types │ ├── tsxUnionElementType4.errors.txt │ ├── tsxUnionElementType4.js │ ├── tsxUnionElementType4.symbols │ ├── tsxUnionElementType4.types │ ├── tsxUnionElementType5.js │ ├── tsxUnionElementType5.symbols │ ├── tsxUnionElementType5.types │ ├── tsxUnionElementType6.errors.txt │ ├── tsxUnionElementType6.js │ ├── tsxUnionElementType6.symbols │ ├── tsxUnionElementType6.types │ ├── tsxUnionMemberChecksFilterDataProps.js │ ├── tsxUnionMemberChecksFilterDataProps.symbols │ ├── tsxUnionMemberChecksFilterDataProps.types │ ├── tsxUnionSpread.js │ ├── tsxUnionSpread.symbols │ ├── tsxUnionSpread.types │ ├── tsxUnionTypeComponent1.js │ ├── tsxUnionTypeComponent1.symbols │ ├── tsxUnionTypeComponent1.types │ ├── tsxUnionTypeComponent2.errors.txt │ ├── tsxUnionTypeComponent2.js │ ├── tsxUnionTypeComponent2.symbols │ ├── tsxUnionTypeComponent2.types │ ├── tupleElementTypes1.errors.txt │ ├── tupleElementTypes1.js │ ├── tupleElementTypes1.symbols │ ├── tupleElementTypes1.types │ ├── tupleElementTypes2.js │ ├── tupleElementTypes2.symbols │ ├── tupleElementTypes2.types │ ├── tupleElementTypes3.js │ ├── tupleElementTypes3.symbols │ ├── tupleElementTypes3.types │ ├── tupleElementTypes4.js │ ├── tupleElementTypes4.symbols │ ├── tupleElementTypes4.types │ ├── tupleLengthCheck.errors.txt │ ├── tupleLengthCheck.js │ ├── tupleLengthCheck.symbols │ ├── tupleLengthCheck.types │ ├── tupleTypeInference.js │ ├── tupleTypeInference.symbols │ ├── tupleTypeInference.types │ ├── tupleTypeInference2.js │ ├── tupleTypeInference2.symbols │ ├── tupleTypeInference2.types │ ├── tupleTypes.errors.txt │ ├── tupleTypes.js │ ├── tupleTypes.symbols │ ├── tupleTypes.types │ ├── twiceNestedKeyofIndexInference.js │ ├── twiceNestedKeyofIndexInference.symbols │ ├── twiceNestedKeyofIndexInference.types │ ├── twoAccessorsWithSameName(target=es2015).errors.txt │ ├── twoAccessorsWithSameName(target=es2015).js │ ├── twoAccessorsWithSameName(target=es2015).symbols │ ├── twoAccessorsWithSameName(target=es2015).types │ ├── twoAccessorsWithSameName(target=es5).errors.txt │ ├── twoAccessorsWithSameName(target=es5).js │ ├── twoAccessorsWithSameName(target=es5).symbols │ ├── twoAccessorsWithSameName(target=es5).types │ ├── twoAccessorsWithSameName2.errors.txt │ ├── twoAccessorsWithSameName2.js │ ├── twoAccessorsWithSameName2.symbols │ ├── twoAccessorsWithSameName2.types │ ├── twoGenericInterfacesDifferingByTypeParameterName.errors.txt │ ├── twoGenericInterfacesDifferingByTypeParameterName.js │ ├── twoGenericInterfacesDifferingByTypeParameterName.symbols │ ├── twoGenericInterfacesDifferingByTypeParameterName.types │ ├── twoGenericInterfacesDifferingByTypeParameterName2.errors.txt │ ├── twoGenericInterfacesDifferingByTypeParameterName2.js │ ├── twoGenericInterfacesDifferingByTypeParameterName2.symbols │ ├── twoGenericInterfacesDifferingByTypeParameterName2.types │ ├── twoGenericInterfacesWithDifferentConstraints.errors.txt │ ├── twoGenericInterfacesWithDifferentConstraints.js │ ├── twoGenericInterfacesWithDifferentConstraints.symbols │ ├── twoGenericInterfacesWithDifferentConstraints.types │ ├── twoGenericInterfacesWithTheSameNameButDifferentArity.errors.txt │ ├── twoGenericInterfacesWithTheSameNameButDifferentArity.js │ ├── twoGenericInterfacesWithTheSameNameButDifferentArity.symbols │ ├── twoGenericInterfacesWithTheSameNameButDifferentArity.types │ ├── twoInterfacesDifferentRootModule.errors.txt │ ├── twoInterfacesDifferentRootModule.js │ ├── twoInterfacesDifferentRootModule.symbols │ ├── twoInterfacesDifferentRootModule.types │ ├── twoInterfacesDifferentRootModule2.errors.txt │ ├── twoInterfacesDifferentRootModule2.js │ ├── twoInterfacesDifferentRootModule2.symbols │ ├── twoInterfacesDifferentRootModule2.types │ ├── twoMergedInterfacesWithDifferingOverloads.errors.txt │ ├── twoMergedInterfacesWithDifferingOverloads.js │ ├── twoMergedInterfacesWithDifferingOverloads.symbols │ ├── twoMergedInterfacesWithDifferingOverloads.types │ ├── twoMergedInterfacesWithDifferingOverloads2.errors.txt │ ├── twoMergedInterfacesWithDifferingOverloads2.js │ ├── twoMergedInterfacesWithDifferingOverloads2.symbols │ ├── twoMergedInterfacesWithDifferingOverloads2.types │ ├── typeAliasDeclarationEmit(target=es2015).errors.txt │ ├── typeAliasDeclarationEmit(target=es2015).js │ ├── typeAliasDeclarationEmit(target=es2015).symbols │ ├── typeAliasDeclarationEmit(target=es2015).types │ ├── typeAliasDeclarationEmit(target=es5).errors.txt │ ├── typeAliasDeclarationEmit(target=es5).js │ ├── typeAliasDeclarationEmit(target=es5).symbols │ ├── typeAliasDeclarationEmit(target=es5).types │ ├── typeAliasDeclarationEmit2(target=es2015).errors.txt │ ├── typeAliasDeclarationEmit2(target=es2015).js │ ├── typeAliasDeclarationEmit2(target=es2015).symbols │ ├── typeAliasDeclarationEmit2(target=es2015).types │ ├── typeAliasDeclarationEmit2(target=es5).errors.txt │ ├── typeAliasDeclarationEmit2(target=es5).js │ ├── typeAliasDeclarationEmit2(target=es5).symbols │ ├── typeAliasDeclarationEmit2(target=es5).types │ ├── typeAliasDeclarationEmit3.errors.txt │ ├── typeAliasDeclarationEmit3.js │ ├── typeAliasDeclarationEmit3.symbols │ ├── typeAliasDeclarationEmit3.types │ ├── typeAliasDeclareKeyword01.d.symbols │ ├── typeAliasDeclareKeyword01.d.types │ ├── typeAliasDeclareKeywordNewlines.errors.txt │ ├── typeAliasDeclareKeywordNewlines.js │ ├── typeAliasDeclareKeywordNewlines.symbols │ ├── typeAliasDeclareKeywordNewlines.types │ ├── typeAliasDoesntMakeModuleInstantiated.js │ ├── typeAliasDoesntMakeModuleInstantiated.symbols │ ├── typeAliasDoesntMakeModuleInstantiated.types │ ├── typeAliasExport.js │ ├── typeAliasExport.symbols │ ├── typeAliasExport.types │ ├── typeAliasFunctionTypeSharedSymbol.js │ ├── typeAliasFunctionTypeSharedSymbol.symbols │ ├── typeAliasFunctionTypeSharedSymbol.types │ ├── typeAliasInstantiationNoLeak1.symbols │ ├── typeAliasInstantiationNoLeak1.types │ ├── typeAliases.errors.txt │ ├── typeAliases.js │ ├── typeAliases.symbols │ ├── typeAliases.types │ ├── typeAliasesDoNotMerge.errors.txt │ ├── typeAliasesDoNotMerge.js │ ├── typeAliasesDoNotMerge.symbols │ ├── typeAliasesDoNotMerge.types │ ├── typeAliasesForObjectTypes.errors.txt │ ├── typeAliasesForObjectTypes.js │ ├── typeAliasesForObjectTypes.symbols │ ├── typeAliasesForObjectTypes.types │ ├── typeAndNamespaceExportMerge.js │ ├── typeAndNamespaceExportMerge.symbols │ ├── typeAndNamespaceExportMerge.types │ ├── typeAnnotationBestCommonTypeInArrayLiteral.js │ ├── typeAnnotationBestCommonTypeInArrayLiteral.symbols │ ├── typeAnnotationBestCommonTypeInArrayLiteral.types │ ├── typeArgInference.errors.txt │ ├── typeArgInference.js │ ├── typeArgInference.symbols │ ├── typeArgInference.types │ ├── typeArgInference2.errors.txt │ ├── typeArgInference2.js │ ├── typeArgInference2.symbols │ ├── typeArgInference2.types │ ├── typeArgInference2WithError.errors.txt │ ├── typeArgInference2WithError.js │ ├── typeArgInference2WithError.symbols │ ├── typeArgInference2WithError.types │ ├── typeArgInferenceWithNull.errors.txt │ ├── typeArgInferenceWithNull.js │ ├── typeArgInferenceWithNull.symbols │ ├── typeArgInferenceWithNull.types │ ├── typeArgumentConstraintResolution1.errors.txt │ ├── typeArgumentConstraintResolution1.js │ ├── typeArgumentConstraintResolution1.symbols │ ├── typeArgumentConstraintResolution1.types │ ├── typeArgumentDefaultUsesConstraintOnCircularDefault.errors.txt │ ├── typeArgumentDefaultUsesConstraintOnCircularDefault.js │ ├── typeArgumentDefaultUsesConstraintOnCircularDefault.symbols │ ├── typeArgumentDefaultUsesConstraintOnCircularDefault.types │ ├── typeArgumentInference.errors.txt │ ├── typeArgumentInference.js │ ├── typeArgumentInference.symbols │ ├── typeArgumentInference.types │ ├── typeArgumentInferenceApparentType1.errors.txt │ ├── typeArgumentInferenceApparentType1.js │ ├── typeArgumentInferenceApparentType1.symbols │ ├── typeArgumentInferenceApparentType1.types │ ├── typeArgumentInferenceApparentType2.errors.txt │ ├── typeArgumentInferenceApparentType2.js │ ├── typeArgumentInferenceApparentType2.symbols │ ├── typeArgumentInferenceApparentType2.types │ ├── typeArgumentInferenceConstructSignatures.errors.txt │ ├── typeArgumentInferenceConstructSignatures.js │ ├── typeArgumentInferenceConstructSignatures.symbols │ ├── typeArgumentInferenceConstructSignatures.types │ ├── typeArgumentInferenceErrors.errors.txt │ ├── typeArgumentInferenceErrors.js │ ├── typeArgumentInferenceErrors.symbols │ ├── typeArgumentInferenceErrors.types │ ├── typeArgumentInferenceOrdering.errors.txt │ ├── typeArgumentInferenceOrdering.js │ ├── typeArgumentInferenceOrdering.symbols │ ├── typeArgumentInferenceOrdering.types │ ├── typeArgumentInferenceTransitiveConstraints.js │ ├── typeArgumentInferenceTransitiveConstraints.symbols │ ├── typeArgumentInferenceTransitiveConstraints.types │ ├── typeArgumentInferenceWithClassExpression1.errors.txt │ ├── typeArgumentInferenceWithClassExpression1.js │ ├── typeArgumentInferenceWithClassExpression1.symbols │ ├── typeArgumentInferenceWithClassExpression1.types │ ├── typeArgumentInferenceWithClassExpression2.errors.txt │ ├── typeArgumentInferenceWithClassExpression2.js │ ├── typeArgumentInferenceWithClassExpression2.symbols │ ├── typeArgumentInferenceWithClassExpression2.types │ ├── typeArgumentInferenceWithClassExpression3.errors.txt │ ├── typeArgumentInferenceWithClassExpression3.js │ ├── typeArgumentInferenceWithClassExpression3.symbols │ ├── typeArgumentInferenceWithClassExpression3.types │ ├── typeArgumentInferenceWithConstraintAsCommonRoot.errors.txt │ ├── typeArgumentInferenceWithConstraintAsCommonRoot.js │ ├── typeArgumentInferenceWithConstraintAsCommonRoot.symbols │ ├── typeArgumentInferenceWithConstraintAsCommonRoot.types │ ├── typeArgumentInferenceWithConstraints.errors.txt │ ├── typeArgumentInferenceWithConstraints.js │ ├── typeArgumentInferenceWithConstraints.symbols │ ├── typeArgumentInferenceWithConstraints.types │ ├── typeArgumentInferenceWithObjectLiteral.errors.txt │ ├── typeArgumentInferenceWithObjectLiteral.js │ ├── typeArgumentInferenceWithObjectLiteral.symbols │ ├── typeArgumentInferenceWithObjectLiteral.types │ ├── typeArgumentInferenceWithRecursivelyReferencedTypeAliasToTypeLiteral01.errors.txt │ ├── typeArgumentInferenceWithRecursivelyReferencedTypeAliasToTypeLiteral01.js │ ├── typeArgumentInferenceWithRecursivelyReferencedTypeAliasToTypeLiteral01.symbols │ ├── typeArgumentInferenceWithRecursivelyReferencedTypeAliasToTypeLiteral01.types │ ├── typeArgumentInferenceWithRecursivelyReferencedTypeAliasToTypeLiteral02.errors.txt │ ├── typeArgumentInferenceWithRecursivelyReferencedTypeAliasToTypeLiteral02.js │ ├── typeArgumentInferenceWithRecursivelyReferencedTypeAliasToTypeLiteral02.symbols │ ├── typeArgumentInferenceWithRecursivelyReferencedTypeAliasToTypeLiteral02.types │ ├── typeArgumentsInFunctionExpressions.js │ ├── typeArgumentsInFunctionExpressions.symbols │ ├── typeArgumentsInFunctionExpressions.types │ ├── typeArgumentsOnFunctionsWithNoTypeParameters.errors.txt │ ├── typeArgumentsOnFunctionsWithNoTypeParameters.js │ ├── typeArgumentsOnFunctionsWithNoTypeParameters.symbols │ ├── typeArgumentsOnFunctionsWithNoTypeParameters.types │ ├── typeArgumentsShouldDisallowNonGenericOverloads.errors.txt │ ├── typeArgumentsShouldDisallowNonGenericOverloads.js │ ├── typeArgumentsShouldDisallowNonGenericOverloads.symbols │ ├── typeArgumentsShouldDisallowNonGenericOverloads.types │ ├── typeArgumentsWithStringLiteralTypes01.errors.txt │ ├── typeArgumentsWithStringLiteralTypes01.js │ ├── typeArgumentsWithStringLiteralTypes01.symbols │ ├── typeArgumentsWithStringLiteralTypes01.types │ ├── typeAssertionToGenericFunctionType.errors.txt │ ├── typeAssertionToGenericFunctionType.js │ ├── typeAssertionToGenericFunctionType.symbols │ ├── typeAssertionToGenericFunctionType.types │ ├── typeAssertions.errors.txt │ ├── typeAssertions.js │ ├── typeAssertions.symbols │ ├── typeAssertions.types │ ├── typeAssertionsWithIntersectionTypes01.errors.txt │ ├── typeAssertionsWithIntersectionTypes01.js │ ├── typeAssertionsWithIntersectionTypes01.symbols │ ├── typeAssertionsWithIntersectionTypes01.types │ ├── typeAssertionsWithUnionTypes01.errors.txt │ ├── typeAssertionsWithUnionTypes01.js │ ├── typeAssertionsWithUnionTypes01.symbols │ ├── typeAssertionsWithUnionTypes01.types │ ├── typeAssignabilityErrorMessage.errors.txt │ ├── typeAssignabilityErrorMessage.symbols │ ├── typeAssignabilityErrorMessage.types │ ├── typeCheckExportsVariable.errors.txt │ ├── typeCheckExportsVariable.js │ ├── typeCheckExportsVariable.symbols │ ├── typeCheckExportsVariable.types │ ├── typeCheckObjectCreationExpressionWithUndefinedCallResolutionData.js │ ├── typeCheckObjectCreationExpressionWithUndefinedCallResolutionData.symbols │ ├── typeCheckObjectCreationExpressionWithUndefinedCallResolutionData.types │ ├── typeCheckObjectLiteralMethodBody.js │ ├── typeCheckObjectLiteralMethodBody.symbols │ ├── typeCheckObjectLiteralMethodBody.types │ ├── typeCheckReturnExpression.js │ ├── typeCheckReturnExpression.symbols │ ├── typeCheckReturnExpression.types │ ├── typeCheckTypeArgument.errors.txt │ ├── typeCheckTypeArgument.js │ ├── typeCheckTypeArgument.symbols │ ├── typeCheckTypeArgument.types │ ├── typeCheckingInsideFunctionExpressionInArray.errors.txt │ ├── typeCheckingInsideFunctionExpressionInArray.js │ ├── typeCheckingInsideFunctionExpressionInArray.symbols │ ├── typeCheckingInsideFunctionExpressionInArray.types │ ├── typeComparisonCaching.errors.txt │ ├── typeComparisonCaching.js │ ├── typeComparisonCaching.symbols │ ├── typeComparisonCaching.types │ ├── typeConstraintsWithConstructSignatures.js │ ├── typeConstraintsWithConstructSignatures.symbols │ ├── typeConstraintsWithConstructSignatures.types │ ├── typeErrorAfterStringCompletionsInNestedCall2.baseline │ ├── typeFromContextualThisType.symbols │ ├── typeFromContextualThisType.types │ ├── typeFromJSConstructor.errors.txt │ ├── typeFromJSConstructor.symbols │ ├── typeFromJSConstructor.types │ ├── typeFromJSInitializer.errors.txt │ ├── typeFromJSInitializer.symbols │ ├── typeFromJSInitializer.types │ ├── typeFromJSInitializer2.symbols │ ├── typeFromJSInitializer2.types │ ├── typeFromJSInitializer3.symbols │ ├── typeFromJSInitializer3.types │ ├── typeFromJSInitializer4.errors.txt │ ├── typeFromJSInitializer4.symbols │ ├── typeFromJSInitializer4.types │ ├── typeFromParamTagForFunction.symbols │ ├── typeFromParamTagForFunction.types │ ├── typeFromPrivatePropertyAssignment.js │ ├── typeFromPrivatePropertyAssignment.symbols │ ├── typeFromPrivatePropertyAssignment.types │ ├── typeFromPrivatePropertyAssignmentJs.js │ ├── typeFromPrivatePropertyAssignmentJs.symbols │ ├── typeFromPrivatePropertyAssignmentJs.types │ ├── typeFromPropertyAssignment.symbols │ ├── typeFromPropertyAssignment.types │ ├── typeFromPropertyAssignment10.symbols │ ├── typeFromPropertyAssignment10.types │ ├── typeFromPropertyAssignment10_1.symbols │ ├── typeFromPropertyAssignment10_1.types │ ├── typeFromPropertyAssignment11.symbols │ ├── typeFromPropertyAssignment11.types │ ├── typeFromPropertyAssignment12.symbols │ ├── typeFromPropertyAssignment12.types │ ├── typeFromPropertyAssignment13.symbols │ ├── typeFromPropertyAssignment13.types │ ├── typeFromPropertyAssignment14.symbols │ ├── typeFromPropertyAssignment14.types │ ├── typeFromPropertyAssignment15.symbols │ ├── typeFromPropertyAssignment15.types │ ├── typeFromPropertyAssignment16.symbols │ ├── typeFromPropertyAssignment16.types │ ├── typeFromPropertyAssignment17.symbols │ ├── typeFromPropertyAssignment17.types │ ├── typeFromPropertyAssignment18.symbols │ ├── typeFromPropertyAssignment18.types │ ├── typeFromPropertyAssignment19.symbols │ ├── typeFromPropertyAssignment19.types │ ├── typeFromPropertyAssignment2.symbols │ ├── typeFromPropertyAssignment2.types │ ├── typeFromPropertyAssignment20.symbols │ ├── typeFromPropertyAssignment20.types │ ├── typeFromPropertyAssignment21.errors.txt │ ├── typeFromPropertyAssignment21.symbols │ ├── typeFromPropertyAssignment21.types │ ├── typeFromPropertyAssignment22.errors.txt │ ├── typeFromPropertyAssignment22.symbols │ ├── typeFromPropertyAssignment22.types │ ├── typeFromPropertyAssignment23.symbols │ ├── typeFromPropertyAssignment23.types │ ├── typeFromPropertyAssignment24.symbols │ ├── typeFromPropertyAssignment24.types │ ├── typeFromPropertyAssignment25.symbols │ ├── typeFromPropertyAssignment25.types │ ├── typeFromPropertyAssignment26.errors.txt │ ├── typeFromPropertyAssignment26.symbols │ ├── typeFromPropertyAssignment26.types │ ├── typeFromPropertyAssignment27.symbols │ ├── typeFromPropertyAssignment27.types │ ├── typeFromPropertyAssignment28.errors.txt │ ├── typeFromPropertyAssignment28.symbols │ ├── typeFromPropertyAssignment28.types │ ├── typeFromPropertyAssignment29.errors.txt │ ├── typeFromPropertyAssignment29.js │ ├── typeFromPropertyAssignment29.symbols │ ├── typeFromPropertyAssignment29.types │ ├── typeFromPropertyAssignment3.symbols │ ├── typeFromPropertyAssignment3.types │ ├── typeFromPropertyAssignment30.js │ ├── typeFromPropertyAssignment30.symbols │ ├── typeFromPropertyAssignment30.types │ ├── typeFromPropertyAssignment31.errors.txt │ ├── typeFromPropertyAssignment31.js │ ├── typeFromPropertyAssignment31.symbols │ ├── typeFromPropertyAssignment31.types │ ├── typeFromPropertyAssignment32.errors.txt │ ├── typeFromPropertyAssignment32.js │ ├── typeFromPropertyAssignment32.symbols │ ├── typeFromPropertyAssignment32.types │ ├── typeFromPropertyAssignment33.errors.txt │ ├── typeFromPropertyAssignment33.js │ ├── typeFromPropertyAssignment33.symbols │ ├── typeFromPropertyAssignment33.types │ ├── typeFromPropertyAssignment34.symbols │ ├── typeFromPropertyAssignment34.types │ ├── typeFromPropertyAssignment35.symbols │ ├── typeFromPropertyAssignment35.types │ ├── typeFromPropertyAssignment36.errors.txt │ ├── typeFromPropertyAssignment36.js │ ├── typeFromPropertyAssignment36.symbols │ ├── typeFromPropertyAssignment36.types │ ├── typeFromPropertyAssignment37.symbols │ ├── typeFromPropertyAssignment37.types │ ├── typeFromPropertyAssignment38.symbols │ ├── typeFromPropertyAssignment38.types │ ├── typeFromPropertyAssignment39.js │ ├── typeFromPropertyAssignment39.symbols │ ├── typeFromPropertyAssignment39.types │ ├── typeFromPropertyAssignment4.symbols │ ├── typeFromPropertyAssignment4.types │ ├── typeFromPropertyAssignment40.symbols │ ├── typeFromPropertyAssignment40.types │ ├── typeFromPropertyAssignment5.symbols │ ├── typeFromPropertyAssignment5.types │ ├── typeFromPropertyAssignment6.symbols │ ├── typeFromPropertyAssignment6.types │ ├── typeFromPropertyAssignment7.symbols │ ├── typeFromPropertyAssignment7.types │ ├── typeFromPropertyAssignment8.symbols │ ├── typeFromPropertyAssignment8.types │ ├── typeFromPropertyAssignment8_1.symbols │ ├── typeFromPropertyAssignment8_1.types │ ├── typeFromPropertyAssignment9.symbols │ ├── typeFromPropertyAssignment9.types │ ├── typeFromPropertyAssignment9_1.symbols │ ├── typeFromPropertyAssignment9_1.types │ ├── typeFromPropertyAssignmentOutOfOrder(target=es2015).symbols │ ├── typeFromPropertyAssignmentOutOfOrder(target=es2015).types │ ├── typeFromPropertyAssignmentOutOfOrder(target=es5).errors.txt │ ├── typeFromPropertyAssignmentOutOfOrder(target=es5).symbols │ ├── typeFromPropertyAssignmentOutOfOrder(target=es5).types │ ├── typeFromPropertyAssignmentWithExport.js │ ├── typeFromPropertyAssignmentWithExport.symbols │ ├── typeFromPropertyAssignmentWithExport.types │ ├── typeFromPrototypeAssignment.errors.txt │ ├── typeFromPrototypeAssignment.symbols │ ├── typeFromPrototypeAssignment.types │ ├── typeFromPrototypeAssignment2.errors.txt │ ├── typeFromPrototypeAssignment2.symbols │ ├── typeFromPrototypeAssignment2.types │ ├── typeFromPrototypeAssignment3.errors.txt │ ├── typeFromPrototypeAssignment3.symbols │ ├── typeFromPrototypeAssignment3.types │ ├── typeFromPrototypeAssignment4.js │ ├── typeFromPrototypeAssignment4.symbols │ ├── typeFromPrototypeAssignment4.types │ ├── typeGuardConstructorClassAndNumber.errors.txt │ ├── typeGuardConstructorClassAndNumber.js │ ├── typeGuardConstructorClassAndNumber.symbols │ ├── typeGuardConstructorClassAndNumber.types │ ├── typeGuardConstructorDerivedClass.errors.txt │ ├── typeGuardConstructorDerivedClass.js │ ├── typeGuardConstructorDerivedClass.symbols │ ├── typeGuardConstructorDerivedClass.types │ ├── typeGuardConstructorNarrowAny.js │ ├── typeGuardConstructorNarrowAny.symbols │ ├── typeGuardConstructorNarrowAny.types │ ├── typeGuardConstructorNarrowPrimitivesInUnion.errors.txt │ ├── typeGuardConstructorNarrowPrimitivesInUnion.js │ ├── typeGuardConstructorNarrowPrimitivesInUnion.symbols │ ├── typeGuardConstructorNarrowPrimitivesInUnion.types │ ├── typeGuardConstructorPrimitiveTypes.errors.txt │ ├── typeGuardConstructorPrimitiveTypes.js │ ├── typeGuardConstructorPrimitiveTypes.symbols │ ├── typeGuardConstructorPrimitiveTypes.types │ ├── typeGuardEnums.errors.txt │ ├── typeGuardEnums.js │ ├── typeGuardEnums.symbols │ ├── typeGuardEnums.types │ ├── typeGuardFunction.js │ ├── typeGuardFunction.symbols │ ├── typeGuardFunction.types │ ├── typeGuardFunctionErrors.errors.txt │ ├── typeGuardFunctionErrors.js │ ├── typeGuardFunctionErrors.symbols │ ├── typeGuardFunctionErrors.types │ ├── typeGuardFunctionGenerics.js │ ├── typeGuardFunctionGenerics.symbols │ ├── typeGuardFunctionGenerics.types │ ├── typeGuardFunctionOfFormThis.js │ ├── typeGuardFunctionOfFormThis.symbols │ ├── typeGuardFunctionOfFormThis.types │ ├── typeGuardFunctionOfFormThisErrors.errors.txt │ ├── typeGuardFunctionOfFormThisErrors.js │ ├── typeGuardFunctionOfFormThisErrors.symbols │ ├── typeGuardFunctionOfFormThisErrors.types │ ├── typeGuardInClass.errors.txt │ ├── typeGuardInClass.js │ ├── typeGuardInClass.symbols │ ├── typeGuardInClass.types │ ├── typeGuardIntersectionTypes.js │ ├── typeGuardIntersectionTypes.symbols │ ├── typeGuardIntersectionTypes.types │ ├── typeGuardNarrowByMutableUntypedField.js │ ├── typeGuardNarrowByMutableUntypedField.symbols │ ├── typeGuardNarrowByMutableUntypedField.types │ ├── typeGuardNarrowByUntypedField.js │ ├── typeGuardNarrowByUntypedField.symbols │ ├── typeGuardNarrowByUntypedField.types │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty1.js │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty1.symbols │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty1.types │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty10.errors.txt │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty10.js │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty10.symbols │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty10.types │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty11.js │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty11.symbols │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty11.types │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty12.js │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty12.symbols │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty12.types │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty2.js │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty2.symbols │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty2.types │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty3.js │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty3.symbols │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty3.types │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty4.js │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty4.symbols │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty4.types │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty5.js │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty5.symbols │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty5.types │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty6.js │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty6.symbols │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty6.types │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty7.js │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty7.symbols │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty7.types │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty8.js │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty8.symbols │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty8.types │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty9.errors.txt │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty9.js │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty9.symbols │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty9.types │ ├── typeGuardNarrowsPrimitiveIntersection.errors.txt │ ├── typeGuardNarrowsPrimitiveIntersection.js │ ├── typeGuardNarrowsPrimitiveIntersection.symbols │ ├── typeGuardNarrowsPrimitiveIntersection.types │ ├── typeGuardNarrowsToLiteralType.errors.txt │ ├── typeGuardNarrowsToLiteralType.js │ ├── typeGuardNarrowsToLiteralType.symbols │ ├── typeGuardNarrowsToLiteralType.types │ ├── typeGuardNarrowsToLiteralTypeUnion.errors.txt │ ├── typeGuardNarrowsToLiteralTypeUnion.js │ ├── typeGuardNarrowsToLiteralTypeUnion.symbols │ ├── typeGuardNarrowsToLiteralTypeUnion.types │ ├── typeGuardNesting.errors.txt │ ├── typeGuardNesting.js │ ├── typeGuardNesting.symbols │ ├── typeGuardNesting.types │ ├── typeGuardOfFormExpr1AndExpr2.js │ ├── typeGuardOfFormExpr1AndExpr2.symbols │ ├── typeGuardOfFormExpr1AndExpr2.types │ ├── typeGuardOfFormExpr1OrExpr2.js │ ├── typeGuardOfFormExpr1OrExpr2.symbols │ ├── typeGuardOfFormExpr1OrExpr2.types │ ├── typeGuardOfFormFunctionEquality.js │ ├── typeGuardOfFormFunctionEquality.symbols │ ├── typeGuardOfFormFunctionEquality.types │ ├── typeGuardOfFormInstanceOf.errors.txt │ ├── typeGuardOfFormInstanceOf.js │ ├── typeGuardOfFormInstanceOf.symbols │ ├── typeGuardOfFormInstanceOf.types │ ├── typeGuardOfFormInstanceOfOnInterface.errors.txt │ ├── typeGuardOfFormInstanceOfOnInterface.js │ ├── typeGuardOfFormInstanceOfOnInterface.symbols │ ├── typeGuardOfFormInstanceOfOnInterface.types │ ├── typeGuardOfFormIsType.errors.txt │ ├── typeGuardOfFormIsType.js │ ├── typeGuardOfFormIsType.symbols │ ├── typeGuardOfFormIsType.types │ ├── typeGuardOfFormIsTypeOnInterfaces.errors.txt │ ├── typeGuardOfFormIsTypeOnInterfaces.js │ ├── typeGuardOfFormIsTypeOnInterfaces.symbols │ ├── typeGuardOfFormIsTypeOnInterfaces.types │ ├── typeGuardOfFormNotExpr.errors.txt │ ├── typeGuardOfFormNotExpr.js │ ├── typeGuardOfFormNotExpr.symbols │ ├── typeGuardOfFormNotExpr.types │ ├── typeGuardOfFormThisMember(target=es2015).errors.txt │ ├── typeGuardOfFormThisMember(target=es2015).js │ ├── typeGuardOfFormThisMember(target=es2015).symbols │ ├── typeGuardOfFormThisMember(target=es2015).types │ ├── typeGuardOfFormThisMember(target=es5).errors.txt │ ├── typeGuardOfFormThisMember(target=es5).js │ ├── typeGuardOfFormThisMember(target=es5).symbols │ ├── typeGuardOfFormThisMember(target=es5).types │ ├── typeGuardOfFormThisMemberErrors(target=es2015).errors.txt │ ├── typeGuardOfFormThisMemberErrors(target=es2015).js │ ├── typeGuardOfFormThisMemberErrors(target=es2015).symbols │ ├── typeGuardOfFormThisMemberErrors(target=es2015).types │ ├── typeGuardOfFormThisMemberErrors(target=es5).errors.txt │ ├── typeGuardOfFormThisMemberErrors(target=es5).js │ ├── typeGuardOfFormThisMemberErrors(target=es5).symbols │ ├── typeGuardOfFormThisMemberErrors(target=es5).types │ ├── typeGuardOfFormTypeOfBoolean.errors.txt │ ├── typeGuardOfFormTypeOfBoolean.js │ ├── typeGuardOfFormTypeOfBoolean.symbols │ ├── typeGuardOfFormTypeOfBoolean.types │ ├── typeGuardOfFormTypeOfEqualEqualHasNoEffect.errors.txt │ ├── typeGuardOfFormTypeOfEqualEqualHasNoEffect.js │ ├── typeGuardOfFormTypeOfEqualEqualHasNoEffect.symbols │ ├── typeGuardOfFormTypeOfEqualEqualHasNoEffect.types │ ├── typeGuardOfFormTypeOfFunction.js │ ├── typeGuardOfFormTypeOfFunction.symbols │ ├── typeGuardOfFormTypeOfFunction.types │ ├── typeGuardOfFormTypeOfIsOrderIndependent.errors.txt │ ├── typeGuardOfFormTypeOfIsOrderIndependent.js │ ├── typeGuardOfFormTypeOfIsOrderIndependent.symbols │ ├── typeGuardOfFormTypeOfIsOrderIndependent.types │ ├── typeGuardOfFormTypeOfNotEqualHasNoEffect.errors.txt │ ├── typeGuardOfFormTypeOfNotEqualHasNoEffect.js │ ├── typeGuardOfFormTypeOfNotEqualHasNoEffect.symbols │ ├── typeGuardOfFormTypeOfNotEqualHasNoEffect.types │ ├── typeGuardOfFormTypeOfNumber.errors.txt │ ├── typeGuardOfFormTypeOfNumber.js │ ├── typeGuardOfFormTypeOfNumber.symbols │ ├── typeGuardOfFormTypeOfNumber.types │ ├── typeGuardOfFormTypeOfOther.errors.txt │ ├── typeGuardOfFormTypeOfOther.js │ ├── typeGuardOfFormTypeOfOther.symbols │ ├── typeGuardOfFormTypeOfOther.types │ ├── typeGuardOfFormTypeOfPrimitiveSubtype.errors.txt │ ├── typeGuardOfFormTypeOfPrimitiveSubtype.js │ ├── typeGuardOfFormTypeOfPrimitiveSubtype.symbols │ ├── typeGuardOfFormTypeOfPrimitiveSubtype.types │ ├── typeGuardOfFormTypeOfString.errors.txt │ ├── typeGuardOfFormTypeOfString.js │ ├── typeGuardOfFormTypeOfString.symbols │ ├── typeGuardOfFormTypeOfString.types │ ├── typeGuardOfFromPropNameInUnionType.errors.txt │ ├── typeGuardOfFromPropNameInUnionType.js │ ├── typeGuardOfFromPropNameInUnionType.symbols │ ├── typeGuardOfFromPropNameInUnionType.types │ ├── typeGuardOnContainerTypeNoHang.js │ ├── typeGuardOnContainerTypeNoHang.symbols │ ├── typeGuardOnContainerTypeNoHang.types │ ├── typeGuardRedundancy.errors.txt │ ├── typeGuardRedundancy.js │ ├── typeGuardRedundancy.symbols │ ├── typeGuardRedundancy.types │ ├── typeGuardTautologicalConsistiency.errors.txt │ ├── typeGuardTautologicalConsistiency.js │ ├── typeGuardTautologicalConsistiency.symbols │ ├── typeGuardTautologicalConsistiency.types │ ├── typeGuardTypeOfUndefined.js │ ├── typeGuardTypeOfUndefined.symbols │ ├── typeGuardTypeOfUndefined.types │ ├── typeGuardsAsAssertions.errors.txt │ ├── typeGuardsAsAssertions.js │ ├── typeGuardsAsAssertions.symbols │ ├── typeGuardsAsAssertions.types │ ├── typeGuardsDefeat.errors.txt │ ├── typeGuardsDefeat.js │ ├── typeGuardsDefeat.symbols │ ├── typeGuardsDefeat.types │ ├── typeGuardsInClassAccessors(target=es2015).errors.txt │ ├── typeGuardsInClassAccessors(target=es2015).js │ ├── typeGuardsInClassAccessors(target=es2015).symbols │ ├── typeGuardsInClassAccessors(target=es2015).types │ ├── typeGuardsInClassAccessors(target=es5).errors.txt │ ├── typeGuardsInClassAccessors(target=es5).js │ ├── typeGuardsInClassAccessors(target=es5).symbols │ ├── typeGuardsInClassAccessors(target=es5).types │ ├── typeGuardsInClassMethods.errors.txt │ ├── typeGuardsInClassMethods.js │ ├── typeGuardsInClassMethods.symbols │ ├── typeGuardsInClassMethods.types │ ├── typeGuardsInConditionalExpression.js │ ├── typeGuardsInConditionalExpression.symbols │ ├── typeGuardsInConditionalExpression.types │ ├── typeGuardsInDoStatement.errors.txt │ ├── typeGuardsInDoStatement.js │ ├── typeGuardsInDoStatement.symbols │ ├── typeGuardsInDoStatement.types │ ├── typeGuardsInExternalModule.errors.txt │ ├── typeGuardsInExternalModule.js │ ├── typeGuardsInExternalModule.symbols │ ├── typeGuardsInExternalModule.types │ ├── typeGuardsInForStatement.errors.txt │ ├── typeGuardsInForStatement.js │ ├── typeGuardsInForStatement.symbols │ ├── typeGuardsInForStatement.types │ ├── typeGuardsInFunction.errors.txt │ ├── typeGuardsInFunction.js │ ├── typeGuardsInFunction.symbols │ ├── typeGuardsInFunction.types │ ├── typeGuardsInFunctionAndModuleBlock.js │ ├── typeGuardsInFunctionAndModuleBlock.symbols │ ├── typeGuardsInFunctionAndModuleBlock.types │ ├── typeGuardsInGlobal.errors.txt │ ├── typeGuardsInGlobal.js │ ├── typeGuardsInGlobal.symbols │ ├── typeGuardsInGlobal.types │ ├── typeGuardsInIfStatement.errors.txt │ ├── typeGuardsInIfStatement.js │ ├── typeGuardsInIfStatement.symbols │ ├── typeGuardsInIfStatement.types │ ├── typeGuardsInModule.errors.txt │ ├── typeGuardsInModule.js │ ├── typeGuardsInModule.symbols │ ├── typeGuardsInModule.types │ ├── typeGuardsInProperties(target=es2015).errors.txt │ ├── typeGuardsInProperties(target=es2015).js │ ├── typeGuardsInProperties(target=es2015).symbols │ ├── typeGuardsInProperties(target=es2015).types │ ├── typeGuardsInProperties(target=es5).errors.txt │ ├── typeGuardsInProperties(target=es5).js │ ├── typeGuardsInProperties(target=es5).symbols │ ├── typeGuardsInProperties(target=es5).types │ ├── typeGuardsInRightOperandOfAndAndOperator.js │ ├── typeGuardsInRightOperandOfAndAndOperator.symbols │ ├── typeGuardsInRightOperandOfAndAndOperator.types │ ├── typeGuardsInRightOperandOfOrOrOperator.errors.txt │ ├── typeGuardsInRightOperandOfOrOrOperator.js │ ├── typeGuardsInRightOperandOfOrOrOperator.symbols │ ├── typeGuardsInRightOperandOfOrOrOperator.types │ ├── typeGuardsInWhileStatement.errors.txt │ ├── typeGuardsInWhileStatement.js │ ├── typeGuardsInWhileStatement.symbols │ ├── typeGuardsInWhileStatement.types │ ├── typeGuardsNestedAssignments.js │ ├── typeGuardsNestedAssignments.symbols │ ├── typeGuardsNestedAssignments.types │ ├── typeGuardsObjectMethods(target=es2015).errors.txt │ ├── typeGuardsObjectMethods(target=es2015).js │ ├── typeGuardsObjectMethods(target=es2015).symbols │ ├── typeGuardsObjectMethods(target=es2015).types │ ├── typeGuardsObjectMethods(target=es5).errors.txt │ ├── typeGuardsObjectMethods(target=es5).js │ ├── typeGuardsObjectMethods(target=es5).symbols │ ├── typeGuardsObjectMethods(target=es5).types │ ├── typeGuardsOnClassProperty.errors.txt │ ├── typeGuardsOnClassProperty.js │ ├── typeGuardsOnClassProperty.symbols │ ├── typeGuardsOnClassProperty.types │ ├── typeGuardsTypeParameters.js │ ├── typeGuardsTypeParameters.symbols │ ├── typeGuardsTypeParameters.types │ ├── typeGuardsWithAny.errors.txt │ ├── typeGuardsWithAny.js │ ├── typeGuardsWithAny.symbols │ ├── typeGuardsWithAny.types │ ├── typeGuardsWithInstanceOf.errors.txt │ ├── typeGuardsWithInstanceOf.js │ ├── typeGuardsWithInstanceOf.symbols │ ├── typeGuardsWithInstanceOf.types │ ├── typeGuardsWithInstanceOfByConstructorSignature.errors.txt │ ├── typeGuardsWithInstanceOfByConstructorSignature.js │ ├── typeGuardsWithInstanceOfByConstructorSignature.symbols │ ├── typeGuardsWithInstanceOfByConstructorSignature.types │ ├── typeGuardsWithInstanceOfBySymbolHasInstance.errors.txt │ ├── typeGuardsWithInstanceOfBySymbolHasInstance.js │ ├── typeGuardsWithInstanceOfBySymbolHasInstance.symbols │ ├── typeGuardsWithInstanceOfBySymbolHasInstance.types │ ├── typeIdentityConsidersBrands.errors.txt │ ├── typeIdentityConsidersBrands.js │ ├── typeIdentityConsidersBrands.symbols │ ├── typeIdentityConsidersBrands.types │ ├── typeInfer1.errors.txt │ ├── typeInfer1.js │ ├── typeInfer1.symbols │ ├── typeInfer1.types │ ├── typeInferenceCacheInvalidation.js │ ├── typeInferenceCacheInvalidation.symbols │ ├── typeInferenceCacheInvalidation.types │ ├── typeInferenceConflictingCandidates.errors.txt │ ├── typeInferenceConflictingCandidates.js │ ├── typeInferenceConflictingCandidates.symbols │ ├── typeInferenceConflictingCandidates.types │ ├── typeInferenceFBoundedTypeParams.js │ ├── typeInferenceFBoundedTypeParams.symbols │ ├── typeInferenceFBoundedTypeParams.types │ ├── typeInferenceFixEarly.js │ ├── typeInferenceFixEarly.symbols │ ├── typeInferenceFixEarly.types │ ├── typeInferenceLiteralUnion.js │ ├── typeInferenceLiteralUnion.symbols │ ├── typeInferenceLiteralUnion.types │ ├── typeInferenceReturnTypeCallback.errors.txt │ ├── typeInferenceReturnTypeCallback.js │ ├── typeInferenceReturnTypeCallback.symbols │ ├── typeInferenceReturnTypeCallback.types │ ├── typeInferenceTypePredicate.errors.txt │ ├── typeInferenceTypePredicate.js │ ├── typeInferenceTypePredicate.symbols │ ├── typeInferenceTypePredicate.types │ ├── typeInferenceTypePredicate2.js │ ├── typeInferenceTypePredicate2.symbols │ ├── typeInferenceTypePredicate2.types │ ├── typeInferenceWithExcessProperties.js │ ├── typeInferenceWithExcessProperties.symbols │ ├── typeInferenceWithExcessProperties.types │ ├── typeInferenceWithExcessPropertiesJsx.symbols │ ├── typeInferenceWithExcessPropertiesJsx.types │ ├── typeInferenceWithTupleType.errors.txt │ ├── typeInferenceWithTupleType.js │ ├── typeInferenceWithTupleType.symbols │ ├── typeInferenceWithTupleType.types │ ├── typeInferenceWithTypeAnnotation.js │ ├── typeInferenceWithTypeAnnotation.symbols │ ├── typeInferenceWithTypeAnnotation.types │ ├── typeInterfaceDeclarationsInBlockStatements1.errors.txt │ ├── typeInterfaceDeclarationsInBlockStatements1.js │ ├── typeInterfaceDeclarationsInBlockStatements1.symbols │ ├── typeInterfaceDeclarationsInBlockStatements1.types │ ├── typeLiteralCallback.errors.txt │ ├── typeLiteralCallback.js │ ├── typeLiteralCallback.symbols │ ├── typeLiteralCallback.types │ ├── typeLookupInIIFE.errors.txt │ ├── typeLookupInIIFE.symbols │ ├── typeLookupInIIFE.types │ ├── typeMatch1.errors.txt │ ├── typeMatch1.js │ ├── typeMatch1.symbols │ ├── typeMatch1.types │ ├── typeMatch2.errors.txt │ ├── typeMatch2.js │ ├── typeMatch2.symbols │ ├── typeMatch2.types │ ├── typeName1.errors.txt │ ├── typeName1.js │ ├── typeName1.symbols │ ├── typeName1.types │ ├── typeNamedUndefined1.errors.txt │ ├── typeNamedUndefined1.js │ ├── typeNamedUndefined1.symbols │ ├── typeNamedUndefined1.types │ ├── typeNamedUndefined2.errors.txt │ ├── typeNamedUndefined2.js │ ├── typeNamedUndefined2.symbols │ ├── typeNamedUndefined2.types │ ├── typeOfEnumAndVarRedeclarations.errors.txt │ ├── typeOfEnumAndVarRedeclarations.js │ ├── typeOfEnumAndVarRedeclarations.symbols │ ├── typeOfEnumAndVarRedeclarations.types │ ├── typeOfOnTypeArg.errors.txt │ ├── typeOfOnTypeArg.js │ ├── typeOfOnTypeArg.symbols │ ├── typeOfOnTypeArg.types │ ├── typeOfOperator1.errors.txt │ ├── typeOfOperator1.js │ ├── typeOfOperator1.symbols │ ├── typeOfOperator1.types │ ├── typeOfPrototype.errors.txt │ ├── typeOfPrototype.js │ ├── typeOfPrototype.symbols │ ├── typeOfPrototype.types │ ├── typeOfSuperCall.js │ ├── typeOfSuperCall.symbols │ ├── typeOfSuperCall.types │ ├── typeOfThisGeneral.errors.txt │ ├── typeOfThisGeneral.js │ ├── typeOfThisGeneral.symbols │ ├── typeOfThisGeneral.types │ ├── typeOfThisInAccessor.errors.txt │ ├── typeOfThisInAccessor.js │ ├── typeOfThisInAccessor.symbols │ ├── typeOfThisInAccessor.types │ ├── typeOfThisInConstructorParamList.js │ ├── typeOfThisInConstructorParamList.symbols │ ├── typeOfThisInConstructorParamList.types │ ├── typeOfThisInFunctionExpression.errors.txt │ ├── typeOfThisInFunctionExpression.js │ ├── typeOfThisInFunctionExpression.symbols │ ├── typeOfThisInFunctionExpression.types │ ├── typeOfThisInInstanceMember.errors.txt │ ├── typeOfThisInInstanceMember.js │ ├── typeOfThisInInstanceMember.symbols │ ├── typeOfThisInInstanceMember.types │ ├── typeOfThisInInstanceMember2.errors.txt │ ├── typeOfThisInInstanceMember2.js │ ├── typeOfThisInInstanceMember2.symbols │ ├── typeOfThisInInstanceMember2.types │ ├── typeOfThisInMemberFunctions.errors.txt │ ├── typeOfThisInMemberFunctions.js │ ├── typeOfThisInMemberFunctions.symbols │ ├── typeOfThisInMemberFunctions.types │ ├── typeOfThisInStaticMembers.js │ ├── typeOfThisInStaticMembers.symbols │ ├── typeOfThisInStaticMembers.types │ ├── typeOfThisInStaticMembers10(target=es2022).errors.txt │ ├── typeOfThisInStaticMembers10(target=es2022).js │ ├── typeOfThisInStaticMembers10(target=es2022).symbols │ ├── typeOfThisInStaticMembers10(target=es2022).types │ ├── typeOfThisInStaticMembers10(target=es5).errors.txt │ ├── typeOfThisInStaticMembers10(target=es5).js │ ├── typeOfThisInStaticMembers10(target=es5).symbols │ ├── typeOfThisInStaticMembers10(target=es5).types │ ├── typeOfThisInStaticMembers10(target=es6).errors.txt │ ├── typeOfThisInStaticMembers10(target=es6).js │ ├── typeOfThisInStaticMembers10(target=es6).symbols │ ├── typeOfThisInStaticMembers10(target=es6).types │ ├── typeOfThisInStaticMembers10(target=esnext).errors.txt │ ├── typeOfThisInStaticMembers10(target=esnext).js │ ├── typeOfThisInStaticMembers10(target=esnext).symbols │ ├── typeOfThisInStaticMembers10(target=esnext).types │ ├── typeOfThisInStaticMembers11(target=es2022).errors.txt │ ├── typeOfThisInStaticMembers11(target=es2022).js │ ├── typeOfThisInStaticMembers11(target=es2022).symbols │ ├── typeOfThisInStaticMembers11(target=es2022).types │ ├── typeOfThisInStaticMembers11(target=es5).errors.txt │ ├── typeOfThisInStaticMembers11(target=es5).js │ ├── typeOfThisInStaticMembers11(target=es5).symbols │ ├── typeOfThisInStaticMembers11(target=es5).types │ ├── typeOfThisInStaticMembers11(target=es6).errors.txt │ ├── typeOfThisInStaticMembers11(target=es6).js │ ├── typeOfThisInStaticMembers11(target=es6).symbols │ ├── typeOfThisInStaticMembers11(target=es6).types │ ├── typeOfThisInStaticMembers11(target=esnext).errors.txt │ ├── typeOfThisInStaticMembers11(target=esnext).js │ ├── typeOfThisInStaticMembers11(target=esnext).symbols │ ├── typeOfThisInStaticMembers11(target=esnext).types │ ├── typeOfThisInStaticMembers12(target=es2022).errors.txt │ ├── typeOfThisInStaticMembers12(target=es2022).js │ ├── typeOfThisInStaticMembers12(target=es2022).symbols │ ├── typeOfThisInStaticMembers12(target=es2022).types │ ├── typeOfThisInStaticMembers12(target=es5).errors.txt │ ├── typeOfThisInStaticMembers12(target=es5).js │ ├── typeOfThisInStaticMembers12(target=es5).symbols │ ├── typeOfThisInStaticMembers12(target=es5).types │ ├── typeOfThisInStaticMembers12(target=es6).errors.txt │ ├── typeOfThisInStaticMembers12(target=es6).js │ ├── typeOfThisInStaticMembers12(target=es6).symbols │ ├── typeOfThisInStaticMembers12(target=es6).types │ ├── typeOfThisInStaticMembers12(target=esnext).errors.txt │ ├── typeOfThisInStaticMembers12(target=esnext).js │ ├── typeOfThisInStaticMembers12(target=esnext).symbols │ ├── typeOfThisInStaticMembers12(target=esnext).types │ ├── typeOfThisInStaticMembers13(target=es2022).errors.txt │ ├── typeOfThisInStaticMembers13(target=es2022).js │ ├── typeOfThisInStaticMembers13(target=es2022).symbols │ ├── typeOfThisInStaticMembers13(target=es2022).types │ ├── typeOfThisInStaticMembers13(target=es5).errors.txt │ ├── typeOfThisInStaticMembers13(target=es5).js │ ├── typeOfThisInStaticMembers13(target=es5).symbols │ ├── typeOfThisInStaticMembers13(target=es5).types │ ├── typeOfThisInStaticMembers13(target=es6).errors.txt │ ├── typeOfThisInStaticMembers13(target=es6).js │ ├── typeOfThisInStaticMembers13(target=es6).symbols │ ├── typeOfThisInStaticMembers13(target=es6).types │ ├── typeOfThisInStaticMembers13(target=esnext).errors.txt │ ├── typeOfThisInStaticMembers13(target=esnext).js │ ├── typeOfThisInStaticMembers13(target=esnext).symbols │ ├── typeOfThisInStaticMembers13(target=esnext).types │ ├── typeOfThisInStaticMembers2.js │ ├── typeOfThisInStaticMembers2.symbols │ ├── typeOfThisInStaticMembers2.types │ ├── typeOfThisInStaticMembers3(target=es2022).js │ ├── typeOfThisInStaticMembers3(target=es2022).symbols │ ├── typeOfThisInStaticMembers3(target=es2022).types │ ├── typeOfThisInStaticMembers3(target=es5).errors.txt │ ├── typeOfThisInStaticMembers3(target=es5).js │ ├── typeOfThisInStaticMembers3(target=es5).symbols │ ├── typeOfThisInStaticMembers3(target=es5).types │ ├── typeOfThisInStaticMembers3(target=es6).js │ ├── typeOfThisInStaticMembers3(target=es6).symbols │ ├── typeOfThisInStaticMembers3(target=es6).types │ ├── typeOfThisInStaticMembers3(target=esnext).js │ ├── typeOfThisInStaticMembers3(target=esnext).symbols │ ├── typeOfThisInStaticMembers3(target=esnext).types │ ├── typeOfThisInStaticMembers4(target=es2022).js │ ├── typeOfThisInStaticMembers4(target=es2022).symbols │ ├── typeOfThisInStaticMembers4(target=es2022).types │ ├── typeOfThisInStaticMembers4(target=es5).errors.txt │ ├── typeOfThisInStaticMembers4(target=es5).js │ ├── typeOfThisInStaticMembers4(target=es5).symbols │ ├── typeOfThisInStaticMembers4(target=es5).types │ ├── typeOfThisInStaticMembers4(target=es6).js │ ├── typeOfThisInStaticMembers4(target=es6).symbols │ ├── typeOfThisInStaticMembers4(target=es6).types │ ├── typeOfThisInStaticMembers4(target=esnext).js │ ├── typeOfThisInStaticMembers4(target=esnext).symbols │ ├── typeOfThisInStaticMembers4(target=esnext).types │ ├── typeOfThisInStaticMembers5(target=es2022).js │ ├── typeOfThisInStaticMembers5(target=es2022).symbols │ ├── typeOfThisInStaticMembers5(target=es2022).types │ ├── typeOfThisInStaticMembers5(target=es5).errors.txt │ ├── typeOfThisInStaticMembers5(target=es5).js │ ├── typeOfThisInStaticMembers5(target=es5).symbols │ ├── typeOfThisInStaticMembers5(target=es5).types │ ├── typeOfThisInStaticMembers5(target=es6).js │ ├── typeOfThisInStaticMembers5(target=es6).symbols │ ├── typeOfThisInStaticMembers5(target=es6).types │ ├── typeOfThisInStaticMembers5(target=esnext).js │ ├── typeOfThisInStaticMembers5(target=esnext).symbols │ ├── typeOfThisInStaticMembers5(target=esnext).types │ ├── typeOfThisInStaticMembers6.errors.txt │ ├── typeOfThisInStaticMembers6.js │ ├── typeOfThisInStaticMembers6.symbols │ ├── typeOfThisInStaticMembers6.types │ ├── typeOfThisInStaticMembers7(target=es2022).js │ ├── typeOfThisInStaticMembers7(target=es2022).symbols │ ├── typeOfThisInStaticMembers7(target=es2022).types │ ├── typeOfThisInStaticMembers7(target=es5).errors.txt │ ├── typeOfThisInStaticMembers7(target=es5).js │ ├── typeOfThisInStaticMembers7(target=es5).symbols │ ├── typeOfThisInStaticMembers7(target=es5).types │ ├── typeOfThisInStaticMembers7(target=es6).js │ ├── typeOfThisInStaticMembers7(target=es6).symbols │ ├── typeOfThisInStaticMembers7(target=es6).types │ ├── typeOfThisInStaticMembers7(target=esnext).js │ ├── typeOfThisInStaticMembers7(target=esnext).symbols │ ├── typeOfThisInStaticMembers7(target=esnext).types │ ├── typeOfThisInStaticMembers8(target=es2022).errors.txt │ ├── typeOfThisInStaticMembers8(target=es2022).js │ ├── typeOfThisInStaticMembers8(target=es2022).symbols │ ├── typeOfThisInStaticMembers8(target=es2022).types │ ├── typeOfThisInStaticMembers8(target=es5).errors.txt │ ├── typeOfThisInStaticMembers8(target=es5).js │ ├── typeOfThisInStaticMembers8(target=es5).symbols │ ├── typeOfThisInStaticMembers8(target=es5).types │ ├── typeOfThisInStaticMembers8(target=es6).errors.txt │ ├── typeOfThisInStaticMembers8(target=es6).js │ ├── typeOfThisInStaticMembers8(target=es6).symbols │ ├── typeOfThisInStaticMembers8(target=es6).types │ ├── typeOfThisInStaticMembers8(target=esnext).errors.txt │ ├── typeOfThisInStaticMembers8(target=esnext).js │ ├── typeOfThisInStaticMembers8(target=esnext).symbols │ ├── typeOfThisInStaticMembers8(target=esnext).types │ ├── typeOfThisInStaticMembers9(target=es2022).errors.txt │ ├── typeOfThisInStaticMembers9(target=es2022).js │ ├── typeOfThisInStaticMembers9(target=es2022).symbols │ ├── typeOfThisInStaticMembers9(target=es2022).types │ ├── typeOfThisInStaticMembers9(target=es5).errors.txt │ ├── typeOfThisInStaticMembers9(target=es5).js │ ├── typeOfThisInStaticMembers9(target=es5).symbols │ ├── typeOfThisInStaticMembers9(target=es5).types │ ├── typeOfThisInStaticMembers9(target=es6).errors.txt │ ├── typeOfThisInStaticMembers9(target=es6).js │ ├── typeOfThisInStaticMembers9(target=es6).symbols │ ├── typeOfThisInStaticMembers9(target=es6).types │ ├── typeOfThisInStaticMembers9(target=esnext).errors.txt │ ├── typeOfThisInStaticMembers9(target=esnext).js │ ├── typeOfThisInStaticMembers9(target=esnext).symbols │ ├── typeOfThisInStaticMembers9(target=esnext).types │ ├── typeOfThisInStatics.js │ ├── typeOfThisInStatics.symbols │ ├── typeOfThisInStatics.types │ ├── typeOfThisInstanceMemberNarrowedWithLoopAntecedent.errors.txt │ ├── typeOfThisInstanceMemberNarrowedWithLoopAntecedent.js │ ├── typeOfThisInstanceMemberNarrowedWithLoopAntecedent.symbols │ ├── typeOfThisInstanceMemberNarrowedWithLoopAntecedent.types │ ├── typeOfYieldWithUnionInContextualReturnType.js │ ├── typeOfYieldWithUnionInContextualReturnType.symbols │ ├── typeOfYieldWithUnionInContextualReturnType.types │ ├── typeOnlyESMImportFromCJS(module=node18).errors.txt │ ├── typeOnlyESMImportFromCJS(module=node18).js │ ├── typeOnlyESMImportFromCJS(module=node18).symbols │ ├── typeOnlyESMImportFromCJS(module=node18).types │ ├── typeOnlyESMImportFromCJS(module=node20).js │ ├── typeOnlyESMImportFromCJS(module=node20).symbols │ ├── typeOnlyESMImportFromCJS(module=node20).types │ ├── typeOnlyESMImportFromCJS(module=nodenext).js │ ├── typeOnlyESMImportFromCJS(module=nodenext).symbols │ ├── typeOnlyESMImportFromCJS(module=nodenext).types │ ├── typeOnlyMerge1.js │ ├── typeOnlyMerge1.symbols │ ├── typeOnlyMerge1.types │ ├── typeOnlyMerge2.errors.txt │ ├── typeOnlyMerge2.js │ ├── typeOnlyMerge2.symbols │ ├── typeOnlyMerge2.types │ ├── typeOnlyMerge3.errors.txt │ ├── typeOnlyMerge3.js │ ├── typeOnlyMerge3.symbols │ ├── typeOnlyMerge3.types │ ├── typeParamExtendsOtherTypeParam.errors.txt │ ├── typeParamExtendsOtherTypeParam.js │ ├── typeParamExtendsOtherTypeParam.symbols │ ├── typeParamExtendsOtherTypeParam.types │ ├── typeParameterAndArgumentOfSameName1.errors.txt │ ├── typeParameterAndArgumentOfSameName1.js │ ├── typeParameterAndArgumentOfSameName1.symbols │ ├── typeParameterAndArgumentOfSameName1.types │ ├── typeParameterArgumentEquivalence.errors.txt │ ├── typeParameterArgumentEquivalence.js │ ├── typeParameterArgumentEquivalence.symbols │ ├── typeParameterArgumentEquivalence.types │ ├── typeParameterArgumentEquivalence2.errors.txt │ ├── typeParameterArgumentEquivalence2.js │ ├── typeParameterArgumentEquivalence2.symbols │ ├── typeParameterArgumentEquivalence2.types │ ├── typeParameterArgumentEquivalence3.errors.txt │ ├── typeParameterArgumentEquivalence3.js │ ├── typeParameterArgumentEquivalence3.symbols │ ├── typeParameterArgumentEquivalence3.types │ ├── typeParameterArgumentEquivalence4.errors.txt │ ├── typeParameterArgumentEquivalence4.js │ ├── typeParameterArgumentEquivalence4.symbols │ ├── typeParameterArgumentEquivalence4.types │ ├── typeParameterArgumentEquivalence5.errors.txt │ ├── typeParameterArgumentEquivalence5.js │ ├── typeParameterArgumentEquivalence5.symbols │ ├── typeParameterArgumentEquivalence5.types │ ├── typeParameterAsBaseClass.errors.txt │ ├── typeParameterAsBaseClass.js │ ├── typeParameterAsBaseClass.symbols │ ├── typeParameterAsBaseClass.types │ ├── typeParameterAsBaseType.errors.txt │ ├── typeParameterAsBaseType.js │ ├── typeParameterAsBaseType.symbols │ ├── typeParameterAsBaseType.types │ ├── typeParameterAsElementType.errors.txt │ ├── typeParameterAsElementType.js │ ├── typeParameterAsElementType.symbols │ ├── typeParameterAsElementType.types │ ├── typeParameterAsTypeArgument.errors.txt │ ├── typeParameterAsTypeArgument.js │ ├── typeParameterAsTypeArgument.symbols │ ├── typeParameterAsTypeArgument.types │ ├── typeParameterAsTypeParameterConstraint.errors.txt │ ├── typeParameterAsTypeParameterConstraint.js │ ├── typeParameterAsTypeParameterConstraint.symbols │ ├── typeParameterAsTypeParameterConstraint.types │ ├── typeParameterAsTypeParameterConstraint2.errors.txt │ ├── typeParameterAsTypeParameterConstraint2.js │ ├── typeParameterAsTypeParameterConstraint2.symbols │ ├── typeParameterAsTypeParameterConstraint2.types │ ├── typeParameterAsTypeParameterConstraintTransitively.js │ ├── typeParameterAsTypeParameterConstraintTransitively.symbols │ ├── typeParameterAsTypeParameterConstraintTransitively.types │ ├── typeParameterAsTypeParameterConstraintTransitively2.js │ ├── typeParameterAsTypeParameterConstraintTransitively2.symbols │ ├── typeParameterAsTypeParameterConstraintTransitively2.types │ ├── typeParameterAssignability.errors.txt │ ├── typeParameterAssignability.js │ ├── typeParameterAssignability.symbols │ ├── typeParameterAssignability.types │ ├── typeParameterAssignability2.errors.txt │ ├── typeParameterAssignability2.js │ ├── typeParameterAssignability2.symbols │ ├── typeParameterAssignability2.types │ ├── typeParameterAssignability3.errors.txt │ ├── typeParameterAssignability3.js │ ├── typeParameterAssignability3.symbols │ ├── typeParameterAssignability3.types │ ├── typeParameterAssignmentCompat1.errors.txt │ ├── typeParameterAssignmentCompat1.js │ ├── typeParameterAssignmentCompat1.symbols │ ├── typeParameterAssignmentCompat1.types │ ├── typeParameterAssignmentWithConstraints.errors.txt │ ├── typeParameterAssignmentWithConstraints.js │ ├── typeParameterAssignmentWithConstraints.symbols │ ├── typeParameterAssignmentWithConstraints.types │ ├── typeParameterCompatibilityAccrossDeclarations.errors.txt │ ├── typeParameterCompatibilityAccrossDeclarations.js │ ├── typeParameterCompatibilityAccrossDeclarations.symbols │ ├── typeParameterCompatibilityAccrossDeclarations.types │ ├── typeParameterConstModifiers.errors.txt │ ├── typeParameterConstModifiers.js │ ├── typeParameterConstModifiers.symbols │ ├── typeParameterConstModifiers.types │ ├── typeParameterConstModifiersReturnsAndYields.symbols │ ├── typeParameterConstModifiersReturnsAndYields.types │ ├── typeParameterConstModifiersReverseMappedTypes.symbols │ ├── typeParameterConstModifiersReverseMappedTypes.types │ ├── typeParameterConstModifiersWithIntersection.symbols │ ├── typeParameterConstModifiersWithIntersection.types │ ├── typeParameterConstrainedToOuterTypeParameter.errors.txt │ ├── typeParameterConstrainedToOuterTypeParameter.js │ ├── typeParameterConstrainedToOuterTypeParameter.symbols │ ├── typeParameterConstrainedToOuterTypeParameter.types │ ├── typeParameterConstrainedToOuterTypeParameter2.js │ ├── typeParameterConstrainedToOuterTypeParameter2.symbols │ ├── typeParameterConstrainedToOuterTypeParameter2.types │ ├── typeParameterConstraintInstantiation.errors.txt │ ├── typeParameterConstraintInstantiation.js │ ├── typeParameterConstraintInstantiation.symbols │ ├── typeParameterConstraintInstantiation.types │ ├── typeParameterConstraints1.errors.txt │ ├── typeParameterConstraints1.js │ ├── typeParameterConstraints1.symbols │ ├── typeParameterConstraints1.types │ ├── typeParameterDiamond1.errors.txt │ ├── typeParameterDiamond1.js │ ├── typeParameterDiamond1.symbols │ ├── typeParameterDiamond1.types │ ├── typeParameterDiamond2.errors.txt │ ├── typeParameterDiamond2.js │ ├── typeParameterDiamond2.symbols │ ├── typeParameterDiamond2.types │ ├── typeParameterDiamond3.errors.txt │ ├── typeParameterDiamond3.js │ ├── typeParameterDiamond3.symbols │ ├── typeParameterDiamond3.types │ ├── typeParameterDiamond4.errors.txt │ ├── typeParameterDiamond4.js │ ├── typeParameterDiamond4.symbols │ ├── typeParameterDiamond4.types │ ├── typeParameterDirectlyConstrainedToItself.errors.txt │ ├── typeParameterDirectlyConstrainedToItself.js │ ├── typeParameterDirectlyConstrainedToItself.symbols │ ├── typeParameterDirectlyConstrainedToItself.types │ ├── typeParameterDoesntBlockParameterLookup.js │ ├── typeParameterDoesntBlockParameterLookup.symbols │ ├── typeParameterDoesntBlockParameterLookup.types │ ├── typeParameterEquality.errors.txt │ ├── typeParameterEquality.js │ ├── typeParameterEquality.symbols │ ├── typeParameterEquality.types │ ├── typeParameterExplicitlyExtendsAny.errors.txt │ ├── typeParameterExplicitlyExtendsAny.js │ ├── typeParameterExplicitlyExtendsAny.symbols │ ├── typeParameterExplicitlyExtendsAny.types │ ├── typeParameterExtendingUnion1.js │ ├── typeParameterExtendingUnion1.symbols │ ├── typeParameterExtendingUnion1.types │ ├── typeParameterExtendingUnion2.js │ ├── typeParameterExtendingUnion2.symbols │ ├── typeParameterExtendingUnion2.types │ ├── typeParameterExtendsPrimitive.errors.txt │ ├── typeParameterExtendsPrimitive.js │ ├── typeParameterExtendsPrimitive.symbols │ ├── typeParameterExtendsPrimitive.types │ ├── typeParameterExtendsUnionConstraintDistributed.js │ ├── typeParameterExtendsUnionConstraintDistributed.symbols │ ├── typeParameterExtendsUnionConstraintDistributed.types │ ├── typeParameterFixingWithConstraints.js │ ├── typeParameterFixingWithConstraints.symbols │ ├── typeParameterFixingWithConstraints.types │ ├── typeParameterFixingWithContextSensitiveArguments.js │ ├── typeParameterFixingWithContextSensitiveArguments.symbols │ ├── typeParameterFixingWithContextSensitiveArguments.types │ ├── typeParameterFixingWithContextSensitiveArguments2.errors.txt │ ├── typeParameterFixingWithContextSensitiveArguments2.js │ ├── typeParameterFixingWithContextSensitiveArguments2.symbols │ ├── typeParameterFixingWithContextSensitiveArguments2.types │ ├── typeParameterFixingWithContextSensitiveArguments3.errors.txt │ ├── typeParameterFixingWithContextSensitiveArguments3.js │ ├── typeParameterFixingWithContextSensitiveArguments3.symbols │ ├── typeParameterFixingWithContextSensitiveArguments3.types │ ├── typeParameterFixingWithContextSensitiveArguments4.js │ ├── typeParameterFixingWithContextSensitiveArguments4.symbols │ ├── typeParameterFixingWithContextSensitiveArguments4.types │ ├── typeParameterFixingWithContextSensitiveArguments5.js │ ├── typeParameterFixingWithContextSensitiveArguments5.symbols │ ├── typeParameterFixingWithContextSensitiveArguments5.types │ ├── typeParameterHasSelfAsConstraint.errors.txt │ ├── typeParameterHasSelfAsConstraint.js │ ├── typeParameterHasSelfAsConstraint.symbols │ ├── typeParameterHasSelfAsConstraint.types │ ├── typeParameterInConstraint1.js │ ├── typeParameterInConstraint1.symbols │ ├── typeParameterInConstraint1.types │ ├── typeParameterIndirectlyConstrainedToItself.errors.txt │ ├── typeParameterIndirectlyConstrainedToItself.js │ ├── typeParameterIndirectlyConstrainedToItself.symbols │ ├── typeParameterIndirectlyConstrainedToItself.types │ ├── typeParameterLeak.js │ ├── typeParameterLeak.symbols │ ├── typeParameterLeak.types │ ├── typeParameterListWithTrailingComma1.js │ ├── typeParameterListWithTrailingComma1.symbols │ ├── typeParameterListWithTrailingComma1.types │ ├── typeParameterOrderReversal.errors.txt │ ├── typeParameterOrderReversal.js │ ├── typeParameterOrderReversal.symbols │ ├── typeParameterOrderReversal.types │ ├── typeParameterUsedAsConstraint.js │ ├── typeParameterUsedAsConstraint.symbols │ ├── typeParameterUsedAsConstraint.types │ ├── typeParameterUsedAsTypeParameterConstraint.js │ ├── typeParameterUsedAsTypeParameterConstraint.symbols │ ├── typeParameterUsedAsTypeParameterConstraint.types │ ├── typeParameterUsedAsTypeParameterConstraint2.js │ ├── typeParameterUsedAsTypeParameterConstraint2.symbols │ ├── typeParameterUsedAsTypeParameterConstraint2.types │ ├── typeParameterUsedAsTypeParameterConstraint3.js │ ├── typeParameterUsedAsTypeParameterConstraint3.symbols │ ├── typeParameterUsedAsTypeParameterConstraint3.types │ ├── typeParameterUsedAsTypeParameterConstraint4.errors.txt │ ├── typeParameterUsedAsTypeParameterConstraint4.js │ ├── typeParameterUsedAsTypeParameterConstraint4.symbols │ ├── typeParameterUsedAsTypeParameterConstraint4.types │ ├── typeParameterWithInvalidConstraintType.errors.txt │ ├── typeParameterWithInvalidConstraintType.js │ ├── typeParameterWithInvalidConstraintType.symbols │ ├── typeParameterWithInvalidConstraintType.types │ ├── typeParametersAndParametersInComputedNames.errors.txt │ ├── typeParametersAndParametersInComputedNames.js │ ├── typeParametersAndParametersInComputedNames.symbols │ ├── typeParametersAndParametersInComputedNames.types │ ├── typeParametersAreIdenticalToThemselves.js │ ├── typeParametersAreIdenticalToThemselves.symbols │ ├── typeParametersAreIdenticalToThemselves.types │ ├── typeParametersAvailableInNestedScope.errors.txt │ ├── typeParametersAvailableInNestedScope.js │ ├── typeParametersAvailableInNestedScope.symbols │ ├── typeParametersAvailableInNestedScope.types │ ├── typeParametersAvailableInNestedScope2.js │ ├── typeParametersAvailableInNestedScope2.symbols │ ├── typeParametersAvailableInNestedScope2.types │ ├── typeParametersAvailableInNestedScope3.js │ ├── typeParametersAvailableInNestedScope3.symbols │ ├── typeParametersAvailableInNestedScope3.types │ ├── typeParametersInStaticAccessors.errors.txt │ ├── typeParametersInStaticAccessors.js │ ├── typeParametersInStaticAccessors.symbols │ ├── typeParametersInStaticAccessors.types │ ├── typeParametersInStaticMethods.errors.txt │ ├── typeParametersInStaticMethods.js │ ├── typeParametersInStaticMethods.symbols │ ├── typeParametersInStaticMethods.types │ ├── typeParametersInStaticProperties.errors.txt │ ├── typeParametersInStaticProperties.js │ ├── typeParametersInStaticProperties.symbols │ ├── typeParametersInStaticProperties.types │ ├── typeParametersShouldNotBeEqual.errors.txt │ ├── typeParametersShouldNotBeEqual.js │ ├── typeParametersShouldNotBeEqual.symbols │ ├── typeParametersShouldNotBeEqual.types │ ├── typeParametersShouldNotBeEqual2.errors.txt │ ├── typeParametersShouldNotBeEqual2.js │ ├── typeParametersShouldNotBeEqual2.symbols │ ├── typeParametersShouldNotBeEqual2.types │ ├── typeParametersShouldNotBeEqual3.errors.txt │ ├── typeParametersShouldNotBeEqual3.js │ ├── typeParametersShouldNotBeEqual3.symbols │ ├── typeParametersShouldNotBeEqual3.types │ ├── typePartameterConstraintInstantiatedWithDefaultWhenCheckingDefault.js │ ├── typePartameterConstraintInstantiatedWithDefaultWhenCheckingDefault.symbols │ ├── typePartameterConstraintInstantiatedWithDefaultWhenCheckingDefault.types │ ├── typePredicateASI.js │ ├── typePredicateASI.symbols │ ├── typePredicateASI.types │ ├── typePredicateAcceptingPartialOfRefinedType.symbols │ ├── typePredicateAcceptingPartialOfRefinedType.types │ ├── typePredicateFreshLiteralWidening.js │ ├── typePredicateFreshLiteralWidening.symbols │ ├── typePredicateFreshLiteralWidening.types │ ├── typePredicateInLoop.errors.txt │ ├── typePredicateInLoop.js │ ├── typePredicateInLoop.symbols │ ├── typePredicateInLoop.types │ ├── typePredicateInherit.errors.txt │ ├── typePredicateInherit.js │ ├── typePredicateInherit.symbols │ ├── typePredicateInherit.types │ ├── typePredicateOnVariableDeclaration01.errors.txt │ ├── typePredicateOnVariableDeclaration01.js │ ├── typePredicateOnVariableDeclaration01.symbols │ ├── typePredicateOnVariableDeclaration01.types │ ├── typePredicateOnVariableDeclaration02.errors.txt │ ├── typePredicateOnVariableDeclaration02.js │ ├── typePredicateOnVariableDeclaration02.symbols │ ├── typePredicateOnVariableDeclaration02.types │ ├── typePredicateStructuralMatch.errors.txt │ ├── typePredicateStructuralMatch.js │ ├── typePredicateStructuralMatch.symbols │ ├── typePredicateStructuralMatch.types │ ├── typePredicateTopLevelTypeParameter.js │ ├── typePredicateTopLevelTypeParameter.symbols │ ├── typePredicateTopLevelTypeParameter.types │ ├── typePredicateWithThisParameter.js │ ├── typePredicateWithThisParameter.symbols │ ├── typePredicateWithThisParameter.types │ ├── typePredicatesCanNarrowByDiscriminant.js │ ├── typePredicatesCanNarrowByDiscriminant.symbols │ ├── typePredicatesCanNarrowByDiscriminant.types │ ├── typePredicatesInUnion.js │ ├── typePredicatesInUnion.symbols │ ├── typePredicatesInUnion.types │ ├── typePredicatesInUnion2.js │ ├── typePredicatesInUnion2.symbols │ ├── typePredicatesInUnion2.types │ ├── typePredicatesInUnion3.errors.txt │ ├── typePredicatesInUnion3.symbols │ ├── typePredicatesInUnion3.types │ ├── typePredicatesInUnion_noMatch.js │ ├── typePredicatesInUnion_noMatch.symbols │ ├── typePredicatesInUnion_noMatch.types │ ├── typePredicatesOptionalChaining1.js │ ├── typePredicatesOptionalChaining1.symbols │ ├── typePredicatesOptionalChaining1.types │ ├── typePredicatesOptionalChaining2.js │ ├── typePredicatesOptionalChaining2.symbols │ ├── typePredicatesOptionalChaining2.types │ ├── typePredicatesOptionalChaining3.js │ ├── typePredicatesOptionalChaining3.symbols │ ├── typePredicatesOptionalChaining3.types │ ├── typeQuery.js │ ├── typeQuery.symbols │ ├── typeQuery.types │ ├── typeQueryOnClass.js │ ├── typeQueryOnClass.symbols │ ├── typeQueryOnClass.types │ ├── typeQueryWithReservedWords.js │ ├── typeQueryWithReservedWords.symbols │ ├── typeQueryWithReservedWords.types │ ├── typeReferenceDirectiveScopedPackageCustomTypeRoot.errors.txt │ ├── typeReferenceDirectiveScopedPackageCustomTypeRoot.js │ ├── typeReferenceDirectiveScopedPackageCustomTypeRoot.symbols │ ├── typeReferenceDirectiveScopedPackageCustomTypeRoot.trace.json │ ├── typeReferenceDirectiveScopedPackageCustomTypeRoot.types │ ├── typeReferenceDirectiveWithFailedFromTypeRoot.errors.txt │ ├── typeReferenceDirectiveWithFailedFromTypeRoot.js │ ├── typeReferenceDirectiveWithFailedFromTypeRoot.symbols │ ├── typeReferenceDirectiveWithFailedFromTypeRoot.trace.json │ ├── typeReferenceDirectiveWithFailedFromTypeRoot.types │ ├── typeReferenceDirectiveWithTypeAsFile.js │ ├── typeReferenceDirectiveWithTypeAsFile.symbols │ ├── typeReferenceDirectiveWithTypeAsFile.trace.json │ ├── typeReferenceDirectiveWithTypeAsFile.types │ ├── typeReferenceDirectives1.js │ ├── typeReferenceDirectives1.symbols │ ├── typeReferenceDirectives1.trace.json │ ├── typeReferenceDirectives1.types │ ├── typeReferenceDirectives10.js │ ├── typeReferenceDirectives10.symbols │ ├── typeReferenceDirectives10.trace.json │ ├── typeReferenceDirectives10.types │ ├── typeReferenceDirectives11.errors.txt │ ├── typeReferenceDirectives11.symbols │ ├── typeReferenceDirectives11.trace.json │ ├── typeReferenceDirectives11.types │ ├── typeReferenceDirectives12.errors.txt │ ├── typeReferenceDirectives12.symbols │ ├── typeReferenceDirectives12.trace.json │ ├── typeReferenceDirectives12.types │ ├── typeReferenceDirectives13.js │ ├── typeReferenceDirectives13.symbols │ ├── typeReferenceDirectives13.trace.json │ ├── typeReferenceDirectives13.types │ ├── typeReferenceDirectives2.js │ ├── typeReferenceDirectives2.symbols │ ├── typeReferenceDirectives2.trace.json │ ├── typeReferenceDirectives2.types │ ├── typeReferenceDirectives3.js │ ├── typeReferenceDirectives3.symbols │ ├── typeReferenceDirectives3.trace.json │ ├── typeReferenceDirectives3.types │ ├── typeReferenceDirectives4.js │ ├── typeReferenceDirectives4.symbols │ ├── typeReferenceDirectives4.trace.json │ ├── typeReferenceDirectives4.types │ ├── typeReferenceDirectives5.js │ ├── typeReferenceDirectives5.symbols │ ├── typeReferenceDirectives5.trace.json │ ├── typeReferenceDirectives5.types │ ├── typeReferenceDirectives6.js │ ├── typeReferenceDirectives6.symbols │ ├── typeReferenceDirectives6.trace.json │ ├── typeReferenceDirectives6.types │ ├── typeReferenceDirectives7.js │ ├── typeReferenceDirectives7.symbols │ ├── typeReferenceDirectives7.trace.json │ ├── typeReferenceDirectives7.types │ ├── typeReferenceDirectives8.js │ ├── typeReferenceDirectives8.symbols │ ├── typeReferenceDirectives8.trace.json │ ├── typeReferenceDirectives8.types │ ├── typeReferenceDirectives9.js │ ├── typeReferenceDirectives9.symbols │ ├── typeReferenceDirectives9.trace.json │ ├── typeReferenceDirectives9.types │ ├── typeReferenceRelatedFiles.js │ ├── typeReferenceRelatedFiles.symbols │ ├── typeReferenceRelatedFiles.types │ ├── typeRelationships.errors.txt │ ├── typeRelationships.js │ ├── typeRelationships.symbols │ ├── typeRelationships.types │ ├── typeResolution.errors.txt │ ├── typeResolution.js │ ├── typeResolution.sourcemap.txt │ ├── typeResolution.symbols │ ├── typeResolution.types │ ├── typeRootsFromMultipleNodeModulesDirectories.js │ ├── typeRootsFromMultipleNodeModulesDirectories.symbols │ ├── typeRootsFromMultipleNodeModulesDirectories.trace.json │ ├── typeRootsFromMultipleNodeModulesDirectories.types │ ├── typeRootsFromNodeModulesInParentDirectory.js │ ├── typeRootsFromNodeModulesInParentDirectory.symbols │ ├── typeRootsFromNodeModulesInParentDirectory.trace.json │ ├── typeRootsFromNodeModulesInParentDirectory.types │ ├── typeSatisfaction.errors.txt │ ├── typeSatisfaction.js │ ├── typeSatisfaction.symbols │ ├── typeSatisfaction.types │ ├── typeSatisfactionWithDefaultExport.errors.txt │ ├── typeSatisfactionWithDefaultExport.js │ ├── typeSatisfactionWithDefaultExport.symbols │ ├── typeSatisfactionWithDefaultExport.types │ ├── typeSatisfaction_asConstArrays.symbols │ ├── typeSatisfaction_asConstArrays.types │ ├── typeSatisfaction_contextualTyping1.js │ ├── typeSatisfaction_contextualTyping1.symbols │ ├── typeSatisfaction_contextualTyping1.types │ ├── typeSatisfaction_contextualTyping2.errors.txt │ ├── typeSatisfaction_contextualTyping2.js │ ├── typeSatisfaction_contextualTyping2.symbols │ ├── typeSatisfaction_contextualTyping2.types │ ├── typeSatisfaction_contextualTyping3.symbols │ ├── typeSatisfaction_contextualTyping3.types │ ├── typeSatisfaction_ensureInterfaceImpl.js │ ├── typeSatisfaction_ensureInterfaceImpl.symbols │ ├── typeSatisfaction_ensureInterfaceImpl.types │ ├── typeSatisfaction_errorLocations1.errors.txt │ ├── typeSatisfaction_errorLocations1.symbols │ ├── typeSatisfaction_errorLocations1.types │ ├── typeSatisfaction_js.errors.txt │ ├── typeSatisfaction_js.js │ ├── typeSatisfaction_js.symbols │ ├── typeSatisfaction_js.types │ ├── typeSatisfaction_optionalMemberConformance.errors.txt │ ├── typeSatisfaction_optionalMemberConformance.js │ ├── typeSatisfaction_optionalMemberConformance.symbols │ ├── typeSatisfaction_optionalMemberConformance.types │ ├── typeSatisfaction_propNameConstraining.errors.txt │ ├── typeSatisfaction_propNameConstraining.js │ ├── typeSatisfaction_propNameConstraining.symbols │ ├── typeSatisfaction_propNameConstraining.types │ ├── typeSatisfaction_propertyNameFulfillment.errors.txt │ ├── typeSatisfaction_propertyNameFulfillment.js │ ├── typeSatisfaction_propertyNameFulfillment.symbols │ ├── typeSatisfaction_propertyNameFulfillment.types │ ├── typeSatisfaction_propertyValueConformance1(nopropertyaccessfromindexsignature=false).errors.txt │ ├── typeSatisfaction_propertyValueConformance1(nopropertyaccessfromindexsignature=false).js │ ├── typeSatisfaction_propertyValueConformance1(nopropertyaccessfromindexsignature=false).symbols │ ├── typeSatisfaction_propertyValueConformance1(nopropertyaccessfromindexsignature=false).types │ ├── typeSatisfaction_propertyValueConformance1(nopropertyaccessfromindexsignature=true).errors.txt │ ├── typeSatisfaction_propertyValueConformance1(nopropertyaccessfromindexsignature=true).js │ ├── typeSatisfaction_propertyValueConformance1(nopropertyaccessfromindexsignature=true).symbols │ ├── typeSatisfaction_propertyValueConformance1(nopropertyaccessfromindexsignature=true).types │ ├── typeSatisfaction_propertyValueConformance2(nouncheckedindexedaccess=false).errors.txt │ ├── typeSatisfaction_propertyValueConformance2(nouncheckedindexedaccess=false).js │ ├── typeSatisfaction_propertyValueConformance2(nouncheckedindexedaccess=false).symbols │ ├── typeSatisfaction_propertyValueConformance2(nouncheckedindexedaccess=false).types │ ├── typeSatisfaction_propertyValueConformance2(nouncheckedindexedaccess=true).errors.txt │ ├── typeSatisfaction_propertyValueConformance2(nouncheckedindexedaccess=true).js │ ├── typeSatisfaction_propertyValueConformance2(nouncheckedindexedaccess=true).symbols │ ├── typeSatisfaction_propertyValueConformance2(nouncheckedindexedaccess=true).types │ ├── typeSatisfaction_propertyValueConformance3.errors.txt │ ├── typeSatisfaction_propertyValueConformance3.js │ ├── typeSatisfaction_propertyValueConformance3.symbols │ ├── typeSatisfaction_propertyValueConformance3.types │ ├── typeSatisfaction_vacuousIntersectionOfContextualTypes.errors.txt │ ├── typeSatisfaction_vacuousIntersectionOfContextualTypes.js │ ├── typeSatisfaction_vacuousIntersectionOfContextualTypes.symbols │ ├── typeSatisfaction_vacuousIntersectionOfContextualTypes.types │ ├── typeTagCircularReferenceOnConstructorFunction.errors.txt │ ├── typeTagCircularReferenceOnConstructorFunction.symbols │ ├── typeTagCircularReferenceOnConstructorFunction.types │ ├── typeTagModuleExports.errors.txt │ ├── typeTagModuleExports.symbols │ ├── typeTagModuleExports.types │ ├── typeTagNoErasure.errors.txt │ ├── typeTagNoErasure.js │ ├── typeTagNoErasure.symbols │ ├── typeTagNoErasure.types │ ├── typeTagOnFunctionReferencesGeneric.js │ ├── typeTagOnFunctionReferencesGeneric.symbols │ ├── typeTagOnFunctionReferencesGeneric.types │ ├── typeTagOnPropertyAssignment.symbols │ ├── typeTagOnPropertyAssignment.types │ ├── typeTagPrototypeAssignment.errors.txt │ ├── typeTagPrototypeAssignment.symbols │ ├── typeTagPrototypeAssignment.types │ ├── typeTagWithGenericSignature.symbols │ ├── typeTagWithGenericSignature.types │ ├── typeUsedAsTypeLiteralIndex.errors.txt │ ├── typeUsedAsTypeLiteralIndex.js │ ├── typeUsedAsTypeLiteralIndex.symbols │ ├── typeUsedAsTypeLiteralIndex.types │ ├── typeUsedAsValueError.errors.txt │ ├── typeUsedAsValueError.js │ ├── typeUsedAsValueError.symbols │ ├── typeUsedAsValueError.types │ ├── typeUsedAsValueError2.errors.txt │ ├── typeUsedAsValueError2.js │ ├── typeUsedAsValueError2.symbols │ ├── typeUsedAsValueError2.types │ ├── typeVal.js │ ├── typeVal.symbols │ ├── typeVal.types │ ├── typeValueConflict1.errors.txt │ ├── typeValueConflict1.js │ ├── typeValueConflict1.symbols │ ├── typeValueConflict1.types │ ├── typeValueConflict2.errors.txt │ ├── typeValueConflict2.js │ ├── typeValueConflict2.symbols │ ├── typeValueConflict2.types │ ├── typeValueMerge1.symbols │ ├── typeValueMerge1.types │ ├── typeVariableConstraintIntersections.symbols │ ├── typeVariableConstraintIntersections.types │ ├── typeVariableConstraintedToAliasNotAssignableToUnion.errors.txt │ ├── typeVariableConstraintedToAliasNotAssignableToUnion.js │ ├── typeVariableConstraintedToAliasNotAssignableToUnion.symbols │ ├── typeVariableConstraintedToAliasNotAssignableToUnion.types │ ├── typeVariableTypeGuards.js │ ├── typeVariableTypeGuards.symbols │ ├── typeVariableTypeGuards.types │ ├── typecheckCommaExpression.errors.txt │ ├── typecheckCommaExpression.js │ ├── typecheckCommaExpression.symbols │ ├── typecheckCommaExpression.types │ ├── typecheckIfCondition.errors.txt │ ├── typecheckIfCondition.js │ ├── typecheckIfCondition.symbols │ ├── typecheckIfCondition.types │ ├── typedArrays-es5(target=es2015).js │ ├── typedArrays-es5(target=es2015).symbols │ ├── typedArrays-es5(target=es2015).types │ ├── typedArrays-es5(target=es5).errors.txt │ ├── typedArrays-es5(target=es5).js │ ├── typedArrays-es5(target=es5).symbols │ ├── typedArrays-es5(target=es5).types │ ├── typedArrays-es6.js │ ├── typedArrays-es6.symbols │ ├── typedArrays-es6.types │ ├── typedArrays.js │ ├── typedArrays.symbols │ ├── typedArrays.types │ ├── typedArraysCrossAssignability01.errors.txt │ ├── typedArraysCrossAssignability01.js │ ├── typedArraysCrossAssignability01.symbols │ ├── typedArraysCrossAssignability01.types │ ├── typedArraysSubarray.js │ ├── typedArraysSubarray.symbols │ ├── typedArraysSubarray.types │ ├── typedGenericPrototypeMember.js │ ├── typedGenericPrototypeMember.symbols │ ├── typedGenericPrototypeMember.types │ ├── typedefCrossModule.symbols │ ├── typedefCrossModule.types │ ├── typedefCrossModule2.errors.txt │ ├── typedefCrossModule2.symbols │ ├── typedefCrossModule2.types │ ├── typedefCrossModule3.errors.txt │ ├── typedefCrossModule3.symbols │ ├── typedefCrossModule3.types │ ├── typedefCrossModule4.errors.txt │ ├── typedefCrossModule4.symbols │ ├── typedefCrossModule4.types │ ├── typedefCrossModule5.errors.txt │ ├── typedefCrossModule5.symbols │ ├── typedefCrossModule5.types │ ├── typedefDuplicateTypeDeclaration.errors.txt │ ├── typedefDuplicateTypeDeclaration.symbols │ ├── typedefDuplicateTypeDeclaration.types │ ├── typedefInnerNamepaths.errors.txt │ ├── typedefInnerNamepaths.symbols │ ├── typedefInnerNamepaths.types │ ├── typedefMultipleTypeParameters.errors.txt │ ├── typedefMultipleTypeParameters.symbols │ ├── typedefMultipleTypeParameters.types │ ├── typedefOnSemicolonClassElement.js │ ├── typedefOnSemicolonClassElement.symbols │ ├── typedefOnSemicolonClassElement.types │ ├── typedefOnStatements.errors.txt │ ├── typedefOnStatements.js │ ├── typedefOnStatements.symbols │ ├── typedefOnStatements.types │ ├── typedefScope1.errors.txt │ ├── typedefScope1.js │ ├── typedefScope1.symbols │ ├── typedefScope1.types │ ├── typedefTagExtraneousProperty.symbols │ ├── typedefTagExtraneousProperty.types │ ├── typedefTagNested.symbols │ ├── typedefTagNested.types │ ├── typedefTagTypeResolution.errors.txt │ ├── typedefTagTypeResolution.symbols │ ├── typedefTagTypeResolution.types │ ├── typedefTagWrapping.errors.txt │ ├── typedefTagWrapping.symbols │ ├── typedefTagWrapping.types │ ├── typedefinition01.baseline.jsonc │ ├── typeofANonExportedType.errors.txt │ ├── typeofANonExportedType.js │ ├── typeofANonExportedType.symbols │ ├── typeofANonExportedType.types │ ├── typeofAmbientExternalModules.errors.txt │ ├── typeofAmbientExternalModules.js │ ├── typeofAmbientExternalModules.symbols │ ├── typeofAmbientExternalModules.types │ ├── typeofAnExportedType.errors.txt │ ├── typeofAnExportedType.js │ ├── typeofAnExportedType.symbols │ ├── typeofAnExportedType.types │ ├── typeofClass.errors.txt │ ├── typeofClass.js │ ├── typeofClass.symbols │ ├── typeofClass.types │ ├── typeofClass2.js │ ├── typeofClass2.symbols │ ├── typeofClass2.types │ ├── typeofClassWithPrivates.errors.txt │ ├── typeofClassWithPrivates.js │ ├── typeofClassWithPrivates.symbols │ ├── typeofClassWithPrivates.types │ ├── typeofEnum.errors.txt │ ├── typeofEnum.js │ ├── typeofEnum.symbols │ ├── typeofEnum.types │ ├── typeofExternalModules.errors.txt │ ├── typeofExternalModules.js │ ├── typeofExternalModules.symbols │ ├── typeofExternalModules.types │ ├── typeofImportDefer.errors.txt │ ├── typeofImportDefer.js │ ├── typeofImportDefer.symbols │ ├── typeofImportDefer.types │ ├── typeofImportInstantiationExpression.js │ ├── typeofImportInstantiationExpression.symbols │ ├── typeofImportInstantiationExpression.types │ ├── typeofImportTypeOnlyExport.js │ ├── typeofImportTypeOnlyExport.symbols │ ├── typeofImportTypeOnlyExport.types │ ├── typeofInObjectLiteralType.errors.txt │ ├── typeofInObjectLiteralType.js │ ├── typeofInObjectLiteralType.symbols │ ├── typeofInObjectLiteralType.types │ ├── typeofInterface.js │ ├── typeofInterface.symbols │ ├── typeofInterface.types │ ├── typeofInternalModules.errors.txt │ ├── typeofInternalModules.js │ ├── typeofInternalModules.symbols │ ├── typeofInternalModules.types │ ├── typeofModuleWithoutExports.errors.txt │ ├── typeofModuleWithoutExports.js │ ├── typeofModuleWithoutExports.symbols │ ├── typeofModuleWithoutExports.types │ ├── typeofObjectInference.js │ ├── typeofObjectInference.symbols │ ├── typeofObjectInference.types │ ├── typeofOperatorInvalidOperations.errors.txt │ ├── typeofOperatorInvalidOperations.js │ ├── typeofOperatorInvalidOperations.symbols │ ├── typeofOperatorInvalidOperations.types │ ├── typeofOperatorWithAnyOtherType.errors.txt │ ├── typeofOperatorWithAnyOtherType.js │ ├── typeofOperatorWithAnyOtherType.symbols │ ├── typeofOperatorWithAnyOtherType.types │ ├── typeofOperatorWithBooleanType.errors.txt │ ├── typeofOperatorWithBooleanType.js │ ├── typeofOperatorWithBooleanType.symbols │ ├── typeofOperatorWithBooleanType.types │ ├── typeofOperatorWithEnumType.errors.txt │ ├── typeofOperatorWithEnumType.js │ ├── typeofOperatorWithEnumType.symbols │ ├── typeofOperatorWithEnumType.types │ ├── typeofOperatorWithNumberType.errors.txt │ ├── typeofOperatorWithNumberType.js │ ├── typeofOperatorWithNumberType.symbols │ ├── typeofOperatorWithNumberType.types │ ├── typeofOperatorWithStringType.errors.txt │ ├── typeofOperatorWithStringType.js │ ├── typeofOperatorWithStringType.symbols │ ├── typeofOperatorWithStringType.types │ ├── typeofProperty.errors.txt │ ├── typeofProperty.js │ ├── typeofProperty.symbols │ ├── typeofProperty.types │ ├── typeofSimple.errors.txt │ ├── typeofSimple.js │ ├── typeofSimple.symbols │ ├── typeofSimple.types │ ├── typeofStrictNull.js │ ├── typeofStrictNull.symbols │ ├── typeofStrictNull.types │ ├── typeofStripsFreshness.js │ ├── typeofStripsFreshness.symbols │ ├── typeofStripsFreshness.types │ ├── typeofThis.errors.txt │ ├── typeofThis.js │ ├── typeofThis.symbols │ ├── typeofThis.types │ ├── typeofThisInMethodSignature.symbols │ ├── typeofThisInMethodSignature.types │ ├── typeofThisWithImplicitThis.js │ ├── typeofThisWithImplicitThis.symbols │ ├── typeofThisWithImplicitThis.types │ ├── typeofTypeParameter.errors.txt │ ├── typeofTypeParameter.js │ ├── typeofTypeParameter.symbols │ ├── typeofTypeParameter.types │ ├── typeofUndefined.errors.txt │ ├── typeofUndefined.js │ ├── typeofUndefined.symbols │ ├── typeofUndefined.types │ ├── typeofUnknownSymbol.errors.txt │ ├── typeofUnknownSymbol.js │ ├── typeofUnknownSymbol.symbols │ ├── typeofUnknownSymbol.types │ ├── typeofUsedBeforeBlockScoped.js │ ├── typeofUsedBeforeBlockScoped.symbols │ ├── typeofUsedBeforeBlockScoped.types │ ├── types.asyncGenerators.es2018.1.symbols │ ├── types.asyncGenerators.es2018.1.types │ ├── types.asyncGenerators.es2018.2.errors.txt │ ├── types.asyncGenerators.es2018.2.symbols │ ├── types.asyncGenerators.es2018.2.types │ ├── types.forAwait.es2018.1.symbols │ ├── types.forAwait.es2018.1.types │ ├── types.forAwait.es2018.2.errors.txt │ ├── types.forAwait.es2018.2.symbols │ ├── types.forAwait.es2018.2.types │ ├── types.forAwait.es2018.3.errors.txt │ ├── types.forAwait.es2018.3.symbols │ ├── types.forAwait.es2018.3.types │ ├── typesOnlyExternalModuleStillHasInstance.errors.txt │ ├── typesOnlyExternalModuleStillHasInstance.js │ ├── typesOnlyExternalModuleStillHasInstance.symbols │ ├── typesOnlyExternalModuleStillHasInstance.types │ ├── typesVersions.ambientModules.js │ ├── typesVersions.ambientModules.symbols │ ├── typesVersions.ambientModules.trace.json │ ├── typesVersions.ambientModules.types │ ├── typesVersions.emptyTypes.errors.txt │ ├── typesVersions.emptyTypes.js │ ├── typesVersions.emptyTypes.symbols │ ├── typesVersions.emptyTypes.trace.json │ ├── typesVersions.emptyTypes.types │ ├── typesVersions.justIndex.errors.txt │ ├── typesVersions.justIndex.js │ ├── typesVersions.justIndex.symbols │ ├── typesVersions.justIndex.trace.json │ ├── typesVersions.justIndex.types │ ├── typesVersions.multiFile.js │ ├── typesVersions.multiFile.symbols │ ├── typesVersions.multiFile.trace.json │ ├── typesVersions.multiFile.types │ ├── typesVersionsDeclarationEmit.ambient.js │ ├── typesVersionsDeclarationEmit.ambient.symbols │ ├── typesVersionsDeclarationEmit.ambient.trace.json │ ├── typesVersionsDeclarationEmit.ambient.types │ ├── typesVersionsDeclarationEmit.multiFile.js │ ├── typesVersionsDeclarationEmit.multiFile.symbols │ ├── typesVersionsDeclarationEmit.multiFile.trace.json │ ├── typesVersionsDeclarationEmit.multiFile.types │ ├── typesVersionsDeclarationEmit.multiFileBackReferenceToSelf.errors.txt │ ├── typesVersionsDeclarationEmit.multiFileBackReferenceToSelf.js │ ├── typesVersionsDeclarationEmit.multiFileBackReferenceToSelf.symbols │ ├── typesVersionsDeclarationEmit.multiFileBackReferenceToSelf.trace.json │ ├── typesVersionsDeclarationEmit.multiFileBackReferenceToSelf.types │ ├── typesVersionsDeclarationEmit.multiFileBackReferenceToUnmapped.js │ ├── typesVersionsDeclarationEmit.multiFileBackReferenceToUnmapped.symbols │ ├── typesVersionsDeclarationEmit.multiFileBackReferenceToUnmapped.trace.json │ ├── typesVersionsDeclarationEmit.multiFileBackReferenceToUnmapped.types │ ├── typesWithDuplicateTypeParameters.errors.txt │ ├── typesWithDuplicateTypeParameters.js │ ├── typesWithDuplicateTypeParameters.symbols │ ├── typesWithDuplicateTypeParameters.types │ ├── typesWithOptionalProperty.js │ ├── typesWithOptionalProperty.symbols │ ├── typesWithOptionalProperty.types │ ├── typesWithPrivateConstructor.errors.txt │ ├── typesWithPrivateConstructor.js │ ├── typesWithPrivateConstructor.symbols │ ├── typesWithPrivateConstructor.types │ ├── typesWithProtectedConstructor.errors.txt │ ├── typesWithProtectedConstructor.js │ ├── typesWithProtectedConstructor.symbols │ ├── typesWithProtectedConstructor.types │ ├── typesWithPublicConstructor.errors.txt │ ├── typesWithPublicConstructor.js │ ├── typesWithPublicConstructor.symbols │ ├── typesWithPublicConstructor.types │ ├── typesWithSpecializedCallSignatures.js │ ├── typesWithSpecializedCallSignatures.symbols │ ├── typesWithSpecializedCallSignatures.types │ ├── typesWithSpecializedConstructSignatures.js │ ├── typesWithSpecializedConstructSignatures.symbols │ ├── typesWithSpecializedConstructSignatures.types │ ├── typingsLookup1.js │ ├── typingsLookup1.symbols │ ├── typingsLookup1.trace.json │ ├── typingsLookup1.types │ ├── typingsLookup2.js │ ├── typingsLookup2.symbols │ ├── typingsLookup2.trace.json │ ├── typingsLookup2.types │ ├── typingsLookup3.errors.txt │ ├── typingsLookup3.js │ ├── typingsLookup3.symbols │ ├── typingsLookup3.trace.json │ ├── typingsLookup3.types │ ├── typingsLookup4.js │ ├── typingsLookup4.symbols │ ├── typingsLookup4.trace.json │ ├── typingsLookup4.types │ ├── typingsLookupAmd.errors.txt │ ├── typingsLookupAmd.js │ ├── typingsLookupAmd.symbols │ ├── typingsLookupAmd.trace.json │ ├── typingsLookupAmd.types │ ├── typingsSuggestion1.errors.txt │ ├── typingsSuggestion1.js │ ├── typingsSuggestion1.symbols │ ├── typingsSuggestion1.types │ ├── typingsSuggestion2.errors.txt │ ├── typingsSuggestion2.js │ ├── typingsSuggestion2.symbols │ ├── typingsSuggestion2.types │ ├── typingsSuggestionBun1.errors.txt │ ├── typingsSuggestionBun1.js │ ├── typingsSuggestionBun1.symbols │ ├── typingsSuggestionBun1.types │ ├── typingsSuggestionBun2.errors.txt │ ├── typingsSuggestionBun2.js │ ├── typingsSuggestionBun2.symbols │ ├── typingsSuggestionBun2.types │ ├── umd-augmentation-1.js │ ├── umd-augmentation-1.symbols │ ├── umd-augmentation-1.types │ ├── umd-augmentation-2.js │ ├── umd-augmentation-2.symbols │ ├── umd-augmentation-2.types │ ├── umd-augmentation-3.js │ ├── umd-augmentation-3.symbols │ ├── umd-augmentation-3.types │ ├── umd-augmentation-4.js │ ├── umd-augmentation-4.symbols │ ├── umd-augmentation-4.types │ ├── umd-errors.errors.txt │ ├── umd-errors.js │ ├── umd-errors.symbols │ ├── umd-errors.types │ ├── umd1.errors.txt │ ├── umd1.js │ ├── umd1.symbols │ ├── umd1.types │ ├── umd2.errors.txt │ ├── umd2.js │ ├── umd2.symbols │ ├── umd2.types │ ├── umd3.errors.txt │ ├── umd3.js │ ├── umd3.symbols │ ├── umd3.types │ ├── umd4.errors.txt │ ├── umd4.js │ ├── umd4.symbols │ ├── umd4.types │ ├── umd5.errors.txt │ ├── umd5.js │ ├── umd5.symbols │ ├── umd5.types │ ├── umd6.js │ ├── umd6.symbols │ ├── umd6.types │ ├── umd7.js │ ├── umd7.symbols │ ├── umd7.types │ ├── umd8.errors.txt │ ├── umd8.js │ ├── umd8.symbols │ ├── umd8.types │ ├── umd9.js │ ├── umd9.symbols │ ├── umd9.types │ ├── umdDependencyComment2.errors.txt │ ├── umdDependencyComment2.js │ ├── umdDependencyComment2.symbols │ ├── umdDependencyComment2.types │ ├── umdDependencyCommentName1.errors.txt │ ├── umdDependencyCommentName1.js │ ├── umdDependencyCommentName1.symbols │ ├── umdDependencyCommentName1.types │ ├── umdDependencyCommentName2.errors.txt │ ├── umdDependencyCommentName2.js │ ├── umdDependencyCommentName2.symbols │ ├── umdDependencyCommentName2.types │ ├── umdGlobalAugmentationNoCrash.errors.txt │ ├── umdGlobalAugmentationNoCrash.js │ ├── umdGlobalAugmentationNoCrash.symbols │ ├── umdGlobalAugmentationNoCrash.types │ ├── umdGlobalConflict.js │ ├── umdGlobalConflict.symbols │ ├── umdGlobalConflict.types │ ├── umdNamedAmdMode.errors.txt │ ├── umdNamedAmdMode.js │ ├── umdNamedAmdMode.symbols │ ├── umdNamedAmdMode.types │ ├── umdNamespaceMergedWithGlobalAugmentationIsNotCircular.errors.txt │ ├── umdNamespaceMergedWithGlobalAugmentationIsNotCircular.js │ ├── umdNamespaceMergedWithGlobalAugmentationIsNotCircular.symbols │ ├── umdNamespaceMergedWithGlobalAugmentationIsNotCircular.types │ ├── unannotatedParametersAreOptional.symbols │ ├── unannotatedParametersAreOptional.types │ ├── unaryOperators1.errors.txt │ ├── unaryOperators1.js │ ├── unaryOperators1.symbols │ ├── unaryOperators1.types │ ├── unaryOperatorsInStrictMode.errors.txt │ ├── unaryOperatorsInStrictMode.js │ ├── unaryOperatorsInStrictMode.symbols │ ├── unaryOperatorsInStrictMode.types │ ├── unaryPlus.js │ ├── unaryPlus.symbols │ ├── unaryPlus.types │ ├── uncalledFunctionChecksInConditional.errors.txt │ ├── uncalledFunctionChecksInConditional.js │ ├── uncalledFunctionChecksInConditional.symbols │ ├── uncalledFunctionChecksInConditional.types │ ├── uncalledFunctionChecksInConditional2.errors.txt │ ├── uncalledFunctionChecksInConditional2.js │ ├── uncalledFunctionChecksInConditional2.symbols │ ├── uncalledFunctionChecksInConditional2.types │ ├── uncalledFunctionChecksInConditionalPerf.js │ ├── uncalledFunctionChecksInConditionalPerf.symbols │ ├── uncalledFunctionChecksInConditionalPerf.types │ ├── uncaughtCompilerError1.js │ ├── uncaughtCompilerError1.symbols │ ├── uncaughtCompilerError1.types │ ├── uncaughtCompilerError2.errors.txt │ ├── uncaughtCompilerError2.js │ ├── uncaughtCompilerError2.symbols │ ├── uncaughtCompilerError2.types │ ├── unclosedExportClause01.errors.txt │ ├── unclosedExportClause01.js │ ├── unclosedExportClause01.symbols │ ├── unclosedExportClause01.types │ ├── unclosedExportClause02.errors.txt │ ├── unclosedExportClause02.js │ ├── unclosedExportClause02.symbols │ ├── unclosedExportClause02.types │ ├── undeclaredBase.errors.txt │ ├── undeclaredBase.js │ ├── undeclaredBase.symbols │ ├── undeclaredBase.types │ ├── undeclaredMethod.errors.txt │ ├── undeclaredMethod.js │ ├── undeclaredMethod.symbols │ ├── undeclaredMethod.types │ ├── undeclaredModuleError.errors.txt │ ├── undeclaredModuleError.js │ ├── undeclaredModuleError.symbols │ ├── undeclaredModuleError.types │ ├── undeclaredVarEmit.errors.txt │ ├── undeclaredVarEmit.js │ ├── undeclaredVarEmit.symbols │ ├── undeclaredVarEmit.types │ ├── undefinedArgumentInference.errors.txt │ ├── undefinedArgumentInference.js │ ├── undefinedArgumentInference.symbols │ ├── undefinedArgumentInference.types │ ├── undefinedAsDiscriminantWithUnknown(strictnullchecks=false).js │ ├── undefinedAsDiscriminantWithUnknown(strictnullchecks=false).symbols │ ├── undefinedAsDiscriminantWithUnknown(strictnullchecks=false).types │ ├── undefinedAsDiscriminantWithUnknown(strictnullchecks=true).js │ ├── undefinedAsDiscriminantWithUnknown(strictnullchecks=true).symbols │ ├── undefinedAsDiscriminantWithUnknown(strictnullchecks=true).types │ ├── undefinedAssignableToEveryType.errors.txt │ ├── undefinedAssignableToEveryType.js │ ├── undefinedAssignableToEveryType.symbols │ ├── undefinedAssignableToEveryType.types │ ├── undefinedAssignableToGenericMappedIntersection.errors.txt │ ├── undefinedAssignableToGenericMappedIntersection.js │ ├── undefinedAssignableToGenericMappedIntersection.symbols │ ├── undefinedAssignableToGenericMappedIntersection.types │ ├── undefinedInferentialTyping.errors.txt │ ├── undefinedInferentialTyping.js │ ├── undefinedInferentialTyping.symbols │ ├── undefinedInferentialTyping.types │ ├── undefinedIsSubtypeOfEverything.errors.txt │ ├── undefinedIsSubtypeOfEverything.js │ ├── undefinedIsSubtypeOfEverything.symbols │ ├── undefinedIsSubtypeOfEverything.types │ ├── undefinedSymbolReferencedInArrayLiteral1.errors.txt │ ├── undefinedSymbolReferencedInArrayLiteral1.js │ ├── undefinedSymbolReferencedInArrayLiteral1.symbols │ ├── undefinedSymbolReferencedInArrayLiteral1.types │ ├── undefinedTypeArgument1.errors.txt │ ├── undefinedTypeArgument1.js │ ├── undefinedTypeArgument1.symbols │ ├── undefinedTypeArgument1.types │ ├── undefinedTypeArgument2.errors.txt │ ├── undefinedTypeArgument2.js │ ├── undefinedTypeArgument2.symbols │ ├── undefinedTypeArgument2.types │ ├── undefinedTypeAssignment1.errors.txt │ ├── undefinedTypeAssignment1.js │ ├── undefinedTypeAssignment1.symbols │ ├── undefinedTypeAssignment1.types │ ├── undefinedTypeAssignment2.errors.txt │ ├── undefinedTypeAssignment2.js │ ├── undefinedTypeAssignment2.symbols │ ├── undefinedTypeAssignment2.types │ ├── undefinedTypeAssignment3.errors.txt │ ├── undefinedTypeAssignment3.js │ ├── undefinedTypeAssignment3.symbols │ ├── undefinedTypeAssignment3.types │ ├── undefinedTypeAssignment4.errors.txt │ ├── undefinedTypeAssignment4.js │ ├── undefinedTypeAssignment4.symbols │ ├── undefinedTypeAssignment4.types │ ├── underscoreEscapedNameInEnum.js │ ├── underscoreEscapedNameInEnum.symbols │ ├── underscoreEscapedNameInEnum.types │ ├── underscoreMapFirst.js │ ├── underscoreMapFirst.symbols │ ├── underscoreMapFirst.types │ ├── underscoreTest1.errors.txt │ ├── underscoreTest1.js │ ├── underscoreTest1.symbols │ ├── underscoreTest1.types │ ├── underscoreThisInDerivedClass01.js │ ├── underscoreThisInDerivedClass01.symbols │ ├── underscoreThisInDerivedClass01.types │ ├── underscoreThisInDerivedClass02.js │ ├── underscoreThisInDerivedClass02.symbols │ ├── underscoreThisInDerivedClass02.types │ ├── unexpectedStatementBlockTerminator.errors.txt │ ├── unexpectedStatementBlockTerminator.js │ ├── unexpectedStatementBlockTerminator.symbols │ ├── unexpectedStatementBlockTerminator.types │ ├── unexportedInstanceClassVariables.js │ ├── unexportedInstanceClassVariables.symbols │ ├── unexportedInstanceClassVariables.types │ ├── unicodeEscapesInJSDoc.js │ ├── unicodeEscapesInJSDoc.symbols │ ├── unicodeEscapesInJSDoc.types │ ├── unicodeEscapesInJsxtags.errors.txt │ ├── unicodeEscapesInJsxtags.js │ ├── unicodeEscapesInJsxtags.symbols │ ├── unicodeEscapesInJsxtags.types │ ├── unicodeEscapesInNames01(target=es2015).js │ ├── unicodeEscapesInNames01(target=es2015).sourcemap.txt │ ├── unicodeEscapesInNames01(target=es2015).symbols │ ├── unicodeEscapesInNames01(target=es2015).types │ ├── unicodeEscapesInNames01(target=es5).errors.txt │ ├── unicodeEscapesInNames01(target=es5).js │ ├── unicodeEscapesInNames01(target=es5).sourcemap.txt │ ├── unicodeEscapesInNames01(target=es5).symbols │ ├── unicodeEscapesInNames01(target=es5).types │ ├── unicodeEscapesInNames01(target=esnext).js │ ├── unicodeEscapesInNames01(target=esnext).sourcemap.txt │ ├── unicodeEscapesInNames01(target=esnext).symbols │ ├── unicodeEscapesInNames01(target=esnext).types │ ├── unicodeEscapesInNames02(target=es2015).errors.txt │ ├── unicodeEscapesInNames02(target=es2015).js │ ├── unicodeEscapesInNames02(target=es2015).sourcemap.txt │ ├── unicodeEscapesInNames02(target=es2015).symbols │ ├── unicodeEscapesInNames02(target=es2015).types │ ├── unicodeEscapesInNames02(target=es5).errors.txt │ ├── unicodeEscapesInNames02(target=es5).js │ ├── unicodeEscapesInNames02(target=es5).sourcemap.txt │ ├── unicodeEscapesInNames02(target=es5).symbols │ ├── unicodeEscapesInNames02(target=es5).types │ ├── unicodeExtendedEscapesInRegularExpressions01(target=es5).errors.txt │ ├── unicodeExtendedEscapesInRegularExpressions01(target=es5).js │ ├── unicodeExtendedEscapesInRegularExpressions01(target=es5).symbols │ ├── unicodeExtendedEscapesInRegularExpressions01(target=es5).types │ ├── unicodeExtendedEscapesInRegularExpressions01(target=es6).js │ ├── unicodeExtendedEscapesInRegularExpressions01(target=es6).symbols │ ├── unicodeExtendedEscapesInRegularExpressions01(target=es6).types │ ├── unicodeExtendedEscapesInRegularExpressions02(target=es5).errors.txt │ ├── unicodeExtendedEscapesInRegularExpressions02(target=es5).js │ ├── unicodeExtendedEscapesInRegularExpressions02(target=es5).symbols │ ├── unicodeExtendedEscapesInRegularExpressions02(target=es5).types │ ├── unicodeExtendedEscapesInRegularExpressions02(target=es6).js │ ├── unicodeExtendedEscapesInRegularExpressions02(target=es6).symbols │ ├── unicodeExtendedEscapesInRegularExpressions02(target=es6).types │ ├── unicodeExtendedEscapesInRegularExpressions03(target=es5).errors.txt │ ├── unicodeExtendedEscapesInRegularExpressions03(target=es5).js │ ├── unicodeExtendedEscapesInRegularExpressions03(target=es5).symbols │ ├── unicodeExtendedEscapesInRegularExpressions03(target=es5).types │ ├── unicodeExtendedEscapesInRegularExpressions03(target=es6).js │ ├── unicodeExtendedEscapesInRegularExpressions03(target=es6).symbols │ ├── unicodeExtendedEscapesInRegularExpressions03(target=es6).types │ ├── unicodeExtendedEscapesInRegularExpressions04(target=es5).errors.txt │ ├── unicodeExtendedEscapesInRegularExpressions04(target=es5).js │ ├── unicodeExtendedEscapesInRegularExpressions04(target=es5).symbols │ ├── unicodeExtendedEscapesInRegularExpressions04(target=es5).types │ ├── unicodeExtendedEscapesInRegularExpressions04(target=es6).js │ ├── unicodeExtendedEscapesInRegularExpressions04(target=es6).symbols │ ├── unicodeExtendedEscapesInRegularExpressions04(target=es6).types │ ├── unicodeExtendedEscapesInRegularExpressions05(target=es5).errors.txt │ ├── unicodeExtendedEscapesInRegularExpressions05(target=es5).js │ ├── unicodeExtendedEscapesInRegularExpressions05(target=es5).symbols │ ├── unicodeExtendedEscapesInRegularExpressions05(target=es5).types │ ├── unicodeExtendedEscapesInRegularExpressions05(target=es6).js │ ├── unicodeExtendedEscapesInRegularExpressions05(target=es6).symbols │ ├── unicodeExtendedEscapesInRegularExpressions05(target=es6).types │ ├── unicodeExtendedEscapesInRegularExpressions06(target=es5).errors.txt │ ├── unicodeExtendedEscapesInRegularExpressions06(target=es5).js │ ├── unicodeExtendedEscapesInRegularExpressions06(target=es5).symbols │ ├── unicodeExtendedEscapesInRegularExpressions06(target=es5).types │ ├── unicodeExtendedEscapesInRegularExpressions06(target=es6).js │ ├── unicodeExtendedEscapesInRegularExpressions06(target=es6).symbols │ ├── unicodeExtendedEscapesInRegularExpressions06(target=es6).types │ ├── unicodeExtendedEscapesInRegularExpressions07(target=es5).errors.txt │ ├── unicodeExtendedEscapesInRegularExpressions07(target=es5).js │ ├── unicodeExtendedEscapesInRegularExpressions07(target=es5).symbols │ ├── unicodeExtendedEscapesInRegularExpressions07(target=es5).types │ ├── unicodeExtendedEscapesInRegularExpressions07(target=es6).errors.txt │ ├── unicodeExtendedEscapesInRegularExpressions07(target=es6).js │ ├── unicodeExtendedEscapesInRegularExpressions07(target=es6).symbols │ ├── unicodeExtendedEscapesInRegularExpressions07(target=es6).types │ ├── unicodeExtendedEscapesInRegularExpressions08(target=es5).errors.txt │ ├── unicodeExtendedEscapesInRegularExpressions08(target=es5).js │ ├── unicodeExtendedEscapesInRegularExpressions08(target=es5).symbols │ ├── unicodeExtendedEscapesInRegularExpressions08(target=es5).types │ ├── unicodeExtendedEscapesInRegularExpressions08(target=es6).js │ ├── unicodeExtendedEscapesInRegularExpressions08(target=es6).symbols │ ├── unicodeExtendedEscapesInRegularExpressions08(target=es6).types │ ├── unicodeExtendedEscapesInRegularExpressions09(target=es5).errors.txt │ ├── unicodeExtendedEscapesInRegularExpressions09(target=es5).js │ ├── unicodeExtendedEscapesInRegularExpressions09(target=es5).symbols │ ├── unicodeExtendedEscapesInRegularExpressions09(target=es5).types │ ├── unicodeExtendedEscapesInRegularExpressions09(target=es6).js │ ├── unicodeExtendedEscapesInRegularExpressions09(target=es6).symbols │ ├── unicodeExtendedEscapesInRegularExpressions09(target=es6).types │ ├── unicodeExtendedEscapesInRegularExpressions10(target=es5).errors.txt │ ├── unicodeExtendedEscapesInRegularExpressions10(target=es5).js │ ├── unicodeExtendedEscapesInRegularExpressions10(target=es5).symbols │ ├── unicodeExtendedEscapesInRegularExpressions10(target=es5).types │ ├── unicodeExtendedEscapesInRegularExpressions10(target=es6).js │ ├── unicodeExtendedEscapesInRegularExpressions10(target=es6).symbols │ ├── unicodeExtendedEscapesInRegularExpressions10(target=es6).types │ ├── unicodeExtendedEscapesInRegularExpressions11(target=es5).errors.txt │ ├── unicodeExtendedEscapesInRegularExpressions11(target=es5).js │ ├── unicodeExtendedEscapesInRegularExpressions11(target=es5).symbols │ ├── unicodeExtendedEscapesInRegularExpressions11(target=es5).types │ ├── unicodeExtendedEscapesInRegularExpressions11(target=es6).js │ ├── unicodeExtendedEscapesInRegularExpressions11(target=es6).symbols │ ├── unicodeExtendedEscapesInRegularExpressions11(target=es6).types │ ├── unicodeExtendedEscapesInRegularExpressions12(target=es5).errors.txt │ ├── unicodeExtendedEscapesInRegularExpressions12(target=es5).js │ ├── unicodeExtendedEscapesInRegularExpressions12(target=es5).symbols │ ├── unicodeExtendedEscapesInRegularExpressions12(target=es5).types │ ├── unicodeExtendedEscapesInRegularExpressions12(target=es6).errors.txt │ ├── unicodeExtendedEscapesInRegularExpressions12(target=es6).js │ ├── unicodeExtendedEscapesInRegularExpressions12(target=es6).symbols │ ├── unicodeExtendedEscapesInRegularExpressions12(target=es6).types │ ├── unicodeExtendedEscapesInRegularExpressions13(target=es5).errors.txt │ ├── unicodeExtendedEscapesInRegularExpressions13(target=es5).js │ ├── unicodeExtendedEscapesInRegularExpressions13(target=es5).symbols │ ├── unicodeExtendedEscapesInRegularExpressions13(target=es5).types │ ├── unicodeExtendedEscapesInRegularExpressions13(target=es6).js │ ├── unicodeExtendedEscapesInRegularExpressions13(target=es6).symbols │ ├── unicodeExtendedEscapesInRegularExpressions13(target=es6).types │ ├── unicodeExtendedEscapesInRegularExpressions14(target=es5).errors.txt │ ├── unicodeExtendedEscapesInRegularExpressions14(target=es5).js │ ├── unicodeExtendedEscapesInRegularExpressions14(target=es5).symbols │ ├── unicodeExtendedEscapesInRegularExpressions14(target=es5).types │ ├── unicodeExtendedEscapesInRegularExpressions14(target=es6).errors.txt │ ├── unicodeExtendedEscapesInRegularExpressions14(target=es6).js │ ├── unicodeExtendedEscapesInRegularExpressions14(target=es6).symbols │ ├── unicodeExtendedEscapesInRegularExpressions14(target=es6).types │ ├── unicodeExtendedEscapesInRegularExpressions15(target=es5).errors.txt │ ├── unicodeExtendedEscapesInRegularExpressions15(target=es5).js │ ├── unicodeExtendedEscapesInRegularExpressions15(target=es5).symbols │ ├── unicodeExtendedEscapesInRegularExpressions15(target=es5).types │ ├── unicodeExtendedEscapesInRegularExpressions15(target=es6).js │ ├── unicodeExtendedEscapesInRegularExpressions15(target=es6).symbols │ ├── unicodeExtendedEscapesInRegularExpressions15(target=es6).types │ ├── unicodeExtendedEscapesInRegularExpressions16(target=es5).errors.txt │ ├── unicodeExtendedEscapesInRegularExpressions16(target=es5).js │ ├── unicodeExtendedEscapesInRegularExpressions16(target=es5).symbols │ ├── unicodeExtendedEscapesInRegularExpressions16(target=es5).types │ ├── unicodeExtendedEscapesInRegularExpressions16(target=es6).js │ ├── unicodeExtendedEscapesInRegularExpressions16(target=es6).symbols │ ├── unicodeExtendedEscapesInRegularExpressions16(target=es6).types │ ├── unicodeExtendedEscapesInRegularExpressions17(target=es5).errors.txt │ ├── unicodeExtendedEscapesInRegularExpressions17(target=es5).js │ ├── unicodeExtendedEscapesInRegularExpressions17(target=es5).symbols │ ├── unicodeExtendedEscapesInRegularExpressions17(target=es5).types │ ├── unicodeExtendedEscapesInRegularExpressions17(target=es6).errors.txt │ ├── unicodeExtendedEscapesInRegularExpressions17(target=es6).js │ ├── unicodeExtendedEscapesInRegularExpressions17(target=es6).symbols │ ├── unicodeExtendedEscapesInRegularExpressions17(target=es6).types │ ├── unicodeExtendedEscapesInRegularExpressions18(target=es5).errors.txt │ ├── unicodeExtendedEscapesInRegularExpressions18(target=es5).js │ ├── unicodeExtendedEscapesInRegularExpressions18(target=es5).symbols │ ├── unicodeExtendedEscapesInRegularExpressions18(target=es5).types │ ├── unicodeExtendedEscapesInRegularExpressions18(target=es6).js │ ├── unicodeExtendedEscapesInRegularExpressions18(target=es6).symbols │ ├── unicodeExtendedEscapesInRegularExpressions18(target=es6).types │ ├── unicodeExtendedEscapesInRegularExpressions19(target=es5).errors.txt │ ├── unicodeExtendedEscapesInRegularExpressions19(target=es5).js │ ├── unicodeExtendedEscapesInRegularExpressions19(target=es5).symbols │ ├── unicodeExtendedEscapesInRegularExpressions19(target=es5).types │ ├── unicodeExtendedEscapesInRegularExpressions19(target=es6).errors.txt │ ├── unicodeExtendedEscapesInRegularExpressions19(target=es6).js │ ├── unicodeExtendedEscapesInRegularExpressions19(target=es6).symbols │ ├── unicodeExtendedEscapesInRegularExpressions19(target=es6).types │ ├── unicodeExtendedEscapesInStrings01(target=es5).errors.txt │ ├── unicodeExtendedEscapesInStrings01(target=es5).js │ ├── unicodeExtendedEscapesInStrings01(target=es5).symbols │ ├── unicodeExtendedEscapesInStrings01(target=es5).types │ ├── unicodeExtendedEscapesInStrings01(target=es6).js │ ├── unicodeExtendedEscapesInStrings01(target=es6).symbols │ ├── unicodeExtendedEscapesInStrings01(target=es6).types │ ├── unicodeExtendedEscapesInStrings02(target=es5).errors.txt │ ├── unicodeExtendedEscapesInStrings02(target=es5).js │ ├── unicodeExtendedEscapesInStrings02(target=es5).symbols │ ├── unicodeExtendedEscapesInStrings02(target=es5).types │ ├── unicodeExtendedEscapesInStrings02(target=es6).js │ ├── unicodeExtendedEscapesInStrings02(target=es6).symbols │ ├── unicodeExtendedEscapesInStrings02(target=es6).types │ ├── unicodeExtendedEscapesInStrings03(target=es5).errors.txt │ ├── unicodeExtendedEscapesInStrings03(target=es5).js │ ├── unicodeExtendedEscapesInStrings03(target=es5).symbols │ ├── unicodeExtendedEscapesInStrings03(target=es5).types │ ├── unicodeExtendedEscapesInStrings03(target=es6).js │ ├── unicodeExtendedEscapesInStrings03(target=es6).symbols │ ├── unicodeExtendedEscapesInStrings03(target=es6).types │ ├── unicodeExtendedEscapesInStrings04(target=es5).errors.txt │ ├── unicodeExtendedEscapesInStrings04(target=es5).js │ ├── unicodeExtendedEscapesInStrings04(target=es5).symbols │ ├── unicodeExtendedEscapesInStrings04(target=es5).types │ ├── unicodeExtendedEscapesInStrings04(target=es6).js │ ├── unicodeExtendedEscapesInStrings04(target=es6).symbols │ ├── unicodeExtendedEscapesInStrings04(target=es6).types │ ├── unicodeExtendedEscapesInStrings05(target=es5).errors.txt │ ├── unicodeExtendedEscapesInStrings05(target=es5).js │ ├── unicodeExtendedEscapesInStrings05(target=es5).symbols │ ├── unicodeExtendedEscapesInStrings05(target=es5).types │ ├── unicodeExtendedEscapesInStrings05(target=es6).js │ ├── unicodeExtendedEscapesInStrings05(target=es6).symbols │ ├── unicodeExtendedEscapesInStrings05(target=es6).types │ ├── unicodeExtendedEscapesInStrings06(target=es5).errors.txt │ ├── unicodeExtendedEscapesInStrings06(target=es5).js │ ├── unicodeExtendedEscapesInStrings06(target=es5).symbols │ ├── unicodeExtendedEscapesInStrings06(target=es5).types │ ├── unicodeExtendedEscapesInStrings06(target=es6).js │ ├── unicodeExtendedEscapesInStrings06(target=es6).symbols │ ├── unicodeExtendedEscapesInStrings06(target=es6).types │ ├── unicodeExtendedEscapesInStrings07(target=es5).errors.txt │ ├── unicodeExtendedEscapesInStrings07(target=es5).js │ ├── unicodeExtendedEscapesInStrings07(target=es5).symbols │ ├── unicodeExtendedEscapesInStrings07(target=es5).types │ ├── unicodeExtendedEscapesInStrings07(target=es6).errors.txt │ ├── unicodeExtendedEscapesInStrings07(target=es6).js │ ├── unicodeExtendedEscapesInStrings07(target=es6).symbols │ ├── unicodeExtendedEscapesInStrings07(target=es6).types │ ├── unicodeExtendedEscapesInStrings08(target=es5).errors.txt │ ├── unicodeExtendedEscapesInStrings08(target=es5).js │ ├── unicodeExtendedEscapesInStrings08(target=es5).symbols │ ├── unicodeExtendedEscapesInStrings08(target=es5).types │ ├── unicodeExtendedEscapesInStrings08(target=es6).js │ ├── unicodeExtendedEscapesInStrings08(target=es6).symbols │ ├── unicodeExtendedEscapesInStrings08(target=es6).types │ ├── unicodeExtendedEscapesInStrings09(target=es5).errors.txt │ ├── unicodeExtendedEscapesInStrings09(target=es5).js │ ├── unicodeExtendedEscapesInStrings09(target=es5).symbols │ ├── unicodeExtendedEscapesInStrings09(target=es5).types │ ├── unicodeExtendedEscapesInStrings09(target=es6).js │ ├── unicodeExtendedEscapesInStrings09(target=es6).symbols │ ├── unicodeExtendedEscapesInStrings09(target=es6).types │ ├── unicodeExtendedEscapesInStrings10(target=es5).errors.txt │ ├── unicodeExtendedEscapesInStrings10(target=es5).js │ ├── unicodeExtendedEscapesInStrings10(target=es5).symbols │ ├── unicodeExtendedEscapesInStrings10(target=es5).types │ ├── unicodeExtendedEscapesInStrings10(target=es6).js │ ├── unicodeExtendedEscapesInStrings10(target=es6).symbols │ ├── unicodeExtendedEscapesInStrings10(target=es6).types │ ├── unicodeExtendedEscapesInStrings11(target=es5).errors.txt │ ├── unicodeExtendedEscapesInStrings11(target=es5).js │ ├── unicodeExtendedEscapesInStrings11(target=es5).symbols │ ├── unicodeExtendedEscapesInStrings11(target=es5).types │ ├── unicodeExtendedEscapesInStrings11(target=es6).js │ ├── unicodeExtendedEscapesInStrings11(target=es6).symbols │ ├── unicodeExtendedEscapesInStrings11(target=es6).types │ ├── unicodeExtendedEscapesInStrings12(target=es5).errors.txt │ ├── unicodeExtendedEscapesInStrings12(target=es5).js │ ├── unicodeExtendedEscapesInStrings12(target=es5).symbols │ ├── unicodeExtendedEscapesInStrings12(target=es5).types │ ├── unicodeExtendedEscapesInStrings12(target=es6).errors.txt │ ├── unicodeExtendedEscapesInStrings12(target=es6).js │ ├── unicodeExtendedEscapesInStrings12(target=es6).symbols │ ├── unicodeExtendedEscapesInStrings12(target=es6).types │ ├── unicodeExtendedEscapesInStrings13(target=es5).errors.txt │ ├── unicodeExtendedEscapesInStrings13(target=es5).js │ ├── unicodeExtendedEscapesInStrings13(target=es5).symbols │ ├── unicodeExtendedEscapesInStrings13(target=es5).types │ ├── unicodeExtendedEscapesInStrings13(target=es6).js │ ├── unicodeExtendedEscapesInStrings13(target=es6).symbols │ ├── unicodeExtendedEscapesInStrings13(target=es6).types │ ├── unicodeExtendedEscapesInStrings14(target=es5).errors.txt │ ├── unicodeExtendedEscapesInStrings14(target=es5).js │ ├── unicodeExtendedEscapesInStrings14(target=es5).symbols │ ├── unicodeExtendedEscapesInStrings14(target=es5).types │ ├── unicodeExtendedEscapesInStrings14(target=es6).errors.txt │ ├── unicodeExtendedEscapesInStrings14(target=es6).js │ ├── unicodeExtendedEscapesInStrings14(target=es6).symbols │ ├── unicodeExtendedEscapesInStrings14(target=es6).types │ ├── unicodeExtendedEscapesInStrings15(target=es5).errors.txt │ ├── unicodeExtendedEscapesInStrings15(target=es5).js │ ├── unicodeExtendedEscapesInStrings15(target=es5).symbols │ ├── unicodeExtendedEscapesInStrings15(target=es5).types │ ├── unicodeExtendedEscapesInStrings15(target=es6).js │ ├── unicodeExtendedEscapesInStrings15(target=es6).symbols │ ├── unicodeExtendedEscapesInStrings15(target=es6).types │ ├── unicodeExtendedEscapesInStrings16(target=es5).errors.txt │ ├── unicodeExtendedEscapesInStrings16(target=es5).js │ ├── unicodeExtendedEscapesInStrings16(target=es5).symbols │ ├── unicodeExtendedEscapesInStrings16(target=es5).types │ ├── unicodeExtendedEscapesInStrings16(target=es6).js │ ├── unicodeExtendedEscapesInStrings16(target=es6).symbols │ ├── unicodeExtendedEscapesInStrings16(target=es6).types │ ├── unicodeExtendedEscapesInStrings17(target=es5).errors.txt │ ├── unicodeExtendedEscapesInStrings17(target=es5).js │ ├── unicodeExtendedEscapesInStrings17(target=es5).symbols │ ├── unicodeExtendedEscapesInStrings17(target=es5).types │ ├── unicodeExtendedEscapesInStrings17(target=es6).errors.txt │ ├── unicodeExtendedEscapesInStrings17(target=es6).js │ ├── unicodeExtendedEscapesInStrings17(target=es6).symbols │ ├── unicodeExtendedEscapesInStrings17(target=es6).types │ ├── unicodeExtendedEscapesInStrings18(target=es5).errors.txt │ ├── unicodeExtendedEscapesInStrings18(target=es5).js │ ├── unicodeExtendedEscapesInStrings18(target=es5).symbols │ ├── unicodeExtendedEscapesInStrings18(target=es5).types │ ├── unicodeExtendedEscapesInStrings18(target=es6).js │ ├── unicodeExtendedEscapesInStrings18(target=es6).symbols │ ├── unicodeExtendedEscapesInStrings18(target=es6).types │ ├── unicodeExtendedEscapesInStrings19(target=es5).errors.txt │ ├── unicodeExtendedEscapesInStrings19(target=es5).js │ ├── unicodeExtendedEscapesInStrings19(target=es5).symbols │ ├── unicodeExtendedEscapesInStrings19(target=es5).types │ ├── unicodeExtendedEscapesInStrings19(target=es6).errors.txt │ ├── unicodeExtendedEscapesInStrings19(target=es6).js │ ├── unicodeExtendedEscapesInStrings19(target=es6).symbols │ ├── unicodeExtendedEscapesInStrings19(target=es6).types │ ├── unicodeExtendedEscapesInStrings20(target=es5).errors.txt │ ├── unicodeExtendedEscapesInStrings20(target=es5).js │ ├── unicodeExtendedEscapesInStrings20(target=es5).symbols │ ├── unicodeExtendedEscapesInStrings20(target=es5).types │ ├── unicodeExtendedEscapesInStrings20(target=es6).errors.txt │ ├── unicodeExtendedEscapesInStrings20(target=es6).js │ ├── unicodeExtendedEscapesInStrings20(target=es6).symbols │ ├── unicodeExtendedEscapesInStrings20(target=es6).types │ ├── unicodeExtendedEscapesInStrings21(target=es5).errors.txt │ ├── unicodeExtendedEscapesInStrings21(target=es5).js │ ├── unicodeExtendedEscapesInStrings21(target=es5).symbols │ ├── unicodeExtendedEscapesInStrings21(target=es5).types │ ├── unicodeExtendedEscapesInStrings21(target=es6).errors.txt │ ├── unicodeExtendedEscapesInStrings21(target=es6).js │ ├── unicodeExtendedEscapesInStrings21(target=es6).symbols │ ├── unicodeExtendedEscapesInStrings21(target=es6).types │ ├── unicodeExtendedEscapesInStrings22(target=es5).errors.txt │ ├── unicodeExtendedEscapesInStrings22(target=es5).js │ ├── unicodeExtendedEscapesInStrings22(target=es5).symbols │ ├── unicodeExtendedEscapesInStrings22(target=es5).types │ ├── unicodeExtendedEscapesInStrings22(target=es6).errors.txt │ ├── unicodeExtendedEscapesInStrings22(target=es6).js │ ├── unicodeExtendedEscapesInStrings22(target=es6).symbols │ ├── unicodeExtendedEscapesInStrings22(target=es6).types │ ├── unicodeExtendedEscapesInStrings23(target=es5).errors.txt │ ├── unicodeExtendedEscapesInStrings23(target=es5).js │ ├── unicodeExtendedEscapesInStrings23(target=es5).symbols │ ├── unicodeExtendedEscapesInStrings23(target=es5).types │ ├── unicodeExtendedEscapesInStrings23(target=es6).js │ ├── unicodeExtendedEscapesInStrings23(target=es6).symbols │ ├── unicodeExtendedEscapesInStrings23(target=es6).types │ ├── unicodeExtendedEscapesInStrings24(target=es5).errors.txt │ ├── unicodeExtendedEscapesInStrings24(target=es5).js │ ├── unicodeExtendedEscapesInStrings24(target=es5).symbols │ ├── unicodeExtendedEscapesInStrings24(target=es5).types │ ├── unicodeExtendedEscapesInStrings24(target=es6).errors.txt │ ├── unicodeExtendedEscapesInStrings24(target=es6).js │ ├── unicodeExtendedEscapesInStrings24(target=es6).symbols │ ├── unicodeExtendedEscapesInStrings24(target=es6).types │ ├── unicodeExtendedEscapesInStrings25(target=es5).errors.txt │ ├── unicodeExtendedEscapesInStrings25(target=es5).js │ ├── unicodeExtendedEscapesInStrings25(target=es5).symbols │ ├── unicodeExtendedEscapesInStrings25(target=es5).types │ ├── unicodeExtendedEscapesInStrings25(target=es6).errors.txt │ ├── unicodeExtendedEscapesInStrings25(target=es6).js │ ├── unicodeExtendedEscapesInStrings25(target=es6).symbols │ ├── unicodeExtendedEscapesInStrings25(target=es6).types │ ├── unicodeExtendedEscapesInTemplates01(target=es5).errors.txt │ ├── unicodeExtendedEscapesInTemplates01(target=es5).js │ ├── unicodeExtendedEscapesInTemplates01(target=es5).symbols │ ├── unicodeExtendedEscapesInTemplates01(target=es5).types │ ├── unicodeExtendedEscapesInTemplates01(target=es6).js │ ├── unicodeExtendedEscapesInTemplates01(target=es6).symbols │ ├── unicodeExtendedEscapesInTemplates01(target=es6).types │ ├── unicodeExtendedEscapesInTemplates02(target=es5).errors.txt │ ├── unicodeExtendedEscapesInTemplates02(target=es5).js │ ├── unicodeExtendedEscapesInTemplates02(target=es5).symbols │ ├── unicodeExtendedEscapesInTemplates02(target=es5).types │ ├── unicodeExtendedEscapesInTemplates02(target=es6).js │ ├── unicodeExtendedEscapesInTemplates02(target=es6).symbols │ ├── unicodeExtendedEscapesInTemplates02(target=es6).types │ ├── unicodeExtendedEscapesInTemplates03(target=es5).errors.txt │ ├── unicodeExtendedEscapesInTemplates03(target=es5).js │ ├── unicodeExtendedEscapesInTemplates03(target=es5).symbols │ ├── unicodeExtendedEscapesInTemplates03(target=es5).types │ ├── unicodeExtendedEscapesInTemplates03(target=es6).js │ ├── unicodeExtendedEscapesInTemplates03(target=es6).symbols │ ├── unicodeExtendedEscapesInTemplates03(target=es6).types │ ├── unicodeExtendedEscapesInTemplates04(target=es5).errors.txt │ ├── unicodeExtendedEscapesInTemplates04(target=es5).js │ ├── unicodeExtendedEscapesInTemplates04(target=es5).symbols │ ├── unicodeExtendedEscapesInTemplates04(target=es5).types │ ├── unicodeExtendedEscapesInTemplates04(target=es6).js │ ├── unicodeExtendedEscapesInTemplates04(target=es6).symbols │ ├── unicodeExtendedEscapesInTemplates04(target=es6).types │ ├── unicodeExtendedEscapesInTemplates05(target=es5).errors.txt │ ├── unicodeExtendedEscapesInTemplates05(target=es5).js │ ├── unicodeExtendedEscapesInTemplates05(target=es5).symbols │ ├── unicodeExtendedEscapesInTemplates05(target=es5).types │ ├── unicodeExtendedEscapesInTemplates05(target=es6).js │ ├── unicodeExtendedEscapesInTemplates05(target=es6).symbols │ ├── unicodeExtendedEscapesInTemplates05(target=es6).types │ ├── unicodeExtendedEscapesInTemplates06(target=es5).errors.txt │ ├── unicodeExtendedEscapesInTemplates06(target=es5).js │ ├── unicodeExtendedEscapesInTemplates06(target=es5).symbols │ ├── unicodeExtendedEscapesInTemplates06(target=es5).types │ ├── unicodeExtendedEscapesInTemplates06(target=es6).js │ ├── unicodeExtendedEscapesInTemplates06(target=es6).symbols │ ├── unicodeExtendedEscapesInTemplates06(target=es6).types │ ├── unicodeExtendedEscapesInTemplates07(target=es5).errors.txt │ ├── unicodeExtendedEscapesInTemplates07(target=es5).js │ ├── unicodeExtendedEscapesInTemplates07(target=es5).symbols │ ├── unicodeExtendedEscapesInTemplates07(target=es5).types │ ├── unicodeExtendedEscapesInTemplates07(target=es6).errors.txt │ ├── unicodeExtendedEscapesInTemplates07(target=es6).js │ ├── unicodeExtendedEscapesInTemplates07(target=es6).symbols │ ├── unicodeExtendedEscapesInTemplates07(target=es6).types │ ├── unicodeExtendedEscapesInTemplates08(target=es5).errors.txt │ ├── unicodeExtendedEscapesInTemplates08(target=es5).js │ ├── unicodeExtendedEscapesInTemplates08(target=es5).symbols │ ├── unicodeExtendedEscapesInTemplates08(target=es5).types │ ├── unicodeExtendedEscapesInTemplates08(target=es6).js │ ├── unicodeExtendedEscapesInTemplates08(target=es6).symbols │ ├── unicodeExtendedEscapesInTemplates08(target=es6).types │ ├── unicodeExtendedEscapesInTemplates09(target=es5).errors.txt │ ├── unicodeExtendedEscapesInTemplates09(target=es5).js │ ├── unicodeExtendedEscapesInTemplates09(target=es5).symbols │ ├── unicodeExtendedEscapesInTemplates09(target=es5).types │ ├── unicodeExtendedEscapesInTemplates09(target=es6).js │ ├── unicodeExtendedEscapesInTemplates09(target=es6).symbols │ ├── unicodeExtendedEscapesInTemplates09(target=es6).types │ ├── unicodeExtendedEscapesInTemplates10(target=es5).errors.txt │ ├── unicodeExtendedEscapesInTemplates10(target=es5).js │ ├── unicodeExtendedEscapesInTemplates10(target=es5).symbols │ ├── unicodeExtendedEscapesInTemplates10(target=es5).types │ ├── unicodeExtendedEscapesInTemplates10(target=es6).js │ ├── unicodeExtendedEscapesInTemplates10(target=es6).symbols │ ├── unicodeExtendedEscapesInTemplates10(target=es6).types │ ├── unicodeExtendedEscapesInTemplates11(target=es5).errors.txt │ ├── unicodeExtendedEscapesInTemplates11(target=es5).js │ ├── unicodeExtendedEscapesInTemplates11(target=es5).symbols │ ├── unicodeExtendedEscapesInTemplates11(target=es5).types │ ├── unicodeExtendedEscapesInTemplates11(target=es6).js │ ├── unicodeExtendedEscapesInTemplates11(target=es6).symbols │ ├── unicodeExtendedEscapesInTemplates11(target=es6).types │ ├── unicodeExtendedEscapesInTemplates12(target=es5).errors.txt │ ├── unicodeExtendedEscapesInTemplates12(target=es5).js │ ├── unicodeExtendedEscapesInTemplates12(target=es5).symbols │ ├── unicodeExtendedEscapesInTemplates12(target=es5).types │ ├── unicodeExtendedEscapesInTemplates12(target=es6).errors.txt │ ├── unicodeExtendedEscapesInTemplates12(target=es6).js │ ├── unicodeExtendedEscapesInTemplates12(target=es6).symbols │ ├── unicodeExtendedEscapesInTemplates12(target=es6).types │ ├── unicodeExtendedEscapesInTemplates13(target=es5).errors.txt │ ├── unicodeExtendedEscapesInTemplates13(target=es5).js │ ├── unicodeExtendedEscapesInTemplates13(target=es5).symbols │ ├── unicodeExtendedEscapesInTemplates13(target=es5).types │ ├── unicodeExtendedEscapesInTemplates13(target=es6).js │ ├── unicodeExtendedEscapesInTemplates13(target=es6).symbols │ ├── unicodeExtendedEscapesInTemplates13(target=es6).types │ ├── unicodeExtendedEscapesInTemplates14(target=es5).errors.txt │ ├── unicodeExtendedEscapesInTemplates14(target=es5).js │ ├── unicodeExtendedEscapesInTemplates14(target=es5).symbols │ ├── unicodeExtendedEscapesInTemplates14(target=es5).types │ ├── unicodeExtendedEscapesInTemplates14(target=es6).errors.txt │ ├── unicodeExtendedEscapesInTemplates14(target=es6).js │ ├── unicodeExtendedEscapesInTemplates14(target=es6).symbols │ ├── unicodeExtendedEscapesInTemplates14(target=es6).types │ ├── unicodeExtendedEscapesInTemplates15(target=es5).errors.txt │ ├── unicodeExtendedEscapesInTemplates15(target=es5).js │ ├── unicodeExtendedEscapesInTemplates15(target=es5).symbols │ ├── unicodeExtendedEscapesInTemplates15(target=es5).types │ ├── unicodeExtendedEscapesInTemplates15(target=es6).js │ ├── unicodeExtendedEscapesInTemplates15(target=es6).symbols │ ├── unicodeExtendedEscapesInTemplates15(target=es6).types │ ├── unicodeExtendedEscapesInTemplates16(target=es5).errors.txt │ ├── unicodeExtendedEscapesInTemplates16(target=es5).js │ ├── unicodeExtendedEscapesInTemplates16(target=es5).symbols │ ├── unicodeExtendedEscapesInTemplates16(target=es5).types │ ├── unicodeExtendedEscapesInTemplates16(target=es6).js │ ├── unicodeExtendedEscapesInTemplates16(target=es6).symbols │ ├── unicodeExtendedEscapesInTemplates16(target=es6).types │ ├── unicodeExtendedEscapesInTemplates17(target=es5).errors.txt │ ├── unicodeExtendedEscapesInTemplates17(target=es5).js │ ├── unicodeExtendedEscapesInTemplates17(target=es5).symbols │ ├── unicodeExtendedEscapesInTemplates17(target=es5).types │ ├── unicodeExtendedEscapesInTemplates17(target=es6).errors.txt │ ├── unicodeExtendedEscapesInTemplates17(target=es6).js │ ├── unicodeExtendedEscapesInTemplates17(target=es6).symbols │ ├── unicodeExtendedEscapesInTemplates17(target=es6).types │ ├── unicodeExtendedEscapesInTemplates18(target=es5).errors.txt │ ├── unicodeExtendedEscapesInTemplates18(target=es5).js │ ├── unicodeExtendedEscapesInTemplates18(target=es5).symbols │ ├── unicodeExtendedEscapesInTemplates18(target=es5).types │ ├── unicodeExtendedEscapesInTemplates18(target=es6).js │ ├── unicodeExtendedEscapesInTemplates18(target=es6).symbols │ ├── unicodeExtendedEscapesInTemplates18(target=es6).types │ ├── unicodeExtendedEscapesInTemplates19(target=es5).errors.txt │ ├── unicodeExtendedEscapesInTemplates19(target=es5).js │ ├── unicodeExtendedEscapesInTemplates19(target=es5).symbols │ ├── unicodeExtendedEscapesInTemplates19(target=es5).types │ ├── unicodeExtendedEscapesInTemplates19(target=es6).errors.txt │ ├── unicodeExtendedEscapesInTemplates19(target=es6).js │ ├── unicodeExtendedEscapesInTemplates19(target=es6).symbols │ ├── unicodeExtendedEscapesInTemplates19(target=es6).types │ ├── unicodeExtendedEscapesInTemplates20(target=es5).errors.txt │ ├── unicodeExtendedEscapesInTemplates20(target=es5).js │ ├── unicodeExtendedEscapesInTemplates20(target=es5).symbols │ ├── unicodeExtendedEscapesInTemplates20(target=es5).types │ ├── unicodeExtendedEscapesInTemplates20(target=es6).js │ ├── unicodeExtendedEscapesInTemplates20(target=es6).symbols │ ├── unicodeExtendedEscapesInTemplates20(target=es6).types │ ├── unicodeIdentifierName2.errors.txt │ ├── unicodeIdentifierName2.js │ ├── unicodeIdentifierName2.symbols │ ├── unicodeIdentifierName2.types │ ├── unicodeIdentifierNames.js │ ├── unicodeIdentifierNames.symbols │ ├── unicodeIdentifierNames.types │ ├── unicodeStringLiteral.js │ ├── unicodeStringLiteral.symbols │ ├── unicodeStringLiteral.types │ ├── unionAndIntersectionInference1.errors.txt │ ├── unionAndIntersectionInference1.js │ ├── unionAndIntersectionInference1.symbols │ ├── unionAndIntersectionInference1.types │ ├── unionAndIntersectionInference2.errors.txt │ ├── unionAndIntersectionInference2.js │ ├── unionAndIntersectionInference2.symbols │ ├── unionAndIntersectionInference2.types │ ├── unionAndIntersectionInference3.js │ ├── unionAndIntersectionInference3.symbols │ ├── unionAndIntersectionInference3.types │ ├── unionCallMixedTypeParameterPresence.symbols │ ├── unionCallMixedTypeParameterPresence.types │ ├── unionErrorMessageOnMatchingDiscriminant.errors.txt │ ├── unionErrorMessageOnMatchingDiscriminant.js │ ├── unionErrorMessageOnMatchingDiscriminant.symbols │ ├── unionErrorMessageOnMatchingDiscriminant.types │ ├── unionExcessPropertyCheckNoApparentPropTypeMismatchErrors.js │ ├── unionExcessPropertyCheckNoApparentPropTypeMismatchErrors.symbols │ ├── unionExcessPropertyCheckNoApparentPropTypeMismatchErrors.types │ ├── unionExcessPropsWithPartialMember.js │ ├── unionExcessPropsWithPartialMember.symbols │ ├── unionExcessPropsWithPartialMember.types │ ├── unionOfArraysFilterCall.errors.txt │ ├── unionOfArraysFilterCall.js │ ├── unionOfArraysFilterCall.symbols │ ├── unionOfArraysFilterCall.types │ ├── unionOfClassCalls.js │ ├── unionOfClassCalls.symbols │ ├── unionOfClassCalls.types │ ├── unionOfEnumInference.js │ ├── unionOfEnumInference.symbols │ ├── unionOfEnumInference.types │ ├── unionOfFunctionAndSignatureIsCallable.js │ ├── unionOfFunctionAndSignatureIsCallable.symbols │ ├── unionOfFunctionAndSignatureIsCallable.types │ ├── unionPropertyExistence.errors.txt │ ├── unionPropertyExistence.js │ ├── unionPropertyExistence.symbols │ ├── unionPropertyExistence.types │ ├── unionPropertyOfProtectedAndIntersectionProperty.errors.txt │ ├── unionPropertyOfProtectedAndIntersectionProperty.js │ ├── unionPropertyOfProtectedAndIntersectionProperty.symbols │ ├── unionPropertyOfProtectedAndIntersectionProperty.types │ ├── unionReductionMutualSubtypes.js │ ├── unionReductionMutualSubtypes.symbols │ ├── unionReductionMutualSubtypes.types │ ├── unionReductionWithStringMappingAndIdenticalBaseTypeExistsNoCrash.symbols │ ├── unionReductionWithStringMappingAndIdenticalBaseTypeExistsNoCrash.types │ ├── unionRelationshipCheckPasses.js │ ├── unionRelationshipCheckPasses.symbols │ ├── unionRelationshipCheckPasses.types │ ├── unionSignaturesWithThisParameter.js │ ├── unionSignaturesWithThisParameter.symbols │ ├── unionSignaturesWithThisParameter.types │ ├── unionSubtypeIfEveryConstituentTypeIsSubtype.errors.txt │ ├── unionSubtypeIfEveryConstituentTypeIsSubtype.js │ ├── unionSubtypeIfEveryConstituentTypeIsSubtype.symbols │ ├── unionSubtypeIfEveryConstituentTypeIsSubtype.types │ ├── unionSubtypeReductionErrors.errors.txt │ ├── unionSubtypeReductionErrors.js │ ├── unionSubtypeReductionErrors.symbols │ ├── unionSubtypeReductionErrors.types │ ├── unionThisTypeInFunctions.errors.txt │ ├── unionThisTypeInFunctions.js │ ├── unionThisTypeInFunctions.symbols │ ├── unionThisTypeInFunctions.types │ ├── unionTypeCallSignatures.errors.txt │ ├── unionTypeCallSignatures.js │ ├── unionTypeCallSignatures.symbols │ ├── unionTypeCallSignatures.types │ ├── unionTypeCallSignatures2.errors.txt │ ├── unionTypeCallSignatures2.js │ ├── unionTypeCallSignatures2.symbols │ ├── unionTypeCallSignatures2.types │ ├── unionTypeCallSignatures3.errors.txt │ ├── unionTypeCallSignatures3.js │ ├── unionTypeCallSignatures3.symbols │ ├── unionTypeCallSignatures3.types │ ├── unionTypeCallSignatures4.errors.txt │ ├── unionTypeCallSignatures4.js │ ├── unionTypeCallSignatures4.symbols │ ├── unionTypeCallSignatures4.types │ ├── unionTypeCallSignatures5.errors.txt │ ├── unionTypeCallSignatures5.js │ ├── unionTypeCallSignatures5.symbols │ ├── unionTypeCallSignatures5.types │ ├── unionTypeCallSignatures6.errors.txt │ ├── unionTypeCallSignatures6.js │ ├── unionTypeCallSignatures6.symbols │ ├── unionTypeCallSignatures6.types │ ├── unionTypeCallSignatures7.symbols │ ├── unionTypeCallSignatures7.types │ ├── unionTypeConstructSignatures.errors.txt │ ├── unionTypeConstructSignatures.js │ ├── unionTypeConstructSignatures.symbols │ ├── unionTypeConstructSignatures.types │ ├── unionTypeEquivalence.errors.txt │ ├── unionTypeEquivalence.js │ ├── unionTypeEquivalence.symbols │ ├── unionTypeEquivalence.types │ ├── unionTypeErrorMessageTypeRefs01.errors.txt │ ├── unionTypeErrorMessageTypeRefs01.js │ ├── unionTypeErrorMessageTypeRefs01.symbols │ ├── unionTypeErrorMessageTypeRefs01.types │ ├── unionTypeFromArrayLiteral.errors.txt │ ├── unionTypeFromArrayLiteral.js │ ├── unionTypeFromArrayLiteral.symbols │ ├── unionTypeFromArrayLiteral.types │ ├── unionTypeIdentity.errors.txt │ ├── unionTypeIdentity.js │ ├── unionTypeIdentity.symbols │ ├── unionTypeIdentity.types │ ├── unionTypeIndexSignature.js │ ├── unionTypeIndexSignature.symbols │ ├── unionTypeIndexSignature.types │ ├── unionTypeInference.errors.txt │ ├── unionTypeInference.js │ ├── unionTypeInference.symbols │ ├── unionTypeInference.types │ ├── unionTypeLiterals.errors.txt │ ├── unionTypeLiterals.js │ ├── unionTypeLiterals.symbols │ ├── unionTypeLiterals.types │ ├── unionTypeMembers.errors.txt │ ├── unionTypeMembers.js │ ├── unionTypeMembers.symbols │ ├── unionTypeMembers.types │ ├── unionTypeParameterInference.js │ ├── unionTypeParameterInference.symbols │ ├── unionTypeParameterInference.types │ ├── unionTypePropertyAccessibility.errors.txt │ ├── unionTypePropertyAccessibility.js │ ├── unionTypePropertyAccessibility.symbols │ ├── unionTypePropertyAccessibility.types │ ├── unionTypeReadonly.errors.txt │ ├── unionTypeReadonly.js │ ├── unionTypeReadonly.symbols │ ├── unionTypeReadonly.types │ ├── unionTypeReduction.js │ ├── unionTypeReduction.symbols │ ├── unionTypeReduction.types │ ├── unionTypeReduction2.errors.txt │ ├── unionTypeReduction2.js │ ├── unionTypeReduction2.symbols │ ├── unionTypeReduction2.types │ ├── unionTypeWithIndexAndMethodSignature.js │ ├── unionTypeWithIndexAndMethodSignature.symbols │ ├── unionTypeWithIndexAndMethodSignature.types │ ├── unionTypeWithIndexAndTuple.js │ ├── unionTypeWithIndexAndTuple.symbols │ ├── unionTypeWithIndexAndTuple.types │ ├── unionTypeWithIndexSignature.errors.txt │ ├── unionTypeWithIndexSignature.js │ ├── unionTypeWithIndexSignature.symbols │ ├── unionTypeWithIndexSignature.types │ ├── unionTypeWithIndexedLiteralType.js │ ├── unionTypeWithIndexedLiteralType.symbols │ ├── unionTypeWithIndexedLiteralType.types │ ├── unionTypeWithLeadingOperator.js │ ├── unionTypeWithLeadingOperator.symbols │ ├── unionTypeWithLeadingOperator.types │ ├── unionTypeWithRecursiveSubtypeReduction1.errors.txt │ ├── unionTypeWithRecursiveSubtypeReduction1.js │ ├── unionTypeWithRecursiveSubtypeReduction1.symbols │ ├── unionTypeWithRecursiveSubtypeReduction1.types │ ├── unionTypeWithRecursiveSubtypeReduction2.errors.txt │ ├── unionTypeWithRecursiveSubtypeReduction2.js │ ├── unionTypeWithRecursiveSubtypeReduction2.symbols │ ├── unionTypeWithRecursiveSubtypeReduction2.types │ ├── unionTypeWithRecursiveSubtypeReduction3.errors.txt │ ├── unionTypeWithRecursiveSubtypeReduction3.js │ ├── unionTypeWithRecursiveSubtypeReduction3.symbols │ ├── unionTypeWithRecursiveSubtypeReduction3.types │ ├── unionTypesAssignability.errors.txt │ ├── unionTypesAssignability.js │ ├── unionTypesAssignability.symbols │ ├── unionTypesAssignability.types │ ├── unionWithIndexSignature.js │ ├── unionWithIndexSignature.symbols │ ├── unionWithIndexSignature.types │ ├── unionsOfTupleTypes1.errors.txt │ ├── unionsOfTupleTypes1.js │ ├── unionsOfTupleTypes1.symbols │ ├── unionsOfTupleTypes1.types │ ├── uniqueSymbolAllowsIndexInObjectWithIndexSignature.errors.txt │ ├── uniqueSymbolAllowsIndexInObjectWithIndexSignature.js │ ├── uniqueSymbolAllowsIndexInObjectWithIndexSignature.symbols │ ├── uniqueSymbolAllowsIndexInObjectWithIndexSignature.types │ ├── uniqueSymbolAssignmentOnGlobalAugmentationSuceeds.js │ ├── uniqueSymbolAssignmentOnGlobalAugmentationSuceeds.symbols │ ├── uniqueSymbolAssignmentOnGlobalAugmentationSuceeds.types │ ├── uniqueSymbolJs.errors.txt │ ├── uniqueSymbolJs.symbols │ ├── uniqueSymbolJs.types │ ├── uniqueSymbolJs2.errors.txt │ ├── uniqueSymbolJs2.js │ ├── uniqueSymbolJs2.symbols │ ├── uniqueSymbolJs2.types │ ├── uniqueSymbolPropertyDeclarationEmit.js │ ├── uniqueSymbols.errors.txt │ ├── uniqueSymbols.js │ ├── uniqueSymbols.symbols │ ├── uniqueSymbols.types │ ├── uniqueSymbolsDeclarations.errors.txt │ ├── uniqueSymbolsDeclarations.js │ ├── uniqueSymbolsDeclarations.symbols │ ├── uniqueSymbolsDeclarations.types │ ├── uniqueSymbolsDeclarationsErrors.js │ ├── uniqueSymbolsDeclarationsErrors.symbols │ ├── uniqueSymbolsDeclarationsErrors.types │ ├── uniqueSymbolsDeclarationsInJs.errors.txt │ ├── uniqueSymbolsDeclarationsInJs.js │ ├── uniqueSymbolsDeclarationsInJs.symbols │ ├── uniqueSymbolsDeclarationsInJs.types │ ├── uniqueSymbolsDeclarationsInJsErrors.errors.txt │ ├── uniqueSymbolsDeclarationsInJsErrors.js │ ├── uniqueSymbolsDeclarationsInJsErrors.symbols │ ├── uniqueSymbolsDeclarationsInJsErrors.types │ ├── uniqueSymbolsErrors.errors.txt │ ├── uniqueSymbolsErrors.js │ ├── uniqueSymbolsErrors.symbols │ ├── uniqueSymbolsErrors.types │ ├── uniqueSymbolsPropertyNames.errors.txt │ ├── uniqueSymbolsPropertyNames.js │ ├── uniqueSymbolsPropertyNames.symbols │ ├── uniqueSymbolsPropertyNames.types │ ├── unknownControlFlow.errors.txt │ ├── unknownControlFlow.js │ ├── unknownControlFlow.symbols │ ├── unknownControlFlow.types │ ├── unknownLikeUnionObjectFlagsNotPropagated.symbols │ ├── unknownLikeUnionObjectFlagsNotPropagated.types │ ├── unknownPropertiesAreAssignableToObjectUnion.js │ ├── unknownPropertiesAreAssignableToObjectUnion.symbols │ ├── unknownPropertiesAreAssignableToObjectUnion.types │ ├── unknownSymbolInGenericReturnType.errors.txt │ ├── unknownSymbolInGenericReturnType.js │ ├── unknownSymbolInGenericReturnType.symbols │ ├── unknownSymbolInGenericReturnType.types │ ├── unknownSymbolOffContextualType1.errors.txt │ ├── unknownSymbolOffContextualType1.js │ ├── unknownSymbolOffContextualType1.symbols │ ├── unknownSymbolOffContextualType1.types │ ├── unknownSymbols1.errors.txt │ ├── unknownSymbols1.js │ ├── unknownSymbols1.symbols │ ├── unknownSymbols1.types │ ├── unknownSymbols2.errors.txt │ ├── unknownSymbols2.js │ ├── unknownSymbols2.symbols │ ├── unknownSymbols2.types │ ├── unknownType1.errors.txt │ ├── unknownType1.js │ ├── unknownType1.symbols │ ├── unknownType1.types │ ├── unknownType2.errors.txt │ ├── unknownType2.js │ ├── unknownType2.symbols │ ├── unknownType2.types │ ├── unknownTypeArgOnCall.errors.txt │ ├── unknownTypeArgOnCall.js │ ├── unknownTypeArgOnCall.symbols │ ├── unknownTypeArgOnCall.types │ ├── unknownTypeErrors.errors.txt │ ├── unknownTypeErrors.js │ ├── unknownTypeErrors.symbols │ ├── unknownTypeErrors.types │ ├── unmatchedParameterPositions.js │ ├── unmatchedParameterPositions.symbols │ ├── unmatchedParameterPositions.types │ ├── unmetTypeConstraintInImportCall.errors.txt │ ├── unmetTypeConstraintInImportCall.symbols │ ├── unmetTypeConstraintInImportCall.types │ ├── unmetTypeConstraintInJSDocImportCall.errors.txt │ ├── unmetTypeConstraintInJSDocImportCall.symbols │ ├── unmetTypeConstraintInJSDocImportCall.types │ ├── unparenthesizedConstructorTypeInUnionOrIntersection.errors.txt │ ├── unparenthesizedConstructorTypeInUnionOrIntersection.js │ ├── unparenthesizedConstructorTypeInUnionOrIntersection.symbols │ ├── unparenthesizedConstructorTypeInUnionOrIntersection.types │ ├── unparenthesizedFunctionTypeInUnionOrIntersection.errors.txt │ ├── unparenthesizedFunctionTypeInUnionOrIntersection.js │ ├── unparenthesizedFunctionTypeInUnionOrIntersection.symbols │ ├── unparenthesizedFunctionTypeInUnionOrIntersection.types │ ├── unqualifiedCallToClassStatic1.errors.txt │ ├── unqualifiedCallToClassStatic1.js │ ├── unqualifiedCallToClassStatic1.symbols │ ├── unqualifiedCallToClassStatic1.types │ ├── unreachableDeclarations(preserveconstenums=false).errors.txt │ ├── unreachableDeclarations(preserveconstenums=false).js │ ├── unreachableDeclarations(preserveconstenums=false).symbols │ ├── unreachableDeclarations(preserveconstenums=false).types │ ├── unreachableDeclarations(preserveconstenums=true).errors.txt │ ├── unreachableDeclarations(preserveconstenums=true).js │ ├── unreachableDeclarations(preserveconstenums=true).symbols │ ├── unreachableDeclarations(preserveconstenums=true).types │ ├── unreachableFlowAfterFinally.js │ ├── unreachableFlowAfterFinally.symbols │ ├── unreachableFlowAfterFinally.types │ ├── unreachableJavascriptChecked.errors.txt │ ├── unreachableJavascriptChecked.js │ ├── unreachableJavascriptChecked.symbols │ ├── unreachableJavascriptChecked.types │ ├── unreachableJavascriptUnchecked.js │ ├── unreachableJavascriptUnchecked.symbols │ ├── unreachableJavascriptUnchecked.types │ ├── unreachableSwitchTypeofAny.errors.txt │ ├── unreachableSwitchTypeofAny.js │ ├── unreachableSwitchTypeofAny.symbols │ ├── unreachableSwitchTypeofAny.types │ ├── unreachableSwitchTypeofUnknown.errors.txt │ ├── unreachableSwitchTypeofUnknown.js │ ├── unreachableSwitchTypeofUnknown.symbols │ ├── unreachableSwitchTypeofUnknown.types │ ├── unresolvableSelfReferencingAwaitedUnion.errors.txt │ ├── unresolvableSelfReferencingAwaitedUnion.symbols │ ├── unresolvableSelfReferencingAwaitedUnion.types │ ├── unresolvedTypeAssertionSymbol.errors.txt │ ├── unresolvedTypeAssertionSymbol.js │ ├── unresolvedTypeAssertionSymbol.symbols │ ├── unresolvedTypeAssertionSymbol.types │ ├── unspecializedConstraints.errors.txt │ ├── unspecializedConstraints.js │ ├── unspecializedConstraints.symbols │ ├── unspecializedConstraints.types │ ├── unterminatedRegexAtEndOfSource1.errors.txt │ ├── unterminatedRegexAtEndOfSource1.js │ ├── unterminatedRegexAtEndOfSource1.symbols │ ├── unterminatedRegexAtEndOfSource1.types │ ├── unterminatedStringLiteralWithBackslash1.errors.txt │ ├── unterminatedStringLiteralWithBackslash1.js │ ├── unterminatedStringLiteralWithBackslash1.symbols │ ├── unterminatedStringLiteralWithBackslash1.types │ ├── untypedArgumentInLambdaExpression.js │ ├── untypedArgumentInLambdaExpression.symbols │ ├── untypedArgumentInLambdaExpression.types │ ├── untypedFunctionCallsWithTypeParameters1.errors.txt │ ├── untypedFunctionCallsWithTypeParameters1.js │ ├── untypedFunctionCallsWithTypeParameters1.symbols │ ├── untypedFunctionCallsWithTypeParameters1.types │ ├── untypedModuleImport.js │ ├── untypedModuleImport.symbols │ ├── untypedModuleImport.types │ ├── untypedModuleImport_allowJs.errors.txt │ ├── untypedModuleImport_allowJs.js │ ├── untypedModuleImport_allowJs.symbols │ ├── untypedModuleImport_allowJs.types │ ├── untypedModuleImport_noImplicitAny.errors.txt │ ├── untypedModuleImport_noImplicitAny.js │ ├── untypedModuleImport_noImplicitAny.symbols │ ├── untypedModuleImport_noImplicitAny.types │ ├── untypedModuleImport_noImplicitAny_relativePath.errors.txt │ ├── untypedModuleImport_noImplicitAny_relativePath.js │ ├── untypedModuleImport_noImplicitAny_relativePath.symbols │ ├── untypedModuleImport_noImplicitAny_relativePath.types │ ├── untypedModuleImport_noImplicitAny_scoped.errors.txt │ ├── untypedModuleImport_noImplicitAny_scoped.js │ ├── untypedModuleImport_noImplicitAny_scoped.symbols │ ├── untypedModuleImport_noImplicitAny_scoped.types │ ├── untypedModuleImport_noImplicitAny_typesForPackageExist.errors.txt │ ├── untypedModuleImport_noImplicitAny_typesForPackageExist.js │ ├── untypedModuleImport_noImplicitAny_typesForPackageExist.symbols │ ├── untypedModuleImport_noImplicitAny_typesForPackageExist.types │ ├── untypedModuleImport_vsAmbient.js │ ├── untypedModuleImport_vsAmbient.symbols │ ├── untypedModuleImport_vsAmbient.types │ ├── untypedModuleImport_withAugmentation.errors.txt │ ├── untypedModuleImport_withAugmentation.js │ ├── untypedModuleImport_withAugmentation.symbols │ ├── untypedModuleImport_withAugmentation.types │ ├── untypedModuleImport_withAugmentation2.errors.txt │ ├── untypedModuleImport_withAugmentation2.js │ ├── untypedModuleImport_withAugmentation2.symbols │ ├── untypedModuleImport_withAugmentation2.types │ ├── unusedClassesinModule1.errors.txt │ ├── unusedClassesinModule1.js │ ├── unusedClassesinModule1.symbols │ ├── unusedClassesinModule1.types │ ├── unusedClassesinNamespace1.errors.txt │ ├── unusedClassesinNamespace1.js │ ├── unusedClassesinNamespace1.symbols │ ├── unusedClassesinNamespace1.types │ ├── unusedClassesinNamespace2.errors.txt │ ├── unusedClassesinNamespace2.js │ ├── unusedClassesinNamespace2.symbols │ ├── unusedClassesinNamespace2.types │ ├── unusedClassesinNamespace3.js │ ├── unusedClassesinNamespace3.symbols │ ├── unusedClassesinNamespace3.types │ ├── unusedClassesinNamespace4.errors.txt │ ├── unusedClassesinNamespace4.js │ ├── unusedClassesinNamespace4.symbols │ ├── unusedClassesinNamespace4.types │ ├── unusedClassesinNamespace5.errors.txt │ ├── unusedClassesinNamespace5.js │ ├── unusedClassesinNamespace5.symbols │ ├── unusedClassesinNamespace5.types │ ├── unusedDestructuring.errors.txt │ ├── unusedDestructuring.js │ ├── unusedDestructuring.symbols │ ├── unusedDestructuring.types │ ├── unusedDestructuringParameters.errors.txt │ ├── unusedDestructuringParameters.js │ ├── unusedDestructuringParameters.symbols │ ├── unusedDestructuringParameters.types │ ├── unusedFunctionsinNamespaces1.errors.txt │ ├── unusedFunctionsinNamespaces1.js │ ├── unusedFunctionsinNamespaces1.symbols │ ├── unusedFunctionsinNamespaces1.types │ ├── unusedFunctionsinNamespaces2.errors.txt │ ├── unusedFunctionsinNamespaces2.js │ ├── unusedFunctionsinNamespaces2.symbols │ ├── unusedFunctionsinNamespaces2.types │ ├── unusedFunctionsinNamespaces3.errors.txt │ ├── unusedFunctionsinNamespaces3.js │ ├── unusedFunctionsinNamespaces3.symbols │ ├── unusedFunctionsinNamespaces3.types │ ├── unusedFunctionsinNamespaces4.errors.txt │ ├── unusedFunctionsinNamespaces4.js │ ├── unusedFunctionsinNamespaces4.symbols │ ├── unusedFunctionsinNamespaces4.types │ ├── unusedFunctionsinNamespaces5.errors.txt │ ├── unusedFunctionsinNamespaces5.js │ ├── unusedFunctionsinNamespaces5.symbols │ ├── unusedFunctionsinNamespaces5.types │ ├── unusedFunctionsinNamespaces6.errors.txt │ ├── unusedFunctionsinNamespaces6.js │ ├── unusedFunctionsinNamespaces6.symbols │ ├── unusedFunctionsinNamespaces6.types │ ├── unusedGetterInClass(target=es2015).errors.txt │ ├── unusedGetterInClass(target=es2015).js │ ├── unusedGetterInClass(target=es2015).symbols │ ├── unusedGetterInClass(target=es2015).types │ ├── unusedGetterInClass(target=es5).errors.txt │ ├── unusedGetterInClass(target=es5).js │ ├── unusedGetterInClass(target=es5).symbols │ ├── unusedGetterInClass(target=es5).types │ ├── unusedIdentifiersConsolidated1.errors.txt │ ├── unusedIdentifiersConsolidated1.js │ ├── unusedIdentifiersConsolidated1.symbols │ ├── unusedIdentifiersConsolidated1.types │ ├── unusedImportDeclaration.errors.txt │ ├── unusedImportDeclaration.js │ ├── unusedImportDeclaration.symbols │ ├── unusedImportDeclaration.types │ ├── unusedImportWithSpread.js │ ├── unusedImportWithSpread.symbols │ ├── unusedImportWithSpread.types │ ├── unusedImports1.errors.txt │ ├── unusedImports1.js │ ├── unusedImports1.symbols │ ├── unusedImports1.types │ ├── unusedImports10.errors.txt │ ├── unusedImports10.js │ ├── unusedImports10.symbols │ ├── unusedImports10.types │ ├── unusedImports11.js │ ├── unusedImports11.symbols │ ├── unusedImports11.types │ ├── unusedImports12.errors.txt │ ├── unusedImports12.js │ ├── unusedImports12.symbols │ ├── unusedImports12.types │ ├── unusedImports13.js │ ├── unusedImports13.symbols │ ├── unusedImports13.types │ ├── unusedImports14.js │ ├── unusedImports14.symbols │ ├── unusedImports14.types │ ├── unusedImports15.js │ ├── unusedImports15.symbols │ ├── unusedImports15.types │ ├── unusedImports16.js │ ├── unusedImports16.symbols │ ├── unusedImports16.types │ ├── unusedImports2.errors.txt │ ├── unusedImports2.js │ ├── unusedImports2.symbols │ ├── unusedImports2.types │ ├── unusedImports3.errors.txt │ ├── unusedImports3.js │ ├── unusedImports3.symbols │ ├── unusedImports3.types │ ├── unusedImports4.errors.txt │ ├── unusedImports4.js │ ├── unusedImports4.symbols │ ├── unusedImports4.types │ ├── unusedImports5.errors.txt │ ├── unusedImports5.js │ ├── unusedImports5.symbols │ ├── unusedImports5.types │ ├── unusedImports6.errors.txt │ ├── unusedImports6.js │ ├── unusedImports6.symbols │ ├── unusedImports6.types │ ├── unusedImports7.errors.txt │ ├── unusedImports7.js │ ├── unusedImports7.symbols │ ├── unusedImports7.types │ ├── unusedImports8.errors.txt │ ├── unusedImports8.js │ ├── unusedImports8.symbols │ ├── unusedImports8.types │ ├── unusedImports9.errors.txt │ ├── unusedImports9.js │ ├── unusedImports9.symbols │ ├── unusedImports9.types │ ├── unusedImports_entireImportDeclaration.errors.txt │ ├── unusedImports_entireImportDeclaration.js │ ├── unusedImports_entireImportDeclaration.symbols │ ├── unusedImports_entireImportDeclaration.types │ ├── unusedInterfaceinNamespace1.errors.txt │ ├── unusedInterfaceinNamespace1.js │ ├── unusedInterfaceinNamespace1.symbols │ ├── unusedInterfaceinNamespace1.types │ ├── unusedInterfaceinNamespace2.errors.txt │ ├── unusedInterfaceinNamespace2.js │ ├── unusedInterfaceinNamespace2.symbols │ ├── unusedInterfaceinNamespace2.types │ ├── unusedInterfaceinNamespace3.errors.txt │ ├── unusedInterfaceinNamespace3.js │ ├── unusedInterfaceinNamespace3.symbols │ ├── unusedInterfaceinNamespace3.types │ ├── unusedInterfaceinNamespace4.js │ ├── unusedInterfaceinNamespace4.symbols │ ├── unusedInterfaceinNamespace4.types │ ├── unusedInterfaceinNamespace5.js │ ├── unusedInterfaceinNamespace5.symbols │ ├── unusedInterfaceinNamespace5.types │ ├── unusedInvalidTypeArguments.errors.txt │ ├── unusedInvalidTypeArguments.js │ ├── unusedInvalidTypeArguments.symbols │ ├── unusedInvalidTypeArguments.types │ ├── unusedLocalProperty.js │ ├── unusedLocalProperty.symbols │ ├── unusedLocalProperty.types │ ├── unusedLocalsAndObjectSpread.errors.txt │ ├── unusedLocalsAndObjectSpread.js │ ├── unusedLocalsAndObjectSpread.symbols │ ├── unusedLocalsAndObjectSpread.types │ ├── unusedLocalsAndObjectSpread2.errors.txt │ ├── unusedLocalsAndObjectSpread2.js │ ├── unusedLocalsAndObjectSpread2.symbols │ ├── unusedLocalsAndObjectSpread2.types │ ├── unusedLocalsAndParameters.errors.txt │ ├── unusedLocalsAndParameters.js │ ├── unusedLocalsAndParameters.symbols │ ├── unusedLocalsAndParameters.types │ ├── unusedLocalsAndParametersDeferred.js │ ├── unusedLocalsAndParametersDeferred.symbols │ ├── unusedLocalsAndParametersDeferred.types │ ├── unusedLocalsAndParametersOverloadSignatures.js │ ├── unusedLocalsAndParametersOverloadSignatures.symbols │ ├── unusedLocalsAndParametersOverloadSignatures.types │ ├── unusedLocalsAndParametersTypeAliases.js │ ├── unusedLocalsAndParametersTypeAliases.symbols │ ├── unusedLocalsAndParametersTypeAliases.types │ ├── unusedLocalsAndParametersTypeAliases2.errors.txt │ ├── unusedLocalsAndParametersTypeAliases2.js │ ├── unusedLocalsAndParametersTypeAliases2.symbols │ ├── unusedLocalsAndParametersTypeAliases2.types │ ├── unusedLocalsInForInOrOf1.errors.txt │ ├── unusedLocalsInForInOrOf1.symbols │ ├── unusedLocalsInForInOrOf1.types │ ├── unusedLocalsInMethod1.errors.txt │ ├── unusedLocalsInMethod1.js │ ├── unusedLocalsInMethod1.symbols │ ├── unusedLocalsInMethod1.types │ ├── unusedLocalsInMethod2.errors.txt │ ├── unusedLocalsInMethod2.js │ ├── unusedLocalsInMethod2.symbols │ ├── unusedLocalsInMethod2.types │ ├── unusedLocalsInMethod3.errors.txt │ ├── unusedLocalsInMethod3.js │ ├── unusedLocalsInMethod3.symbols │ ├── unusedLocalsInMethod3.types │ ├── unusedLocalsInMethod4.errors.txt │ ├── unusedLocalsInMethod4.js │ ├── unusedLocalsInMethod4.symbols │ ├── unusedLocalsInMethod4.types │ ├── unusedLocalsInRecursiveReturn.symbols │ ├── unusedLocalsInRecursiveReturn.types │ ├── unusedLocalsOnFunctionDeclarationWithinFunctionDeclaration1.errors.txt │ ├── unusedLocalsOnFunctionDeclarationWithinFunctionDeclaration1.js │ ├── unusedLocalsOnFunctionDeclarationWithinFunctionDeclaration1.symbols │ ├── unusedLocalsOnFunctionDeclarationWithinFunctionDeclaration1.types │ ├── unusedLocalsOnFunctionDeclarationWithinFunctionDeclaration2.errors.txt │ ├── unusedLocalsOnFunctionDeclarationWithinFunctionDeclaration2.js │ ├── unusedLocalsOnFunctionDeclarationWithinFunctionDeclaration2.symbols │ ├── unusedLocalsOnFunctionDeclarationWithinFunctionDeclaration2.types │ ├── unusedLocalsOnFunctionDeclarationWithinFunctionExpression1.errors.txt │ ├── unusedLocalsOnFunctionDeclarationWithinFunctionExpression1.js │ ├── unusedLocalsOnFunctionDeclarationWithinFunctionExpression1.symbols │ ├── unusedLocalsOnFunctionDeclarationWithinFunctionExpression1.types │ ├── unusedLocalsOnFunctionDeclarationWithinFunctionExpression2.errors.txt │ ├── unusedLocalsOnFunctionDeclarationWithinFunctionExpression2.js │ ├── unusedLocalsOnFunctionDeclarationWithinFunctionExpression2.symbols │ ├── unusedLocalsOnFunctionDeclarationWithinFunctionExpression2.types │ ├── unusedLocalsOnFunctionExpressionWithinFunctionDeclaration1.errors.txt │ ├── unusedLocalsOnFunctionExpressionWithinFunctionDeclaration1.js │ ├── unusedLocalsOnFunctionExpressionWithinFunctionDeclaration1.symbols │ ├── unusedLocalsOnFunctionExpressionWithinFunctionDeclaration1.types │ ├── unusedLocalsOnFunctionExpressionWithinFunctionDeclaration2.errors.txt │ ├── unusedLocalsOnFunctionExpressionWithinFunctionDeclaration2.js │ ├── unusedLocalsOnFunctionExpressionWithinFunctionDeclaration2.symbols │ ├── unusedLocalsOnFunctionExpressionWithinFunctionDeclaration2.types │ ├── unusedLocalsOnFunctionExpressionWithinFunctionExpression1.errors.txt │ ├── unusedLocalsOnFunctionExpressionWithinFunctionExpression1.js │ ├── unusedLocalsOnFunctionExpressionWithinFunctionExpression1.symbols │ ├── unusedLocalsOnFunctionExpressionWithinFunctionExpression1.types │ ├── unusedLocalsOnFunctionExpressionWithinFunctionExpression2.errors.txt │ ├── unusedLocalsOnFunctionExpressionWithinFunctionExpression2.js │ ├── unusedLocalsOnFunctionExpressionWithinFunctionExpression2.symbols │ ├── unusedLocalsOnFunctionExpressionWithinFunctionExpression2.types │ ├── unusedLocalsStartingWithUnderscore.errors.txt │ ├── unusedLocalsStartingWithUnderscore.js │ ├── unusedLocalsStartingWithUnderscore.symbols │ ├── unusedLocalsStartingWithUnderscore.types │ ├── unusedLocalsinConstructor1.errors.txt │ ├── unusedLocalsinConstructor1.js │ ├── unusedLocalsinConstructor1.symbols │ ├── unusedLocalsinConstructor1.types │ ├── unusedLocalsinConstructor2.errors.txt │ ├── unusedLocalsinConstructor2.js │ ├── unusedLocalsinConstructor2.symbols │ ├── unusedLocalsinConstructor2.types │ ├── unusedMethodsInInterface.js │ ├── unusedMethodsInInterface.symbols │ ├── unusedMethodsInInterface.types │ ├── unusedModuleInModule.errors.txt │ ├── unusedModuleInModule.js │ ├── unusedModuleInModule.symbols │ ├── unusedModuleInModule.types │ ├── unusedMultipleParameter1InContructor.errors.txt │ ├── unusedMultipleParameter1InContructor.js │ ├── unusedMultipleParameter1InContructor.symbols │ ├── unusedMultipleParameter1InContructor.types │ ├── unusedMultipleParameter1InFunctionExpression.errors.txt │ ├── unusedMultipleParameter1InFunctionExpression.js │ ├── unusedMultipleParameter1InFunctionExpression.symbols │ ├── unusedMultipleParameter1InFunctionExpression.types │ ├── unusedMultipleParameter2InContructor.errors.txt │ ├── unusedMultipleParameter2InContructor.js │ ├── unusedMultipleParameter2InContructor.symbols │ ├── unusedMultipleParameter2InContructor.types │ ├── unusedMultipleParameter2InFunctionExpression.errors.txt │ ├── unusedMultipleParameter2InFunctionExpression.js │ ├── unusedMultipleParameter2InFunctionExpression.symbols │ ├── unusedMultipleParameter2InFunctionExpression.types │ ├── unusedMultipleParameters1InFunctionDeclaration.errors.txt │ ├── unusedMultipleParameters1InFunctionDeclaration.js │ ├── unusedMultipleParameters1InFunctionDeclaration.symbols │ ├── unusedMultipleParameters1InFunctionDeclaration.types │ ├── unusedMultipleParameters1InMethodDeclaration.errors.txt │ ├── unusedMultipleParameters1InMethodDeclaration.js │ ├── unusedMultipleParameters1InMethodDeclaration.symbols │ ├── unusedMultipleParameters1InMethodDeclaration.types │ ├── unusedMultipleParameters2InFunctionDeclaration.errors.txt │ ├── unusedMultipleParameters2InFunctionDeclaration.js │ ├── unusedMultipleParameters2InFunctionDeclaration.symbols │ ├── unusedMultipleParameters2InFunctionDeclaration.types │ ├── unusedMultipleParameters2InMethodDeclaration.errors.txt │ ├── unusedMultipleParameters2InMethodDeclaration.js │ ├── unusedMultipleParameters2InMethodDeclaration.symbols │ ├── unusedMultipleParameters2InMethodDeclaration.types │ ├── unusedNamespaceInModule.errors.txt │ ├── unusedNamespaceInModule.js │ ├── unusedNamespaceInModule.symbols │ ├── unusedNamespaceInModule.types │ ├── unusedNamespaceInNamespace.errors.txt │ ├── unusedNamespaceInNamespace.js │ ├── unusedNamespaceInNamespace.symbols │ ├── unusedNamespaceInNamespace.types │ ├── unusedParameterInCatchClause.js │ ├── unusedParameterInCatchClause.symbols │ ├── unusedParameterInCatchClause.types │ ├── unusedParameterProperty1.errors.txt │ ├── unusedParameterProperty1.js │ ├── unusedParameterProperty1.symbols │ ├── unusedParameterProperty1.types │ ├── unusedParameterProperty2.errors.txt │ ├── unusedParameterProperty2.js │ ├── unusedParameterProperty2.symbols │ ├── unusedParameterProperty2.types │ ├── unusedParameterUsedInTypeOf(target=es2015).js │ ├── unusedParameterUsedInTypeOf(target=es2015).symbols │ ├── unusedParameterUsedInTypeOf(target=es2015).types │ ├── unusedParameterUsedInTypeOf(target=es5).errors.txt │ ├── unusedParameterUsedInTypeOf(target=es5).js │ ├── unusedParameterUsedInTypeOf(target=es5).symbols │ ├── unusedParameterUsedInTypeOf(target=es5).types │ ├── unusedParametersInLambda1.errors.txt │ ├── unusedParametersInLambda1.js │ ├── unusedParametersInLambda1.symbols │ ├── unusedParametersInLambda1.types │ ├── unusedParametersInLambda2.errors.txt │ ├── unusedParametersInLambda2.js │ ├── unusedParametersInLambda2.symbols │ ├── unusedParametersInLambda2.types │ ├── unusedParametersThis.errors.txt │ ├── unusedParametersThis.js │ ├── unusedParametersThis.symbols │ ├── unusedParametersThis.types │ ├── unusedParametersWithUnderscore.errors.txt │ ├── unusedParametersWithUnderscore.js │ ├── unusedParametersWithUnderscore.symbols │ ├── unusedParametersWithUnderscore.types │ ├── unusedParametersinConstructor1.errors.txt │ ├── unusedParametersinConstructor1.js │ ├── unusedParametersinConstructor1.symbols │ ├── unusedParametersinConstructor1.types │ ├── unusedParametersinConstructor2.errors.txt │ ├── unusedParametersinConstructor2.js │ ├── unusedParametersinConstructor2.symbols │ ├── unusedParametersinConstructor2.types │ ├── unusedParametersinConstructor3.errors.txt │ ├── unusedParametersinConstructor3.js │ ├── unusedParametersinConstructor3.symbols │ ├── unusedParametersinConstructor3.types │ ├── unusedPrivateMembers(target=es2015).errors.txt │ ├── unusedPrivateMembers(target=es2015).js │ ├── unusedPrivateMembers(target=es2015).symbols │ ├── unusedPrivateMembers(target=es2015).types │ ├── unusedPrivateMembers(target=es5).errors.txt │ ├── unusedPrivateMembers(target=es5).js │ ├── unusedPrivateMembers(target=es5).symbols │ ├── unusedPrivateMembers(target=es5).types │ ├── unusedPrivateMethodInClass1.errors.txt │ ├── unusedPrivateMethodInClass1.js │ ├── unusedPrivateMethodInClass1.symbols │ ├── unusedPrivateMethodInClass1.types │ ├── unusedPrivateMethodInClass2.errors.txt │ ├── unusedPrivateMethodInClass2.js │ ├── unusedPrivateMethodInClass2.symbols │ ├── unusedPrivateMethodInClass2.types │ ├── unusedPrivateMethodInClass3.errors.txt │ ├── unusedPrivateMethodInClass3.js │ ├── unusedPrivateMethodInClass3.symbols │ ├── unusedPrivateMethodInClass3.types │ ├── unusedPrivateMethodInClass4.errors.txt │ ├── unusedPrivateMethodInClass4.js │ ├── unusedPrivateMethodInClass4.symbols │ ├── unusedPrivateMethodInClass4.types │ ├── unusedPrivateStaticMembers.errors.txt │ ├── unusedPrivateStaticMembers.js │ ├── unusedPrivateStaticMembers.symbols │ ├── unusedPrivateStaticMembers.types │ ├── unusedPrivateVariableInClass1.errors.txt │ ├── unusedPrivateVariableInClass1.js │ ├── unusedPrivateVariableInClass1.symbols │ ├── unusedPrivateVariableInClass1.types │ ├── unusedPrivateVariableInClass2.errors.txt │ ├── unusedPrivateVariableInClass2.js │ ├── unusedPrivateVariableInClass2.symbols │ ├── unusedPrivateVariableInClass2.types │ ├── unusedPrivateVariableInClass3.errors.txt │ ├── unusedPrivateVariableInClass3.js │ ├── unusedPrivateVariableInClass3.symbols │ ├── unusedPrivateVariableInClass3.types │ ├── unusedPrivateVariableInClass4.errors.txt │ ├── unusedPrivateVariableInClass4.js │ ├── unusedPrivateVariableInClass4.symbols │ ├── unusedPrivateVariableInClass4.types │ ├── unusedPrivateVariableInClass5.errors.txt │ ├── unusedPrivateVariableInClass5.js │ ├── unusedPrivateVariableInClass5.symbols │ ├── unusedPrivateVariableInClass5.types │ ├── unusedSemicolonInClass.js │ ├── unusedSemicolonInClass.symbols │ ├── unusedSemicolonInClass.types │ ├── unusedSetterInClass(target=es2015).errors.txt │ ├── unusedSetterInClass(target=es2015).js │ ├── unusedSetterInClass(target=es2015).symbols │ ├── unusedSetterInClass(target=es2015).types │ ├── unusedSetterInClass(target=es5).errors.txt │ ├── unusedSetterInClass(target=es5).js │ ├── unusedSetterInClass(target=es5).symbols │ ├── unusedSetterInClass(target=es5).types │ ├── unusedSetterInClass2.js │ ├── unusedSetterInClass2.symbols │ ├── unusedSetterInClass2.types │ ├── unusedSingleParameterInContructor.errors.txt │ ├── unusedSingleParameterInContructor.js │ ├── unusedSingleParameterInContructor.symbols │ ├── unusedSingleParameterInContructor.types │ ├── unusedSingleParameterInFunctionDeclaration.errors.txt │ ├── unusedSingleParameterInFunctionDeclaration.js │ ├── unusedSingleParameterInFunctionDeclaration.symbols │ ├── unusedSingleParameterInFunctionDeclaration.types │ ├── unusedSingleParameterInFunctionExpression.errors.txt │ ├── unusedSingleParameterInFunctionExpression.js │ ├── unusedSingleParameterInFunctionExpression.symbols │ ├── unusedSingleParameterInFunctionExpression.types │ ├── unusedSingleParameterInMethodDeclaration.errors.txt │ ├── unusedSingleParameterInMethodDeclaration.js │ ├── unusedSingleParameterInMethodDeclaration.symbols │ ├── unusedSingleParameterInMethodDeclaration.types │ ├── unusedSwitchStatement.errors.txt │ ├── unusedSwitchStatement.js │ ├── unusedSwitchStatement.symbols │ ├── unusedSwitchStatement.types │ ├── unusedTypeParameterInFunction1.errors.txt │ ├── unusedTypeParameterInFunction1.js │ ├── unusedTypeParameterInFunction1.symbols │ ├── unusedTypeParameterInFunction1.types │ ├── unusedTypeParameterInFunction2.errors.txt │ ├── unusedTypeParameterInFunction2.js │ ├── unusedTypeParameterInFunction2.symbols │ ├── unusedTypeParameterInFunction2.types │ ├── unusedTypeParameterInFunction3.errors.txt │ ├── unusedTypeParameterInFunction3.js │ ├── unusedTypeParameterInFunction3.symbols │ ├── unusedTypeParameterInFunction3.types │ ├── unusedTypeParameterInFunction4.errors.txt │ ├── unusedTypeParameterInFunction4.js │ ├── unusedTypeParameterInFunction4.symbols │ ├── unusedTypeParameterInFunction4.types │ ├── unusedTypeParameterInInterface1.errors.txt │ ├── unusedTypeParameterInInterface1.js │ ├── unusedTypeParameterInInterface1.symbols │ ├── unusedTypeParameterInInterface1.types │ ├── unusedTypeParameterInInterface2.errors.txt │ ├── unusedTypeParameterInInterface2.js │ ├── unusedTypeParameterInInterface2.symbols │ ├── unusedTypeParameterInInterface2.types │ ├── unusedTypeParameterInLambda1.errors.txt │ ├── unusedTypeParameterInLambda1.js │ ├── unusedTypeParameterInLambda1.symbols │ ├── unusedTypeParameterInLambda1.types │ ├── unusedTypeParameterInLambda2.errors.txt │ ├── unusedTypeParameterInLambda2.js │ ├── unusedTypeParameterInLambda2.symbols │ ├── unusedTypeParameterInLambda2.types │ ├── unusedTypeParameterInLambda3.errors.txt │ ├── unusedTypeParameterInLambda3.js │ ├── unusedTypeParameterInLambda3.symbols │ ├── unusedTypeParameterInLambda3.types │ ├── unusedTypeParameterInMethod1.errors.txt │ ├── unusedTypeParameterInMethod1.js │ ├── unusedTypeParameterInMethod1.symbols │ ├── unusedTypeParameterInMethod1.types │ ├── unusedTypeParameterInMethod2.errors.txt │ ├── unusedTypeParameterInMethod2.js │ ├── unusedTypeParameterInMethod2.symbols │ ├── unusedTypeParameterInMethod2.types │ ├── unusedTypeParameterInMethod3.errors.txt │ ├── unusedTypeParameterInMethod3.js │ ├── unusedTypeParameterInMethod3.symbols │ ├── unusedTypeParameterInMethod3.types │ ├── unusedTypeParameterInMethod4.errors.txt │ ├── unusedTypeParameterInMethod4.js │ ├── unusedTypeParameterInMethod4.symbols │ ├── unusedTypeParameterInMethod4.types │ ├── unusedTypeParameterInMethod5.errors.txt │ ├── unusedTypeParameterInMethod5.js │ ├── unusedTypeParameterInMethod5.symbols │ ├── unusedTypeParameterInMethod5.types │ ├── unusedTypeParameters1.errors.txt │ ├── unusedTypeParameters1.js │ ├── unusedTypeParameters1.symbols │ ├── unusedTypeParameters1.types │ ├── unusedTypeParameters10.errors.txt │ ├── unusedTypeParameters10.js │ ├── unusedTypeParameters10.symbols │ ├── unusedTypeParameters10.types │ ├── unusedTypeParameters2.errors.txt │ ├── unusedTypeParameters2.js │ ├── unusedTypeParameters2.symbols │ ├── unusedTypeParameters2.types │ ├── unusedTypeParameters3.errors.txt │ ├── unusedTypeParameters3.js │ ├── unusedTypeParameters3.symbols │ ├── unusedTypeParameters3.types │ ├── unusedTypeParameters4.errors.txt │ ├── unusedTypeParameters4.js │ ├── unusedTypeParameters4.symbols │ ├── unusedTypeParameters4.types │ ├── unusedTypeParameters5.errors.txt │ ├── unusedTypeParameters5.js │ ├── unusedTypeParameters5.symbols │ ├── unusedTypeParameters5.types │ ├── unusedTypeParameters6.js │ ├── unusedTypeParameters6.symbols │ ├── unusedTypeParameters6.types │ ├── unusedTypeParameters7.errors.txt │ ├── unusedTypeParameters7.js │ ├── unusedTypeParameters7.symbols │ ├── unusedTypeParameters7.types │ ├── unusedTypeParameters8.errors.txt │ ├── unusedTypeParameters8.js │ ├── unusedTypeParameters8.symbols │ ├── unusedTypeParameters8.types │ ├── unusedTypeParameters9.errors.txt │ ├── unusedTypeParameters9.js │ ├── unusedTypeParameters9.symbols │ ├── unusedTypeParameters9.types │ ├── unusedTypeParametersCheckedByNoUnusedParameters.errors.txt │ ├── unusedTypeParametersCheckedByNoUnusedParameters.js │ ├── unusedTypeParametersCheckedByNoUnusedParameters.symbols │ ├── unusedTypeParametersCheckedByNoUnusedParameters.types │ ├── unusedTypeParametersNotCheckedByNoUnusedLocals.js │ ├── unusedTypeParametersNotCheckedByNoUnusedLocals.symbols │ ├── unusedTypeParametersNotCheckedByNoUnusedLocals.types │ ├── unusedTypeParametersWithUnderscore.errors.txt │ ├── unusedTypeParametersWithUnderscore.js │ ├── unusedTypeParametersWithUnderscore.symbols │ ├── unusedTypeParametersWithUnderscore.types │ ├── unusedTypeParameters_infer.errors.txt │ ├── unusedTypeParameters_infer.js │ ├── unusedTypeParameters_infer.symbols │ ├── unusedTypeParameters_infer.types │ ├── unusedTypeParameters_templateTag.errors.txt │ ├── unusedTypeParameters_templateTag.symbols │ ├── unusedTypeParameters_templateTag.types │ ├── unusedTypeParameters_templateTag2.errors.txt │ ├── unusedTypeParameters_templateTag2.symbols │ ├── unusedTypeParameters_templateTag2.types │ ├── unusedVariablesWithUnderscoreInBindingElement.errors.txt │ ├── unusedVariablesWithUnderscoreInBindingElement.js │ ├── unusedVariablesWithUnderscoreInBindingElement.symbols │ ├── unusedVariablesWithUnderscoreInBindingElement.types │ ├── unusedVariablesWithUnderscoreInForOfLoop.errors.txt │ ├── unusedVariablesWithUnderscoreInForOfLoop.js │ ├── unusedVariablesWithUnderscoreInForOfLoop.symbols │ ├── unusedVariablesWithUnderscoreInForOfLoop.types │ ├── unusedVariablesinBlocks1.errors.txt │ ├── unusedVariablesinBlocks1.js │ ├── unusedVariablesinBlocks1.symbols │ ├── unusedVariablesinBlocks1.types │ ├── unusedVariablesinBlocks2.errors.txt │ ├── unusedVariablesinBlocks2.js │ ├── unusedVariablesinBlocks2.symbols │ ├── unusedVariablesinBlocks2.types │ ├── unusedVariablesinForLoop.errors.txt │ ├── unusedVariablesinForLoop.js │ ├── unusedVariablesinForLoop.symbols │ ├── unusedVariablesinForLoop.types │ ├── unusedVariablesinForLoop2.errors.txt │ ├── unusedVariablesinForLoop2.js │ ├── unusedVariablesinForLoop2.symbols │ ├── unusedVariablesinForLoop2.types │ ├── unusedVariablesinForLoop3.errors.txt │ ├── unusedVariablesinForLoop3.js │ ├── unusedVariablesinForLoop3.symbols │ ├── unusedVariablesinForLoop3.types │ ├── unusedVariablesinForLoop4.errors.txt │ ├── unusedVariablesinForLoop4.js │ ├── unusedVariablesinForLoop4.symbols │ ├── unusedVariablesinForLoop4.types │ ├── unusedVariablesinModules1.errors.txt │ ├── unusedVariablesinModules1.js │ ├── unusedVariablesinModules1.symbols │ ├── unusedVariablesinModules1.types │ ├── unusedVariablesinNamespaces1.errors.txt │ ├── unusedVariablesinNamespaces1.js │ ├── unusedVariablesinNamespaces1.symbols │ ├── unusedVariablesinNamespaces1.types │ ├── unusedVariablesinNamespaces2.errors.txt │ ├── unusedVariablesinNamespaces2.js │ ├── unusedVariablesinNamespaces2.symbols │ ├── unusedVariablesinNamespaces2.types │ ├── unusedVariablesinNamespaces3.errors.txt │ ├── unusedVariablesinNamespaces3.js │ ├── unusedVariablesinNamespaces3.symbols │ ├── unusedVariablesinNamespaces3.types │ ├── unwitnessedTypeParameterVariance.js │ ├── unwitnessedTypeParameterVariance.symbols │ ├── unwitnessedTypeParameterVariance.types │ ├── useBeforeDeclaration.errors.txt │ ├── useBeforeDeclaration.js │ ├── useBeforeDeclaration.symbols │ ├── useBeforeDeclaration.types │ ├── useBeforeDeclaration_classDecorators.1.errors.txt │ ├── useBeforeDeclaration_classDecorators.2(experimentaldecorators=false).errors.txt │ ├── useBeforeDeclaration_destructuring.errors.txt │ ├── useBeforeDeclaration_destructuring.js │ ├── useBeforeDeclaration_destructuring.symbols │ ├── useBeforeDeclaration_destructuring.types │ ├── useBeforeDeclaration_jsx.errors.txt │ ├── useBeforeDeclaration_jsx.js │ ├── useBeforeDeclaration_jsx.symbols │ ├── useBeforeDeclaration_jsx.types │ ├── useBeforeDeclaration_propertyAssignment.errors.txt │ ├── useBeforeDeclaration_propertyAssignment.js │ ├── useBeforeDeclaration_propertyAssignment.symbols │ ├── useBeforeDeclaration_propertyAssignment.types │ ├── useBeforeDeclaration_superClass.errors.txt │ ├── useBeforeDeclaration_superClass.js │ ├── useBeforeDeclaration_superClass.symbols │ ├── useBeforeDeclaration_superClass.types │ ├── useBeforeDefinitionInDeclarationFiles.symbols │ ├── useBeforeDefinitionInDeclarationFiles.types │ ├── useDefineForClassFieldsFlagDefault(target=es2020).js │ ├── useDefineForClassFieldsFlagDefault(target=es2020).symbols │ ├── useDefineForClassFieldsFlagDefault(target=es2020).types │ ├── useDefineForClassFieldsFlagDefault(target=esnext).js │ ├── useDefineForClassFieldsFlagDefault(target=esnext).symbols │ ├── useDefineForClassFieldsFlagDefault(target=esnext).types │ ├── useObjectValuesAndEntries1(target=es2015).js │ ├── useObjectValuesAndEntries1(target=es2015).symbols │ ├── useObjectValuesAndEntries1(target=es2015).types │ ├── useObjectValuesAndEntries1(target=es5).errors.txt │ ├── useObjectValuesAndEntries1(target=es5).js │ ├── useObjectValuesAndEntries1(target=es5).symbols │ ├── useObjectValuesAndEntries1(target=es5).types │ ├── useObjectValuesAndEntries2(target=es2015).errors.txt │ ├── useObjectValuesAndEntries2(target=es2015).js │ ├── useObjectValuesAndEntries2(target=es2015).symbols │ ├── useObjectValuesAndEntries2(target=es2015).types │ ├── useObjectValuesAndEntries2(target=es5).errors.txt │ ├── useObjectValuesAndEntries2(target=es5).js │ ├── useObjectValuesAndEntries2(target=es5).symbols │ ├── useObjectValuesAndEntries2(target=es5).types │ ├── useObjectValuesAndEntries3.errors.txt │ ├── useObjectValuesAndEntries3.js │ ├── useObjectValuesAndEntries3.symbols │ ├── useObjectValuesAndEntries3.types │ ├── useObjectValuesAndEntries4.js │ ├── useObjectValuesAndEntries4.symbols │ ├── useObjectValuesAndEntries4.types │ ├── usePromiseFinally(target=es2015).js │ ├── usePromiseFinally(target=es2015).symbols │ ├── usePromiseFinally(target=es2015).types │ ├── usePromiseFinally(target=es5).errors.txt │ ├── usePromiseFinally(target=es5).js │ ├── usePromiseFinally(target=es5).symbols │ ├── usePromiseFinally(target=es5).types │ ├── useRegexpGroups.errors.txt │ ├── useRegexpGroups.js │ ├── useRegexpGroups.symbols │ ├── useRegexpGroups.types │ ├── useSharedArrayBuffer1(target=es2015).js │ ├── useSharedArrayBuffer1(target=es2015).symbols │ ├── useSharedArrayBuffer1(target=es2015).types │ ├── useSharedArrayBuffer1(target=es5).errors.txt │ ├── useSharedArrayBuffer1(target=es5).js │ ├── useSharedArrayBuffer1(target=es5).symbols │ ├── useSharedArrayBuffer1(target=es5).types │ ├── useSharedArrayBuffer2(target=es2015).errors.txt │ ├── useSharedArrayBuffer2(target=es2015).js │ ├── useSharedArrayBuffer2(target=es2015).symbols │ ├── useSharedArrayBuffer2(target=es2015).types │ ├── useSharedArrayBuffer2(target=es5).errors.txt │ ├── useSharedArrayBuffer2(target=es5).js │ ├── useSharedArrayBuffer2(target=es5).symbols │ ├── useSharedArrayBuffer2(target=es5).types │ ├── useSharedArrayBuffer3.errors.txt │ ├── useSharedArrayBuffer3.js │ ├── useSharedArrayBuffer3.symbols │ ├── useSharedArrayBuffer3.types │ ├── useSharedArrayBuffer4.js │ ├── useSharedArrayBuffer4.symbols │ ├── useSharedArrayBuffer4.types │ ├── useSharedArrayBuffer5(target=es2015).js │ ├── useSharedArrayBuffer5(target=es2015).symbols │ ├── useSharedArrayBuffer5(target=es2015).types │ ├── useSharedArrayBuffer5(target=es5).errors.txt │ ├── useSharedArrayBuffer5(target=es5).js │ ├── useSharedArrayBuffer5(target=es5).symbols │ ├── useSharedArrayBuffer5(target=es5).types │ ├── useSharedArrayBuffer6(target=es2015).errors.txt │ ├── useSharedArrayBuffer6(target=es2015).js │ ├── useSharedArrayBuffer6(target=es2015).symbols │ ├── useSharedArrayBuffer6(target=es2015).types │ ├── useSharedArrayBuffer6(target=es5).errors.txt │ ├── useSharedArrayBuffer6(target=es5).js │ ├── useSharedArrayBuffer6(target=es5).symbols │ ├── useSharedArrayBuffer6(target=es5).types │ ├── useStrictLikePrologueString01(target=es2015).js │ ├── useStrictLikePrologueString01(target=es2015).symbols │ ├── useStrictLikePrologueString01(target=es2015).types │ ├── useStrictLikePrologueString01(target=es5).errors.txt │ ├── useStrictLikePrologueString01(target=es5).js │ ├── useStrictLikePrologueString01(target=es5).symbols │ ├── useStrictLikePrologueString01(target=es5).types │ ├── useUnknownInCatchVariables01.errors.txt │ ├── useUnknownInCatchVariables01.js │ ├── useUnknownInCatchVariables01.symbols │ ├── useUnknownInCatchVariables01.types │ ├── usedImportNotElidedInJs.js │ ├── usingDeclarations.1(target=es2015).js │ ├── usingDeclarations.1(target=es2017).js │ ├── usingDeclarations.1(target=es2022).js │ ├── usingDeclarations.1(target=es5).errors.txt │ ├── usingDeclarations.1(target=es5).js │ ├── usingDeclarations.1(target=esnext).js │ ├── usingDeclarations.10.errors.txt │ ├── usingDeclarations.10.js │ ├── usingDeclarations.11(target=es2015).js │ ├── usingDeclarations.11(target=es5).errors.txt │ ├── usingDeclarations.11(target=es5).js │ ├── usingDeclarations.12(usedefineforclassfields=false).js │ ├── usingDeclarations.12(usedefineforclassfields=true).js │ ├── usingDeclarations.13.errors.txt │ ├── usingDeclarations.13.js │ ├── usingDeclarations.14.errors.txt │ ├── usingDeclarations.14.js │ ├── usingDeclarations.15.js │ ├── usingDeclarations.16.errors.txt │ ├── usingDeclarations.16.js │ ├── usingDeclarations.17.errors.txt │ ├── usingDeclarations.17.js │ ├── usingDeclarations.2(target=es2015).js │ ├── usingDeclarations.2(target=es2017).js │ ├── usingDeclarations.2(target=es2022).js │ ├── usingDeclarations.2(target=es5).errors.txt │ ├── usingDeclarations.2(target=es5).js │ ├── usingDeclarations.2(target=esnext).js │ ├── usingDeclarations.3(target=es2015).js │ ├── usingDeclarations.3(target=es2017).js │ ├── usingDeclarations.3(target=es2022).js │ ├── usingDeclarations.3(target=es5).errors.txt │ ├── usingDeclarations.3(target=es5).js │ ├── usingDeclarations.3(target=esnext).js │ ├── usingDeclarations.4.errors.txt │ ├── usingDeclarations.4.js │ ├── usingDeclarations.5.errors.txt │ ├── usingDeclarations.5.js │ ├── usingDeclarations.6.errors.txt │ ├── usingDeclarations.6.js │ ├── usingDeclarations.7.errors.txt │ ├── usingDeclarations.7.js │ ├── usingDeclarations.8.errors.txt │ ├── usingDeclarations.8.js │ ├── usingDeclarations.9.errors.txt │ ├── usingDeclarations.9.js │ ├── usingDeclarationsDeclarationEmit.1.js │ ├── usingDeclarationsDeclarationEmit.2.js │ ├── usingDeclarationsInFor(target=es2015).js │ ├── usingDeclarationsInFor(target=es2017).js │ ├── usingDeclarationsInFor(target=es2022).js │ ├── usingDeclarationsInFor(target=es5).errors.txt │ ├── usingDeclarationsInFor(target=es5).js │ ├── usingDeclarationsInFor(target=esnext).js │ ├── usingDeclarationsInForAwaitOf(target=es2015).js │ ├── usingDeclarationsInForAwaitOf(target=es2017).js │ ├── usingDeclarationsInForAwaitOf(target=es2022).js │ ├── usingDeclarationsInForAwaitOf(target=es5).errors.txt │ ├── usingDeclarationsInForAwaitOf(target=es5).js │ ├── usingDeclarationsInForAwaitOf(target=esnext).js │ ├── usingDeclarationsInForIn.errors.txt │ ├── usingDeclarationsInForIn.js │ ├── usingDeclarationsInForOf.1(target=es2015).js │ ├── usingDeclarationsInForOf.1(target=es2017).js │ ├── usingDeclarationsInForOf.1(target=es2022).js │ ├── usingDeclarationsInForOf.1(target=es5).errors.txt │ ├── usingDeclarationsInForOf.1(target=es5).js │ ├── usingDeclarationsInForOf.1(target=esnext).js │ ├── usingDeclarationsInForOf.2.errors.txt │ ├── usingDeclarationsInForOf.2.js │ ├── usingDeclarationsInForOf.3.errors.txt │ ├── usingDeclarationsInForOf.3.js │ ├── usingDeclarationsInForOf.4.errors.txt │ ├── usingDeclarationsInForOf.4.js │ ├── usingDeclarationsNamedEvaluationDecoratorsAndClassFields.js │ ├── usingDeclarationsTopLevelOfModule.1(module=amd).errors.txt │ ├── usingDeclarationsTopLevelOfModule.1(module=amd).js │ ├── usingDeclarationsTopLevelOfModule.1(module=commonjs).js │ ├── usingDeclarationsTopLevelOfModule.1(module=esnext).js │ ├── usingDeclarationsTopLevelOfModule.1(module=system).errors.txt │ ├── usingDeclarationsTopLevelOfModule.1(module=system).js │ ├── usingDeclarationsTopLevelOfModule.2(module=amd).errors.txt │ ├── usingDeclarationsTopLevelOfModule.2(module=amd).js │ ├── usingDeclarationsTopLevelOfModule.2(module=commonjs).js │ ├── usingDeclarationsTopLevelOfModule.3(module=amd).errors.txt │ ├── usingDeclarationsTopLevelOfModule.3(module=amd).js │ ├── usingDeclarationsTopLevelOfModule.3(module=commonjs).js │ ├── usingDeclarationsTopLevelOfModule.3(module=esnext).js │ ├── usingDeclarationsTopLevelOfModule.3(module=system).errors.txt │ ├── usingDeclarationsTopLevelOfModule.3(module=system).js │ ├── usingDeclarationsWithESClassDecorators.1(module=commonjs,target=es2015).js │ ├── usingDeclarationsWithESClassDecorators.1(module=commonjs,target=es5).errors.txt │ ├── usingDeclarationsWithESClassDecorators.1(module=commonjs,target=es5).js │ ├── usingDeclarationsWithESClassDecorators.1(module=commonjs,target=esnext).js │ ├── usingDeclarationsWithESClassDecorators.1(module=esnext,target=es2015).js │ ├── usingDeclarationsWithESClassDecorators.1(module=esnext,target=es5).errors.txt │ ├── usingDeclarationsWithESClassDecorators.1(module=esnext,target=es5).js │ ├── usingDeclarationsWithESClassDecorators.1(module=esnext,target=esnext).js │ ├── usingDeclarationsWithESClassDecorators.1(module=system,target=es2015).errors.txt │ ├── usingDeclarationsWithESClassDecorators.1(module=system,target=es2015).js │ ├── usingDeclarationsWithESClassDecorators.1(module=system,target=es5).errors.txt │ ├── usingDeclarationsWithESClassDecorators.1(module=system,target=es5).js │ ├── usingDeclarationsWithESClassDecorators.1(module=system,target=esnext).errors.txt │ ├── usingDeclarationsWithESClassDecorators.1(module=system,target=esnext).js │ ├── usingDeclarationsWithESClassDecorators.10(module=commonjs,target=es2015).js │ ├── usingDeclarationsWithESClassDecorators.10(module=commonjs,target=es5).errors.txt │ ├── usingDeclarationsWithESClassDecorators.10(module=commonjs,target=es5).js │ ├── usingDeclarationsWithESClassDecorators.10(module=commonjs,target=esnext).js │ ├── usingDeclarationsWithESClassDecorators.10(module=esnext,target=es2015).js │ ├── usingDeclarationsWithESClassDecorators.10(module=esnext,target=es5).errors.txt │ ├── usingDeclarationsWithESClassDecorators.10(module=esnext,target=es5).js │ ├── usingDeclarationsWithESClassDecorators.10(module=esnext,target=esnext).js │ ├── usingDeclarationsWithESClassDecorators.10(module=system,target=es2015).errors.txt │ ├── usingDeclarationsWithESClassDecorators.10(module=system,target=es2015).js │ ├── usingDeclarationsWithESClassDecorators.10(module=system,target=es5).errors.txt │ ├── usingDeclarationsWithESClassDecorators.10(module=system,target=es5).js │ ├── usingDeclarationsWithESClassDecorators.10(module=system,target=esnext).errors.txt │ ├── usingDeclarationsWithESClassDecorators.10(module=system,target=esnext).js │ ├── usingDeclarationsWithESClassDecorators.11(module=commonjs,target=es2015).js │ ├── usingDeclarationsWithESClassDecorators.11(module=commonjs,target=es5).errors.txt │ ├── usingDeclarationsWithESClassDecorators.11(module=commonjs,target=es5).js │ ├── usingDeclarationsWithESClassDecorators.11(module=commonjs,target=esnext).js │ ├── usingDeclarationsWithESClassDecorators.11(module=esnext,target=es2015).js │ ├── usingDeclarationsWithESClassDecorators.11(module=esnext,target=es5).errors.txt │ ├── usingDeclarationsWithESClassDecorators.11(module=esnext,target=es5).js │ ├── usingDeclarationsWithESClassDecorators.11(module=esnext,target=esnext).js │ ├── usingDeclarationsWithESClassDecorators.11(module=system,target=es2015).errors.txt │ ├── usingDeclarationsWithESClassDecorators.11(module=system,target=es2015).js │ ├── usingDeclarationsWithESClassDecorators.11(module=system,target=es5).errors.txt │ ├── usingDeclarationsWithESClassDecorators.11(module=system,target=es5).js │ ├── usingDeclarationsWithESClassDecorators.11(module=system,target=esnext).errors.txt │ ├── usingDeclarationsWithESClassDecorators.11(module=system,target=esnext).js │ ├── usingDeclarationsWithESClassDecorators.12(module=commonjs,target=es2015).js │ ├── usingDeclarationsWithESClassDecorators.12(module=commonjs,target=es5).errors.txt │ ├── usingDeclarationsWithESClassDecorators.12(module=commonjs,target=es5).js │ ├── usingDeclarationsWithESClassDecorators.12(module=commonjs,target=esnext).js │ ├── usingDeclarationsWithESClassDecorators.12(module=esnext,target=es2015).js │ ├── usingDeclarationsWithESClassDecorators.12(module=esnext,target=es5).errors.txt │ ├── usingDeclarationsWithESClassDecorators.12(module=esnext,target=es5).js │ ├── usingDeclarationsWithESClassDecorators.12(module=esnext,target=esnext).js │ ├── usingDeclarationsWithESClassDecorators.12(module=system,target=es2015).errors.txt │ ├── usingDeclarationsWithESClassDecorators.12(module=system,target=es2015).js │ ├── usingDeclarationsWithESClassDecorators.12(module=system,target=es5).errors.txt │ ├── usingDeclarationsWithESClassDecorators.12(module=system,target=es5).js │ ├── usingDeclarationsWithESClassDecorators.12(module=system,target=esnext).errors.txt │ ├── usingDeclarationsWithESClassDecorators.12(module=system,target=esnext).js │ ├── usingDeclarationsWithESClassDecorators.2(module=commonjs,target=es2015).js │ ├── usingDeclarationsWithESClassDecorators.2(module=commonjs,target=es5).errors.txt │ ├── usingDeclarationsWithESClassDecorators.2(module=commonjs,target=es5).js │ ├── usingDeclarationsWithESClassDecorators.2(module=commonjs,target=esnext).js │ ├── usingDeclarationsWithESClassDecorators.2(module=esnext,target=es2015).js │ ├── usingDeclarationsWithESClassDecorators.2(module=esnext,target=es5).errors.txt │ ├── usingDeclarationsWithESClassDecorators.2(module=esnext,target=es5).js │ ├── usingDeclarationsWithESClassDecorators.2(module=esnext,target=esnext).js │ ├── usingDeclarationsWithESClassDecorators.2(module=system,target=es2015).errors.txt │ ├── usingDeclarationsWithESClassDecorators.2(module=system,target=es2015).js │ ├── usingDeclarationsWithESClassDecorators.2(module=system,target=es5).errors.txt │ ├── usingDeclarationsWithESClassDecorators.2(module=system,target=es5).js │ ├── usingDeclarationsWithESClassDecorators.2(module=system,target=esnext).errors.txt │ ├── usingDeclarationsWithESClassDecorators.2(module=system,target=esnext).js │ ├── usingDeclarationsWithESClassDecorators.3(module=commonjs,target=es2015).js │ ├── usingDeclarationsWithESClassDecorators.3(module=commonjs,target=es5).errors.txt │ ├── usingDeclarationsWithESClassDecorators.3(module=commonjs,target=es5).js │ ├── usingDeclarationsWithESClassDecorators.3(module=commonjs,target=esnext).js │ ├── usingDeclarationsWithESClassDecorators.3(module=esnext,target=es2015).js │ ├── usingDeclarationsWithESClassDecorators.3(module=esnext,target=es5).errors.txt │ ├── usingDeclarationsWithESClassDecorators.3(module=esnext,target=es5).js │ ├── usingDeclarationsWithESClassDecorators.3(module=esnext,target=esnext).js │ ├── usingDeclarationsWithESClassDecorators.3(module=system,target=es2015).errors.txt │ ├── usingDeclarationsWithESClassDecorators.3(module=system,target=es2015).js │ ├── usingDeclarationsWithESClassDecorators.3(module=system,target=es5).errors.txt │ ├── usingDeclarationsWithESClassDecorators.3(module=system,target=es5).js │ ├── usingDeclarationsWithESClassDecorators.3(module=system,target=esnext).errors.txt │ ├── usingDeclarationsWithESClassDecorators.3(module=system,target=esnext).js │ ├── usingDeclarationsWithESClassDecorators.4(module=commonjs,target=es2015).js │ ├── usingDeclarationsWithESClassDecorators.4(module=commonjs,target=es5).errors.txt │ ├── usingDeclarationsWithESClassDecorators.4(module=commonjs,target=es5).js │ ├── usingDeclarationsWithESClassDecorators.4(module=commonjs,target=esnext).js │ ├── usingDeclarationsWithESClassDecorators.4(module=esnext,target=es2015).js │ ├── usingDeclarationsWithESClassDecorators.4(module=esnext,target=es5).errors.txt │ ├── usingDeclarationsWithESClassDecorators.4(module=esnext,target=es5).js │ ├── usingDeclarationsWithESClassDecorators.4(module=esnext,target=esnext).js │ ├── usingDeclarationsWithESClassDecorators.4(module=system,target=es2015).errors.txt │ ├── usingDeclarationsWithESClassDecorators.4(module=system,target=es2015).js │ ├── usingDeclarationsWithESClassDecorators.4(module=system,target=es5).errors.txt │ ├── usingDeclarationsWithESClassDecorators.4(module=system,target=es5).js │ ├── usingDeclarationsWithESClassDecorators.4(module=system,target=esnext).errors.txt │ ├── usingDeclarationsWithESClassDecorators.4(module=system,target=esnext).js │ ├── usingDeclarationsWithESClassDecorators.5(module=commonjs,target=es2015).js │ ├── usingDeclarationsWithESClassDecorators.5(module=commonjs,target=es5).errors.txt │ ├── usingDeclarationsWithESClassDecorators.5(module=commonjs,target=es5).js │ ├── usingDeclarationsWithESClassDecorators.5(module=commonjs,target=esnext).js │ ├── usingDeclarationsWithESClassDecorators.5(module=esnext,target=es2015).js │ ├── usingDeclarationsWithESClassDecorators.5(module=esnext,target=es5).errors.txt │ ├── usingDeclarationsWithESClassDecorators.5(module=esnext,target=es5).js │ ├── usingDeclarationsWithESClassDecorators.5(module=esnext,target=esnext).js │ ├── usingDeclarationsWithESClassDecorators.5(module=system,target=es2015).errors.txt │ ├── usingDeclarationsWithESClassDecorators.5(module=system,target=es2015).js │ ├── usingDeclarationsWithESClassDecorators.5(module=system,target=es5).errors.txt │ ├── usingDeclarationsWithESClassDecorators.5(module=system,target=es5).js │ ├── usingDeclarationsWithESClassDecorators.5(module=system,target=esnext).errors.txt │ ├── usingDeclarationsWithESClassDecorators.5(module=system,target=esnext).js │ ├── usingDeclarationsWithESClassDecorators.6(module=commonjs,target=es2015).js │ ├── usingDeclarationsWithESClassDecorators.6(module=commonjs,target=es5).errors.txt │ ├── usingDeclarationsWithESClassDecorators.6(module=commonjs,target=es5).js │ ├── usingDeclarationsWithESClassDecorators.6(module=commonjs,target=esnext).js │ ├── usingDeclarationsWithESClassDecorators.6(module=esnext,target=es2015).js │ ├── usingDeclarationsWithESClassDecorators.6(module=esnext,target=es5).errors.txt │ ├── usingDeclarationsWithESClassDecorators.6(module=esnext,target=es5).js │ ├── usingDeclarationsWithESClassDecorators.6(module=esnext,target=esnext).js │ ├── usingDeclarationsWithESClassDecorators.6(module=system,target=es2015).errors.txt │ ├── usingDeclarationsWithESClassDecorators.6(module=system,target=es2015).js │ ├── usingDeclarationsWithESClassDecorators.6(module=system,target=es5).errors.txt │ ├── usingDeclarationsWithESClassDecorators.6(module=system,target=es5).js │ ├── usingDeclarationsWithESClassDecorators.6(module=system,target=esnext).errors.txt │ ├── usingDeclarationsWithESClassDecorators.6(module=system,target=esnext).js │ ├── usingDeclarationsWithESClassDecorators.7(module=commonjs,target=es2015).js │ ├── usingDeclarationsWithESClassDecorators.7(module=commonjs,target=es5).errors.txt │ ├── usingDeclarationsWithESClassDecorators.7(module=commonjs,target=es5).js │ ├── usingDeclarationsWithESClassDecorators.7(module=commonjs,target=esnext).js │ ├── usingDeclarationsWithESClassDecorators.7(module=esnext,target=es2015).js │ ├── usingDeclarationsWithESClassDecorators.7(module=esnext,target=es5).errors.txt │ ├── usingDeclarationsWithESClassDecorators.7(module=esnext,target=es5).js │ ├── usingDeclarationsWithESClassDecorators.7(module=esnext,target=esnext).js │ ├── usingDeclarationsWithESClassDecorators.7(module=system,target=es2015).errors.txt │ ├── usingDeclarationsWithESClassDecorators.7(module=system,target=es2015).js │ ├── usingDeclarationsWithESClassDecorators.7(module=system,target=es5).errors.txt │ ├── usingDeclarationsWithESClassDecorators.7(module=system,target=es5).js │ ├── usingDeclarationsWithESClassDecorators.7(module=system,target=esnext).errors.txt │ ├── usingDeclarationsWithESClassDecorators.7(module=system,target=esnext).js │ ├── usingDeclarationsWithESClassDecorators.8(module=commonjs,target=es2015).js │ ├── usingDeclarationsWithESClassDecorators.8(module=commonjs,target=es5).errors.txt │ ├── usingDeclarationsWithESClassDecorators.8(module=commonjs,target=es5).js │ ├── usingDeclarationsWithESClassDecorators.8(module=commonjs,target=esnext).js │ ├── usingDeclarationsWithESClassDecorators.8(module=esnext,target=es2015).js │ ├── usingDeclarationsWithESClassDecorators.8(module=esnext,target=es5).errors.txt │ ├── usingDeclarationsWithESClassDecorators.8(module=esnext,target=es5).js │ ├── usingDeclarationsWithESClassDecorators.8(module=esnext,target=esnext).js │ ├── usingDeclarationsWithESClassDecorators.8(module=system,target=es2015).errors.txt │ ├── usingDeclarationsWithESClassDecorators.8(module=system,target=es2015).js │ ├── usingDeclarationsWithESClassDecorators.8(module=system,target=es5).errors.txt │ ├── usingDeclarationsWithESClassDecorators.8(module=system,target=es5).js │ ├── usingDeclarationsWithESClassDecorators.8(module=system,target=esnext).errors.txt │ ├── usingDeclarationsWithESClassDecorators.8(module=system,target=esnext).js │ ├── usingDeclarationsWithESClassDecorators.9(module=commonjs,target=es2015).js │ ├── usingDeclarationsWithESClassDecorators.9(module=commonjs,target=es5).errors.txt │ ├── usingDeclarationsWithESClassDecorators.9(module=commonjs,target=es5).js │ ├── usingDeclarationsWithESClassDecorators.9(module=commonjs,target=esnext).js │ ├── usingDeclarationsWithESClassDecorators.9(module=esnext,target=es2015).js │ ├── usingDeclarationsWithESClassDecorators.9(module=esnext,target=es5).errors.txt │ ├── usingDeclarationsWithESClassDecorators.9(module=esnext,target=es5).js │ ├── usingDeclarationsWithESClassDecorators.9(module=esnext,target=esnext).js │ ├── usingDeclarationsWithESClassDecorators.9(module=system,target=es2015).errors.txt │ ├── usingDeclarationsWithESClassDecorators.9(module=system,target=es2015).js │ ├── usingDeclarationsWithESClassDecorators.9(module=system,target=es5).errors.txt │ ├── usingDeclarationsWithESClassDecorators.9(module=system,target=es5).js │ ├── usingDeclarationsWithESClassDecorators.9(module=system,target=esnext).errors.txt │ ├── usingDeclarationsWithESClassDecorators.9(module=system,target=esnext).js │ ├── usingDeclarationsWithImportHelpers.errors.txt │ ├── usingDeclarationsWithImportHelpers.js │ ├── usingDeclarationsWithIteratorObject.errors.txt │ ├── usingDeclarationsWithIteratorObject.symbols │ ├── usingDeclarationsWithIteratorObject.types │ ├── usingDeclarationsWithLegacyClassDecorators.1(module=commonjs,target=es2015).js │ ├── usingDeclarationsWithLegacyClassDecorators.1(module=commonjs,target=es5).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.1(module=commonjs,target=es5).js │ ├── usingDeclarationsWithLegacyClassDecorators.1(module=commonjs,target=esnext).js │ ├── usingDeclarationsWithLegacyClassDecorators.1(module=esnext,target=es2015).js │ ├── usingDeclarationsWithLegacyClassDecorators.1(module=esnext,target=es5).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.1(module=esnext,target=es5).js │ ├── usingDeclarationsWithLegacyClassDecorators.1(module=esnext,target=esnext).js │ ├── usingDeclarationsWithLegacyClassDecorators.1(module=system,target=es2015).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.1(module=system,target=es2015).js │ ├── usingDeclarationsWithLegacyClassDecorators.1(module=system,target=es5).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.1(module=system,target=es5).js │ ├── usingDeclarationsWithLegacyClassDecorators.1(module=system,target=esnext).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.1(module=system,target=esnext).js │ ├── usingDeclarationsWithLegacyClassDecorators.10(module=commonjs,target=es2015).js │ ├── usingDeclarationsWithLegacyClassDecorators.10(module=commonjs,target=es5).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.10(module=commonjs,target=es5).js │ ├── usingDeclarationsWithLegacyClassDecorators.10(module=commonjs,target=esnext).js │ ├── usingDeclarationsWithLegacyClassDecorators.10(module=esnext,target=es2015).js │ ├── usingDeclarationsWithLegacyClassDecorators.10(module=esnext,target=es5).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.10(module=esnext,target=es5).js │ ├── usingDeclarationsWithLegacyClassDecorators.10(module=esnext,target=esnext).js │ ├── usingDeclarationsWithLegacyClassDecorators.10(module=system,target=es2015).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.10(module=system,target=es2015).js │ ├── usingDeclarationsWithLegacyClassDecorators.10(module=system,target=es5).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.10(module=system,target=es5).js │ ├── usingDeclarationsWithLegacyClassDecorators.10(module=system,target=esnext).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.10(module=system,target=esnext).js │ ├── usingDeclarationsWithLegacyClassDecorators.11(module=commonjs,target=es2015).js │ ├── usingDeclarationsWithLegacyClassDecorators.11(module=commonjs,target=es5).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.11(module=commonjs,target=es5).js │ ├── usingDeclarationsWithLegacyClassDecorators.11(module=commonjs,target=esnext).js │ ├── usingDeclarationsWithLegacyClassDecorators.11(module=esnext,target=es2015).js │ ├── usingDeclarationsWithLegacyClassDecorators.11(module=esnext,target=es5).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.11(module=esnext,target=es5).js │ ├── usingDeclarationsWithLegacyClassDecorators.11(module=esnext,target=esnext).js │ ├── usingDeclarationsWithLegacyClassDecorators.11(module=system,target=es2015).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.11(module=system,target=es2015).js │ ├── usingDeclarationsWithLegacyClassDecorators.11(module=system,target=es5).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.11(module=system,target=es5).js │ ├── usingDeclarationsWithLegacyClassDecorators.11(module=system,target=esnext).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.11(module=system,target=esnext).js │ ├── usingDeclarationsWithLegacyClassDecorators.12(module=commonjs,target=es2015).js │ ├── usingDeclarationsWithLegacyClassDecorators.12(module=commonjs,target=es5).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.12(module=commonjs,target=es5).js │ ├── usingDeclarationsWithLegacyClassDecorators.12(module=commonjs,target=esnext).js │ ├── usingDeclarationsWithLegacyClassDecorators.12(module=esnext,target=es2015).js │ ├── usingDeclarationsWithLegacyClassDecorators.12(module=esnext,target=es5).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.12(module=esnext,target=es5).js │ ├── usingDeclarationsWithLegacyClassDecorators.12(module=esnext,target=esnext).js │ ├── usingDeclarationsWithLegacyClassDecorators.12(module=system,target=es2015).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.12(module=system,target=es2015).js │ ├── usingDeclarationsWithLegacyClassDecorators.12(module=system,target=es5).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.12(module=system,target=es5).js │ ├── usingDeclarationsWithLegacyClassDecorators.12(module=system,target=esnext).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.12(module=system,target=esnext).js │ ├── usingDeclarationsWithLegacyClassDecorators.2(module=commonjs,target=es2015).js │ ├── usingDeclarationsWithLegacyClassDecorators.2(module=commonjs,target=es5).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.2(module=commonjs,target=es5).js │ ├── usingDeclarationsWithLegacyClassDecorators.2(module=commonjs,target=esnext).js │ ├── usingDeclarationsWithLegacyClassDecorators.2(module=esnext,target=es2015).js │ ├── usingDeclarationsWithLegacyClassDecorators.2(module=esnext,target=es5).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.2(module=esnext,target=es5).js │ ├── usingDeclarationsWithLegacyClassDecorators.2(module=esnext,target=esnext).js │ ├── usingDeclarationsWithLegacyClassDecorators.2(module=system,target=es2015).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.2(module=system,target=es2015).js │ ├── usingDeclarationsWithLegacyClassDecorators.2(module=system,target=es5).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.2(module=system,target=es5).js │ ├── usingDeclarationsWithLegacyClassDecorators.2(module=system,target=esnext).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.2(module=system,target=esnext).js │ ├── usingDeclarationsWithLegacyClassDecorators.3(module=commonjs,target=es2015).js │ ├── usingDeclarationsWithLegacyClassDecorators.3(module=commonjs,target=es5).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.3(module=commonjs,target=es5).js │ ├── usingDeclarationsWithLegacyClassDecorators.3(module=commonjs,target=esnext).js │ ├── usingDeclarationsWithLegacyClassDecorators.3(module=esnext,target=es2015).js │ ├── usingDeclarationsWithLegacyClassDecorators.3(module=esnext,target=es5).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.3(module=esnext,target=es5).js │ ├── usingDeclarationsWithLegacyClassDecorators.3(module=esnext,target=esnext).js │ ├── usingDeclarationsWithLegacyClassDecorators.3(module=system,target=es2015).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.3(module=system,target=es2015).js │ ├── usingDeclarationsWithLegacyClassDecorators.3(module=system,target=es5).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.3(module=system,target=es5).js │ ├── usingDeclarationsWithLegacyClassDecorators.3(module=system,target=esnext).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.3(module=system,target=esnext).js │ ├── usingDeclarationsWithLegacyClassDecorators.4(module=commonjs,target=es2015).js │ ├── usingDeclarationsWithLegacyClassDecorators.4(module=commonjs,target=es5).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.4(module=commonjs,target=es5).js │ ├── usingDeclarationsWithLegacyClassDecorators.4(module=commonjs,target=esnext).js │ ├── usingDeclarationsWithLegacyClassDecorators.4(module=esnext,target=es2015).js │ ├── usingDeclarationsWithLegacyClassDecorators.4(module=esnext,target=es5).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.4(module=esnext,target=es5).js │ ├── usingDeclarationsWithLegacyClassDecorators.4(module=esnext,target=esnext).js │ ├── usingDeclarationsWithLegacyClassDecorators.4(module=system,target=es2015).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.4(module=system,target=es2015).js │ ├── usingDeclarationsWithLegacyClassDecorators.4(module=system,target=es5).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.4(module=system,target=es5).js │ ├── usingDeclarationsWithLegacyClassDecorators.4(module=system,target=esnext).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.4(module=system,target=esnext).js │ ├── usingDeclarationsWithLegacyClassDecorators.5(module=commonjs,target=es2015).js │ ├── usingDeclarationsWithLegacyClassDecorators.5(module=commonjs,target=es5).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.5(module=commonjs,target=es5).js │ ├── usingDeclarationsWithLegacyClassDecorators.5(module=commonjs,target=esnext).js │ ├── usingDeclarationsWithLegacyClassDecorators.5(module=esnext,target=es2015).js │ ├── usingDeclarationsWithLegacyClassDecorators.5(module=esnext,target=es5).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.5(module=esnext,target=es5).js │ ├── usingDeclarationsWithLegacyClassDecorators.5(module=esnext,target=esnext).js │ ├── usingDeclarationsWithLegacyClassDecorators.5(module=system,target=es2015).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.5(module=system,target=es2015).js │ ├── usingDeclarationsWithLegacyClassDecorators.5(module=system,target=es5).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.5(module=system,target=es5).js │ ├── usingDeclarationsWithLegacyClassDecorators.5(module=system,target=esnext).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.5(module=system,target=esnext).js │ ├── usingDeclarationsWithLegacyClassDecorators.6(module=commonjs,target=es2015).js │ ├── usingDeclarationsWithLegacyClassDecorators.6(module=commonjs,target=es5).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.6(module=commonjs,target=es5).js │ ├── usingDeclarationsWithLegacyClassDecorators.6(module=commonjs,target=esnext).js │ ├── usingDeclarationsWithLegacyClassDecorators.6(module=esnext,target=es2015).js │ ├── usingDeclarationsWithLegacyClassDecorators.6(module=esnext,target=es5).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.6(module=esnext,target=es5).js │ ├── usingDeclarationsWithLegacyClassDecorators.6(module=esnext,target=esnext).js │ ├── usingDeclarationsWithLegacyClassDecorators.6(module=system,target=es2015).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.6(module=system,target=es2015).js │ ├── usingDeclarationsWithLegacyClassDecorators.6(module=system,target=es5).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.6(module=system,target=es5).js │ ├── usingDeclarationsWithLegacyClassDecorators.6(module=system,target=esnext).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.6(module=system,target=esnext).js │ ├── usingDeclarationsWithLegacyClassDecorators.7(module=commonjs,target=es2015).js │ ├── usingDeclarationsWithLegacyClassDecorators.7(module=commonjs,target=es5).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.7(module=commonjs,target=es5).js │ ├── usingDeclarationsWithLegacyClassDecorators.7(module=commonjs,target=esnext).js │ ├── usingDeclarationsWithLegacyClassDecorators.7(module=esnext,target=es2015).js │ ├── usingDeclarationsWithLegacyClassDecorators.7(module=esnext,target=es5).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.7(module=esnext,target=es5).js │ ├── usingDeclarationsWithLegacyClassDecorators.7(module=esnext,target=esnext).js │ ├── usingDeclarationsWithLegacyClassDecorators.7(module=system,target=es2015).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.7(module=system,target=es2015).js │ ├── usingDeclarationsWithLegacyClassDecorators.7(module=system,target=es5).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.7(module=system,target=es5).js │ ├── usingDeclarationsWithLegacyClassDecorators.7(module=system,target=esnext).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.7(module=system,target=esnext).js │ ├── usingDeclarationsWithLegacyClassDecorators.8(module=commonjs,target=es2015).js │ ├── usingDeclarationsWithLegacyClassDecorators.8(module=commonjs,target=es5).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.8(module=commonjs,target=es5).js │ ├── usingDeclarationsWithLegacyClassDecorators.8(module=commonjs,target=esnext).js │ ├── usingDeclarationsWithLegacyClassDecorators.8(module=esnext,target=es2015).js │ ├── usingDeclarationsWithLegacyClassDecorators.8(module=esnext,target=es5).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.8(module=esnext,target=es5).js │ ├── usingDeclarationsWithLegacyClassDecorators.8(module=esnext,target=esnext).js │ ├── usingDeclarationsWithLegacyClassDecorators.8(module=system,target=es2015).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.8(module=system,target=es2015).js │ ├── usingDeclarationsWithLegacyClassDecorators.8(module=system,target=es5).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.8(module=system,target=es5).js │ ├── usingDeclarationsWithLegacyClassDecorators.8(module=system,target=esnext).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.8(module=system,target=esnext).js │ ├── usingDeclarationsWithLegacyClassDecorators.9(module=commonjs,target=es2015).js │ ├── usingDeclarationsWithLegacyClassDecorators.9(module=commonjs,target=es5).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.9(module=commonjs,target=es5).js │ ├── usingDeclarationsWithLegacyClassDecorators.9(module=commonjs,target=esnext).js │ ├── usingDeclarationsWithLegacyClassDecorators.9(module=esnext,target=es2015).js │ ├── usingDeclarationsWithLegacyClassDecorators.9(module=esnext,target=es5).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.9(module=esnext,target=es5).js │ ├── usingDeclarationsWithLegacyClassDecorators.9(module=esnext,target=esnext).js │ ├── usingDeclarationsWithLegacyClassDecorators.9(module=system,target=es2015).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.9(module=system,target=es2015).js │ ├── usingDeclarationsWithLegacyClassDecorators.9(module=system,target=es5).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.9(module=system,target=es5).js │ ├── usingDeclarationsWithLegacyClassDecorators.9(module=system,target=esnext).errors.txt │ ├── usingDeclarationsWithLegacyClassDecorators.9(module=system,target=esnext).js │ ├── usingDeclarationsWithObjectLiterals1.errors.txt │ ├── usingDeclarationsWithObjectLiterals1.symbols │ ├── usingDeclarationsWithObjectLiterals1.types │ ├── usingDeclarationsWithObjectLiterals2(noimplicitany=false).symbols │ ├── usingDeclarationsWithObjectLiterals2(noimplicitany=false).types │ ├── usingDeclarationsWithObjectLiterals2(noimplicitany=true).errors.txt │ ├── usingDeclarationsWithObjectLiterals2(noimplicitany=true).symbols │ ├── usingDeclarationsWithObjectLiterals2(noimplicitany=true).types │ ├── usingModuleWithExportImportInValuePosition.js │ ├── usingModuleWithExportImportInValuePosition.symbols │ ├── usingModuleWithExportImportInValuePosition.types │ ├── validBooleanAssignments.js │ ├── validBooleanAssignments.symbols │ ├── validBooleanAssignments.types │ ├── validEnumAssignments.errors.txt │ ├── validEnumAssignments.js │ ├── validEnumAssignments.symbols │ ├── validEnumAssignments.types │ ├── validMultipleVariableDeclarations.errors.txt │ ├── validMultipleVariableDeclarations.js │ ├── validMultipleVariableDeclarations.symbols │ ├── validMultipleVariableDeclarations.types │ ├── validNullAssignments.errors.txt │ ├── validNullAssignments.js │ ├── validNullAssignments.symbols │ ├── validNullAssignments.types │ ├── validNumberAssignments.js │ ├── validNumberAssignments.symbols │ ├── validNumberAssignments.types │ ├── validRegexp.errors.txt │ ├── validRegexp.js │ ├── validRegexp.symbols │ ├── validRegexp.types │ ├── validStringAssignments.js │ ├── validStringAssignments.symbols │ ├── validStringAssignments.types │ ├── validUndefinedAssignments.errors.txt │ ├── validUndefinedAssignments.js │ ├── validUndefinedAssignments.symbols │ ├── validUndefinedAssignments.types │ ├── validUndefinedValues.js │ ├── validUndefinedValues.symbols │ ├── validUndefinedValues.types │ ├── validUseOfThisInSuper.js │ ├── validUseOfThisInSuper.symbols │ ├── validUseOfThisInSuper.types │ ├── validVoidAssignments.js │ ├── validVoidAssignments.symbols │ ├── validVoidAssignments.types │ ├── validVoidValues.errors.txt │ ├── validVoidValues.js │ ├── validVoidValues.symbols │ ├── validVoidValues.types │ ├── valueOfTypedArray.js │ ├── valueOfTypedArray.symbols │ ├── valueOfTypedArray.types │ ├── valuesMergingAcrossModules.errors.txt │ ├── valuesMergingAcrossModules.js │ ├── valuesMergingAcrossModules.symbols │ ├── valuesMergingAcrossModules.types │ ├── varAndFunctionShareName.errors.txt │ ├── varAndFunctionShareName.js │ ├── varAndFunctionShareName.symbols │ ├── varAndFunctionShareName.types │ ├── varArgConstructorMemberParameter.errors.txt │ ├── varArgConstructorMemberParameter.js │ ├── varArgConstructorMemberParameter.symbols │ ├── varArgConstructorMemberParameter.types │ ├── varArgParamTypeCheck.errors.txt │ ├── varArgParamTypeCheck.js │ ├── varArgParamTypeCheck.symbols │ ├── varArgParamTypeCheck.types │ ├── varArgWithNoParamName.errors.txt │ ├── varArgWithNoParamName.js │ ├── varArgWithNoParamName.symbols │ ├── varArgWithNoParamName.types │ ├── varArgsOnConstructorTypes.errors.txt │ ├── varArgsOnConstructorTypes.js │ ├── varArgsOnConstructorTypes.symbols │ ├── varArgsOnConstructorTypes.types │ ├── varAsID.js │ ├── varAsID.symbols │ ├── varAsID.types │ ├── varBlock.errors.txt │ ├── varBlock.js │ ├── varBlock.symbols │ ├── varBlock.types │ ├── varInFunctionInVarInitializer.js │ ├── varInFunctionInVarInitializer.symbols │ ├── varInFunctionInVarInitializer.types │ ├── varNameConflictsWithImportInDifferentPartOfModule.errors.txt │ ├── varNameConflictsWithImportInDifferentPartOfModule.js │ ├── varNameConflictsWithImportInDifferentPartOfModule.symbols │ ├── varNameConflictsWithImportInDifferentPartOfModule.types │ ├── varRequireFromJavascript.symbols │ ├── varRequireFromJavascript.types │ ├── varRequireFromTypescript.symbols │ ├── varRequireFromTypescript.types │ ├── vararg.errors.txt │ ├── vararg.js │ ├── vararg.symbols │ ├── vararg.types │ ├── vardecl.js │ ├── vardecl.symbols │ ├── vardecl.types │ ├── variableDeclarationDeclarationEmitUniqueSymbolPartialStatement.js │ ├── variableDeclarationDeclarationEmitUniqueSymbolPartialStatement.symbols │ ├── variableDeclarationDeclarationEmitUniqueSymbolPartialStatement.types │ ├── variableDeclarationInStrictMode1.errors.txt │ ├── variableDeclarationInStrictMode1.js │ ├── variableDeclarationInStrictMode1.symbols │ ├── variableDeclarationInStrictMode1.types │ ├── variableDeclarationInnerCommentEmit.js │ ├── variableDeclarationInnerCommentEmit.symbols │ ├── variableDeclarationInnerCommentEmit.types │ ├── variableDeclarator1.js │ ├── variableDeclarator1.symbols │ ├── variableDeclarator1.types │ ├── variableDeclaratorResolvedDuringContextualTyping.errors.txt │ ├── variableDeclaratorResolvedDuringContextualTyping.js │ ├── variableDeclaratorResolvedDuringContextualTyping.symbols │ ├── variableDeclaratorResolvedDuringContextualTyping.types │ ├── variadicTuples1.errors.txt │ ├── variadicTuples1.js │ ├── variadicTuples1.symbols │ ├── variadicTuples1.types │ ├── variadicTuples2.errors.txt │ ├── variadicTuples2.js │ ├── variadicTuples2.symbols │ ├── variadicTuples2.types │ ├── variadicTuples3.errors.txt │ ├── variadicTuples3.symbols │ ├── variadicTuples3.types │ ├── variance.js │ ├── variance.symbols │ ├── variance.types │ ├── varianceAnnotationValidation.errors.txt │ ├── varianceAnnotationValidation.js │ ├── varianceAnnotationValidation.symbols │ ├── varianceAnnotationValidation.types │ ├── varianceAnnotations.errors.txt │ ├── varianceAnnotations.js │ ├── varianceAnnotations.symbols │ ├── varianceAnnotations.types │ ├── varianceAnnotationsWithCircularlyReferencesError.errors.txt │ ├── varianceAnnotationsWithCircularlyReferencesError.js │ ├── varianceAnnotationsWithCircularlyReferencesError.symbols │ ├── varianceAnnotationsWithCircularlyReferencesError.types │ ├── varianceCallbacksAndIndexedAccesses.js │ ├── varianceCallbacksAndIndexedAccesses.symbols │ ├── varianceCallbacksAndIndexedAccesses.types │ ├── varianceCantBeStrictWhileStructureIsnt.js │ ├── varianceCantBeStrictWhileStructureIsnt.symbols │ ├── varianceCantBeStrictWhileStructureIsnt.types │ ├── varianceMeasurement.errors.txt │ ├── varianceMeasurement.js │ ├── varianceMeasurement.symbols │ ├── varianceMeasurement.types │ ├── varianceProblingAndZeroOrderIndexSignatureRelationsAlign.js │ ├── varianceProblingAndZeroOrderIndexSignatureRelationsAlign.symbols │ ├── varianceProblingAndZeroOrderIndexSignatureRelationsAlign.types │ ├── varianceProblingAndZeroOrderIndexSignatureRelationsAlign2.js │ ├── varianceProblingAndZeroOrderIndexSignatureRelationsAlign2.symbols │ ├── varianceProblingAndZeroOrderIndexSignatureRelationsAlign2.types │ ├── variancePropagation.symbols │ ├── variancePropagation.types │ ├── varianceReferences.errors.txt │ ├── varianceReferences.symbols │ ├── varianceReferences.types │ ├── varianceRepeatedlyPropegatesWithUnreliableFlag.js │ ├── varianceRepeatedlyPropegatesWithUnreliableFlag.symbols │ ├── varianceRepeatedlyPropegatesWithUnreliableFlag.types │ ├── verbatim-declarations-parameters.js │ ├── verbatim-declarations-parameters.symbols │ ├── verbatim-declarations-parameters.types │ ├── verbatimModuleSyntaxAmbientConstEnum.errors.txt │ ├── verbatimModuleSyntaxCompat.errors.txt │ ├── verbatimModuleSyntaxCompat2.errors.txt │ ├── verbatimModuleSyntaxCompat3.errors.txt │ ├── verbatimModuleSyntaxCompat4.errors.txt │ ├── verbatimModuleSyntaxConstEnum.js │ ├── verbatimModuleSyntaxConstEnum.symbols │ ├── verbatimModuleSyntaxConstEnum.types │ ├── verbatimModuleSyntaxConstEnumUsage.js │ ├── verbatimModuleSyntaxConstEnumUsage.symbols │ ├── verbatimModuleSyntaxConstEnumUsage.types │ ├── verbatimModuleSyntaxDeclarationFile.symbols │ ├── verbatimModuleSyntaxDeclarationFile.types │ ├── verbatimModuleSyntaxDefaultValue.js │ ├── verbatimModuleSyntaxDefaultValue.symbols │ ├── verbatimModuleSyntaxDefaultValue.types │ ├── verbatimModuleSyntaxInternalImportEquals.errors.txt │ ├── verbatimModuleSyntaxInternalImportEquals.js │ ├── verbatimModuleSyntaxInternalImportEquals.symbols │ ├── verbatimModuleSyntaxInternalImportEquals.types │ ├── verbatimModuleSyntaxNoElisionCJS.errors.txt │ ├── verbatimModuleSyntaxNoElisionCJS.js │ ├── verbatimModuleSyntaxNoElisionCJS.symbols │ ├── verbatimModuleSyntaxNoElisionCJS.types │ ├── verbatimModuleSyntaxNoElisionESM.errors.txt │ ├── verbatimModuleSyntaxNoElisionESM.js │ ├── verbatimModuleSyntaxNoElisionESM.symbols │ ├── verbatimModuleSyntaxNoElisionESM.types │ ├── verbatimModuleSyntaxRestrictionsCJS.errors.txt │ ├── verbatimModuleSyntaxRestrictionsCJS.js │ ├── verbatimModuleSyntaxRestrictionsCJS.symbols │ ├── verbatimModuleSyntaxRestrictionsCJS.types │ ├── verbatimModuleSyntaxRestrictionsESM(esmoduleinterop=false).errors.txt │ ├── verbatimModuleSyntaxRestrictionsESM(esmoduleinterop=false).js │ ├── verbatimModuleSyntaxRestrictionsESM(esmoduleinterop=false).symbols │ ├── verbatimModuleSyntaxRestrictionsESM(esmoduleinterop=false).types │ ├── verbatimModuleSyntaxRestrictionsESM(esmoduleinterop=true).errors.txt │ ├── verbatimModuleSyntaxRestrictionsESM(esmoduleinterop=true).js │ ├── verbatimModuleSyntaxRestrictionsESM(esmoduleinterop=true).symbols │ ├── verbatimModuleSyntaxRestrictionsESM(esmoduleinterop=true).types │ ├── verifyDefaultLib_dom.js │ ├── verifyDefaultLib_dom.symbols │ ├── verifyDefaultLib_dom.types │ ├── verifyDefaultLib_webworker.js │ ├── verifyDefaultLib_webworker.symbols │ ├── verifyDefaultLib_webworker.types │ ├── visSyntax.js │ ├── visSyntax.symbols │ ├── visSyntax.types │ ├── visibilityOfCrossModuleTypeUsage.errors.txt │ ├── visibilityOfCrossModuleTypeUsage.js │ ├── visibilityOfCrossModuleTypeUsage.symbols │ ├── visibilityOfCrossModuleTypeUsage.types │ ├── visibilityOfTypeParameters.js │ ├── visibilityOfTypeParameters.symbols │ ├── visibilityOfTypeParameters.types │ ├── voidArrayLit.errors.txt │ ├── voidArrayLit.js │ ├── voidArrayLit.symbols │ ├── voidArrayLit.types │ ├── voidAsNonAmbiguousReturnType.errors.txt │ ├── voidAsNonAmbiguousReturnType.js │ ├── voidAsNonAmbiguousReturnType.symbols │ ├── voidAsNonAmbiguousReturnType.types │ ├── voidAsOperator.errors.txt │ ├── voidAsOperator.js │ ├── voidAsOperator.symbols │ ├── voidAsOperator.types │ ├── voidConstructor.js │ ├── voidConstructor.symbols │ ├── voidConstructor.types │ ├── voidFunctionAssignmentCompat.js │ ├── voidFunctionAssignmentCompat.symbols │ ├── voidFunctionAssignmentCompat.types │ ├── voidIsInitialized.js │ ├── voidIsInitialized.symbols │ ├── voidIsInitialized.types │ ├── voidOperator1.js │ ├── voidOperator1.symbols │ ├── voidOperator1.types │ ├── voidOperatorInvalidOperations.errors.txt │ ├── voidOperatorInvalidOperations.js │ ├── voidOperatorInvalidOperations.symbols │ ├── voidOperatorInvalidOperations.types │ ├── voidOperatorWithAnyOtherType.errors.txt │ ├── voidOperatorWithAnyOtherType.js │ ├── voidOperatorWithAnyOtherType.symbols │ ├── voidOperatorWithAnyOtherType.types │ ├── voidOperatorWithBooleanType.js │ ├── voidOperatorWithBooleanType.symbols │ ├── voidOperatorWithBooleanType.types │ ├── voidOperatorWithEnumType.js │ ├── voidOperatorWithEnumType.symbols │ ├── voidOperatorWithEnumType.types │ ├── voidOperatorWithNumberType.js │ ├── voidOperatorWithNumberType.symbols │ ├── voidOperatorWithNumberType.types │ ├── voidOperatorWithStringType.js │ ├── voidOperatorWithStringType.symbols │ ├── voidOperatorWithStringType.types │ ├── voidParamAssignmentCompatibility.js │ ├── voidParamAssignmentCompatibility.symbols │ ├── voidParamAssignmentCompatibility.types │ ├── voidReturnIndexUnionInference.js │ ├── voidReturnIndexUnionInference.symbols │ ├── voidReturnIndexUnionInference.types │ ├── voidReturnLambdaValue.js │ ├── voidReturnLambdaValue.symbols │ ├── voidReturnLambdaValue.types │ ├── voidUndefinedReduction.js │ ├── voidUndefinedReduction.symbols │ ├── voidUndefinedReduction.types │ ├── vueLikeDataAndPropsInference.js │ ├── vueLikeDataAndPropsInference.symbols │ ├── vueLikeDataAndPropsInference.types │ ├── vueLikeDataAndPropsInference2.js │ ├── vueLikeDataAndPropsInference2.symbols │ ├── vueLikeDataAndPropsInference2.types │ ├── weakType.errors.txt │ ├── weakType.js │ ├── weakType.symbols │ ├── weakType.types │ ├── weakTypeAndPrimitiveNarrowing.js │ ├── weakTypeAndPrimitiveNarrowing.symbols │ ├── weakTypeAndPrimitiveNarrowing.types │ ├── weakTypesAndLiterals01.js │ ├── weakTypesAndLiterals01.symbols │ ├── weakTypesAndLiterals01.types │ ├── webworkerIterable.js │ ├── webworkerIterable.symbols │ ├── webworkerIterable.types │ ├── wellKnownSymbolExpando.symbols │ ├── wellKnownSymbolExpando.types │ ├── whileBreakStatements.js │ ├── whileBreakStatements.symbols │ ├── whileBreakStatements.types │ ├── whileContinueStatements.js │ ├── whileContinueStatements.symbols │ ├── whileContinueStatements.types │ ├── whileStatementInnerComments.js │ ├── whileStatementInnerComments.symbols │ ├── whileStatementInnerComments.types │ ├── widenToAny1.errors.txt │ ├── widenToAny1.js │ ├── widenToAny1.symbols │ ├── widenToAny1.types │ ├── widenToAny2.errors.txt │ ├── widenToAny2.js │ ├── widenToAny2.symbols │ ├── widenToAny2.types │ ├── widenedTypes.errors.txt │ ├── widenedTypes.js │ ├── widenedTypes.symbols │ ├── widenedTypes.types │ ├── widenedTypes1.js │ ├── widenedTypes1.symbols │ ├── widenedTypes1.types │ ├── wideningTuples1.js │ ├── wideningTuples1.symbols │ ├── wideningTuples1.types │ ├── wideningTuples2.js │ ├── wideningTuples2.symbols │ ├── wideningTuples2.types │ ├── wideningTuples3.errors.txt │ ├── wideningTuples3.js │ ├── wideningTuples3.symbols │ ├── wideningTuples3.types │ ├── wideningTuples4.errors.txt │ ├── wideningTuples4.js │ ├── wideningTuples4.symbols │ ├── wideningTuples4.types │ ├── wideningTuples5.errors.txt │ ├── wideningTuples5.js │ ├── wideningTuples5.symbols │ ├── wideningTuples5.types │ ├── wideningTuples6.js │ ├── wideningTuples6.symbols │ ├── wideningTuples6.types │ ├── wideningTuples7.errors.txt │ ├── wideningTuples7.js │ ├── wideningTuples7.symbols │ ├── wideningTuples7.types │ ├── wideningWithTopLevelTypeParameter.symbols │ ├── wideningWithTopLevelTypeParameter.types │ ├── withExportDecl.errors.txt │ ├── withExportDecl.js │ ├── withExportDecl.symbols │ ├── withExportDecl.types │ ├── withImportDecl.errors.txt │ ├── withImportDecl.js │ ├── withImportDecl.symbols │ ├── withImportDecl.types │ ├── withStatement.errors.txt │ ├── withStatement.js │ ├── withStatement.symbols │ ├── withStatement.types │ ├── withStatementErrors.errors.txt │ ├── withStatementErrors.js │ ├── withStatementErrors.symbols │ ├── withStatementErrors.types │ ├── withStatementInternalComments.js │ ├── withStatementInternalComments.symbols │ ├── withStatementInternalComments.types │ ├── withStatementNestedScope.errors.txt │ ├── withStatementNestedScope.js │ ├── withStatementNestedScope.symbols │ ├── withStatementNestedScope.types │ ├── withStatements.errors.txt │ ├── withStatements.js │ ├── withStatements.symbols │ ├── withStatements.types │ ├── witness.errors.txt │ ├── witness.js │ ├── witness.symbols │ ├── witness.types │ ├── wrappedAndRecursiveConstraints.js │ ├── wrappedAndRecursiveConstraints.symbols │ ├── wrappedAndRecursiveConstraints.types │ ├── wrappedAndRecursiveConstraints2.js │ ├── wrappedAndRecursiveConstraints2.symbols │ ├── wrappedAndRecursiveConstraints2.types │ ├── wrappedAndRecursiveConstraints3.js │ ├── wrappedAndRecursiveConstraints3.symbols │ ├── wrappedAndRecursiveConstraints3.types │ ├── wrappedAndRecursiveConstraints4.errors.txt │ ├── wrappedAndRecursiveConstraints4.js │ ├── wrappedAndRecursiveConstraints4.symbols │ ├── wrappedAndRecursiveConstraints4.types │ ├── wrappedIncovations1.js │ ├── wrappedIncovations1.symbols │ ├── wrappedIncovations1.types │ ├── wrappedIncovations2.js │ ├── wrappedIncovations2.symbols │ ├── wrappedIncovations2.types │ ├── wrappedRecursiveGenericType.errors.txt │ ├── wrappedRecursiveGenericType.js │ ├── wrappedRecursiveGenericType.symbols │ ├── wrappedRecursiveGenericType.types │ ├── yieldExpression1.errors.txt │ ├── yieldExpression1.js │ ├── yieldExpression1.symbols │ ├── yieldExpression1.types │ ├── yieldExpressionInControlFlow.errors.txt │ ├── yieldExpressionInControlFlow.symbols │ ├── yieldExpressionInControlFlow.types │ ├── yieldExpressionInFlowLoop.errors.txt │ ├── yieldExpressionInFlowLoop.js │ ├── yieldExpressionInFlowLoop.symbols │ ├── yieldExpressionInFlowLoop.types │ ├── yieldExpressionInnerCommentEmit.js │ ├── yieldExpressionInnerCommentEmit.symbols │ ├── yieldExpressionInnerCommentEmit.types │ ├── yieldInForInInDownlevelGenerator(target=es2015).js │ ├── yieldInForInInDownlevelGenerator(target=es2015).symbols │ ├── yieldInForInInDownlevelGenerator(target=es2015).types │ ├── yieldInForInInDownlevelGenerator(target=es5).errors.txt │ ├── yieldInForInInDownlevelGenerator(target=es5).js │ ├── yieldInForInInDownlevelGenerator(target=es5).symbols │ ├── yieldInForInInDownlevelGenerator(target=es5).types │ ├── yieldStarContextualType.symbols │ ├── yieldStarContextualType.types │ ├── yieldStatementNoAsiAfterTransform(target=es5).errors.txt │ ├── yieldStatementNoAsiAfterTransform(target=es5).js │ ├── yieldStatementNoAsiAfterTransform(target=esnext).js │ ├── yieldStringLiteral.errors.txt │ ├── yieldStringLiteral.js │ ├── yieldStringLiteral.symbols │ └── yieldStringLiteral.types ├── cases/ │ ├── compiler/ │ │ ├── 2dArrays.ts │ │ ├── APILibCheck.ts │ │ ├── APISample_Watch.ts │ │ ├── APISample_WatchWithDefaults.ts │ │ ├── APISample_WatchWithOwnWatchHost.ts │ │ ├── APISample_compile.ts │ │ ├── APISample_jsdoc.ts │ │ ├── APISample_linter.ts │ │ ├── APISample_parseConfig.ts │ │ ├── APISample_transform.ts │ │ ├── APISample_watcher.ts │ │ ├── ArrowFunctionExpression1.ts │ │ ├── ClassDeclaration10.ts │ │ ├── ClassDeclaration11.ts │ │ ├── ClassDeclaration13.ts │ │ ├── ClassDeclaration14.ts │ │ ├── ClassDeclaration15.ts │ │ ├── ClassDeclaration21.ts │ │ ├── ClassDeclaration22.ts │ │ ├── ClassDeclaration24.ts │ │ ├── ClassDeclaration25.ts │ │ ├── ClassDeclaration26.ts │ │ ├── ClassDeclaration8.ts │ │ ├── ClassDeclaration9.ts │ │ ├── ClassDeclarationWithInvalidConstOnPropertyDeclaration.ts │ │ ├── ClassDeclarationWithInvalidConstOnPropertyDeclaration2.ts │ │ ├── DeclarationErrorsNoEmitOnError.ts │ │ ├── ExportAssignment7.ts │ │ ├── ExportAssignment8.ts │ │ ├── FunctionDeclaration3.ts │ │ ├── FunctionDeclaration4.ts │ │ ├── FunctionDeclaration6.ts │ │ ├── FunctionDeclaration7.ts │ │ ├── InterfaceDeclaration8.ts │ │ ├── MemberAccessorDeclaration15.ts │ │ ├── ParameterList13.ts │ │ ├── ParameterList4.ts │ │ ├── ParameterList5.ts │ │ ├── ParameterList6.ts │ │ ├── ParameterList7.ts │ │ ├── ParameterList8.ts │ │ ├── SystemModuleForStatementNoInitializer.ts │ │ ├── TransportStream.ts │ │ ├── abstractClassInLocalScope.ts │ │ ├── abstractClassInLocalScopeIsAbstract.ts │ │ ├── abstractClassUnionInstantiation.ts │ │ ├── abstractIdentifierNameStrict.ts │ │ ├── abstractInterfaceIdentifierName.ts │ │ ├── abstractPropertyBasics.ts │ │ ├── abstractPropertyInConstructor.ts │ │ ├── abstractPropertyNegative.ts │ │ ├── acceptSymbolAsWeakType.ts │ │ ├── acceptableAlias1.ts │ │ ├── accessInstanceMemberFromStaticMethod01.ts │ │ ├── accessOverriddenBaseClassMember1.ts │ │ ├── accessStaticMemberFromInstanceMethod01.ts │ │ ├── accessorAccidentalCallDiagnostic.ts │ │ ├── accessorBodyInTypeContext.ts │ │ ├── accessorDeclarationEmitJs.ts │ │ ├── accessorDeclarationEmitVisibilityErrors.ts │ │ ├── accessorDeclarationOrder.ts │ │ ├── accessorInAmbientContextES5.ts │ │ ├── accessorInferredReturnTypeErrorInReturnStatement.ts │ │ ├── accessorParameterAccessibilityModifier.ts │ │ ├── accessorWithInitializer.ts │ │ ├── accessorWithLineTerminator.ts │ │ ├── accessorWithRestParam.ts │ │ ├── accessorWithoutBody1.ts │ │ ├── accessorWithoutBody2.ts │ │ ├── accessorsEmit.ts │ │ ├── accessorsInAmbientContext.ts │ │ ├── accessors_spec_section-4.5_error-cases.ts │ │ ├── accessors_spec_section-4.5_inference.ts │ │ ├── addMoreCallSignaturesToBaseSignature.ts │ │ ├── addMoreCallSignaturesToBaseSignature2.ts │ │ ├── addMoreOverloadsToBaseSignature.ts │ │ ├── aliasAssignments.ts │ │ ├── aliasBug.ts │ │ ├── aliasDoesNotDuplicateSignatures.ts │ │ ├── aliasErrors.ts │ │ ├── aliasInaccessibleModule.ts │ │ ├── aliasInaccessibleModule2.ts │ │ ├── aliasInstantiationExpressionGenericIntersectionNoCrash1.ts │ │ ├── aliasInstantiationExpressionGenericIntersectionNoCrash2.ts │ │ ├── aliasOfGenericFunctionWithRestBehavedSameAsUnaliased.ts │ │ ├── aliasOnMergedModuleInterface.ts │ │ ├── aliasUsageInAccessorsOfClass.ts │ │ ├── aliasUsageInArray.ts │ │ ├── aliasUsageInFunctionExpression.ts │ │ ├── aliasUsageInGenericFunction.ts │ │ ├── aliasUsageInIndexerOfClass.ts │ │ ├── aliasUsageInObjectLiteral.ts │ │ ├── aliasUsageInOrExpression.ts │ │ ├── aliasUsageInTypeArgumentOfExtendsClause.ts │ │ ├── aliasUsageInVarAssignment.ts │ │ ├── aliasUsedAsNameValue.ts │ │ ├── aliasWithInterfaceExportAssignmentUsedInVarInitializer.ts │ │ ├── aliasesInSystemModule1.ts │ │ ├── aliasesInSystemModule2.ts │ │ ├── allowImportClausesToMergeWithTypes.ts │ │ ├── allowJsClassThisTypeCrash.ts │ │ ├── allowJsCrossMonorepoPackage.ts │ │ ├── allowJscheckJsTypeParameterNoCrash.ts │ │ ├── allowSyntheticDefaultImports1.ts │ │ ├── allowSyntheticDefaultImports10.ts │ │ ├── allowSyntheticDefaultImports2.ts │ │ ├── allowSyntheticDefaultImports3.ts │ │ ├── allowSyntheticDefaultImports4.ts │ │ ├── allowSyntheticDefaultImports5.ts │ │ ├── allowSyntheticDefaultImports6.ts │ │ ├── allowSyntheticDefaultImports7.ts │ │ ├── allowSyntheticDefaultImports8.ts │ │ ├── allowSyntheticDefaultImports9.ts │ │ ├── allowSyntheticDefaultImportsCanPaintCrossModuleDeclaration.ts │ │ ├── alwaysStrict.ts │ │ ├── alwaysStrictAlreadyUseStrict.ts │ │ ├── alwaysStrictES6.ts │ │ ├── alwaysStrictModule.ts │ │ ├── alwaysStrictModule2.ts │ │ ├── alwaysStrictModule3.ts │ │ ├── alwaysStrictModule4.ts │ │ ├── alwaysStrictModule5.ts │ │ ├── alwaysStrictModule6.ts │ │ ├── alwaysStrictNoImplicitUseStrict.ts │ │ ├── ambientClassDeclarationWithExtends.ts │ │ ├── ambientClassDeclaredBeforeBase.ts │ │ ├── ambientClassMergesOverloadsWithInterface.ts │ │ ├── ambientClassOverloadForFunction.ts │ │ ├── ambientConstLiterals.ts │ │ ├── ambientEnum1.ts │ │ ├── ambientEnumElementInitializer1.ts │ │ ├── ambientEnumElementInitializer2.ts │ │ ├── ambientEnumElementInitializer3.ts │ │ ├── ambientEnumElementInitializer4.ts │ │ ├── ambientEnumElementInitializer5.ts │ │ ├── ambientEnumElementInitializer6.ts │ │ ├── ambientErrors1.ts │ │ ├── ambientExportDefaultErrors.ts │ │ ├── ambientExternalModuleInAnotherExternalModule.ts │ │ ├── ambientExternalModuleReopen.ts │ │ ├── ambientExternalModuleWithInternalImportDeclaration.ts │ │ ├── ambientExternalModuleWithRelativeExternalImportDeclaration.ts │ │ ├── ambientExternalModuleWithRelativeModuleName.ts │ │ ├── ambientExternalModuleWithoutInternalImportDeclaration.ts │ │ ├── ambientFundule.ts │ │ ├── ambientGetters.ts │ │ ├── ambientModuleExports.ts │ │ ├── ambientModuleWithClassDeclarationWithExtends.ts │ │ ├── ambientModuleWithTemplateLiterals.ts │ │ ├── ambientModules.ts │ │ ├── ambientNameRestrictions.ts │ │ ├── ambientPropertyDeclarationInJs.ts │ │ ├── ambientRequireFunction.ts │ │ ├── ambientStatement1.ts │ │ ├── ambientWithStatements.ts │ │ ├── ambiguousCallsWhereReturnTypesAgree.ts │ │ ├── ambiguousGenericAssertion1.ts │ │ ├── ambiguousOverload.ts │ │ ├── ambiguousOverloadResolution.ts │ │ ├── amdDeclarationEmitNoExtraDeclare.ts │ │ ├── amdDependencyComment1.ts │ │ ├── amdDependencyComment2.ts │ │ ├── amdDependencyCommentName1.ts │ │ ├── amdDependencyCommentName2.ts │ │ ├── amdDependencyCommentName3.ts │ │ ├── amdDependencyCommentName4.ts │ │ ├── amdLikeInputDeclarationEmit.ts │ │ ├── amdModuleBundleNoDuplicateDeclarationEmitComments.ts │ │ ├── amdModuleConstEnumUsage.ts │ │ ├── amdModuleName1.ts │ │ ├── amdModuleName2.ts │ │ ├── anonClassDeclarationEmitIsAnon.ts │ │ ├── anonterface.ts │ │ ├── anonymousClassDeclarationDoesntPrintWithReadonly.ts │ │ ├── anonymousClassExpression1.ts │ │ ├── anonymousClassExpression2.ts │ │ ├── anonymousModules.ts │ │ ├── anyAndUnknownHaveFalsyComponents.ts │ │ ├── anyAsReturnTypeForNewOnCall.ts │ │ ├── anyDeclare.ts │ │ ├── anyIdenticalToItself.ts │ │ ├── anyIndexedAccessArrayNoException.ts │ │ ├── anyInferenceAnonymousFunctions.ts │ │ ├── anyIsAssignableToObject.ts │ │ ├── anyIsAssignableToVoid.ts │ │ ├── anyMappedTypesError.ts │ │ ├── anyPlusAny1.ts │ │ ├── argsInScope.ts │ │ ├── arguments.ts │ │ ├── argumentsAsPropertyName.ts │ │ ├── argumentsAsPropertyName2.ts │ │ ├── argumentsBindsToFunctionScopeArgumentList.ts │ │ ├── argumentsObjectCreatesRestForJs.ts │ │ ├── argumentsObjectIterator01_ES5.ts │ │ ├── argumentsObjectIterator01_ES6.ts │ │ ├── argumentsObjectIterator02_ES5.ts │ │ ├── argumentsObjectIterator02_ES6.ts │ │ ├── argumentsObjectIterator03_ES5.ts │ │ ├── argumentsObjectIterator03_ES6.ts │ │ ├── argumentsPropertyNameInJsMode1.ts │ │ ├── argumentsPropertyNameInJsMode2.ts │ │ ├── argumentsReferenceInConstructor1_Js.ts │ │ ├── argumentsReferenceInConstructor2_Js.ts │ │ ├── argumentsReferenceInConstructor3_Js.ts │ │ ├── argumentsReferenceInConstructor4_Js.ts │ │ ├── argumentsReferenceInConstructor5_Js.ts │ │ ├── argumentsReferenceInConstructor6_Js.ts │ │ ├── argumentsReferenceInConstructor7_Js.ts │ │ ├── argumentsReferenceInFunction1_Js.ts │ │ ├── argumentsReferenceInMethod1_Js.ts │ │ ├── argumentsReferenceInMethod2_Js.ts │ │ ├── argumentsReferenceInMethod3_Js.ts │ │ ├── argumentsReferenceInMethod4_Js.ts │ │ ├── argumentsReferenceInMethod5_Js.ts │ │ ├── argumentsReferenceInMethod6_Js.ts │ │ ├── argumentsReferenceInMethod7_Js.ts │ │ ├── argumentsReferenceInObjectLiteral_Js.ts │ │ ├── argumentsSpreadRestIterables.tsx │ │ ├── argumentsUsedInClassFieldInitializerOrStaticInitializationBlock.ts │ │ ├── argumentsUsedInObjectLiteralProperty.ts │ │ ├── arithAssignTyping.ts │ │ ├── arithmeticOnInvalidTypes.ts │ │ ├── arithmeticOnInvalidTypes2.ts │ │ ├── arityErrorRelatedSpanBindingPattern.ts │ │ ├── arrayAssignmentTest1.ts │ │ ├── arrayAssignmentTest2.ts │ │ ├── arrayAssignmentTest3.ts │ │ ├── arrayAssignmentTest4.ts │ │ ├── arrayAssignmentTest5.ts │ │ ├── arrayAssignmentTest6.ts │ │ ├── arrayAugment.ts │ │ ├── arrayBestCommonTypes.ts │ │ ├── arrayBindingPatternOmittedExpressions.ts │ │ ├── arrayBufferIsViewNarrowsType.ts │ │ ├── arrayCast.ts │ │ ├── arrayConcat2.ts │ │ ├── arrayConcat3.ts │ │ ├── arrayConcatMap.ts │ │ ├── arrayConstructors1.ts │ │ ├── arrayDestructuringInSwitch1.ts │ │ ├── arrayDestructuringInSwitch2.ts │ │ ├── arrayEvery.ts │ │ ├── arrayFakeFlatNoCrashInferenceDeclarations.ts │ │ ├── arrayFilter.ts │ │ ├── arrayFind.ts │ │ ├── arrayFlatMap.ts │ │ ├── arrayFlatNoCrashInference.ts │ │ ├── arrayFlatNoCrashInferenceDeclarations.ts │ │ ├── arrayFrom.ts │ │ ├── arrayFromAsync.ts │ │ ├── arrayIndexWithArrayFails.ts │ │ ├── arrayIterationLibES5TargetDifferent.ts │ │ ├── arrayLiteral1.ts │ │ ├── arrayLiteral2.ts │ │ ├── arrayLiteralAndArrayConstructorEquivalence1.ts │ │ ├── arrayLiteralComments.ts │ │ ├── arrayLiteralContextualType.ts │ │ ├── arrayLiteralInNonVarArgParameter.ts │ │ ├── arrayLiteralTypeInference.ts │ │ ├── arrayOfExportedClass.ts │ │ ├── arrayOfSubtypeIsAssignableToReadonlyArray.ts │ │ ├── arrayReferenceWithoutTypeArgs.ts │ │ ├── arraySigChecking.ts │ │ ├── arraySlice.ts │ │ ├── arrayToLocaleStringES2015.ts │ │ ├── arrayToLocaleStringES2020.ts │ │ ├── arrayToLocaleStringES5.ts │ │ ├── arrayTypeInSignatureOfInterfaceAndClass.ts │ │ ├── arrayconcat.ts │ │ ├── arrowExpressionBodyJSDoc.ts │ │ ├── arrowExpressionJs.ts │ │ ├── arrowFunctionErrorSpan.ts │ │ ├── arrowFunctionInConstructorArgument1.ts │ │ ├── arrowFunctionInExpressionStatement1.ts │ │ ├── arrowFunctionInExpressionStatement2.ts │ │ ├── arrowFunctionJSDocAnnotation.ts │ │ ├── arrowFunctionMissingCurlyWithSemicolon.ts │ │ ├── arrowFunctionParsingDoesNotConfuseParenthesizedObjectForArrowHead.ts │ │ ├── arrowFunctionParsingGenericInObject.ts │ │ ├── arrowFunctionWithObjectLiteralBody1.ts │ │ ├── arrowFunctionWithObjectLiteralBody2.ts │ │ ├── arrowFunctionWithObjectLiteralBody3.ts │ │ ├── arrowFunctionWithObjectLiteralBody4.ts │ │ ├── arrowFunctionWithObjectLiteralBody5.ts │ │ ├── arrowFunctionWithObjectLiteralBody6.ts │ │ ├── arrowFunctionsMissingTokens.ts │ │ ├── asiAbstract.ts │ │ ├── asiAmbientFunctionDeclaration.ts │ │ ├── asiArith.ts │ │ ├── asiBreak.ts │ │ ├── asiContinue.ts │ │ ├── asiInES6Classes.ts │ │ ├── asiPublicPrivateProtected.ts │ │ ├── asiReturn.ts │ │ ├── assertInWrapSomeTypeParameter.ts │ │ ├── assertionFunctionWildcardImport1.ts │ │ ├── assertionFunctionWildcardImport2.ts │ │ ├── assertionFunctionsCanNarrowByDiscriminant.ts │ │ ├── assign1.ts │ │ ├── assignLambdaToNominalSubtypeOfFunction.ts │ │ ├── assignToEnum.ts │ │ ├── assignToExistingClass.ts │ │ ├── assignToFn.ts │ │ ├── assignToInvalidLHS.ts │ │ ├── assignToModule.ts │ │ ├── assignToObjectTypeWithPrototypeProperty.ts │ │ ├── assignToPrototype1.ts │ │ ├── assigningFromObjectToAnythingElse.ts │ │ ├── assigningFunctionToTupleIssuesError.ts │ │ ├── assignmentCompat1.ts │ │ ├── assignmentCompatBug2.ts │ │ ├── assignmentCompatBug3.ts │ │ ├── assignmentCompatBug5.ts │ │ ├── assignmentCompatForEnums.ts │ │ ├── assignmentCompatFunctionsWithOptionalArgs.ts │ │ ├── assignmentCompatInterfaceWithStringIndexSignature.ts │ │ ├── assignmentCompatOnNew.ts │ │ ├── assignmentCompatWithOverloads.ts │ │ ├── assignmentCompatability1.ts │ │ ├── assignmentCompatability10.ts │ │ ├── assignmentCompatability11.ts │ │ ├── assignmentCompatability12.ts │ │ ├── assignmentCompatability13.ts │ │ ├── assignmentCompatability14.ts │ │ ├── assignmentCompatability15.ts │ │ ├── assignmentCompatability16.ts │ │ ├── assignmentCompatability17.ts │ │ ├── assignmentCompatability18.ts │ │ ├── assignmentCompatability19.ts │ │ ├── assignmentCompatability2.ts │ │ ├── assignmentCompatability20.ts │ │ ├── assignmentCompatability21.ts │ │ ├── assignmentCompatability22.ts │ │ ├── assignmentCompatability23.ts │ │ ├── assignmentCompatability24.ts │ │ ├── assignmentCompatability25.ts │ │ ├── assignmentCompatability26.ts │ │ ├── assignmentCompatability27.ts │ │ ├── assignmentCompatability28.ts │ │ ├── assignmentCompatability29.ts │ │ ├── assignmentCompatability3.ts │ │ ├── assignmentCompatability30.ts │ │ ├── assignmentCompatability31.ts │ │ ├── assignmentCompatability32.ts │ │ ├── assignmentCompatability33.ts │ │ ├── assignmentCompatability34.ts │ │ ├── assignmentCompatability35.ts │ │ ├── assignmentCompatability36.ts │ │ ├── assignmentCompatability37.ts │ │ ├── assignmentCompatability38.ts │ │ ├── assignmentCompatability39.ts │ │ ├── assignmentCompatability4.ts │ │ ├── assignmentCompatability40.ts │ │ ├── assignmentCompatability41.ts │ │ ├── assignmentCompatability42.ts │ │ ├── assignmentCompatability43.ts │ │ ├── assignmentCompatability44.ts │ │ ├── assignmentCompatability45.ts │ │ ├── assignmentCompatability46.ts │ │ ├── assignmentCompatability5.ts │ │ ├── assignmentCompatability6.ts │ │ ├── assignmentCompatability7.ts │ │ ├── assignmentCompatability8.ts │ │ ├── assignmentCompatability9.ts │ │ ├── assignmentCompatability_checking-apply-member-off-of-function-interface.ts │ │ ├── assignmentCompatability_checking-call-member-off-of-function-interface.ts │ │ ├── assignmentCompatibilityForConstrainedTypeParameters.ts │ │ ├── assignmentIndexedToPrimitives.ts │ │ ├── assignmentNestedInLiterals.ts │ │ ├── assignmentNonObjectTypeConstraints.ts │ │ ├── assignmentRestElementWithErrorSourceType.ts │ │ ├── assignmentStricterConstraints.ts │ │ ├── assignmentToAnyArrayRestParameters.ts │ │ ├── assignmentToConditionalBrandedStringTemplateOrMapping.ts │ │ ├── assignmentToExpandingArrayType.ts │ │ ├── assignmentToFunction.ts │ │ ├── assignmentToInstantiationExpression.ts │ │ ├── assignmentToObject.ts │ │ ├── assignmentToObjectAndFunction.ts │ │ ├── assignmentToParenthesizedExpression1.ts │ │ ├── assignmentToReferenceTypes.ts │ │ ├── asyncArrowInClassES5.ts │ │ ├── asyncAwaitWithCapturedBlockScopeVar.ts │ │ ├── asyncFunctionContextuallyTypedReturns.ts │ │ ├── asyncFunctionNoReturnType.ts │ │ ├── asyncFunctionReturnExpressionErrorSpans.ts │ │ ├── asyncFunctionReturnType.2.ts │ │ ├── asyncFunctionReturnType.ts │ │ ├── asyncFunctionTempVariableScoping.ts │ │ ├── asyncFunctionWithForStatementNoInitializer.ts │ │ ├── asyncFunctionsAcrossFiles.ts │ │ ├── asyncFunctionsAndStrictNullChecks.ts │ │ ├── asyncIIFE.ts │ │ ├── asyncImportNestedYield.ts │ │ ├── asyncIteratorExtraParameters.ts │ │ ├── asyncYieldStarContextualType.ts │ │ ├── augmentArray.ts │ │ ├── augmentExportEquals1.ts │ │ ├── augmentExportEquals1_1.ts │ │ ├── augmentExportEquals2.ts │ │ ├── augmentExportEquals2_1.ts │ │ ├── augmentExportEquals3.ts │ │ ├── augmentExportEquals3_1.ts │ │ ├── augmentExportEquals4.ts │ │ ├── augmentExportEquals4_1.ts │ │ ├── augmentExportEquals5.ts │ │ ├── augmentExportEquals6.ts │ │ ├── augmentExportEquals6_1.ts │ │ ├── augmentExportEquals7.ts │ │ ├── augmentedClassWithPrototypePropertyOnModule.ts │ │ ├── augmentedTypeBracketNamedPropertyAccess.ts │ │ ├── augmentedTypesClass.ts │ │ ├── augmentedTypesClass2.ts │ │ ├── augmentedTypesClass2a.ts │ │ ├── augmentedTypesClass3.ts │ │ ├── augmentedTypesClass4.ts │ │ ├── augmentedTypesEnum.ts │ │ ├── augmentedTypesEnum2.ts │ │ ├── augmentedTypesEnum3.ts │ │ ├── augmentedTypesExternalModule1.ts │ │ ├── augmentedTypesFunction.ts │ │ ├── augmentedTypesInterface.ts │ │ ├── augmentedTypesModules.ts │ │ ├── augmentedTypesModules2.ts │ │ ├── augmentedTypesModules3.ts │ │ ├── augmentedTypesModules3b.ts │ │ ├── augmentedTypesModules4.ts │ │ ├── augmentedTypesVar.ts │ │ ├── autoAsiForStaticsInClassDeclaration.ts │ │ ├── autoLift2.ts │ │ ├── autoTypeAssignedUsingDestructuringFromNeverNoCrash.ts │ │ ├── autolift3.ts │ │ ├── autolift4.ts │ │ ├── autonumberingInEnums.ts │ │ ├── avoid.ts │ │ ├── avoidCycleWithVoidExpressionReturnedFromArrow.ts │ │ ├── avoidListingPropertiesForTypesWithOnlyCallOrConstructSignatures.ts │ │ ├── avoidNarrowingUsingConstVariableFromBindingElementWithLiteralInitializer.ts │ │ ├── awaitCallExpressionInSyncFunction.ts │ │ ├── awaitExpressionInnerCommentEmit.ts │ │ ├── awaitInClassInAsyncFunction.ts │ │ ├── awaitInNonAsyncFunction.ts │ │ ├── awaitLiteralValues.ts │ │ ├── awaitUnionPromise.ts │ │ ├── awaitedType.ts │ │ ├── awaitedTypeCrash.ts │ │ ├── awaitedTypeJQuery.ts │ │ ├── awaitedTypeNoLib.ts │ │ ├── awaitedTypeStrictNull.ts │ │ ├── badArrayIndex.ts │ │ ├── badArraySyntax.ts │ │ ├── badExternalModuleReference.ts │ │ ├── badInferenceLowerPriorityThanGoodInference.ts │ │ ├── badOverloadError.ts │ │ ├── badThisBinding.ts │ │ ├── bangInModuleName.ts │ │ ├── baseCheck.ts │ │ ├── baseClassImprovedMismatchErrors.ts │ │ ├── baseConstraintOfDecorator.ts │ │ ├── baseExpressionTypeParameters.ts │ │ ├── baseIndexSignatureResolution.ts │ │ ├── baseTypeAfterDerivedType.ts │ │ ├── baseTypeOrderChecking.ts │ │ ├── baseTypePrivateMemberClash.ts │ │ ├── baseTypeWrappingInstantiationChain.ts │ │ ├── bases.ts │ │ ├── bestChoiceType.ts │ │ ├── bestCommonTypeReturnStatement.ts │ │ ├── bestCommonTypeWithContextualTyping.ts │ │ ├── bestCommonTypeWithOptionalProperties.ts │ │ ├── betterErrorForAccidentalCall.ts │ │ ├── betterErrorForUnionCall.ts │ │ ├── bigIntWithTargetES2016.ts │ │ ├── bigIntWithTargetLessThanES2016.ts │ │ ├── bigint64ArraySubarray.ts │ │ ├── bigintAmbientMinimal.ts │ │ ├── bigintArbirtraryIdentifier.ts │ │ ├── bigintIndex.ts │ │ ├── bigintPropertyName.ts │ │ ├── bigintWithLib.ts │ │ ├── bigintWithoutLib.ts │ │ ├── binaryArithmatic1.ts │ │ ├── binaryArithmatic2.ts │ │ ├── binaryArithmatic3.ts │ │ ├── binaryArithmatic4.ts │ │ ├── binaryArithmeticControlFlowGraphNotTooLarge.ts │ │ ├── bind1.ts │ │ ├── bind2.ts │ │ ├── binderBinaryExpressionStress.ts │ │ ├── binderBinaryExpressionStressJs.ts │ │ ├── bindingPatternCannotBeOnlyInferenceSource.ts │ │ ├── bindingPatternContextualTypeDoesNotCauseWidening.ts │ │ ├── bindingPatternInParameter01.ts │ │ ├── bindingPatternOmittedExpressionNesting.ts │ │ ├── binopAssignmentShouldHaveType.ts │ │ ├── bitwiseCompoundAssignmentOperators.ts │ │ ├── blockScopedBindingCaptureThisInFunction.ts │ │ ├── blockScopedBindingUsedBeforeDef.ts │ │ ├── blockScopedBindingsInDownlevelGenerator.ts │ │ ├── blockScopedBindingsReassignedInLoop1.ts │ │ ├── blockScopedBindingsReassignedInLoop2.ts │ │ ├── blockScopedBindingsReassignedInLoop3.ts │ │ ├── blockScopedBindingsReassignedInLoop4.ts │ │ ├── blockScopedBindingsReassignedInLoop5.ts │ │ ├── blockScopedBindingsReassignedInLoop6.ts │ │ ├── blockScopedClassDeclarationAcrossFiles.ts │ │ ├── blockScopedEnumVariablesUseBeforeDef.ts │ │ ├── blockScopedEnumVariablesUseBeforeDef_isolatedModules.ts │ │ ├── blockScopedEnumVariablesUseBeforeDef_preserve.ts │ │ ├── blockScopedEnumVariablesUseBeforeDef_verbatimModuleSyntax.ts │ │ ├── blockScopedFunctionDeclarationES5.ts │ │ ├── blockScopedFunctionDeclarationES6.ts │ │ ├── blockScopedFunctionDeclarationInStrictClass.ts │ │ ├── blockScopedFunctionDeclarationInStrictModule.ts │ │ ├── blockScopedFunctionDeclarationStrictES5.ts │ │ ├── blockScopedFunctionDeclarationStrictES6.ts │ │ ├── blockScopedNamespaceDifferentFile.ts │ │ ├── blockScopedSameNameFunctionDeclarationES5.ts │ │ ├── blockScopedSameNameFunctionDeclarationES6.ts │ │ ├── blockScopedSameNameFunctionDeclarationStrictES5.ts │ │ ├── blockScopedSameNameFunctionDeclarationStrictES6.ts │ │ ├── blockScopedVariablesUseBeforeDef.ts │ │ ├── bluebirdStaticThis.ts │ │ ├── bom-utf16be.ts │ │ ├── bom-utf16le.ts │ │ ├── bom-utf8.ts │ │ ├── booleanAssignment.ts │ │ ├── booleanFilterAnyArray.ts │ │ ├── booleanLiteralsContextuallyTypedFromUnion.tsx │ │ ├── breakInIterationOrSwitchStatement1.ts │ │ ├── breakInIterationOrSwitchStatement2.ts │ │ ├── breakInIterationOrSwitchStatement3.ts │ │ ├── breakInIterationOrSwitchStatement4.ts │ │ ├── breakNotInIterationOrSwitchStatement1.ts │ │ ├── breakNotInIterationOrSwitchStatement2.ts │ │ ├── breakTarget1.ts │ │ ├── breakTarget2.ts │ │ ├── breakTarget3.ts │ │ ├── breakTarget4.ts │ │ ├── breakTarget5.ts │ │ ├── breakTarget6.ts │ │ ├── builtinIterator.ts │ │ ├── bundledDtsLateExportRenaming.ts │ │ ├── cacheResolutions.ts │ │ ├── cachedContextualTypes.ts │ │ ├── cachedModuleResolution1.ts │ │ ├── cachedModuleResolution2.ts │ │ ├── cachedModuleResolution3.ts │ │ ├── cachedModuleResolution4.ts │ │ ├── cachedModuleResolution5.ts │ │ ├── cachedModuleResolution6.ts │ │ ├── cachedModuleResolution7.ts │ │ ├── cachedModuleResolution8.ts │ │ ├── cachedModuleResolution9.ts │ │ ├── callConstructAssignment.ts │ │ ├── callExpressionWithMissingTypeArgument1.ts │ │ ├── callExpressionWithTypeParameterConstrainedToOuterTypeParameter.ts │ │ ├── callOfConditionalTypeWithConcreteBranches.ts │ │ ├── callOnClass.ts │ │ ├── callOnInstance.ts │ │ ├── callOverloadViaElementAccessExpression.ts │ │ ├── callOverloads1.ts │ │ ├── callOverloads2.ts │ │ ├── callOverloads3.ts │ │ ├── callOverloads4.ts │ │ ├── callOverloads5.ts │ │ ├── callSignatureFunctionOverload.ts │ │ ├── callSignaturesShouldBeResolvedBeforeSpecialization.ts │ │ ├── callWithWrongNumberOfTypeArguments.ts │ │ ├── callbackArgsDifferByOptionality.ts │ │ ├── callbacksDontShareTypes.ts │ │ ├── callsOnComplexSignatures.tsx │ │ ├── cannotIndexGenericWritingError.ts │ │ ├── cannotInvokeNewOnErrorExpression.ts │ │ ├── cannotInvokeNewOnIndexExpression.ts │ │ ├── captureSuperPropertyAccessInSuperCall01.ts │ │ ├── captureThisInSuperCall.ts │ │ ├── capturedLetConstInLoop1.ts │ │ ├── capturedLetConstInLoop10.ts │ │ ├── capturedLetConstInLoop10_ES6.ts │ │ ├── capturedLetConstInLoop11.ts │ │ ├── capturedLetConstInLoop11_ES6.ts │ │ ├── capturedLetConstInLoop12.ts │ │ ├── capturedLetConstInLoop13.ts │ │ ├── capturedLetConstInLoop14.ts │ │ ├── capturedLetConstInLoop1_ES6.ts │ │ ├── capturedLetConstInLoop2.ts │ │ ├── capturedLetConstInLoop2_ES6.ts │ │ ├── capturedLetConstInLoop3.ts │ │ ├── capturedLetConstInLoop3_ES6.ts │ │ ├── capturedLetConstInLoop4.ts │ │ ├── capturedLetConstInLoop4_ES6.ts │ │ ├── capturedLetConstInLoop5.ts │ │ ├── capturedLetConstInLoop5_ES6.ts │ │ ├── capturedLetConstInLoop6.ts │ │ ├── capturedLetConstInLoop6_ES6.ts │ │ ├── capturedLetConstInLoop7.ts │ │ ├── capturedLetConstInLoop7_ES6.ts │ │ ├── capturedLetConstInLoop8.ts │ │ ├── capturedLetConstInLoop8_ES6.ts │ │ ├── capturedLetConstInLoop9.ts │ │ ├── capturedLetConstInLoop9_ES6.ts │ │ ├── capturedParametersInInitializers1.ts │ │ ├── capturedParametersInInitializers2.ts │ │ ├── capturedShorthandPropertyAssignmentNoCheck.ts │ │ ├── capturedVarInLoop.ts │ │ ├── caseInsensitiveFileSystemWithCapsImportTypeDeclarations.ts │ │ ├── castExpressionParentheses.ts │ │ ├── castFunctionExpressionShouldBeParenthesized.ts │ │ ├── castNewObjectBug.ts │ │ ├── castOfAwait.ts │ │ ├── castOfYield.ts │ │ ├── castParentheses.ts │ │ ├── castTest.ts │ │ ├── catch.ts │ │ ├── catchClauseWithInitializer1.ts │ │ ├── cf.ts │ │ ├── chainedAssignment1.ts │ │ ├── chainedAssignment2.ts │ │ ├── chainedAssignment3.ts │ │ ├── chainedAssignmentChecking.ts │ │ ├── chainedCallsWithTypeParameterConstrainedToOtherTypeParameter.ts │ │ ├── chainedCallsWithTypeParameterConstrainedToOtherTypeParameter2.ts │ │ ├── chainedImportAlias.ts │ │ ├── chainedSpecializationToObjectTypeLiteral.ts │ │ ├── checkDestructuringShorthandAssigment.ts │ │ ├── checkDestructuringShorthandAssigment2.ts │ │ ├── checkForObjectTooStrict.ts │ │ ├── checkIndexConstraintOfJavascriptClassExpression.ts │ │ ├── checkInfiniteExpansionTermination.ts │ │ ├── checkInfiniteExpansionTermination2.ts │ │ ├── checkInheritedProperty.ts │ │ ├── checkInterfaceBases.ts │ │ ├── checkJsFiles.ts │ │ ├── checkJsFiles2.ts │ │ ├── checkJsFiles3.ts │ │ ├── checkJsFiles4.ts │ │ ├── checkJsFiles5.ts │ │ ├── checkJsFiles6.ts │ │ ├── checkJsFiles7.ts │ │ ├── checkJsFiles_noErrorLocation.ts │ │ ├── checkJsFiles_skipDiagnostics.ts │ │ ├── checkJsObjectLiteralHasCheckedKeyof.ts │ │ ├── checkJsObjectLiteralIndexSignatures.ts │ │ ├── checkJsTypeDefNoUnusedLocalMarked.ts │ │ ├── checkJsdocTypeTagOnExportAssignment1.ts │ │ ├── checkJsdocTypeTagOnExportAssignment2.ts │ │ ├── checkJsdocTypeTagOnExportAssignment3.ts │ │ ├── checkJsdocTypeTagOnExportAssignment4.ts │ │ ├── checkJsdocTypeTagOnExportAssignment5.ts │ │ ├── checkJsdocTypeTagOnExportAssignment6.ts │ │ ├── checkJsdocTypeTagOnExportAssignment7.ts │ │ ├── checkJsdocTypeTagOnExportAssignment8.ts │ │ ├── checkJsxNotSetError.ts │ │ ├── checkMergedGlobalUMDSymbol.ts │ │ ├── checkSuperCallBeforeThisAccess.ts │ │ ├── checkSuperCallBeforeThisAccessing1.ts │ │ ├── checkSuperCallBeforeThisAccessing2.ts │ │ ├── checkSuperCallBeforeThisAccessing3.ts │ │ ├── checkSuperCallBeforeThisAccessing4.ts │ │ ├── checkSuperCallBeforeThisAccessing5.ts │ │ ├── checkSuperCallBeforeThisAccessing6.ts │ │ ├── checkSuperCallBeforeThisAccessing7.ts │ │ ├── checkSuperCallBeforeThisAccessing8.ts │ │ ├── checkSuperCallBeforeThisAccessing9.ts │ │ ├── checkSwitchStatementIfCaseTypeIsString.ts │ │ ├── checkTypePredicateForRedundantProperties.ts │ │ ├── checkerInitializationCrash.ts │ │ ├── checkingObjectDefinePropertyOnFunctionNonexistentPropertyNoCrash1.ts │ │ ├── checkingObjectWithThisInNamePositionNoCrash.ts │ │ ├── circularAccessorAnnotations.ts │ │ ├── circularBaseConstraint.ts │ │ ├── circularBaseTypes.ts │ │ ├── circularConstrainedMappedTypeNoCrash.ts │ │ ├── circularConstraintYieldsAppropriateError.ts │ │ ├── circularConstructorWithReturn.ts │ │ ├── circularContextualMappedType.ts │ │ ├── circularContextualReturnType.ts │ │ ├── circularGetAccessor.ts │ │ ├── circularInferredTypeOfVariable.ts │ │ ├── circularInlineMappedGenericTupleTypeNoCrash.ts │ │ ├── circularInstantiationExpression.ts │ │ ├── circularMappedTypeConstraint.ts │ │ ├── circularModuleImports.ts │ │ ├── circularObjectLiteralAccessors.ts │ │ ├── circularOptionalityRemoval.ts │ │ ├── circularReferenceInImport.ts │ │ ├── circularReferenceInReturnType.ts │ │ ├── circularReferenceInReturnType2.ts │ │ ├── circularResolvedSignature.ts │ │ ├── circularTypeArgumentsLocalAndOuterNoCrash1.ts │ │ ├── circularTypeofWithFunctionModule.ts │ │ ├── circularlyConstrainedMappedTypeContainingConditionalNoInfiniteInstantiationDepth.ts │ │ ├── circularlyReferentialInterfaceAccessNoCrash.ts │ │ ├── circularlySimplifyingConditionalTypesNoCrash.ts │ │ ├── class2.ts │ │ ├── classAccessorInitializationInferenceWithElementAccess1.ts │ │ ├── classAttributeInferenceTemplate.ts │ │ ├── classAttributeInferenceTemplateJS.ts │ │ ├── classBlockScoping.ts │ │ ├── classCannotExtendVar.ts │ │ ├── classDeclarationBlockScoping1.ts │ │ ├── classDeclarationBlockScoping2.ts │ │ ├── classDeclarationCheckUsedBeforeDefinitionInFunctionDeclaration.ts │ │ ├── classDeclarationCheckUsedBeforeDefinitionInItself.ts │ │ ├── classDeclarationMergedInModuleWithContinuation.ts │ │ ├── classDeclarationShouldBeOutOfScopeInComputedNames.ts │ │ ├── classDeclaredBeforeClassFactory.ts │ │ ├── classExpressionAssignment.ts │ │ ├── classExpressionExtendingAbstractClass.ts │ │ ├── classExpressionInClassStaticDeclarations.ts │ │ ├── classExpressionNames.ts │ │ ├── classExpressionPropertyModifiers.ts │ │ ├── classExpressionTest1.ts │ │ ├── classExpressionTest2.ts │ │ ├── classExpressionWithDecorator1.ts │ │ ├── classExpressionWithResolutionOfNamespaceOfSameName01.ts │ │ ├── classExpressionWithStaticProperties1.ts │ │ ├── classExpressionWithStaticProperties2.ts │ │ ├── classExpressionWithStaticProperties3.ts │ │ ├── classExpressionWithStaticPropertiesES61.ts │ │ ├── classExpressionWithStaticPropertiesES62.ts │ │ ├── classExpressionWithStaticPropertiesES63.ts │ │ ├── classExpressionWithStaticPropertiesES64.ts │ │ ├── classExpressions.ts │ │ ├── classExtendingAbstractClassWithMemberCalledTheSameAsItsOwnTypeParam.ts │ │ ├── classExtendingAny.ts │ │ ├── classExtendingQualifiedName.ts │ │ ├── classExtendingQualifiedName2.ts │ │ ├── classExtendsAcrossFiles.ts │ │ ├── classExtendsClauseClassMergedWithModuleNotReferingConstructor.ts │ │ ├── classExtendsClauseClassNotReferringConstructor.ts │ │ ├── classExtendsInterface.ts │ │ ├── classExtendsInterfaceInExpression.ts │ │ ├── classExtendsInterfaceInModule.ts │ │ ├── classExtendsInterfaceThatExtendsClassWithPrivates1.ts │ │ ├── classExtendsInterface_not.ts │ │ ├── classExtendsMultipleBaseClasses.ts │ │ ├── classExtendsNull.ts │ │ ├── classExtendsNull2.ts │ │ ├── classExtendsNull3.ts │ │ ├── classExtensionNameOutput.ts │ │ ├── classFieldSuperAccessible.ts │ │ ├── classFieldSuperAccessibleJs1.ts │ │ ├── classFieldSuperAccessibleJs2.ts │ │ ├── classFieldSuperNotAccessible.ts │ │ ├── classFieldSuperNotAccessibleJs.ts │ │ ├── classFieldsBrokenConstructorEmitNoCrash1.ts │ │ ├── classFunctionMerging.ts │ │ ├── classFunctionMerging2.ts │ │ ├── classHeritageWithTrailingSeparator.ts │ │ ├── classImplementingInterfaceIndexer.ts │ │ ├── classImplementsClass1.ts │ │ ├── classImplementsClass2.ts │ │ ├── classImplementsClass3.ts │ │ ├── classImplementsClass4.ts │ │ ├── classImplementsClass5.ts │ │ ├── classImplementsClass6.ts │ │ ├── classImplementsClass7.ts │ │ ├── classImplementsImportedInterface.ts │ │ ├── classImplementsMethodWIthTupleArgs.ts │ │ ├── classImplementsPrimitive.ts │ │ ├── classInConvertedLoopES5.ts │ │ ├── classIndexer.ts │ │ ├── classIndexer2.ts │ │ ├── classIndexer3.ts │ │ ├── classIndexer4.ts │ │ ├── classIndexer5.ts │ │ ├── classInheritence.ts │ │ ├── classMemberInitializerScoping.ts │ │ ├── classMemberInitializerScoping2.ts │ │ ├── classMemberInitializerWithLamdaScoping.ts │ │ ├── classMemberInitializerWithLamdaScoping2.ts │ │ ├── classMemberInitializerWithLamdaScoping3.ts │ │ ├── classMemberInitializerWithLamdaScoping4.ts │ │ ├── classMemberInitializerWithLamdaScoping5.ts │ │ ├── classMemberWithMissingIdentifier.ts │ │ ├── classMemberWithMissingIdentifier2.ts │ │ ├── classMergedWithInterfaceMultipleBasesNoError.ts │ │ ├── classMethodWithKeywordName1.ts │ │ ├── classNameReferencesInStaticElements.ts │ │ ├── classNonUniqueSymbolMethodHasSymbolIndexer.ts │ │ ├── classOrder1.ts │ │ ├── classOrder2.ts │ │ ├── classOrderBug.ts │ │ ├── classOverloadForFunction.ts │ │ ├── classOverloadForFunction2.ts │ │ ├── classPropInitializationInferenceWithElementAccess.ts │ │ ├── classPropertyErrorOnNameOnly.ts │ │ ├── classPropertyInferenceFromBroaderTypeConst.ts │ │ ├── classReferencedInContextualParameterWithinItsOwnBaseExpression.ts │ │ ├── classSideInheritance1.ts │ │ ├── classSideInheritance2.ts │ │ ├── classSideInheritance3.ts │ │ ├── classStaticInitializersUsePropertiesBeforeDeclaration.ts │ │ ├── classStaticPropertyAccess.ts │ │ ├── classStaticPropertyTypeGuard.ts │ │ ├── classTypeParametersInStatics.ts │ │ ├── classUpdateTests.ts │ │ ├── classUsedBeforeInitializedVariables.ts │ │ ├── classVarianceCircularity.ts │ │ ├── classVarianceResolveCircularity1.ts │ │ ├── classVarianceResolveCircularity2.ts │ │ ├── classWithDuplicateIdentifier.ts │ │ ├── classWithEmptyTypeParameter.ts │ │ ├── classWithMultipleBaseClasses.ts │ │ ├── classWithOverloadImplementationOfWrongName.ts │ │ ├── classWithOverloadImplementationOfWrongName2.ts │ │ ├── classdecl.ts │ │ ├── clinterfaces.ts │ │ ├── cloduleAcrossModuleDefinitions.ts │ │ ├── cloduleAndTypeParameters.ts │ │ ├── cloduleGenericOnSelfMember.ts │ │ ├── cloduleSplitAcrossFiles.ts │ │ ├── cloduleStaticMembers.ts │ │ ├── cloduleTest1.ts │ │ ├── cloduleTest2.ts │ │ ├── cloduleWithDuplicateMember1.ts │ │ ├── cloduleWithDuplicateMember2.ts │ │ ├── cloduleWithPriorInstantiatedModule.ts │ │ ├── cloduleWithPriorUninstantiatedModule.ts │ │ ├── cloduleWithRecursiveReference.ts │ │ ├── clodulesDerivedClasses.ts │ │ ├── coAndContraVariantInferences.ts │ │ ├── coAndContraVariantInferences2.ts │ │ ├── coAndContraVariantInferences3.ts │ │ ├── coAndContraVariantInferences4.ts │ │ ├── coAndContraVariantInferences5.ts │ │ ├── coAndContraVariantInferences6.ts │ │ ├── coAndContraVariantInferences7.ts │ │ ├── coAndContraVariantInferences8.ts │ │ ├── collectionPatternNoError.ts │ │ ├── collisionArgumentsArrowFunctions.ts │ │ ├── collisionArgumentsClassConstructor.ts │ │ ├── collisionArgumentsClassMethod.ts │ │ ├── collisionArgumentsFunction.ts │ │ ├── collisionArgumentsFunctionExpressions.ts │ │ ├── collisionArgumentsInType.ts │ │ ├── collisionArgumentsInterfaceMembers.ts │ │ ├── collisionCodeGenEnumWithEnumMemberConflict.ts │ │ ├── collisionCodeGenModuleWithAccessorChildren.ts │ │ ├── collisionCodeGenModuleWithConstructorChildren.ts │ │ ├── collisionCodeGenModuleWithEnumMemberConflict.ts │ │ ├── collisionCodeGenModuleWithFunctionChildren.ts │ │ ├── collisionCodeGenModuleWithMemberClassConflict.ts │ │ ├── collisionCodeGenModuleWithMemberInterfaceConflict.ts │ │ ├── collisionCodeGenModuleWithMemberVariable.ts │ │ ├── collisionCodeGenModuleWithMethodChildren.ts │ │ ├── collisionCodeGenModuleWithModuleChildren.ts │ │ ├── collisionCodeGenModuleWithModuleReopening.ts │ │ ├── collisionCodeGenModuleWithPrivateMember.ts │ │ ├── collisionCodeGenModuleWithUnicodeNames.ts │ │ ├── collisionExportsRequireAndAlias.ts │ │ ├── collisionExportsRequireAndAmbientClass.ts │ │ ├── collisionExportsRequireAndAmbientEnum.ts │ │ ├── collisionExportsRequireAndAmbientFunction.ts │ │ ├── collisionExportsRequireAndAmbientFunctionInGlobalFile.ts │ │ ├── collisionExportsRequireAndAmbientModule.ts │ │ ├── collisionExportsRequireAndAmbientVar.ts │ │ ├── collisionExportsRequireAndClass.ts │ │ ├── collisionExportsRequireAndEnum.ts │ │ ├── collisionExportsRequireAndFunction.ts │ │ ├── collisionExportsRequireAndFunctionInGlobalFile.ts │ │ ├── collisionExportsRequireAndInternalModuleAlias.ts │ │ ├── collisionExportsRequireAndInternalModuleAliasInGlobalFile.ts │ │ ├── collisionExportsRequireAndModule.ts │ │ ├── collisionExportsRequireAndUninstantiatedModule.ts │ │ ├── collisionExportsRequireAndVar.ts │ │ ├── collisionRestParameterArrowFunctions.ts │ │ ├── collisionRestParameterClassConstructor.ts │ │ ├── collisionRestParameterClassMethod.ts │ │ ├── collisionRestParameterFunction.ts │ │ ├── collisionRestParameterFunctionExpressions.ts │ │ ├── collisionRestParameterInType.ts │ │ ├── collisionRestParameterInterfaceMembers.ts │ │ ├── collisionRestParameterUnderscoreIUsage.ts │ │ ├── collisionSuperAndLocalFunctionInAccessors.ts │ │ ├── collisionSuperAndLocalFunctionInConstructor.ts │ │ ├── collisionSuperAndLocalFunctionInMethod.ts │ │ ├── collisionSuperAndLocalFunctionInProperty.ts │ │ ├── collisionSuperAndLocalVarInAccessors.ts │ │ ├── collisionSuperAndLocalVarInConstructor.ts │ │ ├── collisionSuperAndLocalVarInMethod.ts │ │ ├── collisionSuperAndLocalVarInProperty.ts │ │ ├── collisionSuperAndNameResolution.ts │ │ ├── collisionSuperAndParameter.ts │ │ ├── collisionSuperAndParameter1.ts │ │ ├── collisionSuperAndPropertyNameAsConstuctorParameter.ts │ │ ├── collisionThisExpressionAndAliasInGlobal.ts │ │ ├── collisionThisExpressionAndAmbientClassInGlobal.ts │ │ ├── collisionThisExpressionAndAmbientVarInGlobal.ts │ │ ├── collisionThisExpressionAndClassInGlobal.ts │ │ ├── collisionThisExpressionAndEnumInGlobal.ts │ │ ├── collisionThisExpressionAndFunctionInGlobal.ts │ │ ├── collisionThisExpressionAndLocalVarInAccessors.ts │ │ ├── collisionThisExpressionAndLocalVarInConstructor.ts │ │ ├── collisionThisExpressionAndLocalVarInFunction.ts │ │ ├── collisionThisExpressionAndLocalVarInLambda.ts │ │ ├── collisionThisExpressionAndLocalVarInMethod.ts │ │ ├── collisionThisExpressionAndLocalVarInProperty.ts │ │ ├── collisionThisExpressionAndLocalVarWithSuperExperssion.ts │ │ ├── collisionThisExpressionAndModuleInGlobal.ts │ │ ├── collisionThisExpressionAndNameResolution.ts │ │ ├── collisionThisExpressionAndParameter.ts │ │ ├── collisionThisExpressionAndPropertyNameAsConstuctorParameter.ts │ │ ├── collisionThisExpressionAndVarInGlobal.ts │ │ ├── commaOperator1.ts │ │ ├── commaOperatorInConditionalExpression.ts │ │ ├── commaOperatorLeftSideUnused.ts │ │ ├── commentBeforeStaticMethod1.ts │ │ ├── commentEmitAtEndOfFile1.ts │ │ ├── commentEmitOnParenthesizedAssertionInReturnStatement.ts │ │ ├── commentEmitOnParenthesizedAssertionInReturnStatement2.ts │ │ ├── commentEmitWithCommentOnLastLine.ts │ │ ├── commentInEmptyParameterList1.ts │ │ ├── commentInMethodCall.ts │ │ ├── commentInNamespaceDeclarationWithIdentifierPathName.ts │ │ ├── commentLeadingCloseBrace.ts │ │ ├── commentOnAmbientClass1.ts │ │ ├── commentOnAmbientEnum.ts │ │ ├── commentOnAmbientModule.ts │ │ ├── commentOnAmbientVariable1.ts │ │ ├── commentOnAmbientVariable2.ts │ │ ├── commentOnAmbientfunction.ts │ │ ├── commentOnArrayElement1.ts │ │ ├── commentOnArrayElement10.ts │ │ ├── commentOnArrayElement11.ts │ │ ├── commentOnArrayElement12.ts │ │ ├── commentOnArrayElement13.ts │ │ ├── commentOnArrayElement14.ts │ │ ├── commentOnArrayElement15.ts │ │ ├── commentOnArrayElement16.ts │ │ ├── commentOnArrayElement2.ts │ │ ├── commentOnArrayElement3.ts │ │ ├── commentOnArrayElement4.ts │ │ ├── commentOnArrayElement5.ts │ │ ├── commentOnArrayElement6.ts │ │ ├── commentOnArrayElement7.ts │ │ ├── commentOnArrayElement8.ts │ │ ├── commentOnArrayElement9.ts │ │ ├── commentOnBinaryOperator1.ts │ │ ├── commentOnBinaryOperator2.ts │ │ ├── commentOnBlock1.ts │ │ ├── commentOnClassAccessor1.ts │ │ ├── commentOnClassAccessor2.ts │ │ ├── commentOnClassMethod1.ts │ │ ├── commentOnDecoratedClassDeclaration.ts │ │ ├── commentOnElidedModule1.ts │ │ ├── commentOnExportEnumDeclaration.ts │ │ ├── commentOnExpressionStatement1.ts │ │ ├── commentOnIfStatement1.ts │ │ ├── commentOnImportStatement1.ts │ │ ├── commentOnImportStatement2.ts │ │ ├── commentOnImportStatement3.ts │ │ ├── commentOnInterface1.ts │ │ ├── commentOnParameter1.ts │ │ ├── commentOnParameter2.ts │ │ ├── commentOnParameter3.ts │ │ ├── commentOnParenthesizedExpressionOpenParen1.ts │ │ ├── commentOnSignature1.ts │ │ ├── commentOnSimpleArrowFunctionBody1.ts │ │ ├── commentOnStaticMember1.ts │ │ ├── commentWithUnreasonableIndentationLevel01.ts │ │ ├── commentsAfterCaseClauses1.ts │ │ ├── commentsAfterCaseClauses2.ts │ │ ├── commentsAfterCaseClauses3.ts │ │ ├── commentsAfterFunctionExpression1.ts │ │ ├── commentsAfterSpread.ts │ │ ├── commentsArgumentsOfCallExpression1.ts │ │ ├── commentsArgumentsOfCallExpression2.ts │ │ ├── commentsAtEndOfFile1.ts │ │ ├── commentsBeforeFunctionExpression1.ts │ │ ├── commentsBeforeVariableStatement1.ts │ │ ├── commentsClass.ts │ │ ├── commentsClassMembers.ts │ │ ├── commentsCommentParsing.ts │ │ ├── commentsDottedModuleName.ts │ │ ├── commentsEnums.ts │ │ ├── commentsExternalModules.ts │ │ ├── commentsExternalModules2.ts │ │ ├── commentsExternalModules3.ts │ │ ├── commentsFormatting.ts │ │ ├── commentsFunction.ts │ │ ├── commentsInheritance.ts │ │ ├── commentsInterface.ts │ │ ├── commentsModules.ts │ │ ├── commentsMultiModuleMultiFile.ts │ │ ├── commentsMultiModuleSingleFile.ts │ │ ├── commentsOnJSXExpressionsArePreserved.tsx │ │ ├── commentsOnObjectLiteral1.ts │ │ ├── commentsOnObjectLiteral2.ts │ │ ├── commentsOnObjectLiteral3.ts │ │ ├── commentsOnObjectLiteral4.ts │ │ ├── commentsOnObjectLiteral5.ts │ │ ├── commentsOnPropertyOfObjectLiteral1.ts │ │ ├── commentsOnRequireStatement.ts │ │ ├── commentsOnReturnStatement1.ts │ │ ├── commentsOnStaticMembers.ts │ │ ├── commentsOverloads.ts │ │ ├── commentsPropertySignature1.ts │ │ ├── commentsTypeParameters.ts │ │ ├── commentsVarDecl.ts │ │ ├── commentsVariableStatement1.ts │ │ ├── commentsdoNotEmitComments.ts │ │ ├── commentsemitComments.ts │ │ ├── commonJsExportTypeDeclarationError.ts │ │ ├── commonJsImportClassExpression.ts │ │ ├── commonJsIsolatedModules.ts │ │ ├── commonJsUnusedLocals.ts │ │ ├── commonMissingSemicolons.ts │ │ ├── commonSourceDir1.ts │ │ ├── commonSourceDir2.ts │ │ ├── commonSourceDir3.ts │ │ ├── commonSourceDir4.ts │ │ ├── commonSourceDir5.ts │ │ ├── commonSourceDir6.ts │ │ ├── commonSourceDirectory.ts │ │ ├── commonSourceDirectory_dts.ts │ │ ├── commonjsAccessExports.ts │ │ ├── commonjsSafeImport.ts │ │ ├── comparabilityTypeParametersRelatedByUnion.ts │ │ ├── comparableRelationBidirectional.ts │ │ ├── compareTypeParameterConstrainedByLiteralToLiteral.ts │ │ ├── comparisonOfPartialDeepAndIndexedAccessTerminatesWithoutError.ts │ │ ├── compilerOptionsDeclarationAndNoEmit.ts │ │ ├── compilerOptionsOutAndNoEmit.ts │ │ ├── compilerOptionsOutDirAndNoEmit.ts │ │ ├── compilerOptionsOutFileAndNoEmit.ts │ │ ├── complexClassRelationships.ts │ │ ├── complexNarrowingWithAny.ts │ │ ├── complexRecursiveCollections.ts │ │ ├── complicatedGenericRecursiveBaseClassReference.ts │ │ ├── complicatedIndexedAccessKeyofReliesOnKeyofNeverUpperBound.ts │ │ ├── complicatedIndexesOfIntersectionsAreInferencable.ts │ │ ├── complicatedPrivacy.ts │ │ ├── compositeContextualSignature.ts │ │ ├── compositeGenericFunction.ts │ │ ├── compositeWithNodeModulesSourceFile.ts │ │ ├── compoundVarDecl1.ts │ │ ├── computedEnumMemberSyntacticallyString.ts │ │ ├── computedEnumMemberSyntacticallyString2.ts │ │ ├── computedEnumTypeWidening.ts │ │ ├── computedPropertiesInDestructuring1.ts │ │ ├── computedPropertiesInDestructuring1_ES6.ts │ │ ├── computedPropertiesInDestructuring2.ts │ │ ├── computedPropertiesInDestructuring2_ES6.ts │ │ ├── computedPropertiesNarrowed.ts │ │ ├── computedPropertiesTransformedInOtherwiseNonTSClasses.ts │ │ ├── computedPropertiesWithSetterAssignment.ts │ │ ├── computedPropertyBindingElementDeclarationNoCrash1.ts │ │ ├── computedPropertyNameAndTypeParameterConflict.ts │ │ ├── computedPropertyNameWithImportedKey.ts │ │ ├── computedTypesKeyofNoIndexSignatureType.ts │ │ ├── computerPropertiesInES5ShouldBeTransformed.ts │ │ ├── concatClassAndString.ts │ │ ├── concatError.ts │ │ ├── concatTuples.ts │ │ ├── conditionalAnyCheckTypePicksBothBranches.ts │ │ ├── conditionalDoesntLeakUninstantiatedTypeParameter.ts │ │ ├── conditionalEqualityOnLiteralObjects.ts │ │ ├── conditionalEqualityTestingNullability.ts │ │ ├── conditionalExpression1.ts │ │ ├── conditionalExpressionNewLine1.ts │ │ ├── conditionalExpressionNewLine10.ts │ │ ├── conditionalExpressionNewLine2.ts │ │ ├── conditionalExpressionNewLine3.ts │ │ ├── conditionalExpressionNewLine4.ts │ │ ├── conditionalExpressionNewLine5.ts │ │ ├── conditionalExpressionNewLine6.ts │ │ ├── conditionalExpressionNewLine7.ts │ │ ├── conditionalExpressionNewLine8.ts │ │ ├── conditionalExpressionNewLine9.ts │ │ ├── conditionalExpressions2.ts │ │ ├── conditionalReturnExpression.ts │ │ ├── conditionalTypeAnyUnion.ts │ │ ├── conditionalTypeAssignabilityWhenDeferred.ts │ │ ├── conditionalTypeBasedContextualTypeReturnTypeWidening.ts │ │ ├── conditionalTypeClassMembers.ts │ │ ├── conditionalTypeContextualTypeSimplificationsSuceeds.ts │ │ ├── conditionalTypeDiscriminatingLargeUnionRegularTypeFetchingSpeedReasonable.ts │ │ ├── conditionalTypeDoesntSpinForever.ts │ │ ├── conditionalTypeGenericInSignatureTypeParameterConstraint.ts │ │ ├── conditionalTypeRelaxingConstraintAssignability.ts │ │ ├── conditionalTypeSimplification.ts │ │ ├── conditionalTypeSubclassExtendsTypeParam.ts │ │ ├── conditionalTypeVarianceBigArrayConstraintsPerformance.ts │ │ ├── conditionalTypesASI.ts │ │ ├── conditionalTypesSimplifyWhenTrivial.ts │ │ ├── conditionallyDuplicateOverloadsCausedByOverloadResolution.ts │ │ ├── configFileExtendsAsList.ts │ │ ├── conflictMarkerDiff3Trivia1.ts │ │ ├── conflictMarkerDiff3Trivia2.ts │ │ ├── conflictMarkerTrivia1.ts │ │ ├── conflictMarkerTrivia2.ts │ │ ├── conflictMarkerTrivia3.tsx │ │ ├── conflictMarkerTrivia4.ts │ │ ├── conflictingDeclarationsImportFromNamespace1.ts │ │ ├── conflictingDeclarationsImportFromNamespace2.ts │ │ ├── conflictingMemberTypesInBases.ts │ │ ├── conflictingTypeAnnotatedVar.ts │ │ ├── conflictingTypeParameterSymbolTransfer.ts │ │ ├── consistentAliasVsNonAliasRecordBehavior.ts │ │ ├── constDeclarationShadowedByVarDeclaration.ts │ │ ├── constDeclarationShadowedByVarDeclaration2.ts │ │ ├── constDeclarationShadowedByVarDeclaration3.ts │ │ ├── constDeclarations-access.ts │ │ ├── constDeclarations-access2.ts │ │ ├── constDeclarations-access3.ts │ │ ├── constDeclarations-access4.ts │ │ ├── constDeclarations-access5.ts │ │ ├── constDeclarations-ambient-errors.ts │ │ ├── constDeclarations-ambient.ts │ │ ├── constDeclarations-errors.ts │ │ ├── constDeclarations-es5.ts │ │ ├── constDeclarations-invalidContexts.ts │ │ ├── constDeclarations-scopes.ts │ │ ├── constDeclarations-scopes2.ts │ │ ├── constDeclarations-useBeforeDefinition.ts │ │ ├── constDeclarations-useBeforeDefinition2.ts │ │ ├── constDeclarations-validContexts.ts │ │ ├── constDeclarations.ts │ │ ├── constDeclarations2.ts │ │ ├── constEnumBadPropertyNames.ts │ │ ├── constEnumDeclarations.ts │ │ ├── constEnumErrors.ts │ │ ├── constEnumExternalModule.ts │ │ ├── constEnumMergingWithValues1.ts │ │ ├── constEnumMergingWithValues2.ts │ │ ├── constEnumMergingWithValues3.ts │ │ ├── constEnumMergingWithValues4.ts │ │ ├── constEnumMergingWithValues5.ts │ │ ├── constEnumNamespaceReferenceCausesNoImport.ts │ │ ├── constEnumNamespaceReferenceCausesNoImport2.ts │ │ ├── constEnumNoEmitReexport.ts │ │ ├── constEnumNoPreserveDeclarationReexport.ts │ │ ├── constEnumOnlyModuleMerging.ts │ │ ├── constEnumPreserveEmitNamedExport1.ts │ │ ├── constEnumPreserveEmitNamedExport2.ts │ │ ├── constEnumPreserveEmitReexport.ts │ │ ├── constEnumSyntheticNodesComments.ts │ │ ├── constEnumToStringNoComments.ts │ │ ├── constEnumToStringWithComments.ts │ │ ├── constEnums.ts │ │ ├── constInClassExpression.ts │ │ ├── constIndexedAccess.ts │ │ ├── constWithNonNull.ts │ │ ├── constantEnumAssert.ts │ │ ├── constantOverloadFunction.ts │ │ ├── constantOverloadFunctionNoSubtypeError.ts │ │ ├── constraintCheckInGenericBaseTypeReference.ts │ │ ├── constraintErrors1.ts │ │ ├── constraintOfRecursivelyMappedTypeWithConditionalIsResolvable.ts │ │ ├── constraintPropagationThroughReturnTypes.ts │ │ ├── constraintReferencingTypeParameterFromSameTypeParameterList.ts │ │ ├── constraintWithIndexedAccess.ts │ │ ├── constraints0.ts │ │ ├── constraintsThatReferenceOtherContstraints1.ts │ │ ├── constraintsUsedInPrototypeProperty.ts │ │ ├── constructorArgWithGenericCallSignature.ts │ │ ├── constructorArgs.ts │ │ ├── constructorArgsErrors1.ts │ │ ├── constructorArgsErrors2.ts │ │ ├── constructorArgsErrors3.ts │ │ ├── constructorArgsErrors4.ts │ │ ├── constructorArgsErrors5.ts │ │ ├── constructorAsType.ts │ │ ├── constructorInvocationWithTooFewTypeArgs.ts │ │ ├── constructorOverloads1.ts │ │ ├── constructorOverloads2.ts │ │ ├── constructorOverloads3.ts │ │ ├── constructorOverloads4.ts │ │ ├── constructorOverloads5.ts │ │ ├── constructorOverloads6.ts │ │ ├── constructorOverloads7.ts │ │ ├── constructorOverloads8.ts │ │ ├── constructorOverloads9.ts │ │ ├── constructorParametersInVariableDeclarations.ts │ │ ├── constructorParametersThatShadowExternalNamesInVariableDeclarations.ts │ │ ├── constructorPropertyJs.ts │ │ ├── constructorReturningAPrimitive.ts │ │ ├── constructorReturnsInvalidType.ts │ │ ├── constructorStaticParamName.ts │ │ ├── constructorStaticParamNameErrors.ts │ │ ├── constructorTypeWithTypeParameters.ts │ │ ├── constructorWithCapturedSuper.ts │ │ ├── constructorWithIncompleteTypeAnnotation.ts │ │ ├── constructorWithParameterPropertiesAndPrivateFields.es2015.ts │ │ ├── constructorWithSuperAndPrologue.es5.ts │ │ ├── constructorsWithSpecializedSignatures.ts │ │ ├── contextSensitiveReturnTypeInference.ts │ │ ├── contextualComputedNonBindablePropertyType.ts │ │ ├── contextualExpressionTypecheckingDoesntBlowStack.ts │ │ ├── contextualOuterTypeParameters.ts │ │ ├── contextualOverloadListFromArrayUnion.ts │ │ ├── contextualOverloadListFromUnionWithPrimitiveNoImplicitAny.ts │ │ ├── contextualParamTypeVsNestedReturnTypeInference1.ts │ │ ├── contextualParamTypeVsNestedReturnTypeInference2.ts │ │ ├── contextualParamTypeVsNestedReturnTypeInference3.ts │ │ ├── contextualParamTypeVsNestedReturnTypeInference4.ts │ │ ├── contextualParameterAndSelfReferentialConstraint1.ts │ │ ├── contextualPropertyOfGenericFilteringMappedType.ts │ │ ├── contextualPropertyOfGenericMappedType.ts │ │ ├── contextualReturnTypeOfIIFE.ts │ │ ├── contextualReturnTypeOfIIFE2.ts │ │ ├── contextualReturnTypeOfIIFE3.ts │ │ ├── contextualSigInstantiationRestParams.ts │ │ ├── contextualSignatureConditionalTypeInstantiationUsingDefault.ts │ │ ├── contextualSignatureInArrayElementLibEs2015.ts │ │ ├── contextualSignatureInArrayElementLibEs5.ts │ │ ├── contextualSignatureInObjectFreeze.ts │ │ ├── contextualSignatureInstantiation1.ts │ │ ├── contextualSignatureInstantiation2.ts │ │ ├── contextualSignatureInstantiation3.ts │ │ ├── contextualSignatureInstantiation4.ts │ │ ├── contextualSignatureInstantiationWithTypeParameterConstrainedToOuterTypeParameter.ts │ │ ├── contextualSignatureInstatiationContravariance.ts │ │ ├── contextualSignatureInstatiationCovariance.ts │ │ ├── contextualSignature_objectLiteralMethodMayReturnNever.ts │ │ ├── contextualTupleTypeParameterReadonly.ts │ │ ├── contextualTypeAny.ts │ │ ├── contextualTypeAppliedToVarArgs.ts │ │ ├── contextualTypeArrayReturnType.ts │ │ ├── contextualTypeBasedOnIntersectionWithAnyInTheMix1.ts │ │ ├── contextualTypeBasedOnIntersectionWithAnyInTheMix2.ts │ │ ├── contextualTypeBasedOnIntersectionWithAnyInTheMix3.ts │ │ ├── contextualTypeBasedOnIntersectionWithAnyInTheMix4.ts │ │ ├── contextualTypeBasedOnIntersectionWithAnyInTheMix5.ts │ │ ├── contextualTypeCaching.ts │ │ ├── contextualTypeForInitalizedVariablesFiltersUndefined.ts │ │ ├── contextualTypeFunctionObjectPropertyIntersection.ts │ │ ├── contextualTypeIterableUnions.ts │ │ ├── contextualTypeLogicalOr.ts │ │ ├── contextualTypeObjectSpreadExpression.ts │ │ ├── contextualTypeOfIndexedAccessParameter.ts │ │ ├── contextualTypeOnYield1.ts │ │ ├── contextualTypeOnYield2.ts │ │ ├── contextualTypeSelfReferencing.ts │ │ ├── contextualTypeShouldBeLiteral.ts │ │ ├── contextualTypesNegatedTypeLikeConstraintInGenericMappedType1.ts │ │ ├── contextualTypesNegatedTypeLikeConstraintInGenericMappedType2.ts │ │ ├── contextualTypesNegatedTypeLikeConstraintInGenericMappedType3.ts │ │ ├── contextualTyping.ts │ │ ├── contextualTyping1.ts │ │ ├── contextualTyping10.ts │ │ ├── contextualTyping11.ts │ │ ├── contextualTyping12.ts │ │ ├── contextualTyping13.ts │ │ ├── contextualTyping14.ts │ │ ├── contextualTyping15.ts │ │ ├── contextualTyping16.ts │ │ ├── contextualTyping17.ts │ │ ├── contextualTyping18.ts │ │ ├── contextualTyping19.ts │ │ ├── contextualTyping2.ts │ │ ├── contextualTyping20.ts │ │ ├── contextualTyping21.ts │ │ ├── contextualTyping22.ts │ │ ├── contextualTyping23.ts │ │ ├── contextualTyping24.ts │ │ ├── contextualTyping25.ts │ │ ├── contextualTyping26.ts │ │ ├── contextualTyping27.ts │ │ ├── contextualTyping28.ts │ │ ├── contextualTyping29.ts │ │ ├── contextualTyping3.ts │ │ ├── contextualTyping30.ts │ │ ├── contextualTyping31.ts │ │ ├── contextualTyping32.ts │ │ ├── contextualTyping33.ts │ │ ├── contextualTyping34.ts │ │ ├── contextualTyping35.ts │ │ ├── contextualTyping36.ts │ │ ├── contextualTyping37.ts │ │ ├── contextualTyping38.ts │ │ ├── contextualTyping39.ts │ │ ├── contextualTyping4.ts │ │ ├── contextualTyping40.ts │ │ ├── contextualTyping41.ts │ │ ├── contextualTyping5.ts │ │ ├── contextualTyping6.ts │ │ ├── contextualTyping7.ts │ │ ├── contextualTyping8.ts │ │ ├── contextualTyping9.ts │ │ ├── contextualTypingArrayDestructuringWithDefaults.ts │ │ ├── contextualTypingArrayOfLambdas.ts │ │ ├── contextualTypingFunctionReturningFunction.ts │ │ ├── contextualTypingFunctionReturningFunction2.ts │ │ ├── contextualTypingOfAccessors.ts │ │ ├── contextualTypingOfArrayLiterals1.ts │ │ ├── contextualTypingOfConditionalExpression.ts │ │ ├── contextualTypingOfConditionalExpression2.ts │ │ ├── contextualTypingOfGenericFunctionTypedArguments1.ts │ │ ├── contextualTypingOfLambdaReturnExpression.ts │ │ ├── contextualTypingOfLambdaWithMultipleSignatures.ts │ │ ├── contextualTypingOfLambdaWithMultipleSignatures2.ts │ │ ├── contextualTypingOfObjectLiterals.ts │ │ ├── contextualTypingOfObjectLiterals2.ts │ │ ├── contextualTypingOfOptionalMembers.tsx │ │ ├── contextualTypingOfTooShortOverloads.ts │ │ ├── contextualTypingReturnStatementWithReturnTypeAnnotation.ts │ │ ├── contextualTypingTwoInstancesOfSameTypeParameter.ts │ │ ├── contextualTypingWithFixedTypeParameters1.ts │ │ ├── contextualTypingWithGenericAndNonGenericSignature.ts │ │ ├── contextualTypingWithGenericSignature.ts │ │ ├── contextuallyTypeArgumentsKeyword.ts │ │ ├── contextuallyTypeAsyncFunctionReturnTypeFromUnion.ts │ │ ├── contextuallyTypeGeneratorReturnTypeFromUnion.ts │ │ ├── contextuallyTypedBooleanLiterals.ts │ │ ├── contextuallyTypedByDiscriminableUnion.ts │ │ ├── contextuallyTypedByDiscriminableUnion2.ts │ │ ├── contextuallyTypedGenericAssignment.ts │ │ ├── contextuallyTypedJsxAttribute.ts │ │ ├── contextuallyTypedJsxAttribute2.tsx │ │ ├── contextuallyTypedJsxChildren.tsx │ │ ├── contextuallyTypedJsxChildren2.tsx │ │ ├── contextuallyTypedOptionalProperty.ts │ │ ├── contextuallyTypedParametersOptionalInJSDoc.ts │ │ ├── contextuallyTypedParametersWithInitializers1.ts │ │ ├── contextuallyTypedParametersWithInitializers2.ts │ │ ├── contextuallyTypedParametersWithInitializers3.ts │ │ ├── contextuallyTypedParametersWithInitializers4.ts │ │ ├── contextuallyTypedParametersWithQuestionToken.ts │ │ ├── contextuallyTypedSymbolNamedProperties.ts │ │ ├── contextuallyTypingOrOperator.ts │ │ ├── contextuallyTypingOrOperator2.ts │ │ ├── contextuallyTypingOrOperator3.ts │ │ ├── contextuallyTypingRestParameters.ts │ │ ├── continueInIterationStatement1.ts │ │ ├── continueInIterationStatement2.ts │ │ ├── continueInIterationStatement3.ts │ │ ├── continueInIterationStatement4.ts │ │ ├── continueInLoopsWithCapturedBlockScopedBindings1.ts │ │ ├── continueLabel.ts │ │ ├── continueNotInIterationStatement1.ts │ │ ├── continueNotInIterationStatement2.ts │ │ ├── continueNotInIterationStatement3.ts │ │ ├── continueNotInIterationStatement4.ts │ │ ├── continueStatementInternalComments.ts │ │ ├── continueTarget1.ts │ │ ├── continueTarget2.ts │ │ ├── continueTarget3.ts │ │ ├── continueTarget4.ts │ │ ├── continueTarget5.ts │ │ ├── continueTarget6.ts │ │ ├── contravariantInferenceAndTypeGuard.ts │ │ ├── contravariantOnlyInferenceFromAnnotatedFunction.ts │ │ ├── contravariantOnlyInferenceFromAnnotatedFunctionJs.ts │ │ ├── contravariantOnlyInferenceWithAnnotatedOptionalParameter.ts │ │ ├── contravariantOnlyInferenceWithAnnotatedOptionalParameterJs.ts │ │ ├── contravariantTypeAliasInference.ts │ │ ├── controlFlowAliasedDiscriminants.ts │ │ ├── controlFlowAnalysisOnBareThisKeyword.ts │ │ ├── controlFlowArrayErrors.ts │ │ ├── controlFlowArrays.ts │ │ ├── controlFlowAutoAccessor1.ts │ │ ├── controlFlowBreakContinueWithLabel.ts │ │ ├── controlFlowCaching.ts │ │ ├── controlFlowCommaExpressionAssertionMultiple.ts │ │ ├── controlFlowCommaExpressionAssertionWithinTernary.ts │ │ ├── controlFlowCommaExpressionFunctionCall.ts │ │ ├── controlFlowDestructuringLoop.ts │ │ ├── controlFlowDestructuringParameters.ts │ │ ├── controlFlowDestructuringVariablesInTryCatch.ts │ │ ├── controlFlowFavorAssertedTypeThroughTypePredicate.ts │ │ ├── controlFlowFinallyNoCatchAssignments.ts │ │ ├── controlFlowForCatchAndFinally.ts │ │ ├── controlFlowForCompoundAssignmentToThisMember.ts │ │ ├── controlFlowForFunctionLike1.ts │ │ ├── controlFlowForIndexSignatures.ts │ │ ├── controlFlowForStatementContinueIntoIncrementor1.ts │ │ ├── controlFlowFunctionLikeCircular1.ts │ │ ├── controlFlowInitializedDestructuringVariables.ts │ │ ├── controlFlowInstanceof.ts │ │ ├── controlFlowInstanceofWithSymbolHasInstance.ts │ │ ├── controlFlowJavascript.ts │ │ ├── controlFlowLoopAnalysis.ts │ │ ├── controlFlowManyCallExpressionStatementsPerf.ts │ │ ├── controlFlowManyConsecutiveConditionsNoTimeout.ts │ │ ├── controlFlowNoImplicitAny.ts │ │ ├── controlFlowNullTypeAndLiteral.ts │ │ ├── controlFlowOuterVariable.ts │ │ ├── controlFlowPrivateClassField.ts │ │ ├── controlFlowPropertyDeclarations.ts │ │ ├── controlFlowPropertyInitializer.ts │ │ ├── controlFlowSelfReferentialLoop.ts │ │ ├── controlFlowUnionContainingTypeParameter1.ts │ │ ├── controlFlowWithIncompleteTypes.ts │ │ ├── convertClassExpressionToFunctionFromObjectProperty1.ts │ │ ├── convertClassExpressionToFunctionFromObjectProperty2.ts │ │ ├── convertKeywords.ts │ │ ├── convertKeywordsYes.ts │ │ ├── copyrightWithNewLine1.ts │ │ ├── copyrightWithoutNewLine1.ts │ │ ├── correctOrderOfPromiseMethod.ts │ │ ├── correlatedUnions.ts │ │ ├── corrupted.ts │ │ ├── couldNotSelectGenericOverload.ts │ │ ├── covariance1.ts │ │ ├── crashDeclareGlobalTypeofExport.ts │ │ ├── crashInEmitTokenWithComment.ts │ │ ├── crashInGetTextOfComputedPropertyName.ts │ │ ├── crashInResolveInterface.ts │ │ ├── crashInYieldStarInAsyncFunction.ts │ │ ├── crashInresolveReturnStatement.ts │ │ ├── crashInsourcePropertyIsRelatableToTargetProperty.ts │ │ ├── crashIntypeCheckInvocationExpression.ts │ │ ├── crashIntypeCheckObjectCreationExpression.ts │ │ ├── crashOnMethodSignatures.ts │ │ ├── crashRegressionTest.ts │ │ ├── createArray.ts │ │ ├── crossFileOverloadModifierConsistency.ts │ │ ├── ctsFileInEsnextHelpers.ts │ │ ├── curiousNestedConditionalEvaluationResult.ts │ │ ├── customAsyncIterator.ts │ │ ├── customEventDetail.ts │ │ ├── cyclicGenericTypeInstantiation.ts │ │ ├── cyclicGenericTypeInstantiationInference.ts │ │ ├── cyclicModuleImport.ts │ │ ├── cyclicTypeInstantiation.ts │ │ ├── dataViewConstructor.ts │ │ ├── debugger.ts │ │ ├── debuggerEmit.ts │ │ ├── declFileAccessors.ts │ │ ├── declFileAliasUseBeforeDeclaration.ts │ │ ├── declFileAliasUseBeforeDeclaration2.ts │ │ ├── declFileAmbientExternalModuleWithSingleExportedModule.ts │ │ ├── declFileCallSignatures.ts │ │ ├── declFileClassExtendsNull.ts │ │ ├── declFileClassWithIndexSignature.ts │ │ ├── declFileClassWithStaticMethodReturningConstructor.ts │ │ ├── declFileConstructSignatures.ts │ │ ├── declFileConstructors.ts │ │ ├── declFileEmitDeclarationOnly.ts │ │ ├── declFileEmitDeclarationOnlyError1.ts │ │ ├── declFileEmitDeclarationOnlyError2.ts │ │ ├── declFileEnumUsedAsValue.ts │ │ ├── declFileEnums.ts │ │ ├── declFileExportAssignmentImportInternalModule.ts │ │ ├── declFileExportAssignmentOfGenericInterface.ts │ │ ├── declFileExportImportChain.ts │ │ ├── declFileExportImportChain2.ts │ │ ├── declFileForClassWithMultipleBaseClasses.ts │ │ ├── declFileForClassWithPrivateOverloadedFunction.ts │ │ ├── declFileForExportedImport.ts │ │ ├── declFileForFunctionTypeAsTypeParameter.ts │ │ ├── declFileForInterfaceWithOptionalFunction.ts │ │ ├── declFileForInterfaceWithRestParams.ts │ │ ├── declFileForTypeParameters.ts │ │ ├── declFileForVarList.ts │ │ ├── declFileFunctions.ts │ │ ├── declFileGenericClassWithGenericExtendedClass.ts │ │ ├── declFileGenericType.ts │ │ ├── declFileGenericType2.ts │ │ ├── declFileImportChainInExportAssignment.ts │ │ ├── declFileImportModuleWithExportAssignment.ts │ │ ├── declFileImportedTypeUseInTypeArgPosition.ts │ │ ├── declFileIndexSignatures.ts │ │ ├── declFileInternalAliases.ts │ │ ├── declFileMethods.ts │ │ ├── declFileModuleAssignmentInObjectLiteralProperty.ts │ │ ├── declFileModuleContinuation.ts │ │ ├── declFileModuleWithPropertyOfTypeModule.ts │ │ ├── declFileObjectLiteralWithAccessors.ts │ │ ├── declFileObjectLiteralWithOnlyGetter.ts │ │ ├── declFileObjectLiteralWithOnlySetter.ts │ │ ├── declFileOptionalInterfaceMethod.ts │ │ ├── declFilePrivateMethodOverloads.ts │ │ ├── declFilePrivateStatic.ts │ │ ├── declFileRegressionTests.ts │ │ ├── declFileRestParametersOfFunctionAndFunctionType.ts │ │ ├── declFileTypeAnnotationArrayType.ts │ │ ├── declFileTypeAnnotationBuiltInType.ts │ │ ├── declFileTypeAnnotationParenType.ts │ │ ├── declFileTypeAnnotationStringLiteral.ts │ │ ├── declFileTypeAnnotationTupleType.ts │ │ ├── declFileTypeAnnotationTypeAlias.ts │ │ ├── declFileTypeAnnotationTypeLiteral.ts │ │ ├── declFileTypeAnnotationTypeQuery.ts │ │ ├── declFileTypeAnnotationTypeReference.ts │ │ ├── declFileTypeAnnotationUnionType.ts │ │ ├── declFileTypeAnnotationVisibilityErrorAccessors.ts │ │ ├── declFileTypeAnnotationVisibilityErrorParameterOfFunction.ts │ │ ├── declFileTypeAnnotationVisibilityErrorReturnTypeOfFunction.ts │ │ ├── declFileTypeAnnotationVisibilityErrorTypeAlias.ts │ │ ├── declFileTypeAnnotationVisibilityErrorTypeLiteral.ts │ │ ├── declFileTypeAnnotationVisibilityErrorVariableDeclaration.ts │ │ ├── declFileTypeofClass.ts │ │ ├── declFileTypeofEnum.ts │ │ ├── declFileTypeofFunction.ts │ │ ├── declFileTypeofInAnonymousType.ts │ │ ├── declFileTypeofModule.ts │ │ ├── declFileWithClassNameConflictingWithClassReferredByExtendsClause.ts │ │ ├── declFileWithErrorsInInputDeclarationFile.ts │ │ ├── declFileWithErrorsInInputDeclarationFileWithOut.ts │ │ ├── declFileWithExtendsClauseThatHasItsContainerNameConflict.ts │ │ ├── declFileWithInternalModuleNameConflictsInExtendsClause1.ts │ │ ├── declFileWithInternalModuleNameConflictsInExtendsClause2.ts │ │ ├── declFileWithInternalModuleNameConflictsInExtendsClause3.ts │ │ ├── declInput-2.ts │ │ ├── declInput.ts │ │ ├── declInput3.ts │ │ ├── declInput4.ts │ │ ├── declarationAssertionNodeNotReusedWhenTypeNotEquivalent1.ts │ │ ├── declarationEmitAliasExportStar.ts │ │ ├── declarationEmitAliasFromIndirectFile.ts │ │ ├── declarationEmitAliasInlineing.ts │ │ ├── declarationEmitAmdModuleDefault.ts │ │ ├── declarationEmitAmdModuleNameDirective.ts │ │ ├── declarationEmitAnyComputedPropertyInClass.ts │ │ ├── declarationEmitArrayTypesFromGenericArrayUsage.ts │ │ ├── declarationEmitArrowFunctionNoRenaming.ts │ │ ├── declarationEmitBindingPatternWithReservedWord.ts │ │ ├── declarationEmitBindingPatterns.ts │ │ ├── declarationEmitBindingPatternsFunctionExpr.ts │ │ ├── declarationEmitBindingPatternsUnused.ts │ │ ├── declarationEmitBundleWithAmbientReferences.ts │ │ ├── declarationEmitBundlerConditions.ts │ │ ├── declarationEmitCastReusesTypeNode1.ts │ │ ├── declarationEmitCastReusesTypeNode2.ts │ │ ├── declarationEmitCastReusesTypeNode3.ts │ │ ├── declarationEmitCastReusesTypeNode4.ts │ │ ├── declarationEmitCastReusesTypeNode5.ts │ │ ├── declarationEmitClassAccessorsJs1.ts │ │ ├── declarationEmitClassInherritsAny.ts │ │ ├── declarationEmitClassMemberNameConflict.ts │ │ ├── declarationEmitClassMemberNameConflict2.ts │ │ ├── declarationEmitClassMemberWithComputedPropertyName.ts │ │ ├── declarationEmitClassMixinLocalClassDeclaration.ts │ │ ├── declarationEmitClassPrivateConstructor.ts │ │ ├── declarationEmitClassPrivateConstructor2.ts │ │ ├── declarationEmitClassSetAccessorParamNameInJs.ts │ │ ├── declarationEmitClassSetAccessorParamNameInJs2.ts │ │ ├── declarationEmitClassSetAccessorParamNameInJs3.ts │ │ ├── declarationEmitCommonJsModuleReferencedType.ts │ │ ├── declarationEmitCommonSourceDirectoryDoesNotContainAllFiles.ts │ │ ├── declarationEmitComputedNameCausesImportToBePainted.ts │ │ ├── declarationEmitComputedNameConstEnumAlias.ts │ │ ├── declarationEmitComputedNameWithQuestionToken.ts │ │ ├── declarationEmitComputedNamesInaccessible.ts │ │ ├── declarationEmitComputedPropertyName1.ts │ │ ├── declarationEmitComputedPropertyNameEnum1.ts │ │ ├── declarationEmitComputedPropertyNameEnum2.ts │ │ ├── declarationEmitComputedPropertyNameEnum3.ts │ │ ├── declarationEmitComputedPropertyNameSymbol1.ts │ │ ├── declarationEmitComputedPropertyNameSymbol2.ts │ │ ├── declarationEmitConstantNoWidening.ts │ │ ├── declarationEmitCrossFileCopiedGeneratedImportType.ts │ │ ├── declarationEmitCrossFileImportTypeOfAmbientModule.ts │ │ ├── declarationEmitDefaultExport1.ts │ │ ├── declarationEmitDefaultExport2.ts │ │ ├── declarationEmitDefaultExport3.ts │ │ ├── declarationEmitDefaultExport4.ts │ │ ├── declarationEmitDefaultExport5.ts │ │ ├── declarationEmitDefaultExport6.ts │ │ ├── declarationEmitDefaultExport7.ts │ │ ├── declarationEmitDefaultExport8.ts │ │ ├── declarationEmitDefaultExportWithStaticAssignment.ts │ │ ├── declarationEmitDefaultExportWithTempVarName.ts │ │ ├── declarationEmitDefaultExportWithTempVarNameWithBundling.ts │ │ ├── declarationEmitDestructuring1.ts │ │ ├── declarationEmitDestructuring2.ts │ │ ├── declarationEmitDestructuring3.ts │ │ ├── declarationEmitDestructuring4.ts │ │ ├── declarationEmitDestructuring5.ts │ │ ├── declarationEmitDestructuringArrayPattern1.ts │ │ ├── declarationEmitDestructuringArrayPattern2.ts │ │ ├── declarationEmitDestructuringArrayPattern3.ts │ │ ├── declarationEmitDestructuringArrayPattern4.ts │ │ ├── declarationEmitDestructuringArrayPattern5.ts │ │ ├── declarationEmitDestructuringObjectLiteralPattern.ts │ │ ├── declarationEmitDestructuringObjectLiteralPattern1.ts │ │ ├── declarationEmitDestructuringObjectLiteralPattern2.ts │ │ ├── declarationEmitDestructuringOptionalBindingParametersInOverloads.ts │ │ ├── declarationEmitDestructuringParameterProperties.ts │ │ ├── declarationEmitDestructuringParameterProperties2.ts │ │ ├── declarationEmitDestructuringPrivacyError.ts │ │ ├── declarationEmitDestructuringWithOptionalBindingParameters.ts │ │ ├── declarationEmitDetachedComment1.ts │ │ ├── declarationEmitDetachedComment2.ts │ │ ├── declarationEmitDistributiveConditionalWithInfer.ts │ │ ├── declarationEmitDoesNotUseReexportedNamespaceAsLocal.ts │ │ ├── declarationEmitDuplicateParameterDestructuring.ts │ │ ├── declarationEmitEnumReadonlyProperty.ts │ │ ├── declarationEmitEnumReferenceViaImportEquals.ts │ │ ├── declarationEmitExactOptionalPropertyTypesNodeNotReused.ts │ │ ├── declarationEmitExpandoPropertyPrivateName.ts │ │ ├── declarationEmitExpandoWithGenericConstraint.ts │ │ ├── declarationEmitExportAliasVisibiilityMarking.ts │ │ ├── declarationEmitExportAssignedNamespaceNoTripleSlashTypesReference.ts │ │ ├── declarationEmitExportAssignment.ts │ │ ├── declarationEmitExportDeclaration.ts │ │ ├── declarationEmitExpressionInExtends.ts │ │ ├── declarationEmitExpressionInExtends2.ts │ │ ├── declarationEmitExpressionInExtends3.ts │ │ ├── declarationEmitExpressionInExtends4.ts │ │ ├── declarationEmitExpressionInExtends5.ts │ │ ├── declarationEmitExpressionInExtends6.ts │ │ ├── declarationEmitExpressionInExtends7.ts │ │ ├── declarationEmitExpressionWithNonlocalPrivateUniqueSymbol.ts │ │ ├── declarationEmitFBoundedTypeParams.ts │ │ ├── declarationEmitFirstTypeArgumentGenericFunctionType.ts │ │ ├── declarationEmitForDefaultExportClassExtendingExpression01.ts │ │ ├── declarationEmitForGlobalishSpecifierSymlink.ts │ │ ├── declarationEmitForGlobalishSpecifierSymlink2.ts │ │ ├── declarationEmitForModuleImportingModuleAugmentationRetainsImport.ts │ │ ├── declarationEmitForTypesWhichNeedImportTypes.ts │ │ ├── declarationEmitFunctionDuplicateNamespace.ts │ │ ├── declarationEmitFunctionKeywordProp.ts │ │ ├── declarationEmitGenericTypeParamerSerialization.ts │ │ ├── declarationEmitGenericTypeParamerSerialization2.ts │ │ ├── declarationEmitGenericTypeParamerSerialization3.ts │ │ ├── declarationEmitGlobalThisPreserved.ts │ │ ├── declarationEmitHasTypesRefOnNamespaceUse.ts │ │ ├── declarationEmitHigherOrderRetainedGenerics.ts │ │ ├── declarationEmitImportInExportAssignmentModule.ts │ │ ├── declarationEmitIndexTypeArray.ts │ │ ├── declarationEmitIndexTypeNotFound.ts │ │ ├── declarationEmitInferredDefaultExportType.ts │ │ ├── declarationEmitInferredDefaultExportType2.ts │ │ ├── declarationEmitInferredTypeAlias1.ts │ │ ├── declarationEmitInferredTypeAlias2.ts │ │ ├── declarationEmitInferredTypeAlias3.ts │ │ ├── declarationEmitInferredTypeAlias4.ts │ │ ├── declarationEmitInferredTypeAlias5.ts │ │ ├── declarationEmitInferredTypeAlias6.ts │ │ ├── declarationEmitInferredTypeAlias7.ts │ │ ├── declarationEmitInferredTypeAlias8.ts │ │ ├── declarationEmitInferredTypeAlias9.ts │ │ ├── declarationEmitInferredUndefinedPropFromFunctionInArray.ts │ │ ├── declarationEmitInlinedDistributiveConditional.ts │ │ ├── declarationEmitInterfaceWithNonEntityNameExpressionHeritage.ts │ │ ├── declarationEmitInvalidExport.ts │ │ ├── declarationEmitInvalidReference.ts │ │ ├── declarationEmitInvalidReference2.ts │ │ ├── declarationEmitInvalidReferenceAllowJs.ts │ │ ├── declarationEmitIsolatedDeclarationErrorNotEmittedForNonEmittedFile.ts │ │ ├── declarationEmitJsReExportDefault.ts │ │ ├── declarationEmitKeywordDestructuring.ts │ │ ├── declarationEmitLambdaWithMissingTypeParameterNoCrash.ts │ │ ├── declarationEmitLateBoundAssignments.ts │ │ ├── declarationEmitLateBoundAssignments2.ts │ │ ├── declarationEmitLateBoundJSAssignments.ts │ │ ├── declarationEmitLocalClassDeclarationMixin.ts │ │ ├── declarationEmitLocalClassHasRequiredDeclare.ts │ │ ├── declarationEmitMappedPrivateTypeTypeParameter.ts │ │ ├── declarationEmitMappedTypeDistributivityPreservesConstraints.ts │ │ ├── declarationEmitMappedTypePreservesTypeParameterConstraint.ts │ │ ├── declarationEmitMappedTypePropertyFromNumericStringKey.ts │ │ ├── declarationEmitMappedTypeTemplateTypeofSymbol.ts │ │ ├── declarationEmitMergedAliasWithConst.ts │ │ ├── declarationEmitMethodDeclaration.ts │ │ ├── declarationEmitMixinPrivateProtected.ts │ │ ├── declarationEmitModuleWithScopeMarker.ts │ │ ├── declarationEmitMonorepoBaseUrl.ts │ │ ├── declarationEmitMultipleComputedNamesSameDomain.ts │ │ ├── declarationEmitNameConflicts.ts │ │ ├── declarationEmitNameConflicts2.ts │ │ ├── declarationEmitNameConflicts3.ts │ │ ├── declarationEmitNameConflictsWithAlias.ts │ │ ├── declarationEmitNamespaceMergedWithInterfaceNestedFunction.ts │ │ ├── declarationEmitNestedAnonymousMappedType.ts │ │ ├── declarationEmitNestedBindingPattern.ts │ │ ├── declarationEmitNestedGenerics.ts │ │ ├── declarationEmitNoInvalidCommentReuse1.ts │ │ ├── declarationEmitNoInvalidCommentReuse2.ts │ │ ├── declarationEmitNoInvalidCommentReuse3.ts │ │ ├── declarationEmitNoNonRequiredParens.ts │ │ ├── declarationEmitNonExportedBindingPattern.ts │ │ ├── declarationEmitObjectAssignedDefaultExport.ts │ │ ├── declarationEmitObjectLiteralAccessors1.ts │ │ ├── declarationEmitObjectLiteralAccessorsJs1.ts │ │ ├── declarationEmitOfFuncspace.ts │ │ ├── declarationEmitOfTypeofAliasedExport.ts │ │ ├── declarationEmitOptionalMappedTypePropertyNoStrictNullChecks1.ts │ │ ├── declarationEmitOptionalMappedTypePropertyNoStrictNullChecks2.ts │ │ ├── declarationEmitOptionalMappedTypePropertyNoStrictNullChecks3.ts │ │ ├── declarationEmitOptionalMappedTypePropertyNoStrictNullChecks4.ts │ │ ├── declarationEmitOptionalMethod.ts │ │ ├── declarationEmitOutFileBundlePaths.ts │ │ ├── declarationEmitOverloadedPrivateInference.ts │ │ ├── declarationEmitParameterProperty.ts │ │ ├── declarationEmitPartialNodeReuseTypeOf.ts │ │ ├── declarationEmitPartialNodeReuseTypeReferences.ts │ │ ├── declarationEmitPartialReuseComputedProperty.ts │ │ ├── declarationEmitPathMappingMonorepo.ts │ │ ├── declarationEmitPathMappingMonorepo2.ts │ │ ├── declarationEmitPrefersPathKindBasedOnBundling.ts │ │ ├── declarationEmitPrefersPathKindBasedOnBundling2.ts │ │ ├── declarationEmitPreserveReferencedImports.ts │ │ ├── declarationEmitPrivateAsync.ts │ │ ├── declarationEmitPrivateNameCausesError.ts │ │ ├── declarationEmitPrivatePromiseLikeInterface.ts │ │ ├── declarationEmitPrivateReadonlyLiterals.ts │ │ ├── declarationEmitPrivateSymbolCausesVarDeclarationEmit2.ts │ │ ├── declarationEmitPrivateSymbolCausesVarDeclarationToBeEmitted.ts │ │ ├── declarationEmitPromise.ts │ │ ├── declarationEmitPropertyNumericStringKey.ts │ │ ├── declarationEmitProtectedMembers.ts │ │ ├── declarationEmitQualifiedAliasTypeArgument.ts │ │ ├── declarationEmitReadonlyComputedProperty.ts │ │ ├── declarationEmitRecursiveConditionalAliasPreserved.ts │ │ ├── declarationEmitRedundantTripleSlashModuleAugmentation.ts │ │ ├── declarationEmitReexportedSymlinkReference.ts │ │ ├── declarationEmitReexportedSymlinkReference2.ts │ │ ├── declarationEmitReexportedSymlinkReference3.ts │ │ ├── declarationEmitRelativeModuleError.ts │ │ ├── declarationEmitResolveTypesIfNotReusable.ts │ │ ├── declarationEmitRetainedAnnotationRetainsImportInOutput.ts │ │ ├── declarationEmitRetainsJsdocyComments.ts │ │ ├── declarationEmitReusesLambdaParameterNodes.ts │ │ ├── declarationEmitScopeConsistency.ts │ │ ├── declarationEmitScopeConsistency3.ts │ │ ├── declarationEmitShadowing.ts │ │ ├── declarationEmitShadowingInferNotRenamed.ts │ │ ├── declarationEmitSimpleComputedNames1.ts │ │ ├── declarationEmitSpreadStringlyKeyedEnum.ts │ │ ├── declarationEmitStringEnumUsedInNonlocalSpread.ts │ │ ├── declarationEmitSymlinkPaths.ts │ │ ├── declarationEmitToDeclarationDirWithCompositeOption.ts │ │ ├── declarationEmitToDeclarationDirWithDeclarationOption.ts │ │ ├── declarationEmitToDeclarationDirWithoutCompositeAndDeclarationOptions.ts │ │ ├── declarationEmitTopLevelNodeFromCrossFile.ts │ │ ├── declarationEmitTopLevelNodeFromCrossFile2.ts │ │ ├── declarationEmitTransitiveImportOfHtmlDeclarationItem.ts │ │ ├── declarationEmitTripleSlashReferenceAmbientModule.ts │ │ ├── declarationEmitTupleRestSignatureLeadingVariadic.ts │ │ ├── declarationEmitTypeAliasTypeParameterExtendingUnknownSymbol.ts │ │ ├── declarationEmitTypeAliasWithTypeParameters1.ts │ │ ├── declarationEmitTypeAliasWithTypeParameters2.ts │ │ ├── declarationEmitTypeAliasWithTypeParameters3.ts │ │ ├── declarationEmitTypeAliasWithTypeParameters4.ts │ │ ├── declarationEmitTypeAliasWithTypeParameters5.ts │ │ ├── declarationEmitTypeAliasWithTypeParameters6.ts │ │ ├── declarationEmitTypeParamMergedWithPrivate.ts │ │ ├── declarationEmitTypeParameterNameInOuterScope.ts │ │ ├── declarationEmitTypeParameterNameReusedInOverloads.ts │ │ ├── declarationEmitTypeParameterNameShadowedInternally.ts │ │ ├── declarationEmitTypeofDefaultExport.ts │ │ ├── declarationEmitTypeofRest.ts │ │ ├── declarationEmitTypeofThisInClass.ts │ │ ├── declarationEmitUnknownImport.ts │ │ ├── declarationEmitUnknownImport2.ts │ │ ├── declarationEmitUnnessesaryTypeReferenceNotAdded.ts │ │ ├── declarationEmitUnsafeImportSymbolName.ts │ │ ├── declarationEmitUsingAlternativeContainingModules1.ts │ │ ├── declarationEmitUsingAlternativeContainingModules2.ts │ │ ├── declarationEmitUsingTypeAlias1.ts │ │ ├── declarationEmitUsingTypeAlias2.ts │ │ ├── declarationEmitVarInElidedBlock.ts │ │ ├── declarationEmitWithComposite.ts │ │ ├── declarationEmitWithDefaultAsComputedName.ts │ │ ├── declarationEmitWithDefaultAsComputedName2.ts │ │ ├── declarationEmitWithInvalidPackageJsonTypings.ts │ │ ├── declarationFileNoCrashOnExtraExportModifier.ts │ │ ├── declarationFileOverwriteError.ts │ │ ├── declarationFileOverwriteErrorWithOut.ts │ │ ├── declarationFilesGeneratingTypeReferences.ts │ │ ├── declarationFilesWithTypeReferences1.ts │ │ ├── declarationFilesWithTypeReferences2.ts │ │ ├── declarationFilesWithTypeReferences3.ts │ │ ├── declarationFilesWithTypeReferences4.ts │ │ ├── declarationFunctionTypeNonlocalShouldNotBeAnError.ts │ │ ├── declarationImportTypeAliasInferredAndEmittable.ts │ │ ├── declarationMaps.ts │ │ ├── declarationMapsMultifile.ts │ │ ├── declarationMapsOutFile.ts │ │ ├── declarationMapsOutFile2.ts │ │ ├── declarationMapsWithSourceMap.ts │ │ ├── declarationMapsWithoutDeclaration.ts │ │ ├── declarationMerging1.ts │ │ ├── declarationMerging2.ts │ │ ├── declarationNoDanglingGenerics.ts │ │ ├── declarationQuotedMembers.ts │ │ ├── declarationTypecheckNoUseBeforeReferenceCheck.ts │ │ ├── declarationsForFileShadowingGlobalNoError.ts │ │ ├── declarationsForIndirectTypeAliasReference.ts │ │ ├── declarationsForInferredTypeFromOtherFile.ts │ │ ├── declarationsIndirectGeneratedAliasReference.ts │ │ ├── declarationsWithRecursiveInternalTypesProduceUniqueTypeParams.ts │ │ ├── declareAlreadySeen.ts │ │ ├── declareClassInterfaceImplementation.ts │ │ ├── declareDottedExtend.ts │ │ ├── declareDottedModuleName.ts │ │ ├── declareExternalModuleWithExportAssignedFundule.ts │ │ ├── declareFileExportAssignment.ts │ │ ├── declareFileExportAssignmentWithVarFromVariableStatement.ts │ │ ├── declareIdentifierAsBeginningOfStatementExpression01.ts │ │ ├── declareModifierOnImport1.ts │ │ ├── declareModifierOnTypeAlias.ts │ │ ├── declaredExternalModule.ts │ │ ├── declaredExternalModuleWithExportAssignment.ts │ │ ├── decoratorInJsFile.ts │ │ ├── decoratorInJsFile1.ts │ │ ├── decoratorMetadataConditionalType.ts │ │ ├── decoratorMetadataElidedImport.ts │ │ ├── decoratorMetadataElidedImportOnDeclare.ts │ │ ├── decoratorMetadataForMethodWithNoReturnTypeAnnotation01.ts │ │ ├── decoratorMetadataGenericTypeVariable.ts │ │ ├── decoratorMetadataGenericTypeVariableDefault.ts │ │ ├── decoratorMetadataGenericTypeVariableInScope.ts │ │ ├── decoratorMetadataNoLibIsolatedModulesTypes.ts │ │ ├── decoratorMetadataNoStrictNull.ts │ │ ├── decoratorMetadataOnInferredType.ts │ │ ├── decoratorMetadataPromise.ts │ │ ├── decoratorMetadataRestParameterWithImportedType.ts │ │ ├── decoratorMetadataTypeOnlyExport.ts │ │ ├── decoratorMetadataTypeOnlyImport.ts │ │ ├── decoratorMetadataWithConstructorType.ts │ │ ├── decoratorMetadataWithImportDeclarationNameCollision.ts │ │ ├── decoratorMetadataWithImportDeclarationNameCollision2.ts │ │ ├── decoratorMetadataWithImportDeclarationNameCollision3.ts │ │ ├── decoratorMetadataWithImportDeclarationNameCollision4.ts │ │ ├── decoratorMetadataWithImportDeclarationNameCollision5.ts │ │ ├── decoratorMetadataWithImportDeclarationNameCollision6.ts │ │ ├── decoratorMetadataWithImportDeclarationNameCollision7.ts │ │ ├── decoratorMetadataWithImportDeclarationNameCollision8.ts │ │ ├── decoratorReferenceOnOtherProperty.ts │ │ ├── decoratorReferences.ts │ │ ├── decoratorUsedBeforeDeclaration.ts │ │ ├── decoratorWithNegativeLiteralTypeNoCrash.ts │ │ ├── decoratorWithUnderscoreMethod.ts │ │ ├── decoratorsOnComputedProperties.ts │ │ ├── decrementAndIncrementOperators.ts │ │ ├── deduplicateImportsInSystem.ts │ │ ├── deepComparisons.ts │ │ ├── deepElaborationsIntoArrowExpressions.ts │ │ ├── deepExcessPropertyCheckingWhenTargetIsIntersection.ts │ │ ├── deepKeysIndexing.ts │ │ ├── deeplyDependentLargeArrayMutation.ts │ │ ├── deeplyDependentLargeArrayMutation2.ts │ │ ├── deeplyNestedAssignabilityErrorsCombined.ts │ │ ├── deeplyNestedAssignabilityIssue.ts │ │ ├── deeplyNestedCheck.ts │ │ ├── deeplyNestedConditionalTypes.ts │ │ ├── deeplyNestedConstraints.ts │ │ ├── deeplyNestedMappedTypes.ts │ │ ├── deeplyNestedTemplateLiteralIntersection.ts │ │ ├── defaultArgsInFunctionExpressions.ts │ │ ├── defaultArgsInOverloads.ts │ │ ├── defaultBestCommonTypesHaveDecls.ts │ │ ├── defaultDeclarationEmitDefaultImport.ts │ │ ├── defaultDeclarationEmitNamedCorrectly.ts │ │ ├── defaultDeclarationEmitShadowedNamedCorrectly.ts │ │ ├── defaultIndexProps1.ts │ │ ├── defaultIndexProps2.ts │ │ ├── defaultIsNotVisibleInLocalScope.ts │ │ ├── defaultKeywordWithoutExport1.ts │ │ ├── defaultKeywordWithoutExport2.ts │ │ ├── defaultNamedExportWithType1.ts │ │ ├── defaultNamedExportWithType2.ts │ │ ├── defaultNamedExportWithType3.ts │ │ ├── defaultNamedExportWithType4.ts │ │ ├── defaultOfAnyInStrictNullChecks.ts │ │ ├── defaultParameterAddsUndefinedWithStrictNullChecks.ts │ │ ├── defaultParameterTrailingComments.ts │ │ ├── defaultPropsEmptyCurlyBecomesAnyForJs.ts │ │ ├── defaultValueInConstructorOverload1.ts │ │ ├── defaultValueInFunctionOverload1.ts │ │ ├── defaultValueInFunctionTypes.ts │ │ ├── deferredConditionalTypes.ts │ │ ├── deferredConditionalTypes2.ts │ │ ├── deferredLookupTypeResolution.ts │ │ ├── deferredLookupTypeResolution2.ts │ │ ├── deferredTypeReferenceWithinArrayWithinTuple.ts │ │ ├── defineVariables_useDefineForClassFields.ts │ │ ├── definiteAssignmentOfDestructuredVariable.ts │ │ ├── definiteAssignmentWithErrorStillStripped.ts │ │ ├── deleteExpressionMustBeOptional.ts │ │ ├── deleteExpressionMustBeOptional_exactOptionalPropertyTypes.ts │ │ ├── deleteOperator1.ts │ │ ├── deleteOperatorInStrictMode.ts │ │ ├── deleteReadonly.ts │ │ ├── deleteReadonlyInStrictNullChecks.ts │ │ ├── dependencyViaImportAlias.ts │ │ ├── deprecatedBool.ts │ │ ├── deprecatedCompilerOptions1.ts │ │ ├── deprecatedCompilerOptions2.ts │ │ ├── deprecatedCompilerOptions3.ts │ │ ├── deprecatedCompilerOptions4.ts │ │ ├── deprecatedCompilerOptions5.ts │ │ ├── deprecatedCompilerOptions6.ts │ │ ├── derivedClassConstructorWithExplicitReturns01.ts │ │ ├── derivedClassOverridesPrivateFunction1.ts │ │ ├── derivedClasses.ts │ │ ├── derivedInterfaceCallSignature.ts │ │ ├── derivedTypeCallingBaseImplWithOptionalParams.ts │ │ ├── derivedTypeIncompatibleSignatures.ts │ │ ├── destructionAssignmentError.ts │ │ ├── destructureCatchClause.ts │ │ ├── destructureComputedProperty.ts │ │ ├── destructureOfVariableSameAsShorthand.ts │ │ ├── destructureOptionalParameter.ts │ │ ├── destructureTupleWithVariableElement.ts │ │ ├── destructuredDeclarationEmit.ts │ │ ├── destructuredLateBoundNameHasCorrectTypes.ts │ │ ├── destructuredMaappedTypeIsNotImplicitlyAny.ts │ │ ├── destructuringAssignmentWithDefault.ts │ │ ├── destructuringAssignmentWithDefault2.ts │ │ ├── destructuringAssignmentWithExportedName.ts │ │ ├── destructuringAssignmentWithStrictNullChecks.ts │ │ ├── destructuringAssignment_private.ts │ │ ├── destructuringControlFlowNoCrash.ts │ │ ├── destructuringFromUnionSpread.ts │ │ ├── destructuringInVariableDeclarations1.ts │ │ ├── destructuringInVariableDeclarations2.ts │ │ ├── destructuringInVariableDeclarations3.ts │ │ ├── destructuringInVariableDeclarations4.ts │ │ ├── destructuringInVariableDeclarations5.ts │ │ ├── destructuringInVariableDeclarations6.ts │ │ ├── destructuringInVariableDeclarations7.ts │ │ ├── destructuringInVariableDeclarations8.ts │ │ ├── destructuringInitializerContextualTypeFromContext.ts │ │ ├── destructuringPropertyAssignmentNameIsNotAssignmentTarget.ts │ │ ├── destructuringTempOccursAfterPrologue.ts │ │ ├── destructuringTuple.ts │ │ ├── destructuringTypeGuardFlow.ts │ │ ├── destructuringUnspreadableIntoRest.ts │ │ ├── destructuringWithConstraint.ts │ │ ├── destructuringWithGenericParameter.ts │ │ ├── destructuringWithNewExpression.ts │ │ ├── destructuringWithNumberLiteral.ts │ │ ├── detachedCommentAtStartOfConstructor1.ts │ │ ├── detachedCommentAtStartOfConstructor2.ts │ │ ├── detachedCommentAtStartOfFunctionBody1.ts │ │ ├── detachedCommentAtStartOfFunctionBody2.ts │ │ ├── detachedCommentAtStartOfLambdaFunction1.ts │ │ ├── detachedCommentAtStartOfLambdaFunction2.ts │ │ ├── didYouMeanElaborationsForExpressionsWhichCouldBeCalled.ts │ │ ├── didYouMeanStringLiteral.ts │ │ ├── didYouMeanSuggestionErrors.ts │ │ ├── differentTypesWithSameName.ts │ │ ├── disallowedBlockScopedInPresenceOfParseErrors1.ts │ │ ├── discriminableUnionWithIntersectedMembers.ts │ │ ├── discriminantElementAccessCheck.ts │ │ ├── discriminantNarrowingCouldBeCircular.ts │ │ ├── discriminantOrderIndependence.ts │ │ ├── discriminantPropertyCheck.ts │ │ ├── discriminantPropertyInference.ts │ │ ├── discriminantUsingEvaluatableTemplateExpression.ts │ │ ├── discriminantsAndNullOrUndefined.ts │ │ ├── discriminantsAndPrimitives.ts │ │ ├── discriminantsAndTypePredicates.ts │ │ ├── discriminateObjectTypesOnly.ts │ │ ├── discriminateWithDivergentAccessors1.ts │ │ ├── discriminateWithMissingProperty.ts │ │ ├── discriminateWithOptionalProperty1.ts │ │ ├── discriminateWithOptionalProperty2.ts │ │ ├── discriminateWithOptionalProperty3.ts │ │ ├── discriminateWithOptionalProperty4.ts │ │ ├── discriminatedUnionErrorMessage.ts │ │ ├── discriminatedUnionJsxElement.tsx │ │ ├── discriminatedUnionWithIndexSignature.ts │ │ ├── discriminatingUnionWithUnionPropertyAgainstUndefinedWithoutStrictNullChecks.ts │ │ ├── dissallowSymbolAsWeakType.ts │ │ ├── distributiveConditionalTypeConstraints.ts │ │ ├── distributiveConditionalTypeNeverIntersection1.ts │ │ ├── divergentAccessors1.ts │ │ ├── divergentAccessorsTypes1.ts │ │ ├── divergentAccessorsTypes2.ts │ │ ├── divergentAccessorsTypes3.ts │ │ ├── divergentAccessorsTypes4.ts │ │ ├── divergentAccessorsTypes5.ts │ │ ├── divergentAccessorsTypes6.ts │ │ ├── divergentAccessorsTypes7.ts │ │ ├── divergentAccessorsTypes8.ts │ │ ├── divergentAccessorsVisibility1.ts │ │ ├── divideAndConquerIntersections.ts │ │ ├── doNotElaborateAssignabilityToTypeParameters.ts │ │ ├── doNotEmitDetachedComments.ts │ │ ├── doNotEmitDetachedCommentsAtStartOfConstructor.ts │ │ ├── doNotEmitDetachedCommentsAtStartOfFunctionBody.ts │ │ ├── doNotEmitDetachedCommentsAtStartOfLambdaFunction.ts │ │ ├── doNotEmitPinnedCommentNotOnTopOfFile.ts │ │ ├── doNotEmitPinnedCommentOnNotEmittedNode.ts │ │ ├── doNotEmitPinnedCommentOnNotEmittedNodets.ts │ │ ├── doNotEmitPinnedDetachedComments.ts │ │ ├── doNotEmitTripleSlashCommentsInEmptyFile.ts │ │ ├── doNotEmitTripleSlashCommentsOnNotEmittedNode.ts │ │ ├── doNotInferUnrelatedTypes.ts │ │ ├── doNotWidenAtObjectLiteralPropertyAssignment.ts │ │ ├── doNotemitTripleSlashComments.ts │ │ ├── doWhileLoop.ts │ │ ├── doWhileUnreachableCode.ts │ │ ├── doYouNeedToChangeYourTargetLibraryES2015.ts │ │ ├── doYouNeedToChangeYourTargetLibraryES2016Plus.ts │ │ ├── doYouNeedToChangeYourTargetLibraryES2023.ts │ │ ├── doesNotNarrowUnionOfConstructorsWithInstanceof.ts │ │ ├── dontShowCompilerGeneratedMembers.ts │ │ ├── dottedModuleName.ts │ │ ├── dottedModuleName2.ts │ │ ├── dottedNamesInSystem.ts │ │ ├── dottedSymbolResolution1.ts │ │ ├── doubleMixinConditionalTypeBaseClassWorks.ts │ │ ├── doubleUnderStringLiteralAssignability.ts │ │ ├── doubleUnderscoreEnumEmit.ts │ │ ├── doubleUnderscoreExportStarConflict.ts │ │ ├── doubleUnderscoreLabels.ts │ │ ├── doubleUnderscoreMappedTypes.ts │ │ ├── doubleUnderscoreReactNamespace.ts │ │ ├── downlevelIterationDeprecated.ts │ │ ├── downlevelLetConst1.ts │ │ ├── downlevelLetConst10.ts │ │ ├── downlevelLetConst11.ts │ │ ├── downlevelLetConst12.ts │ │ ├── downlevelLetConst13.ts │ │ ├── downlevelLetConst14.ts │ │ ├── downlevelLetConst15.ts │ │ ├── downlevelLetConst16.ts │ │ ├── downlevelLetConst17.ts │ │ ├── downlevelLetConst18.ts │ │ ├── downlevelLetConst19.ts │ │ ├── downlevelLetConst2.ts │ │ ├── downlevelLetConst3.ts │ │ ├── downlevelLetConst4.ts │ │ ├── downlevelLetConst5.ts │ │ ├── downlevelLetConst6.ts │ │ ├── downlevelLetConst7.ts │ │ ├── downlevelLetConst8.ts │ │ ├── downlevelLetConst9.ts │ │ ├── dtsEmitTripleSlashAvoidUnnecessaryResolutionMode.ts │ │ ├── duplicateAnonymousInners1.ts │ │ ├── duplicateAnonymousModuleClasses.ts │ │ ├── duplicateClassElements.ts │ │ ├── duplicateConstructSignature.ts │ │ ├── duplicateConstructSignature2.ts │ │ ├── duplicateConstructorOverloadSignature.ts │ │ ├── duplicateConstructorOverloadSignature2.ts │ │ ├── duplicateDefaultExport.ts │ │ ├── duplicateErrorAssignability.ts │ │ ├── duplicateErrorClassExpression.ts │ │ ├── duplicateErrorNameNotFound.ts │ │ ├── duplicateIdentifierBindingElementInParameterDeclaration1.ts │ │ ├── duplicateIdentifierBindingElementInParameterDeclaration2.ts │ │ ├── duplicateIdentifierComputedName.ts │ │ ├── duplicateIdentifierDifferentModifiers.ts │ │ ├── duplicateIdentifierDifferentSpelling.ts │ │ ├── duplicateIdentifierEnum.ts │ │ ├── duplicateIdentifierInCatchBlock.ts │ │ ├── duplicateIdentifierRelatedSpans1.ts │ │ ├── duplicateIdentifierRelatedSpans2.ts │ │ ├── duplicateIdentifierRelatedSpans3.ts │ │ ├── duplicateIdentifierRelatedSpans4.ts │ │ ├── duplicateIdentifierRelatedSpans5.ts │ │ ├── duplicateIdentifierRelatedSpans6.ts │ │ ├── duplicateIdentifierRelatedSpans7.ts │ │ ├── duplicateIdentifierRelatedSpans_moduleAugmentation.ts │ │ ├── duplicateIdentifierShouldNotShortCircuitBaseTypeBinding.ts │ │ ├── duplicateIdentifiersAcrossContainerBoundaries.ts │ │ ├── duplicateIdentifiersAcrossFileBoundaries.ts │ │ ├── duplicateInterfaceMembers1.ts │ │ ├── duplicateLabel1.ts │ │ ├── duplicateLabel2.ts │ │ ├── duplicateLabel3.ts │ │ ├── duplicateLabel4.ts │ │ ├── duplicateLocalVariable1.ts │ │ ├── duplicateLocalVariable2.ts │ │ ├── duplicateLocalVariable3.ts │ │ ├── duplicateLocalVariable4.ts │ │ ├── duplicateObjectLiteralProperty.ts │ │ ├── duplicateObjectLiteralProperty_computedName1.ts │ │ ├── duplicateObjectLiteralProperty_computedName2.ts │ │ ├── duplicateObjectLiteralProperty_computedName3.ts │ │ ├── duplicateObjectLiteralProperty_computedNameNegative1.ts │ │ ├── duplicateOverloadInTypeAugmentation1.ts │ │ ├── duplicatePackage.ts │ │ ├── duplicatePackage_globalMerge.ts │ │ ├── duplicatePackage_packageIdIncludesSubModule.ts │ │ ├── duplicatePackage_referenceTypes.ts │ │ ├── duplicatePackage_relativeImportWithinPackage.ts │ │ ├── duplicatePackage_relativeImportWithinPackage_scoped.ts │ │ ├── duplicatePackage_subModule.ts │ │ ├── duplicatePackage_withErrors.ts │ │ ├── duplicatePropertiesInStrictMode.ts │ │ ├── duplicateStringNamedProperty1.ts │ │ ├── duplicateSymbolsExportMatching.ts │ │ ├── duplicateTypeParameters1.ts │ │ ├── duplicateTypeParameters2.ts │ │ ├── duplicateTypeParameters3.ts │ │ ├── duplicateVarAndImport.ts │ │ ├── duplicateVarAndImport2.ts │ │ ├── duplicateVariableDeclaration1.ts │ │ ├── duplicateVariablesByScope.ts │ │ ├── duplicateVariablesWithAny.ts │ │ ├── duplicateVarsAcrossFileBoundaries.ts │ │ ├── dynamicImportEvaluateSpecifier.ts │ │ ├── dynamicImportInDefaultExportExpression.ts │ │ ├── dynamicImportTrailingComma.ts │ │ ├── dynamicImportWithNestedThis_es2015.ts │ │ ├── dynamicImportWithNestedThis_es5.ts │ │ ├── dynamicImportsDeclaration.ts │ │ ├── dynamicModuleTypecheckError.ts │ │ ├── dynamicNames.ts │ │ ├── dynamicNamesErrors.ts │ │ ├── dynamicRequire.ts │ │ ├── elaboratedErrors.ts │ │ ├── elaboratedErrorsOnNullableTargets01.ts │ │ ├── elaborationForPossiblyCallableTypeStillReferencesArgumentAtTopLevel.ts │ │ ├── elementAccessExpressionInternalComments.ts │ │ ├── elidedEmbeddedStatementsReplacedWithSemicolon.ts │ │ ├── elidedJSImport1.ts │ │ ├── elidedJSImport2.ts │ │ ├── elidingImportNames.ts │ │ ├── emitAccessExpressionOfCastedObjectLiteralExpressionInArrowFunctionES5.ts │ │ ├── emitAccessExpressionOfCastedObjectLiteralExpressionInArrowFunctionES6.ts │ │ ├── emitBOM.ts │ │ ├── emitBundleWithPrologueDirectives1.ts │ │ ├── emitBundleWithShebang1.ts │ │ ├── emitBundleWithShebang2.ts │ │ ├── emitBundleWithShebangAndPrologueDirectives1.ts │ │ ├── emitBundleWithShebangAndPrologueDirectives2.ts │ │ ├── emitCapturingThisInTupleDestructuring1.ts │ │ ├── emitCapturingThisInTupleDestructuring2.ts │ │ ├── emitClassExpressionInDeclarationFile.ts │ │ ├── emitClassExpressionInDeclarationFile2.ts │ │ ├── emitClassMergedWithConstNamespaceNotElided.ts │ │ ├── emitCommentsOnlyFile.ts │ │ ├── emitDecoratorMetadata_isolatedModules.ts │ │ ├── emitDecoratorMetadata_object.ts │ │ ├── emitDecoratorMetadata_restArgs.ts │ │ ├── emitHelpersWithLocalCollisions.ts │ │ ├── emitMemberAccessExpression.ts │ │ ├── emitMethodCalledNew.ts │ │ ├── emitOneLineVariableDeclarationRemoveCommentsFalse.ts │ │ ├── emitPinnedCommentsOnTopOfFile.ts │ │ ├── emitPostComments.ts │ │ ├── emitPreComments.ts │ │ ├── emitSkipsThisWithRestParameter.ts │ │ ├── emitSuperCallBeforeEmitParameterPropertyDeclaration1.ts │ │ ├── emitSuperCallBeforeEmitParameterPropertyDeclaration1ES6.ts │ │ ├── emitSuperCallBeforeEmitPropertyDeclaration1.ts │ │ ├── emitSuperCallBeforeEmitPropertyDeclaration1ES6.ts │ │ ├── emitSuperCallBeforeEmitPropertyDeclarationAndParameterPropertyDeclaration1.ts │ │ ├── emitSuperCallBeforeEmitPropertyDeclarationAndParameterPropertyDeclaration1ES6.ts │ │ ├── emitThisInObjectLiteralGetter.ts │ │ ├── emitThisInSuperMethodCall.ts │ │ ├── emitTopOfFileTripleSlashCommentOnNotEmittedNodeIfRemoveCommentsIsFalse.ts │ │ ├── emptyAnonymousObjectNarrowing.ts │ │ ├── emptyArgumentsListComment.ts │ │ ├── emptyArrayDestructuringExpressionVisitedByTransformer.ts │ │ ├── emptyDeclarationEmitIsModule.ts │ │ ├── emptyEnum.ts │ │ ├── emptyExpr.ts │ │ ├── emptyFile-declaration.ts │ │ ├── emptyFile-souremap.ts │ │ ├── emptyFile.ts │ │ ├── emptyGenericParamList.ts │ │ ├── emptyIndexer.ts │ │ ├── emptyMemberAccess.ts │ │ ├── emptyModuleName.ts │ │ ├── emptyObjectNotSubtypeOfIndexSignatureContainingObject1.ts │ │ ├── emptyObjectNotSubtypeOfIndexSignatureContainingObject2.ts │ │ ├── emptyOptionalBindingPatternInDeclarationSignature.ts │ │ ├── emptyThenWarning.ts │ │ ├── emptyThenWithoutWarning.ts │ │ ├── emptyTypeArgumentList.ts │ │ ├── emptyTypeArgumentListWithNew.ts │ │ ├── ensureNoCrashExportAssignmentDefineProperrtyPotentialMerge.ts │ │ ├── enumAssignmentCompat.ts │ │ ├── enumAssignmentCompat2.ts │ │ ├── enumAssignmentCompat3.ts │ │ ├── enumAssignmentCompat4.ts │ │ ├── enumAssignmentCompat5.ts │ │ ├── enumAssignmentCompat6.ts │ │ ├── enumAssignmentCompat7.ts │ │ ├── enumBasics1.ts │ │ ├── enumBasics2.ts │ │ ├── enumBasics3.ts │ │ ├── enumCodeGenNewLines1.ts │ │ ├── enumConflictsWithGlobalIdentifier.ts │ │ ├── enumDecl1.ts │ │ ├── enumDeclarationEmitInitializerHasImport.ts │ │ ├── enumFromExternalModule.ts │ │ ├── enumGenericTypeClash.ts │ │ ├── enumIdentifierLiterals.ts │ │ ├── enumIndexer.ts │ │ ├── enumInitializersWithExponents.ts │ │ ├── enumKeysQuotedAsObjectPropertiesInDeclarationEmit.ts │ │ ├── enumLiteralAssignableToEnumInsideUnion.ts │ │ ├── enumLiteralUnionNotWidened.ts │ │ ├── enumLiteralsSubtypeReduction.ts │ │ ├── enumMapBackIntoItself.ts │ │ ├── enumMemberNameNonIdentifier.ts │ │ ├── enumMemberReduction.ts │ │ ├── enumMemberResolution.ts │ │ ├── enumNegativeLiteral1.ts │ │ ├── enumNoInitializerFollowsNonLiteralInitializer.ts │ │ ├── enumNumbering1.ts │ │ ├── enumOperations.ts │ │ ├── enumPropertyAccess.ts │ │ ├── enumPropertyAccessBeforeInitalisation.ts │ │ ├── enumUsedBeforeDeclaration.ts │ │ ├── enumWithBigint.ts │ │ ├── enumWithComputedMember.ts │ │ ├── enumWithExport.ts │ │ ├── enumWithInfinityProperty.ts │ │ ├── enumWithNaNProperty.ts │ │ ├── enumWithNegativeInfinityProperty.ts │ │ ├── enumWithNonLiteralStringInitializer.ts │ │ ├── enumWithParenthesizedInitializer1.ts │ │ ├── enumWithPrimitiveName.ts │ │ ├── enumWithQuotedElementName1.ts │ │ ├── enumWithQuotedElementName2.ts │ │ ├── enumWithUnicodeEscape1.ts │ │ ├── enumWithoutInitializerAfterComputedMember.ts │ │ ├── enumsWithMultipleDeclarations1.ts │ │ ├── enumsWithMultipleDeclarations2.ts │ │ ├── enumsWithMultipleDeclarations3.ts │ │ ├── erasableSyntaxOnly.ts │ │ ├── erasableSyntaxOnly2.ts │ │ ├── erasableSyntaxOnlyDeclaration.ts │ │ ├── errorCause.ts │ │ ├── errorConstructorSubtypes.ts │ │ ├── errorElaboration.ts │ │ ├── errorElaborationDivesIntoApparentlyPresentPropsOnly.ts │ │ ├── errorForBareSpecifierWithImplicitModuleResolutionNone.ts │ │ ├── errorForConflictingExportEqualsValue.ts │ │ ├── errorForUsingPropertyOfTypeAsType01.ts │ │ ├── errorForUsingPropertyOfTypeAsType02.ts │ │ ├── errorForUsingPropertyOfTypeAsType03.ts │ │ ├── errorForwardReferenceForwadingConstructor.ts │ │ ├── errorHandlingInInstanceOf.ts │ │ ├── errorInUnnamedClassExpression.ts │ │ ├── errorInfoForRelatedIndexTypesNoConstraintElaboration.ts │ │ ├── errorLocationForInterfaceExtension.ts │ │ ├── errorMessageOnIntersectionsWithDiscriminants01.ts │ │ ├── errorMessageOnObjectLiteralType.ts │ │ ├── errorMessagesIntersectionTypes01.ts │ │ ├── errorMessagesIntersectionTypes02.ts │ │ ├── errorMessagesIntersectionTypes03.ts │ │ ├── errorMessagesIntersectionTypes04.ts │ │ ├── errorOnContextuallyTypedReturnType.ts │ │ ├── errorOnEnumReferenceInCondition.ts │ │ ├── errorOnInitializerInInterfaceProperty.ts │ │ ├── errorOnInitializerInObjectTypeLiteralProperty.ts │ │ ├── errorOnUnionVsObjectShouldDeeplyDisambiguate.ts │ │ ├── errorOnUnionVsObjectShouldDeeplyDisambiguate2.ts │ │ ├── errorRecoveryInClassDeclaration.ts │ │ ├── errorRecoveryWithDotFollowedByNamespaceKeyword.ts │ │ ├── errorSpanForUnclosedJsxTag.tsx │ │ ├── errorSupression1.ts │ │ ├── errorTypesAsTypeArguments.ts │ │ ├── errorWithSameNameType.ts │ │ ├── errorWithTruncatedType.ts │ │ ├── errorsForCallAndAssignmentAreSimilar.ts │ │ ├── errorsInGenericTypeReference.ts │ │ ├── errorsOnImportedSymbol.ts │ │ ├── errorsOnUnionsOfOverlappingObjects01.ts │ │ ├── errorsWithInvokablesInUnions01.ts │ │ ├── es2015modulekind.ts │ │ ├── es2015modulekindWithES6Target.ts │ │ ├── es2017basicAsync.ts │ │ ├── es2018ObjectAssign.ts │ │ ├── es5-amd.ts │ │ ├── es5-asyncFunction.ts │ │ ├── es5-asyncFunctionArrayLiterals.ts │ │ ├── es5-asyncFunctionBinaryExpressions.ts │ │ ├── es5-asyncFunctionCallExpressions.ts │ │ ├── es5-asyncFunctionConditionals.ts │ │ ├── es5-asyncFunctionDoStatements.ts │ │ ├── es5-asyncFunctionElementAccess.ts │ │ ├── es5-asyncFunctionForInStatements.ts │ │ ├── es5-asyncFunctionForOfStatements.ts │ │ ├── es5-asyncFunctionForStatements.ts │ │ ├── es5-asyncFunctionHoisting.ts │ │ ├── es5-asyncFunctionIfStatements.ts │ │ ├── es5-asyncFunctionLongObjectLiteral.ts │ │ ├── es5-asyncFunctionNestedLoops.ts │ │ ├── es5-asyncFunctionNewExpressions.ts │ │ ├── es5-asyncFunctionObjectLiterals.ts │ │ ├── es5-asyncFunctionPropertyAccess.ts │ │ ├── es5-asyncFunctionReturnStatements.ts │ │ ├── es5-asyncFunctionSwitchStatements.ts │ │ ├── es5-asyncFunctionTryStatements.ts │ │ ├── es5-asyncFunctionWhileStatements.ts │ │ ├── es5-asyncFunctionWithStatements.ts │ │ ├── es5-commonjs.ts │ │ ├── es5-commonjs2.ts │ │ ├── es5-commonjs3.ts │ │ ├── es5-commonjs4.ts │ │ ├── es5-commonjs5.ts │ │ ├── es5-commonjs6.ts │ │ ├── es5-commonjs7.ts │ │ ├── es5-commonjs8.ts │ │ ├── es5-declaration-amd.ts │ │ ├── es5-importHelpersAsyncFunctions.ts │ │ ├── es5-oldStyleOctalLiteralInEnums.ts │ │ ├── es5-souremap-amd.ts │ │ ├── es5-system.ts │ │ ├── es5-system2.ts │ │ ├── es5-umd.ts │ │ ├── es5-umd2.ts │ │ ├── es5-umd3.ts │ │ ├── es5-umd4.ts │ │ ├── es5-yieldFunctionObjectLiterals.ts │ │ ├── es5ExportDefaultClassDeclaration.ts │ │ ├── es5ExportDefaultClassDeclaration2.ts │ │ ├── es5ExportDefaultClassDeclaration3.ts │ │ ├── es5ExportDefaultClassDeclaration4.ts │ │ ├── es5ExportDefaultExpression.ts │ │ ├── es5ExportDefaultFunctionDeclaration.ts │ │ ├── es5ExportDefaultFunctionDeclaration2.ts │ │ ├── es5ExportDefaultFunctionDeclaration3.ts │ │ ├── es5ExportDefaultFunctionDeclaration4.ts │ │ ├── es5ExportDefaultIdentifier.ts │ │ ├── es5ExportEquals.ts │ │ ├── es5ExportEqualsDts.ts │ │ ├── es5ModuleInternalNamedImports.ts │ │ ├── es5ModuleWithModuleGenAmd.ts │ │ ├── es5ModuleWithModuleGenCommonjs.ts │ │ ├── es5ModuleWithoutModuleGenTarget.ts │ │ ├── es5SetterparameterDestructuringNotElided.ts │ │ ├── es5andes6module.ts │ │ ├── es6-amd.ts │ │ ├── es6-declaration-amd.ts │ │ ├── es6-sourcemap-amd.ts │ │ ├── es6-umd.ts │ │ ├── es6-umd2.ts │ │ ├── es6ClassSuperCodegenBug.ts │ │ ├── es6ClassTest.ts │ │ ├── es6ClassTest2.ts │ │ ├── es6ClassTest3.ts │ │ ├── es6ClassTest4.ts │ │ ├── es6ClassTest5.ts │ │ ├── es6ClassTest7.ts │ │ ├── es6ClassTest8.ts │ │ ├── es6ClassTest9.ts │ │ ├── es6DeclOrdering.ts │ │ ├── es6ExportAll.ts │ │ ├── es6ExportAllInEs5.ts │ │ ├── es6ExportAssignment.ts │ │ ├── es6ExportAssignment2.ts │ │ ├── es6ExportAssignment3.ts │ │ ├── es6ExportAssignment4.ts │ │ ├── es6ExportClause.ts │ │ ├── es6ExportClauseInEs5.ts │ │ ├── es6ExportClauseWithAssignmentInEs5.ts │ │ ├── es6ExportClauseWithoutModuleSpecifier.ts │ │ ├── es6ExportClauseWithoutModuleSpecifierInEs5.ts │ │ ├── es6ExportDefaultClassDeclaration.ts │ │ ├── es6ExportDefaultClassDeclaration2.ts │ │ ├── es6ExportDefaultExpression.ts │ │ ├── es6ExportDefaultFunctionDeclaration.ts │ │ ├── es6ExportDefaultFunctionDeclaration2.ts │ │ ├── es6ExportDefaultIdentifier.ts │ │ ├── es6ExportEquals.ts │ │ ├── es6ExportEqualsInterop.ts │ │ ├── es6ImportDefaultBinding.ts │ │ ├── es6ImportDefaultBindingAmd.ts │ │ ├── es6ImportDefaultBindingDts.ts │ │ ├── es6ImportDefaultBindingFollowedWithNamedImport.ts │ │ ├── es6ImportDefaultBindingFollowedWithNamedImport1.ts │ │ ├── es6ImportDefaultBindingFollowedWithNamedImport1InEs5.ts │ │ ├── es6ImportDefaultBindingFollowedWithNamedImport1WithExport.ts │ │ ├── es6ImportDefaultBindingFollowedWithNamedImportDts.ts │ │ ├── es6ImportDefaultBindingFollowedWithNamedImportDts1.ts │ │ ├── es6ImportDefaultBindingFollowedWithNamedImportInEs5.ts │ │ ├── es6ImportDefaultBindingFollowedWithNamedImportWithExport.ts │ │ ├── es6ImportDefaultBindingFollowedWithNamespaceBinding.ts │ │ ├── es6ImportDefaultBindingFollowedWithNamespaceBinding1.ts │ │ ├── es6ImportDefaultBindingFollowedWithNamespaceBinding1InEs5.ts │ │ ├── es6ImportDefaultBindingFollowedWithNamespaceBinding1WithExport.ts │ │ ├── es6ImportDefaultBindingFollowedWithNamespaceBindingDts.ts │ │ ├── es6ImportDefaultBindingFollowedWithNamespaceBindingDts1.ts │ │ ├── es6ImportDefaultBindingFollowedWithNamespaceBindingInEs5.ts │ │ ├── es6ImportDefaultBindingFollowedWithNamespaceBindingWithExport.ts │ │ ├── es6ImportDefaultBindingInEs5.ts │ │ ├── es6ImportDefaultBindingMergeErrors.ts │ │ ├── es6ImportDefaultBindingNoDefaultProperty.ts │ │ ├── es6ImportDefaultBindingWithExport.ts │ │ ├── es6ImportEqualsDeclaration.ts │ │ ├── es6ImportEqualsDeclaration2.ts │ │ ├── es6ImportEqualsExportModuleCommonJsError.ts │ │ ├── es6ImportEqualsExportModuleEs2015Error.ts │ │ ├── es6ImportNameSpaceImport.ts │ │ ├── es6ImportNameSpaceImportAmd.ts │ │ ├── es6ImportNameSpaceImportDts.ts │ │ ├── es6ImportNameSpaceImportInEs5.ts │ │ ├── es6ImportNameSpaceImportMergeErrors.ts │ │ ├── es6ImportNameSpaceImportNoNamedExports.ts │ │ ├── es6ImportNameSpaceImportWithExport.ts │ │ ├── es6ImportNamedImport.ts │ │ ├── es6ImportNamedImportAmd.ts │ │ ├── es6ImportNamedImportDts.ts │ │ ├── es6ImportNamedImportIdentifiersParsing.ts │ │ ├── es6ImportNamedImportInEs5.ts │ │ ├── es6ImportNamedImportInExportAssignment.ts │ │ ├── es6ImportNamedImportInIndirectExportAssignment.ts │ │ ├── es6ImportNamedImportMergeErrors.ts │ │ ├── es6ImportNamedImportNoExportMember.ts │ │ ├── es6ImportNamedImportNoNamedExports.ts │ │ ├── es6ImportNamedImportParsingError.ts │ │ ├── es6ImportNamedImportWithExport.ts │ │ ├── es6ImportNamedImportWithTypesAndValues.ts │ │ ├── es6ImportParseErrors.ts │ │ ├── es6ImportWithJsDocTags.ts │ │ ├── es6ImportWithoutFromClause.ts │ │ ├── es6ImportWithoutFromClauseAmd.ts │ │ ├── es6ImportWithoutFromClauseInEs5.ts │ │ ├── es6ImportWithoutFromClauseNonInstantiatedModule.ts │ │ ├── es6ImportWithoutFromClauseWithExport.ts │ │ ├── es6MemberScoping.ts │ │ ├── es6Module.ts │ │ ├── es6ModuleClassDeclaration.ts │ │ ├── es6ModuleConst.ts │ │ ├── es6ModuleConstEnumDeclaration.ts │ │ ├── es6ModuleConstEnumDeclaration2.ts │ │ ├── es6ModuleEnumDeclaration.ts │ │ ├── es6ModuleFunctionDeclaration.ts │ │ ├── es6ModuleInternalImport.ts │ │ ├── es6ModuleInternalNamedImports.ts │ │ ├── es6ModuleInternalNamedImports2.ts │ │ ├── es6ModuleLet.ts │ │ ├── es6ModuleModuleDeclaration.ts │ │ ├── es6ModuleVariableStatement.ts │ │ ├── es6ModuleWithModuleGenTargetAmd.ts │ │ ├── es6ModuleWithModuleGenTargetCommonjs.ts │ │ ├── es6UseOfTopLevelRequire.ts │ │ ├── esDecoratorsClassFieldsCrash.ts │ │ ├── esModuleInterop.ts │ │ ├── esModuleInteropDefaultImports.ts │ │ ├── esModuleInteropDefaultMemberMustBeSyntacticallyDefaultExport.ts │ │ ├── esModuleInteropEnablesSyntheticDefaultImports.ts │ │ ├── esModuleInteropImportCall.ts │ │ ├── esModuleInteropImportDefaultWhenAllNamedAreDefaultAlias.ts │ │ ├── esModuleInteropImportNamespace.ts │ │ ├── esModuleInteropImportTSLibHasImport.ts │ │ ├── esModuleInteropNamedDefaultImports.ts │ │ ├── esModuleInteropPrettyErrorRelatedInformation.ts │ │ ├── esModuleInteropTslibHelpers.ts │ │ ├── esModuleInteropUsesExportStarWhenDefaultPlusNames.ts │ │ ├── esModuleInteropWithExportStar.ts │ │ ├── esModuleIntersectionCrash.ts │ │ ├── esNextWeakRefs_IterableWeakMap.ts │ │ ├── escapedIdentifiers.ts │ │ ├── escapedReservedCompilerNamedIdentifier.ts │ │ ├── esmModeDeclarationFileWithExportAssignment.ts │ │ ├── esmNoSynthesizedDefault.ts │ │ ├── evalAfter0.ts │ │ ├── evalOrArgumentsInDeclarationFunctions.ts │ │ ├── eventEmitterPatternWithRecordOfFunction.ts │ │ ├── evolvingArrayResolvedAssert.ts │ │ ├── evolvingArrayTypeInAssert.ts │ │ ├── exactOptionalPropertyTypesIdentical.ts │ │ ├── exactSpellingSuggestion.ts │ │ ├── excessPropertiesInOverloads.ts │ │ ├── excessPropertyCheckIntersectionWithIndexSignature.ts │ │ ├── excessPropertyCheckIntersectionWithRecursiveType.ts │ │ ├── excessPropertyCheckWithEmptyObject.ts │ │ ├── excessPropertyCheckWithMultipleDiscriminants.ts │ │ ├── excessPropertyCheckWithNestedArrayIntersection.ts │ │ ├── excessPropertyCheckWithSpread.ts │ │ ├── excessPropertyCheckWithUnions.ts │ │ ├── excessPropertyCheckingIntersectionWithConditional.ts │ │ ├── excessPropertyChecksWithNestedIntersections.ts │ │ ├── excessPropertyErrorForFunctionTypes.ts │ │ ├── excessPropertyErrorsSuppressed.ts │ │ ├── excessiveStackDepthFlatArray.ts │ │ ├── excessivelyLargeTupleSpread.ts │ │ ├── exhaustiveSwitchCheckCircularity.ts │ │ ├── exhaustiveSwitchImplicitReturn.ts │ │ ├── exhaustiveSwitchWithWideningLiteralTypes.ts │ │ ├── expandoFunctionBlockShadowing.ts │ │ ├── expandoFunctionContextualTypes.ts │ │ ├── expandoFunctionContextualTypesJSDocInTs.ts │ │ ├── expandoFunctionContextualTypesJs.ts │ │ ├── expandoFunctionContextualTypesNoValue.ts │ │ ├── expandoFunctionExpressionsWithDynamicNames.ts │ │ ├── expandoFunctionExpressionsWithDynamicNames2.ts │ │ ├── expandoFunctionNestedAssigments.ts │ │ ├── expandoFunctionNestedAssigmentsDeclared.ts │ │ ├── expandoFunctionNullishProperty.ts │ │ ├── expandoFunctionSymbolProperty.ts │ │ ├── expandoFunctionSymbolPropertyJs.ts │ │ ├── experimentalDecoratorMetadataUnresolvedTypeObjectInEmit.ts │ │ ├── explicitAnyAfterSpreadNoImplicitAnyError.ts │ │ ├── exportAlreadySeen.ts │ │ ├── exportArrayBindingPattern.ts │ │ ├── exportAsNamespace.d.ts │ │ ├── exportAsNamespaceConflict.ts │ │ ├── exportAsNamespace_augment.ts │ │ ├── exportAssignClassAndModule.ts │ │ ├── exportAssignValueAndType.ts │ │ ├── exportAssignedNamespaceIsVisibleInDeclarationEmit.ts │ │ ├── exportAssignedTypeAsTypeAnnotation.ts │ │ ├── exportAssignmentClass.ts │ │ ├── exportAssignmentEnum.ts │ │ ├── exportAssignmentError.ts │ │ ├── exportAssignmentExpressionIsExpressionNode.ts │ │ ├── exportAssignmentFunction.ts │ │ ├── exportAssignmentImportMergeNoCrash.ts │ │ ├── exportAssignmentInterface.ts │ │ ├── exportAssignmentInternalModule.ts │ │ ├── exportAssignmentMembersVisibleInAugmentation.ts │ │ ├── exportAssignmentOfDeclaredExternalModule.ts │ │ ├── exportAssignmentOfGenericType1.ts │ │ ├── exportAssignmentVariable.ts │ │ ├── exportAssignmentWithDeclareAndExportModifiers.ts │ │ ├── exportAssignmentWithDeclareModifier.ts │ │ ├── exportAssignmentWithExportModifier.ts │ │ ├── exportAssignmentWithExports.ts │ │ ├── exportAssignmentWithImportStatementPrivacyError.ts │ │ ├── exportAssignmentWithPrivacyError.ts │ │ ├── exportAssignmentWithoutAllowSyntheticDefaultImportsError.ts │ │ ├── exportAssignmentWithoutIdentifier1.ts │ │ ├── exportClassExtendingIntersection.ts │ │ ├── exportClassWithoutName.ts │ │ ├── exportDeclarationForModuleOrEnumWithMemberOfSameName.ts │ │ ├── exportDeclarationInInternalModule.ts │ │ ├── exportDeclarationWithModuleSpecifierNameOnNextLine1.ts │ │ ├── exportDeclarationsInAmbientNamespaces.ts │ │ ├── exportDeclarationsInAmbientNamespaces2.ts │ │ ├── exportDeclareClass1.ts │ │ ├── exportDefaultAbstractClass.ts │ │ ├── exportDefaultAlias_excludesEverything.ts │ │ ├── exportDefaultAsyncFunction.ts │ │ ├── exportDefaultAsyncFunction2.ts │ │ ├── exportDefaultClassAndValue.ts │ │ ├── exportDefaultClassInNamespace.ts │ │ ├── exportDefaultDuplicateCrash.ts │ │ ├── exportDefaultForNonInstantiatedModule.ts │ │ ├── exportDefaultFunctionInNamespace.ts │ │ ├── exportDefaultImportedType.ts │ │ ├── exportDefaultInterface.ts │ │ ├── exportDefaultInterfaceAndFunctionOverloads.ts │ │ ├── exportDefaultInterfaceAndTwoFunctions.ts │ │ ├── exportDefaultInterfaceAndValue.ts │ │ ├── exportDefaultInterfaceClassAndFunctionOverloads.ts │ │ ├── exportDefaultInterfaceClassAndValue.ts │ │ ├── exportDefaultMarksIdentifierAsUsed.ts │ │ ├── exportDefaultMissingName.ts │ │ ├── exportDefaultParenthesize.ts │ │ ├── exportDefaultParenthesizeES6.ts │ │ ├── exportDefaultProperty.ts │ │ ├── exportDefaultProperty2.ts │ │ ├── exportDefaultQualifiedNameNoError.ts │ │ ├── exportDefaultStripsFreshness.ts │ │ ├── exportDefaultTypeAndClass.ts │ │ ├── exportDefaultTypeAndFunctionOverloads.ts │ │ ├── exportDefaultTypeClassAndValue.ts │ │ ├── exportDefaultVariable.ts │ │ ├── exportDefaultWithJSDoc1.ts │ │ ├── exportDefaultWithJSDoc2.ts │ │ ├── exportEmptyArrayBindingPattern.ts │ │ ├── exportEmptyObjectBindingPattern.ts │ │ ├── exportEqualCallable.ts │ │ ├── exportEqualErrorType.ts │ │ ├── exportEqualMemberMissing.ts │ │ ├── exportEqualNamespaces.ts │ │ ├── exportEqualsAmd.ts │ │ ├── exportEqualsClassNoRedeclarationError.ts │ │ ├── exportEqualsClassRedeclarationError.ts │ │ ├── exportEqualsCommonJs.ts │ │ ├── exportEqualsDefaultProperty.ts │ │ ├── exportEqualsOfModule.ts │ │ ├── exportEqualsProperty.ts │ │ ├── exportEqualsProperty2.ts │ │ ├── exportEqualsUmd.ts │ │ ├── exportImport.ts │ │ ├── exportImportAndClodule.ts │ │ ├── exportImportCanSubstituteConstEnumForValue.ts │ │ ├── exportImportMultipleFiles.ts │ │ ├── exportImportNonInstantiatedModule.ts │ │ ├── exportImportNonInstantiatedModule2.ts │ │ ├── exportInFunction.ts │ │ ├── exportInterfaceClassAndValue.ts │ │ ├── exportInterfaceClassAndValueWithDuplicatesInImportList.ts │ │ ├── exportNamespaceDeclarationRetainsVisibility.ts │ │ ├── exportObjectRest.ts │ │ ├── exportPrivateType.ts │ │ ├── exportRedeclarationTypeAliases.ts │ │ ├── exportSameNameFuncVar.ts │ │ ├── exportSpecifierAndExportedMemberDeclaration.ts │ │ ├── exportSpecifierAndLocalMemberDeclaration.ts │ │ ├── exportSpecifierForAGlobal.ts │ │ ├── exportSpecifierReferencingOuterDeclaration1.ts │ │ ├── exportSpecifierReferencingOuterDeclaration2.ts │ │ ├── exportSpecifierReferencingOuterDeclaration3.ts │ │ ├── exportSpecifierReferencingOuterDeclaration4.ts │ │ ├── exportStarForValues.ts │ │ ├── exportStarForValues10.ts │ │ ├── exportStarForValues2.ts │ │ ├── exportStarForValues3.ts │ │ ├── exportStarForValues4.ts │ │ ├── exportStarForValues5.ts │ │ ├── exportStarForValues6.ts │ │ ├── exportStarForValues7.ts │ │ ├── exportStarForValues8.ts │ │ ├── exportStarForValues9.ts │ │ ├── exportStarForValuesInSystem.ts │ │ ├── exportStarFromEmptyModule.ts │ │ ├── exportStarNotElided.ts │ │ ├── exportToString.ts │ │ ├── exportTwoInterfacesWithSameName.ts │ │ ├── exportVisibility.ts │ │ ├── exportedBlockScopedDeclarations.ts │ │ ├── exportedInterfaceInaccessibleInCallbackInModule.ts │ │ ├── exportedVariable1.ts │ │ ├── exportingContainingVisibleType.ts │ │ ├── exportsInAmbientModules1.ts │ │ ├── exportsInAmbientModules2.ts │ │ ├── expr.ts │ │ ├── expressionTypeNodeShouldError.ts │ │ ├── expressionWithJSDocTypeArguments.ts │ │ ├── expressionsForbiddenInParameterInitializers.ts │ │ ├── extBaseClass1.ts │ │ ├── extBaseClass2.ts │ │ ├── extendAndImplementTheSameBaseType.ts │ │ ├── extendAndImplementTheSameBaseType2.ts │ │ ├── extendArray.ts │ │ ├── extendBaseClassBeforeItsDeclared.ts │ │ ├── extendConstructSignatureInInterface.ts │ │ ├── extendFromAny.ts │ │ ├── extendGenericArray.ts │ │ ├── extendGenericArray2.ts │ │ ├── extendGlobalThis.ts │ │ ├── extendGlobalThis2.ts │ │ ├── extendNonClassSymbol1.ts │ │ ├── extendNonClassSymbol2.ts │ │ ├── extendPrivateConstructorClass.ts │ │ ├── extendedInterfaceGenericType.ts │ │ ├── extendedInterfacesWithDuplicateTypeParameters.ts │ │ ├── extendedUnicodeEscapeSequenceIdentifiers.ts │ │ ├── extendedUnicodePlaneIdentifiers.ts │ │ ├── extendedUnicodePlaneIdentifiersJSDoc.ts │ │ ├── extendingClassFromAliasAndUsageInIndexer.ts │ │ ├── extendingCollectionsWithCheckJs.ts │ │ ├── extendsClauseAlreadySeen.ts │ │ ├── extendsClauseAlreadySeen2.ts │ │ ├── extendsJavaScript.ts │ │ ├── extendsUntypedModule.ts │ │ ├── extension.ts │ │ ├── externFunc.ts │ │ ├── externModule.ts │ │ ├── externModuleClobber.ts │ │ ├── externSemantics.ts │ │ ├── externSyntax.ts │ │ ├── externalModuleAssignToVar.ts │ │ ├── externalModuleExportingGenericClass.ts │ │ ├── externalModuleImmutableBindings.ts │ │ ├── externalModuleQualification.ts │ │ ├── externalModuleReferenceDoubleUnderscore1.ts │ │ ├── externalModuleReferenceOfImportDeclarationWithExportModifier.ts │ │ ├── externalModuleRefernceResolutionOrderInImportDeclaration.ts │ │ ├── externalModuleResolution.ts │ │ ├── externalModuleResolution2.ts │ │ ├── externalModuleWithoutCompilerFlag1.ts │ │ ├── extractInferenceImprovement.ts │ │ ├── fakeInfinity1.ts │ │ ├── fakeInfinity2.ts │ │ ├── fakeInfinity3.ts │ │ ├── fallFromLastCase1.ts │ │ ├── fallFromLastCase2.ts │ │ ├── fallbackToBindingPatternForTypeInference.ts │ │ ├── fatArrowSelf.ts │ │ ├── fatArrowfunctionAsType.ts │ │ ├── fatarrowfunctions.ts │ │ ├── fatarrowfunctionsErrors.ts │ │ ├── fatarrowfunctionsInFunctionParameterDefaults.ts │ │ ├── fatarrowfunctionsInFunctions.ts │ │ ├── fatarrowfunctionsOptionalArgs.ts │ │ ├── fatarrowfunctionsOptionalArgsErrors1.ts │ │ ├── fatarrowfunctionsOptionalArgsErrors2.ts │ │ ├── fatarrowfunctionsOptionalArgsErrors3.ts │ │ ├── fatarrowfunctionsOptionalArgsErrors4.ts │ │ ├── fieldAndGetterWithSameName.ts │ │ ├── fileReferencesWithNoExtensions.ts │ │ ├── fileWithNextLine1.ts │ │ ├── fileWithNextLine2.ts │ │ ├── fileWithNextLine3.ts │ │ ├── filesEmittingIntoSameOutput.ts │ │ ├── filesEmittingIntoSameOutputWithOutOption.ts │ │ ├── fillInMissingTypeArgsOnConstructCalls.ts │ │ ├── fillInMissingTypeArgsOnJSConstructCalls.ts │ │ ├── findLast.ts │ │ ├── firstMatchRegExpMatchArray.ts │ │ ├── fixCrashAliasLookupForDefauledImport.ts │ │ ├── fixTypeParameterInSignatureWithRestParameters.ts │ │ ├── fixingTypeParametersRepeatedly1.ts │ │ ├── fixingTypeParametersRepeatedly2.ts │ │ ├── fixingTypeParametersRepeatedly3.ts │ │ ├── flatArrayNoExcessiveStackDepth.ts │ │ ├── flowAfterFinally1.ts │ │ ├── flowControlTypeGuardThenSwitch.ts │ │ ├── flowInFinally1.ts │ │ ├── for.ts │ │ ├── forAwaitForIntersection1.ts │ │ ├── forAwaitForUnion.ts │ │ ├── forIn.ts │ │ ├── forIn2.ts │ │ ├── forInModule.ts │ │ ├── forInStatement1.ts │ │ ├── forInStatement2.ts │ │ ├── forInStatement3.ts │ │ ├── forInStatement4.ts │ │ ├── forInStatement5.ts │ │ ├── forInStatement6.ts │ │ ├── forInStatement7.ts │ │ ├── forInStrictNullChecksNoError.ts │ │ ├── forLoopEndingMultilineComments.ts │ │ ├── forLoopWithDestructuringDoesNotElideFollowingStatement.ts │ │ ├── forOfStringConstituents.ts │ │ ├── forOfTransformsExpression.ts │ │ ├── forStatementInnerComments.ts │ │ ├── formatToPartsFractionalSecond.ts │ │ ├── forwardDeclaredCommonTypes01.ts │ │ ├── forwardRefInClassProperties.ts │ │ ├── forwardRefInEnum.ts │ │ ├── forwardRefInTypeDeclaration.ts │ │ ├── freshLiteralInference.ts │ │ ├── freshLiteralTypesInIntersections.ts │ │ ├── fromAsIdentifier1.ts │ │ ├── fromAsIdentifier2.ts │ │ ├── funClodule.ts │ │ ├── funcdecl.ts │ │ ├── functionAndImportNameConflict.ts │ │ ├── functionAndInterfaceWithSeparateErrors.ts │ │ ├── functionAndPropertyNameConflict.ts │ │ ├── functionArgShadowing.ts │ │ ├── functionAssignabilityWithArrayLike01.ts │ │ ├── functionAssignment.ts │ │ ├── functionAssignmentError.ts │ │ ├── functionCall1.ts │ │ ├── functionCall10.ts │ │ ├── functionCall11.ts │ │ ├── functionCall12.ts │ │ ├── functionCall13.ts │ │ ├── functionCall14.ts │ │ ├── functionCall15.ts │ │ ├── functionCall16.ts │ │ ├── functionCall17.ts │ │ ├── functionCall18.ts │ │ ├── functionCall2.ts │ │ ├── functionCall3.ts │ │ ├── functionCall4.ts │ │ ├── functionCall5.ts │ │ ├── functionCall6.ts │ │ ├── functionCall7.ts │ │ ├── functionCall8.ts │ │ ├── functionCall9.ts │ │ ├── functionCallOnConstrainedTypeVariable.ts │ │ ├── functionDeclarationWithArgumentOfTypeFunctionTypeArray.ts │ │ ├── functionDeclarationWithResolutionOfTypeNamedArguments01.ts │ │ ├── functionDeclarationWithResolutionOfTypeOfSameName01.ts │ │ ├── functionExpressionAndLambdaMatchesFunction.ts │ │ ├── functionExpressionInWithBlock.ts │ │ ├── functionExpressionNames.ts │ │ ├── functionExpressionReturningItself.ts │ │ ├── functionExpressionShadowedByParams.ts │ │ ├── functionExpressionWithResolutionOfTypeNamedArguments01.ts │ │ ├── functionExpressionWithResolutionOfTypeOfSameName01.ts │ │ ├── functionExpressionWithResolutionOfTypeOfSameName02.ts │ │ ├── functionInIfStatementInModule.ts │ │ ├── functionLikeInParameterInitializer.ts │ │ ├── functionMergedWithModule.ts │ │ ├── functionOnlyHasThrow.ts │ │ ├── functionOverloadAmbiguity1.ts │ │ ├── functionOverloadImplementationOfWrongName.ts │ │ ├── functionOverloadImplementationOfWrongName2.ts │ │ ├── functionOverloads.ts │ │ ├── functionOverloads1.ts │ │ ├── functionOverloads10.ts │ │ ├── functionOverloads11.ts │ │ ├── functionOverloads12.ts │ │ ├── functionOverloads13.ts │ │ ├── functionOverloads14.ts │ │ ├── functionOverloads15.ts │ │ ├── functionOverloads16.ts │ │ ├── functionOverloads17.ts │ │ ├── functionOverloads18.ts │ │ ├── functionOverloads19.ts │ │ ├── functionOverloads2.ts │ │ ├── functionOverloads20.ts │ │ ├── functionOverloads21.ts │ │ ├── functionOverloads22.ts │ │ ├── functionOverloads23.ts │ │ ├── functionOverloads24.ts │ │ ├── functionOverloads25.ts │ │ ├── functionOverloads26.ts │ │ ├── functionOverloads27.ts │ │ ├── functionOverloads28.ts │ │ ├── functionOverloads29.ts │ │ ├── functionOverloads3.ts │ │ ├── functionOverloads30.ts │ │ ├── functionOverloads31.ts │ │ ├── functionOverloads32.ts │ │ ├── functionOverloads33.ts │ │ ├── functionOverloads34.ts │ │ ├── functionOverloads35.ts │ │ ├── functionOverloads36.ts │ │ ├── functionOverloads37.ts │ │ ├── functionOverloads38.ts │ │ ├── functionOverloads39.ts │ │ ├── functionOverloads4.ts │ │ ├── functionOverloads40.ts │ │ ├── functionOverloads41.ts │ │ ├── functionOverloads42.ts │ │ ├── functionOverloads43.ts │ │ ├── functionOverloads44.ts │ │ ├── functionOverloads45.ts │ │ ├── functionOverloads5.ts │ │ ├── functionOverloads6.ts │ │ ├── functionOverloads7.ts │ │ ├── functionOverloads8.ts │ │ ├── functionOverloads9.ts │ │ ├── functionOverloadsOnGenericArity1.ts │ │ ├── functionOverloadsOnGenericArity2.ts │ │ ├── functionOverloadsOutOfOrder.ts │ │ ├── functionOverloadsRecursiveGenericReturnType.ts │ │ ├── functionParameterArityMismatch.ts │ │ ├── functionReturn.ts │ │ ├── functionReturnTypeQuery.ts │ │ ├── functionReturningItself.ts │ │ ├── functionSignatureAssignmentCompat1.ts │ │ ├── functionSubtypingOfVarArgs.ts │ │ ├── functionSubtypingOfVarArgs2.ts │ │ ├── functionToFunctionWithPropError.ts │ │ ├── functionType.ts │ │ ├── functionTypeArgumentArityErrors.ts │ │ ├── functionTypeArgumentArrayAssignment.ts │ │ ├── functionTypeArgumentAssignmentCompat.ts │ │ ├── functionTypesLackingReturnTypes.ts │ │ ├── functionVariableInReturnTypeAnnotation.ts │ │ ├── functionWithAnyReturnTypeAndNoReturnExpression.ts │ │ ├── functionWithDefaultParameterWithNoStatements1.ts │ │ ├── functionWithDefaultParameterWithNoStatements10.ts │ │ ├── functionWithDefaultParameterWithNoStatements11.ts │ │ ├── functionWithDefaultParameterWithNoStatements12.ts │ │ ├── functionWithDefaultParameterWithNoStatements13.ts │ │ ├── functionWithDefaultParameterWithNoStatements14.ts │ │ ├── functionWithDefaultParameterWithNoStatements15.ts │ │ ├── functionWithDefaultParameterWithNoStatements16.ts │ │ ├── functionWithDefaultParameterWithNoStatements2.ts │ │ ├── functionWithDefaultParameterWithNoStatements3.ts │ │ ├── functionWithDefaultParameterWithNoStatements4.ts │ │ ├── functionWithDefaultParameterWithNoStatements5.ts │ │ ├── functionWithDefaultParameterWithNoStatements6.ts │ │ ├── functionWithDefaultParameterWithNoStatements7.ts │ │ ├── functionWithDefaultParameterWithNoStatements8.ts │ │ ├── functionWithDefaultParameterWithNoStatements9.ts │ │ ├── functionWithNoBestCommonType1.ts │ │ ├── functionWithNoBestCommonType2.ts │ │ ├── functionWithSameNameAsField.ts │ │ ├── functionWithThrowButNoReturn1.ts │ │ ├── functionsInClassExpressions.ts │ │ ├── functionsMissingReturnStatementsAndExpressions.ts │ │ ├── functionsMissingReturnStatementsAndExpressionsStrictNullChecks.ts │ │ ├── functionsWithImplicitReturnTypeAssignableToUndefined.ts │ │ ├── functionsWithModifiersInBlocks1.ts │ │ ├── funduleExportedClassIsUsedBeforeDeclaration.ts │ │ ├── funduleOfFunctionWithoutReturnTypeAnnotation.ts │ │ ├── funduleSplitAcrossFiles.ts │ │ ├── funduleUsedAcrossFileBoundary.ts │ │ ├── fuzzy.ts │ │ ├── generativeRecursionWithTypeOf.ts │ │ ├── generatorES6InAMDModule.ts │ │ ├── generatorES6_1.ts │ │ ├── generatorES6_2.ts │ │ ├── generatorES6_3.ts │ │ ├── generatorES6_4.ts │ │ ├── generatorES6_5.ts │ │ ├── generatorES6_6.ts │ │ ├── generatorReturnExpressionIsChecked.ts │ │ ├── generatorTransformFinalLabel.ts │ │ ├── genericAndNonGenericInheritedSignature1.ts │ │ ├── genericAndNonGenericInheritedSignature2.ts │ │ ├── genericAndNonGenericOverload1.ts │ │ ├── genericArgumentCallSigAssignmentCompat.ts │ │ ├── genericArray0.ts │ │ ├── genericArray1.ts │ │ ├── genericArrayAssignment1.ts │ │ ├── genericArrayAssignmentCompatErrors.ts │ │ ├── genericArrayExtenstions.ts │ │ ├── genericArrayMethods1.ts │ │ ├── genericArrayPropertyAssignment.ts │ │ ├── genericArrayWithoutTypeAnnotation.ts │ │ ├── genericAssignmentCompatOfFunctionSignatures1.ts │ │ ├── genericAssignmentCompatWithInterfaces1.ts │ │ ├── genericBaseClassLiteralProperty.ts │ │ ├── genericBaseClassLiteralProperty2.ts │ │ ├── genericCallAtYieldExpressionInGenericCall1.ts │ │ ├── genericCallAtYieldExpressionInGenericCall2.ts │ │ ├── genericCallAtYieldExpressionInGenericCall3.ts │ │ ├── genericCallInferenceConditionalType1.ts │ │ ├── genericCallInferenceConditionalType2.ts │ │ ├── genericCallInferenceInConditionalTypes1.ts │ │ ├── genericCallInferenceUsingThisTypeNoInvalidCacheReuseAfterMappedTypeApplication1.ts │ │ ├── genericCallInferenceWithGenericLocalFunction.ts │ │ ├── genericCallOnMemberReturningClosedOverObject.ts │ │ ├── genericCallSpecializedToTypeArg.ts │ │ ├── genericCallWithFixedArguments.ts │ │ ├── genericCallWithNonGenericArgs1.ts │ │ ├── genericCallWithObjectLiteralArguments1.ts │ │ ├── genericCallWithinOwnBodyCastTypeParameterIdentity.ts │ │ ├── genericCallWithoutArgs.ts │ │ ├── genericCallbackInvokedInsideItsContainingFunction1.ts │ │ ├── genericCallbacksAndClassHierarchy.ts │ │ ├── genericCapturingFunctionNarrowing.ts │ │ ├── genericChainedCalls.ts │ │ ├── genericClassImplementingGenericInterfaceFromAnotherModule.ts │ │ ├── genericClassInheritsConstructorFromNonGenericClass.ts │ │ ├── genericClassPropertyInheritanceSpecialization.ts │ │ ├── genericClassStaticMethod.ts │ │ ├── genericClassWithStaticFactory.ts │ │ ├── genericClassWithStaticsUsingTypeArguments.ts │ │ ├── genericClasses0.ts │ │ ├── genericClasses1.ts │ │ ├── genericClasses2.ts │ │ ├── genericClasses3.ts │ │ ├── genericClasses4.ts │ │ ├── genericClassesInModule.ts │ │ ├── genericClassesInModule2.ts │ │ ├── genericClassesRedeclaration.ts │ │ ├── genericCloduleInModule.ts │ │ ├── genericCloduleInModule2.ts │ │ ├── genericCloneReturnTypes.ts │ │ ├── genericCloneReturnTypes2.ts │ │ ├── genericCombinators2.ts │ │ ├── genericConditionalConstrainedToUnknownNotAssignableToConcreteObject.ts │ │ ├── genericConstraint1.ts │ │ ├── genericConstraint2.ts │ │ ├── genericConstraint3.ts │ │ ├── genericConstraintDeclaration.ts │ │ ├── genericConstraintOnExtendedBuiltinTypes.ts │ │ ├── genericConstraintOnExtendedBuiltinTypes2.ts │ │ ├── genericConstraintSatisfaction1.ts │ │ ├── genericConstructInvocationWithNoTypeArg.ts │ │ ├── genericConstructSignatureInInterface.ts │ │ ├── genericConstructorFunction1.ts │ │ ├── genericContextualTypingSpecialization.ts │ │ ├── genericDefaults.ts │ │ ├── genericDefaultsErrors.ts │ │ ├── genericDefaultsJs.ts │ │ ├── genericDerivedTypeWithSpecializedBase.ts │ │ ├── genericDerivedTypeWithSpecializedBase2.ts │ │ ├── genericFunctionCallSignatureReturnTypeMismatch.ts │ │ ├── genericFunctionHasFreshTypeArgs.ts │ │ ├── genericFunctionInference1.ts │ │ ├── genericFunctionInference2.ts │ │ ├── genericFunctionSpecializations1.ts │ │ ├── genericFunctionTypedArgumentsAreFixed.ts │ │ ├── genericFunctions0.ts │ │ ├── genericFunctions1.ts │ │ ├── genericFunctions2.ts │ │ ├── genericFunctions3.ts │ │ ├── genericFunctionsAndConditionalInference.ts │ │ ├── genericFunctionsNotContextSensitive.ts │ │ ├── genericFunctionsWithOptionalParameters1.ts │ │ ├── genericFunctionsWithOptionalParameters2.ts │ │ ├── genericFunctionsWithOptionalParameters3.ts │ │ ├── genericFunduleInModule.ts │ │ ├── genericFunduleInModule2.ts │ │ ├── genericGetter.ts │ │ ├── genericGetter2.ts │ │ ├── genericGetter3.ts │ │ ├── genericImplements.ts │ │ ├── genericIndexTypeHasSensibleErrorMessage.ts │ │ ├── genericIndexedAccessMethodIntersectionCanBeAccessed.ts │ │ ├── genericIndexedAccessVarianceComparisonResultCorrect.ts │ │ ├── genericInference1.ts │ │ ├── genericInference2.ts │ │ ├── genericInferenceDefaultTypeParameter.ts │ │ ├── genericInferenceDefaultTypeParameterJsxReact.tsx │ │ ├── genericInheritedDefaultConstructors.ts │ │ ├── genericInstanceOf.ts │ │ ├── genericInterfaceFunctionTypeParameter.ts │ │ ├── genericInterfaceImplementation.ts │ │ ├── genericInterfaceTypeCall.ts │ │ ├── genericInterfacesWithoutTypeArguments.ts │ │ ├── genericIsNeverEmptyObject.ts │ │ ├── genericLambaArgWithoutTypeArguments.ts │ │ ├── genericMappedTypeAsClause.ts │ │ ├── genericMemberFunction.ts │ │ ├── genericMergedDeclarationUsingTypeParameter.ts │ │ ├── genericMergedDeclarationUsingTypeParameter2.ts │ │ ├── genericMethodOverspecialization.ts │ │ ├── genericNewInterface.ts │ │ ├── genericNumberIndex.ts │ │ ├── genericObjectCreationWithoutTypeArgs.ts │ │ ├── genericObjectLitReturnType.ts │ │ ├── genericObjectSpreadResultInSwitch.ts │ │ ├── genericOfACloduleType1.ts │ │ ├── genericOfACloduleType2.ts │ │ ├── genericOverloadSignatures.ts │ │ ├── genericParameterAssignability1.ts │ │ ├── genericPrototypeProperty.ts │ │ ├── genericPrototypeProperty2.ts │ │ ├── genericPrototypeProperty3.ts │ │ ├── genericRecursiveImplicitConstructorErrors1.ts │ │ ├── genericRecursiveImplicitConstructorErrors2.ts │ │ ├── genericRecursiveImplicitConstructorErrors3.ts │ │ ├── genericReduce.ts │ │ ├── genericRestArgs.ts │ │ ├── genericRestTypes.ts │ │ ├── genericReturnTypeFromGetter1.ts │ │ ├── genericReversingTypeParameters.ts │ │ ├── genericReversingTypeParameters2.ts │ │ ├── genericSignatureIdentity.ts │ │ ├── genericSignatureInheritance.ts │ │ ├── genericSignatureInheritance2.ts │ │ ├── genericSpecializationToTypeLiteral1.ts │ │ ├── genericSpecializations1.ts │ │ ├── genericSpecializations2.ts │ │ ├── genericSpecializations3.ts │ │ ├── genericStaticAnyTypeFunction.ts │ │ ├── genericTemplateOverloadResolution.ts │ │ ├── genericTupleWithSimplifiableElements.ts │ │ ├── genericTypeArgumentInference1.ts │ │ ├── genericTypeAssertions1.ts │ │ ├── genericTypeAssertions2.ts │ │ ├── genericTypeAssertions3.ts │ │ ├── genericTypeAssertions4.ts │ │ ├── genericTypeAssertions5.ts │ │ ├── genericTypeAssertions6.ts │ │ ├── genericTypeConstraints.ts │ │ ├── genericTypeParameterEquivalence2.ts │ │ ├── genericTypeReferencesRequireTypeArgs.ts │ │ ├── genericTypeUsedWithoutTypeArguments1.ts │ │ ├── genericTypeUsedWithoutTypeArguments3.ts │ │ ├── genericTypeWithCallableMembers.ts │ │ ├── genericTypeWithCallableMembers2.ts │ │ ├── genericTypeWithMultipleBases1.ts │ │ ├── genericTypeWithMultipleBases2.ts │ │ ├── genericTypeWithMultipleBases3.ts │ │ ├── genericTypeWithNonGenericBaseMisMatch.ts │ │ ├── genericUnboundedTypeParamAssignability.ts │ │ ├── genericWithCallSignatureReturningSpecialization.ts │ │ ├── genericWithCallSignatures1.ts │ │ ├── genericWithIndexerOfTypeParameterType1.ts │ │ ├── genericWithIndexerOfTypeParameterType2.ts │ │ ├── genericWithNoConstraintComparableWithCurlyCurly.ts │ │ ├── genericWithOpenTypeParameters1.ts │ │ ├── generics0.ts │ │ ├── generics1.ts │ │ ├── generics1NoError.ts │ │ ├── generics2.ts │ │ ├── generics2NoError.ts │ │ ├── generics3.ts │ │ ├── generics4.ts │ │ ├── generics4NoError.ts │ │ ├── generics5.ts │ │ ├── genericsAndHigherOrderFunctions.ts │ │ ├── genericsManyTypeParameters.ts │ │ ├── genericsWithDuplicateTypeParameters1.ts │ │ ├── genericsWithoutTypeParameters1.ts │ │ ├── getAccessorWithImpliedReturnTypeAndFunctionClassMerge.ts │ │ ├── getAndSetAsMemberNames.ts │ │ ├── getAndSetNotIdenticalType.ts │ │ ├── getAndSetNotIdenticalType2.ts │ │ ├── getAndSetNotIdenticalType3.ts │ │ ├── getParameterNameAtPosition.ts │ │ ├── getSetEnumerable.ts │ │ ├── getsetReturnTypes.ts │ │ ├── getterControlFlowStrictNull.ts │ │ ├── getterErrorMessageNotDuplicated.ts │ │ ├── getterMissingReturnError.ts │ │ ├── getterSetterNonAccessor.ts │ │ ├── getterSetterSubtypeAssignment.ts │ │ ├── getterThatThrowsShouldNotNeedReturn.ts │ │ ├── gettersAndSetters.ts │ │ ├── gettersAndSettersAccessibility.ts │ │ ├── gettersAndSettersErrors.ts │ │ ├── gettersAndSettersTypesAgree.ts │ │ ├── giant.ts │ │ ├── global.ts │ │ ├── globalFunctionAugmentationOverload.ts │ │ ├── globalIsContextualKeyword.ts │ │ ├── globalThis.ts │ │ ├── globalThisCapture.ts │ │ ├── globalThisDeclarationEmit.ts │ │ ├── globalThisDeclarationEmit2.ts │ │ ├── globalThisDeclarationEmit3.ts │ │ ├── grammarAmbiguities1.ts │ │ ├── heterogeneousArrayAndOverloads.ts │ │ ├── hidingCallSignatures.ts │ │ ├── hidingConstructSignatures.ts │ │ ├── hidingIndexSignatures.ts │ │ ├── higherOrderMappedIndexLookupInference.ts │ │ ├── homomorphicMappedTypeIntersectionAssignability.ts │ │ ├── homomorphicMappedTypeNesting.ts │ │ ├── homomorphicMappedTypeWithNonHomomorphicInstantiationSpreadable1.ts │ │ ├── hugeDeclarationOutputGetsTruncatedWithError.ts │ │ ├── i3.ts │ │ ├── icomparable.ts │ │ ├── idInProp.ts │ │ ├── identicalGenericConditionalsWithInferRelated.ts │ │ ├── identicalTypesNoDifferByCheckOrder.ts │ │ ├── identifierStartAfterNumericLiteral.ts │ │ ├── identityAndDivergentNormalizedTypes.ts │ │ ├── identityForSignaturesWithTypeParametersAndAny.ts │ │ ├── identityForSignaturesWithTypeParametersSwitched.ts │ │ ├── identityRelationNeverTypes.ts │ │ ├── ifElseWithStatements1.ts │ │ ├── ifStatementInternalComments.ts │ │ ├── ignoredJsxAttributes.tsx │ │ ├── illegalGenericWrapping1.ts │ │ ├── illegalModifiersOnClassElements.ts │ │ ├── illegalSuperCallsInConstructor.ts │ │ ├── implementArrayInterface.ts │ │ ├── implementClausePrecedingExtends.ts │ │ ├── implementGenericWithMismatchedTypes.ts │ │ ├── implementInterfaceAnyMemberWithVoid.ts │ │ ├── implementPublicPropertyAsPrivate.ts │ │ ├── implementsClauseAlreadySeen.ts │ │ ├── implementsInClassExpression.ts │ │ ├── implementsIncorrectlyNoAssertion.ts │ │ ├── implicitAnyAmbients.ts │ │ ├── implicitAnyAnyReturningFunction.ts │ │ ├── implicitAnyCastedValue.ts │ │ ├── implicitAnyDeclareFunctionExprWithoutFormalType.ts │ │ ├── implicitAnyDeclareFunctionWithoutFormalType.ts │ │ ├── implicitAnyDeclareFunctionWithoutFormalType2.ts │ │ ├── implicitAnyDeclareMemberWithoutType.ts │ │ ├── implicitAnyDeclareMemberWithoutType2.ts │ │ ├── implicitAnyDeclareTypePropertyWithoutType.ts │ │ ├── implicitAnyDeclareVariablesWithoutTypeAndInit.ts │ │ ├── implicitAnyFromCircularInference.ts │ │ ├── implicitAnyFunctionInvocationWithAnyArguements.ts │ │ ├── implicitAnyFunctionOverloadWithImplicitAnyReturnType.ts │ │ ├── implicitAnyFunctionReturnNullOrUndefined.ts │ │ ├── implicitAnyGenericTypeInference.ts │ │ ├── implicitAnyGenerics.ts │ │ ├── implicitAnyGetAndSetAccessorWithAnyReturnType.ts │ │ ├── implicitAnyInAmbientDeclaration.ts │ │ ├── implicitAnyInAmbientDeclaration2.d.ts │ │ ├── implicitAnyInCatch.ts │ │ ├── implicitAnyNewExprLackConstructorSignature.ts │ │ ├── implicitAnyWidenToAny.ts │ │ ├── implicitConstParameters.ts │ │ ├── implicitIndexSignatures.ts │ │ ├── impliedNodeFormatEmit1.ts │ │ ├── impliedNodeFormatEmit2.ts │ │ ├── impliedNodeFormatEmit3.ts │ │ ├── impliedNodeFormatEmit4.ts │ │ ├── impliedNodeFormatInterop1.ts │ │ ├── importAliasAnExternalModuleInsideAnInternalModule.ts │ │ ├── importAliasFromNamespace.ts │ │ ├── importAliasInModuleAugmentation.ts │ │ ├── importAliasWithDottedName.ts │ │ ├── importAnImport.ts │ │ ├── importAndVariableDeclarationConflict1.ts │ │ ├── importAndVariableDeclarationConflict2.ts │ │ ├── importAndVariableDeclarationConflict3.ts │ │ ├── importAndVariableDeclarationConflict4.ts │ │ ├── importAsBaseClass.ts │ │ ├── importAssertionNonstring.ts │ │ ├── importAssertionsDeprecated.ts │ │ ├── importAssertionsDeprecatedIgnored.ts │ │ ├── importDecl.ts │ │ ├── importDeclFromTypeNodeInJsSource.ts │ │ ├── importDeclRefereingExternalModuleWithNoResolve.ts │ │ ├── importDeclTypes.ts │ │ ├── importDeclWithClassModifiers.ts │ │ ├── importDeclWithDeclareModifier.ts │ │ ├── importDeclWithDeclareModifierInAmbientContext.ts │ │ ├── importDeclWithExportModifier.ts │ │ ├── importDeclWithExportModifierAndExportAssignment.ts │ │ ├── importDeclWithExportModifierAndExportAssignmentInAmbientContext.ts │ │ ├── importDeclWithExportModifierInAmbientContext.ts │ │ ├── importDeclarationInModuleDeclaration1.ts │ │ ├── importDeclarationInModuleDeclaration2.ts │ │ ├── importDeclarationNotCheckedAsValueWhenTargetNonValue.ts │ │ ├── importDeclarationUsedAsTypeQuery.ts │ │ ├── importElisionEnum.ts │ │ ├── importElisionExportNonExportAndDefault.ts │ │ ├── importEqualsError45874.ts │ │ ├── importExportInternalComments.ts │ │ ├── importHelpers.ts │ │ ├── importHelpersAmd.ts │ │ ├── importHelpersBundler.ts │ │ ├── importHelpersCommonJSJavaScript.ts │ │ ├── importHelpersDeclarations.ts │ │ ├── importHelpersES6.ts │ │ ├── importHelpersInAmbientContext.ts │ │ ├── importHelpersInIsolatedModules.ts │ │ ├── importHelpersInTsx.tsx │ │ ├── importHelpersNoEmitHelpersExportDefault.ts │ │ ├── importHelpersNoHelpers.ts │ │ ├── importHelpersNoHelpersForAsyncGenerators.ts │ │ ├── importHelpersNoHelpersForPrivateFields.ts │ │ ├── importHelpersNoModule.ts │ │ ├── importHelpersOutFile.ts │ │ ├── importHelpersSystem.ts │ │ ├── importHelpersVerbatimModuleSyntax.ts │ │ ├── importHelpersWithExportStarAs.ts │ │ ├── importHelpersWithImportOrExportDefault.ts │ │ ├── importHelpersWithImportOrExportDefaultNoTslib.1.ts │ │ ├── importHelpersWithImportOrExportDefaultNoTslib.2.ts │ │ ├── importHelpersWithImportOrExportDefaultNoTslib.3.ts │ │ ├── importHelpersWithImportStarAs.ts │ │ ├── importHelpersWithLocalCollisions.ts │ │ ├── importInTypePosition.ts │ │ ├── importInsideModule.ts │ │ ├── importNonExportedMember.ts │ │ ├── importNonExportedMember1.ts │ │ ├── importNonExportedMember10.ts │ │ ├── importNonExportedMember11.ts │ │ ├── importNonExportedMember12.ts │ │ ├── importNonExportedMember2.ts │ │ ├── importNonExportedMember3.ts │ │ ├── importNonExportedMember4.ts │ │ ├── importNonExportedMember5.ts │ │ ├── importNonExportedMember6.ts │ │ ├── importNonExportedMember7.ts │ │ ├── importNonExportedMember8.ts │ │ ├── importNonExportedMember9.ts │ │ ├── importNotElidedWhenNotFound.ts │ │ ├── importOnAliasedIdentifiers.ts │ │ ├── importPropertyFromMappedType.ts │ │ ├── importShadowsGlobalName.ts │ │ ├── importShouldNotBeElidedInDeclarationEmit.ts │ │ ├── importTypeAssertionDeprecation.ts │ │ ├── importTypeAssertionDeprecationIgnored.ts │ │ ├── importTypeGenericArrowTypeParenthesized.ts │ │ ├── importTypeResolutionJSDocEOF.ts │ │ ├── importTypeTypeofClassStaticLookup.ts │ │ ├── importTypeWithUnparenthesizedGenericFunctionParsed.ts │ │ ├── importUsedAsTypeWithErrors.ts │ │ ├── importUsedInExtendsList1.ts │ │ ├── importUsedInGenericImportResolves.ts │ │ ├── importWithTrailingSlash.ts │ │ ├── importWithTrailingSlash_noResolve.ts │ │ ├── import_reference-exported-alias.ts │ │ ├── import_reference-to-type-alias.ts │ │ ├── import_unneeded-require-when-referenecing-aliased-type-throug-array.ts │ │ ├── import_var-referencing-an-imported-module-alias.ts │ │ ├── importedAliasedConditionalTypeInstantiation.ts │ │ ├── importedAliasesInTypePositions.ts │ │ ├── importedEnumMemberMergedWithExportedAliasIsError.ts │ │ ├── importedModuleAddToGlobal.ts │ │ ├── importedModuleClassNameClash.ts │ │ ├── importsInAmbientModules1.ts │ │ ├── importsInAmbientModules2.ts │ │ ├── importsInAmbientModules3.ts │ │ ├── inDoesNotOperateOnPrimitiveTypes.ts │ │ ├── inKeywordAndIntersection.ts │ │ ├── inKeywordAndUnknown.ts │ │ ├── inKeywordNarrowingWithNoUncheckedIndexedAccess.ts │ │ ├── inKeywordTypeguard.ts │ │ ├── inOperator.ts │ │ ├── inOperatorWithFunction.ts │ │ ├── inOperatorWithGeneric.ts │ │ ├── incompatibleAssignmentOfIdenticallyNamedTypes.ts │ │ ├── incompatibleExports1.ts │ │ ├── incompatibleExports2.ts │ │ ├── incompatibleGenericTypes.ts │ │ ├── incompatibleTypes.ts │ │ ├── incompleteDottedExpressionAtEOF.ts │ │ ├── incompleteObjectLiteral1.ts │ │ ├── incorrectClassOverloadChain.ts │ │ ├── incorrectNumberOfTypeArgumentsDuringErrorReporting.ts │ │ ├── incorrectRecursiveMappedTypeConstraint.ts │ │ ├── incrementOnNullAssertion.ts │ │ ├── incrementOnTypeParameter.ts │ │ ├── incrementalConfig.ts │ │ ├── incrementalInvalid.ts │ │ ├── incrementalOut.ts │ │ ├── incrementalTsBuildInfoFile.ts │ │ ├── indexAt.ts │ │ ├── indexClassByNumber.ts │ │ ├── indexIntoArraySubclass.ts │ │ ├── indexIntoEnum.ts │ │ ├── indexSignatureAndMappedType.ts │ │ ├── indexSignatureInOtherFile.ts │ │ ├── indexSignatureInOtherFile1.ts │ │ ├── indexSignatureMustHaveTypeAnnotation.ts │ │ ├── indexSignatureOfTypeUnknownStillRequiresIndexSignature.ts │ │ ├── indexSignatureTypeCheck.ts │ │ ├── indexSignatureTypeCheck2.ts │ │ ├── indexSignatureWithAccessibilityModifier.ts │ │ ├── indexSignatureWithInitializer.ts │ │ ├── indexSignatureWithInitializer1.ts │ │ ├── indexSignatureWithTrailingComma.ts │ │ ├── indexSignatureWithoutTypeAnnotation1..ts │ │ ├── indexSignatureWithoutTypeAnnotation1.ts │ │ ├── indexSignaturesInferentialTyping.ts │ │ ├── indexTypeCheck.ts │ │ ├── indexTypeNoSubstitutionTemplateLiteral.ts │ │ ├── indexWithUndefinedAndNull.ts │ │ ├── indexWithUndefinedAndNullStrictNullChecks.ts │ │ ├── indexWithoutParamType.ts │ │ ├── indexWithoutParamType2.ts │ │ ├── indexedAccessAndNullableNarrowing.ts │ │ ├── indexedAccessCanBeHighOrder.ts │ │ ├── indexedAccessConstraints.ts │ │ ├── indexedAccessImplicitlyAny.ts │ │ ├── indexedAccessKeyofNestedSimplifiedSubstituteUnwrapped.ts │ │ ├── indexedAccessNormalization.ts │ │ ├── indexedAccessPrivateMemberOfGenericConstraint.ts │ │ ├── indexedAccessRelation.ts │ │ ├── indexedAccessRetainsIndexSignature.ts │ │ ├── indexedAccessToThisTypeOnIntersection01.ts │ │ ├── indexedAccessTypeConstraints.ts │ │ ├── indexedAccessWithFreshObjectLiteral.ts │ │ ├── indexedAccessWithVariableElement.ts │ │ ├── indexer.ts │ │ ├── indexer2.ts │ │ ├── indexer2A.ts │ │ ├── indexer3.ts │ │ ├── indexerA.ts │ │ ├── indexerAsOptional.ts │ │ ├── indexerAssignability.ts │ │ ├── indexerConstraints.ts │ │ ├── indexerConstraints2.ts │ │ ├── indexerReturningTypeParameter1.ts │ │ ├── indexerSignatureWithRestParam.ts │ │ ├── indexingTypesWithNever.ts │ │ ├── indirectDiscriminantAndExcessProperty.ts │ │ ├── indirectGlobalSymbolPartOfObjectType.ts │ │ ├── indirectSelfReference.ts │ │ ├── indirectSelfReferenceGeneric.ts │ │ ├── indirectTypeParameterReferences.ts │ │ ├── indirectUniqueSymbolDeclarationEmit.ts │ │ ├── inexistentPropertyInsideToStringType.ts │ │ ├── inferConditionalConstraintMappedMember.ts │ │ ├── inferFromAnnotatedReturn1.ts │ │ ├── inferFromGenericFunctionReturnTypes1.ts │ │ ├── inferFromGenericFunctionReturnTypes2.ts │ │ ├── inferFromGenericFunctionReturnTypes3.ts │ │ ├── inferFromNestedSameShapeTuple.ts │ │ ├── inferObjectTypeFromStringLiteralToKeyof.ts │ │ ├── inferParameterWithMethodCallInitializer.ts │ │ ├── inferPropertyWithContextSensitiveReturnStatement.ts │ │ ├── inferRestArgumentsMappedTuple.ts │ │ ├── inferSecondaryParameter.ts │ │ ├── inferSetterParamType.ts │ │ ├── inferStringLiteralUnionForBindingElement.ts │ │ ├── inferTInParentheses.ts │ │ ├── inferTupleFromBindingPattern.ts │ │ ├── inferTypeArgumentsInSignatureWithRestParameters.ts │ │ ├── inferTypeConstraintInstantiationCircularity.ts │ │ ├── inferTypeParameterConstraints.ts │ │ ├── inferTypePredicates.ts │ │ ├── inferTypesWithFixedTupleExtendsAtVariadicPosition.ts │ │ ├── inferenceAndHKTs.ts │ │ ├── inferenceAndSelfReferentialConstraint.ts │ │ ├── inferenceContextualReturnTypeUnion1.ts │ │ ├── inferenceContextualReturnTypeUnion2.ts │ │ ├── inferenceContextualReturnTypeUnion3.ts │ │ ├── inferenceContextualReturnTypeUnion4.ts │ │ ├── inferenceDoesNotAddUndefinedOrNull.ts │ │ ├── inferenceDoesntCompareAgainstUninstantiatedTypeParameter.ts │ │ ├── inferenceErasedSignatures.ts │ │ ├── inferenceExactOptionalProperties1.ts │ │ ├── inferenceExactOptionalProperties2.ts │ │ ├── inferenceFromGenericClassNoCrash1.ts │ │ ├── inferenceFromIncompleteSource.ts │ │ ├── inferenceFromParameterlessLambda.ts │ │ ├── inferenceLimit.ts │ │ ├── inferenceOfNullableObjectTypesWithCommonBase.ts │ │ ├── inferenceOptionalProperties.ts │ │ ├── inferenceOptionalPropertiesStrict.ts │ │ ├── inferenceOptionalPropertiesToIndexSignatures.ts │ │ ├── inferenceOuterResultNotIncorrectlyInstantiatedWithInnerResult.ts │ │ ├── inferenceShouldFailOnEvolvingArrays.ts │ │ ├── inferenceUnionOfObjectsMappedContextualType.ts │ │ ├── inferentialTypingObjectLiteralMethod1.ts │ │ ├── inferentialTypingObjectLiteralMethod2.ts │ │ ├── inferentialTypingUsingApparentType1.ts │ │ ├── inferentialTypingUsingApparentType2.ts │ │ ├── inferentialTypingUsingApparentType3.ts │ │ ├── inferentialTypingWithFunctionType.ts │ │ ├── inferentialTypingWithFunctionType2.ts │ │ ├── inferentialTypingWithFunctionTypeNested.ts │ │ ├── inferentialTypingWithFunctionTypeSyntacticScenarios.ts │ │ ├── inferentialTypingWithFunctionTypeZip.ts │ │ ├── inferentialTypingWithObjectLiteralProperties.ts │ │ ├── inferentiallyTypingAnEmptyArray.ts │ │ ├── inferredFunctionReturnTypeIsEmptyType.ts │ │ ├── inferredIndexerOnNamespaceImport.ts │ │ ├── inferredNonidentifierTypesGetQuotes.ts │ │ ├── inferredRestTypeFixedOnce.ts │ │ ├── inferredReturnTypeIncorrectReuse1.ts │ │ ├── inferrenceInfiniteLoopWithSubtyping.ts │ │ ├── inferringAnyFunctionType1.ts │ │ ├── inferringAnyFunctionType2.ts │ │ ├── inferringAnyFunctionType3.ts │ │ ├── inferringAnyFunctionType4.ts │ │ ├── inferringAnyFunctionType5.ts │ │ ├── inferringReturnTypeFromConstructSignatureGeneric.ts │ │ ├── infiniteConstraints.ts │ │ ├── infiniteExpandingTypeThroughInheritanceInstantiation.ts │ │ ├── infinitelyExpandingBaseTypes1.ts │ │ ├── infinitelyExpandingBaseTypes2.ts │ │ ├── infinitelyExpandingOverloads.ts │ │ ├── infinitelyExpandingTypeAssignability.ts │ │ ├── infinitelyExpandingTypes1.ts │ │ ├── infinitelyExpandingTypes2.ts │ │ ├── infinitelyExpandingTypes3.ts │ │ ├── infinitelyExpandingTypes4.ts │ │ ├── infinitelyExpandingTypes5.ts │ │ ├── infinitelyExpandingTypesNonGenericBase.ts │ │ ├── infinitelyGenerativeInheritance1.ts │ │ ├── inheritFromGenericTypeParameter.ts │ │ ├── inheritSameNamePrivatePropertiesFromDifferentOrigins.ts │ │ ├── inheritSameNamePrivatePropertiesFromSameOrigin.ts │ │ ├── inheritSameNamePropertiesWithDifferentOptionality.ts │ │ ├── inheritSameNamePropertiesWithDifferentVisibility.ts │ │ ├── inheritance.ts │ │ ├── inheritance1.ts │ │ ├── inheritanceGrandParentPrivateMemberCollision.ts │ │ ├── inheritanceGrandParentPrivateMemberCollisionWithPublicMember.ts │ │ ├── inheritanceGrandParentPublicMemberCollisionWithPrivateMember.ts │ │ ├── inheritanceMemberAccessorOverridingAccessor.ts │ │ ├── inheritanceMemberAccessorOverridingMethod.ts │ │ ├── inheritanceMemberAccessorOverridingProperty.ts │ │ ├── inheritanceMemberFuncOverridingAccessor.ts │ │ ├── inheritanceMemberFuncOverridingMethod.ts │ │ ├── inheritanceMemberFuncOverridingProperty.ts │ │ ├── inheritanceMemberPropertyOverridingAccessor.ts │ │ ├── inheritanceMemberPropertyOverridingMethod.ts │ │ ├── inheritanceMemberPropertyOverridingProperty.ts │ │ ├── inheritanceOfGenericConstructorMethod1.ts │ │ ├── inheritanceOfGenericConstructorMethod2.ts │ │ ├── inheritanceStaticAccessorOverridingAccessor.ts │ │ ├── inheritanceStaticAccessorOverridingMethod.ts │ │ ├── inheritanceStaticAccessorOverridingProperty.ts │ │ ├── inheritanceStaticFuncOverridingAccessor.ts │ │ ├── inheritanceStaticFuncOverridingAccessorOfFuncType.ts │ │ ├── inheritanceStaticFuncOverridingMethod.ts │ │ ├── inheritanceStaticFuncOverridingProperty.ts │ │ ├── inheritanceStaticFuncOverridingPropertyOfFuncType.ts │ │ ├── inheritanceStaticFunctionOverridingInstanceProperty.ts │ │ ├── inheritanceStaticMembersCompatible.ts │ │ ├── inheritanceStaticMembersIncompatible.ts │ │ ├── inheritanceStaticPropertyOverridingAccessor.ts │ │ ├── inheritanceStaticPropertyOverridingMethod.ts │ │ ├── inheritanceStaticPropertyOverridingProperty.ts │ │ ├── inheritedConstructorPropertyContextualType.ts │ │ ├── inheritedConstructorWithRestParams.ts │ │ ├── inheritedConstructorWithRestParams2.ts │ │ ├── inheritedFunctionAssignmentCompatibility.ts │ │ ├── inheritedGenericCallSignature.ts │ │ ├── inheritedMembersAndIndexSignaturesFromDifferentBases.ts │ │ ├── inheritedMembersAndIndexSignaturesFromDifferentBases2.ts │ │ ├── inheritedModuleMembersForClodule.ts │ │ ├── inheritedOverloadedSpecializedSignatures.ts │ │ ├── inheritedStringIndexersFromDifferentBaseTypes.ts │ │ ├── inheritedStringIndexersFromDifferentBaseTypes2.ts │ │ ├── initializePropertiesWithRenamedLet.ts │ │ ├── initializedDestructuringAssignmentTypes.ts │ │ ├── initializedParameterBeforeNonoptionalNotOptional.ts │ │ ├── initializerWithThisPropertyAccess.ts │ │ ├── initializersInAmbientEnums.ts │ │ ├── inlineConditionalHasSimilarAssignability.ts │ │ ├── inlineMappedTypeModifierDeclarationEmit.ts │ │ ├── inlineSourceMap.ts │ │ ├── inlineSourceMap2.ts │ │ ├── inlineSources.ts │ │ ├── inlineSources2.ts │ │ ├── inlinedAliasAssignableToConstraintSameAsAlias.ts │ │ ├── innerAliases.ts │ │ ├── innerAliases2.ts │ │ ├── innerBoundLambdaEmit.ts │ │ ├── innerExtern.ts │ │ ├── innerFunc.ts │ │ ├── innerModExport1.ts │ │ ├── innerModExport2.ts │ │ ├── innerOverloads.ts │ │ ├── innerTypeArgumentInference.ts │ │ ├── innerTypeCheckOfLambdaArgument.ts │ │ ├── instanceAndStaticDeclarations1.ts │ │ ├── instanceOfAssignability.ts │ │ ├── instanceOfInExternalModules.ts │ │ ├── instanceSubtypeCheck1.ts │ │ ├── instanceSubtypeCheck2.ts │ │ ├── instanceofNarrowReadonlyArray.ts │ │ ├── instanceofOnInstantiationExpression.ts │ │ ├── instanceofOperator.ts │ │ ├── instanceofTypeAliasToGenericClass.ts │ │ ├── instanceofWithPrimitiveUnion.ts │ │ ├── instanceofWithStructurallyIdenticalTypes.ts │ │ ├── instantiateConstraintsToTypeArguments2.ts │ │ ├── instantiateContextualTypes.ts │ │ ├── instantiateContextuallyTypedGenericThis.ts │ │ ├── instantiateCrossFileMerge.ts │ │ ├── instantiateTypeParameter.ts │ │ ├── instantiatedBaseTypeConstraints.ts │ │ ├── instantiatedBaseTypeConstraints2.ts │ │ ├── instantiatedReturnTypeContravariance.ts │ │ ├── instantiatedTypeAliasDisplay.ts │ │ ├── instantiationExpressionErrorNoCrash.ts │ │ ├── intTypeCheck.ts │ │ ├── interMixingModulesInterfaces0.ts │ │ ├── interMixingModulesInterfaces1.ts │ │ ├── interMixingModulesInterfaces2.ts │ │ ├── interMixingModulesInterfaces3.ts │ │ ├── interMixingModulesInterfaces4.ts │ │ ├── interMixingModulesInterfaces5.ts │ │ ├── interface0.ts │ │ ├── interfaceAssignmentCompat.ts │ │ ├── interfaceClassMerging.ts │ │ ├── interfaceClassMerging2.ts │ │ ├── interfaceContextualType.ts │ │ ├── interfaceDeclaration1.ts │ │ ├── interfaceDeclaration2.ts │ │ ├── interfaceDeclaration3.ts │ │ ├── interfaceDeclaration4.ts │ │ ├── interfaceDeclaration5.ts │ │ ├── interfaceDeclaration6.ts │ │ ├── interfaceExtendsClass1.ts │ │ ├── interfaceExtendsClassWithPrivate1.ts │ │ ├── interfaceExtendsClassWithPrivate2.ts │ │ ├── interfaceImplementation1.ts │ │ ├── interfaceImplementation2.ts │ │ ├── interfaceImplementation3.ts │ │ ├── interfaceImplementation4.ts │ │ ├── interfaceImplementation5.ts │ │ ├── interfaceImplementation6.ts │ │ ├── interfaceImplementation7.ts │ │ ├── interfaceImplementation8.ts │ │ ├── interfaceInReopenedModule.ts │ │ ├── interfaceInheritance.ts │ │ ├── interfaceInheritance2.ts │ │ ├── interfaceMayNotBeExtendedWitACall.ts │ │ ├── interfaceMemberValidation.ts │ │ ├── interfaceMergeWithNonGenericTypeArguments.ts │ │ ├── interfaceMergedUnconstrainedNoErrorIrrespectiveOfOrder.ts │ │ ├── interfaceNameAsIdentifier.ts │ │ ├── interfaceNaming1.ts │ │ ├── interfaceOnly.ts │ │ ├── interfacePropertiesWithSameName1.ts │ │ ├── interfacePropertiesWithSameName2.ts │ │ ├── interfacePropertiesWithSameName3.ts │ │ ├── interfaceSubtyping.ts │ │ ├── interfaceWithCommaSeparators.ts │ │ ├── interfaceWithImplements1.ts │ │ ├── interfaceWithMultipleDeclarations.ts │ │ ├── interfaceWithOptionalProperty.ts │ │ ├── interfacedecl.ts │ │ ├── interfacedeclWithIndexerErrors.ts │ │ ├── internalAliasClass.ts │ │ ├── internalAliasClassInsideLocalModuleWithExport.ts │ │ ├── internalAliasClassInsideLocalModuleWithoutExport.ts │ │ ├── internalAliasClassInsideLocalModuleWithoutExportAccessError.ts │ │ ├── internalAliasClassInsideTopLevelModuleWithExport.ts │ │ ├── internalAliasClassInsideTopLevelModuleWithoutExport.ts │ │ ├── internalAliasEnum.ts │ │ ├── internalAliasEnumInsideLocalModuleWithExport.ts │ │ ├── internalAliasEnumInsideLocalModuleWithoutExport.ts │ │ ├── internalAliasEnumInsideLocalModuleWithoutExportAccessError.ts │ │ ├── internalAliasEnumInsideTopLevelModuleWithExport.ts │ │ ├── internalAliasEnumInsideTopLevelModuleWithoutExport.ts │ │ ├── internalAliasFunction.ts │ │ ├── internalAliasFunctionInsideLocalModuleWithExport.ts │ │ ├── internalAliasFunctionInsideLocalModuleWithoutExport.ts │ │ ├── internalAliasFunctionInsideLocalModuleWithoutExportAccessError.ts │ │ ├── internalAliasFunctionInsideTopLevelModuleWithExport.ts │ │ ├── internalAliasFunctionInsideTopLevelModuleWithoutExport.ts │ │ ├── internalAliasInitializedModule.ts │ │ ├── internalAliasInitializedModuleInsideLocalModuleWithExport.ts │ │ ├── internalAliasInitializedModuleInsideLocalModuleWithoutExport.ts │ │ ├── internalAliasInitializedModuleInsideLocalModuleWithoutExportAccessError.ts │ │ ├── internalAliasInitializedModuleInsideTopLevelModuleWithExport.ts │ │ ├── internalAliasInitializedModuleInsideTopLevelModuleWithoutExport.ts │ │ ├── internalAliasInterface.ts │ │ ├── internalAliasInterfaceInsideLocalModuleWithExport.ts │ │ ├── internalAliasInterfaceInsideLocalModuleWithoutExport.ts │ │ ├── internalAliasInterfaceInsideLocalModuleWithoutExportAccessError.ts │ │ ├── internalAliasInterfaceInsideTopLevelModuleWithExport.ts │ │ ├── internalAliasInterfaceInsideTopLevelModuleWithoutExport.ts │ │ ├── internalAliasUninitializedModule.ts │ │ ├── internalAliasUninitializedModuleInsideLocalModuleWithExport.ts │ │ ├── internalAliasUninitializedModuleInsideLocalModuleWithoutExport.ts │ │ ├── internalAliasUninitializedModuleInsideLocalModuleWithoutExportAccessError.ts │ │ ├── internalAliasUninitializedModuleInsideTopLevelModuleWithExport.ts │ │ ├── internalAliasUninitializedModuleInsideTopLevelModuleWithoutExport.ts │ │ ├── internalAliasVar.ts │ │ ├── internalAliasVarInsideLocalModuleWithExport.ts │ │ ├── internalAliasVarInsideLocalModuleWithoutExport.ts │ │ ├── internalAliasVarInsideLocalModuleWithoutExportAccessError.ts │ │ ├── internalAliasVarInsideTopLevelModuleWithExport.ts │ │ ├── internalAliasVarInsideTopLevelModuleWithoutExport.ts │ │ ├── internalAliasWithDottedNameEmit.ts │ │ ├── internalImportInstantiatedModuleMergedWithClassNotReferencingInstance.ts │ │ ├── internalImportInstantiatedModuleMergedWithClassNotReferencingInstanceNoConflict.ts │ │ ├── internalImportInstantiatedModuleNotReferencingInstance.ts │ │ ├── internalImportUnInstantiatedModuleMergedWithClassNotReferencingInstance.ts │ │ ├── internalImportUnInstantiatedModuleMergedWithClassNotReferencingInstanceNoConflict.ts │ │ ├── internalImportUnInstantiatedModuleNotReferencingInstanceNoConflict.ts │ │ ├── intersectionApparentTypeCaching.ts │ │ ├── intersectionConstraintReduction.ts │ │ ├── intersectionOfMixinConstructorTypeAndNonConstructorType.ts │ │ ├── intersectionOfTypeVariableHasApparentSignatures.ts │ │ ├── intersectionPropertyCheck.ts │ │ ├── intersectionReductionGenericStringLikeType.ts │ │ ├── intersectionSatisfiesConstraint.ts │ │ ├── intersectionTypeInference1.ts │ │ ├── intersectionTypeNormalization.ts │ │ ├── intersectionTypeWithLeadingOperator.ts │ │ ├── intersectionType_useDefineForClassFields.ts │ │ ├── intersectionWithConflictingPrivates.ts │ │ ├── intersectionWithConstructSignaturePrototypeResult.ts │ │ ├── intersectionsAndOptionalProperties.ts │ │ ├── intersectionsAndOptionalProperties2.ts │ │ ├── intersectionsAndOptionalProperties3.ts │ │ ├── intersectionsAndReadonlyProperties.ts │ │ ├── intersectionsOfLargeUnions.ts │ │ ├── intersectionsOfLargeUnions2.ts │ │ ├── intraBindingPatternReferences.ts │ │ ├── intrinsics.ts │ │ ├── invalidConstraint1.ts │ │ ├── invalidContinueInDownlevelAsync.ts │ │ ├── invalidLetInForOfAndForIn_ES5.ts │ │ ├── invalidLetInForOfAndForIn_ES6.ts │ │ ├── invalidOptionalChainFromNewExpression.ts │ │ ├── invalidReferenceSyntax1.ts │ │ ├── invalidSplice.ts │ │ ├── invalidStaticField.ts │ │ ├── invalidSymbolInTypeParameter1.ts │ │ ├── invalidThisEmitInContextualObjectLiteral.ts │ │ ├── invalidTripleSlashReference.ts │ │ ├── invalidTypeNames.ts │ │ ├── invalidUnicodeEscapeSequance.ts │ │ ├── invalidUnicodeEscapeSequance2.ts │ │ ├── invalidUnicodeEscapeSequance3.ts │ │ ├── invalidUnicodeEscapeSequance4.ts │ │ ├── invalidUseOfTypeAsNamespace.ts │ │ ├── invariantGenericErrorElaboration.ts │ │ ├── invocationExpressionInFunctionParameter.ts │ │ ├── invokingNonGenericMethodWithTypeArguments1.ts │ │ ├── invokingNonGenericMethodWithTypeArguments2.ts │ │ ├── ipromise2.ts │ │ ├── ipromise3.ts │ │ ├── ipromise4.ts │ │ ├── isArray.ts │ │ ├── isDeclarationVisibleNodeKinds.ts │ │ ├── isLiteral1.ts │ │ ├── isolatedDeclarationErrorTypes1.ts │ │ ├── isolatedDeclarationErrors.ts │ │ ├── isolatedDeclarationErrorsAugmentation.ts │ │ ├── isolatedDeclarationErrorsClasses.ts │ │ ├── isolatedDeclarationErrorsClassesExpressions.ts │ │ ├── isolatedDeclarationErrorsDefault.ts │ │ ├── isolatedDeclarationErrorsEnums.ts │ │ ├── isolatedDeclarationErrorsExpandoFunctions.ts │ │ ├── isolatedDeclarationErrorsExpressions.ts │ │ ├── isolatedDeclarationErrorsFunctionDeclarations.ts │ │ ├── isolatedDeclarationErrorsObjects.ts │ │ ├── isolatedDeclarationErrorsReturnTypes.ts │ │ ├── isolatedDeclarationLazySymbols.ts │ │ ├── isolatedDeclarationOutFile.ts │ │ ├── isolatedDeclarationsAddUndefined.ts │ │ ├── isolatedDeclarationsAddUndefined2.ts │ │ ├── isolatedDeclarationsAllowJs.ts │ │ ├── isolatedDeclarationsLiterals.ts │ │ ├── isolatedDeclarationsRequiresDeclaration.ts │ │ ├── isolatedDeclarationsStrictBuiltinIteratorReturn.ts │ │ ├── isolatedModulesAmbientConstEnum.ts │ │ ├── isolatedModulesConstEnum.ts │ │ ├── isolatedModulesDeclaration.ts │ │ ├── isolatedModulesDontElideReExportStar.ts │ │ ├── isolatedModulesES6.ts │ │ ├── isolatedModulesExportDeclarationType.ts │ │ ├── isolatedModulesExportImportUninstantiatedNamespace.ts │ │ ├── isolatedModulesExternalModuleForced.ts │ │ ├── isolatedModulesGlobalNamespacesAndEnums.ts │ │ ├── isolatedModulesImportConstEnum.ts │ │ ├── isolatedModulesImportConstEnumTypeOnly.ts │ │ ├── isolatedModulesImportExportElision.ts │ │ ├── isolatedModulesNoEmitOnError.ts │ │ ├── isolatedModulesNoExternalModule.ts │ │ ├── isolatedModulesNoExternalModuleMultiple.ts │ │ ├── isolatedModulesNonAmbientConstEnum.ts │ │ ├── isolatedModulesOut.ts │ │ ├── isolatedModulesPlainFile-AMD.ts │ │ ├── isolatedModulesPlainFile-CommonJS.ts │ │ ├── isolatedModulesPlainFile-ES6.ts │ │ ├── isolatedModulesPlainFile-System.ts │ │ ├── isolatedModulesPlainFile-UMD.ts │ │ ├── isolatedModulesReExportAlias.ts │ │ ├── isolatedModulesReExportType.ts │ │ ├── isolatedModulesRequiresPreserveConstEnum.ts │ │ ├── isolatedModulesShadowGlobalTypeNotValue.ts │ │ ├── isolatedModulesSketchyAliasLocalMerge.ts │ │ ├── isolatedModulesSourceMap.ts │ │ ├── isolatedModulesSpecifiedModule.ts │ │ ├── isolatedModulesUnspecifiedModule.ts │ │ ├── isolatedModulesWithDeclarationFile.ts │ │ ├── isolatedModules_resolveJsonModule.ts │ │ ├── isolatedModules_resolveJsonModule_strict_outDir_commonJs.ts │ │ ├── iterableTReturnTNext.ts │ │ ├── iterableWithNeverAsUnionMember.ts │ │ ├── iteratorExtraParameters.ts │ │ ├── iteratorsAndStrictNullChecks.ts │ │ ├── javascriptCommonjsModule.ts │ │ ├── javascriptDefinePropertyPrototypeNonConstructor.ts │ │ ├── javascriptImportDefaultBadExport.ts │ │ ├── javascriptThisAssignmentInStaticBlock.ts │ │ ├── jqueryInference.ts │ │ ├── jsCheckObjectDefineThisNoCrash.ts │ │ ├── jsDeclarationEmitDoesNotRenameImport.ts │ │ ├── jsDeclarationEmitExportAssignedArray.ts │ │ ├── jsDeclarationEmitExportAssignedFunctionWithExtraTypedefsMembers.ts │ │ ├── jsDeclarationEmitExportedClassWithExtends.ts │ │ ├── jsDeclarationsGlobalFileConstFunction.ts │ │ ├── jsDeclarationsGlobalFileConstFunctionNamed.ts │ │ ├── jsDeclarationsInheritedTypes.ts │ │ ├── jsDeclarationsWithDefaultAsNamespaceLikeMerge.ts │ │ ├── jsDocDeclarationEmitDoesNotUseNodeModulesPathWithoutError.ts │ │ ├── jsElementAccessNoContextualTypeCrash.ts │ │ ├── jsEmitIntersectionProperty.ts │ │ ├── jsEnumCrossFileExport.ts │ │ ├── jsEnumFunctionLocalNoCrash.ts │ │ ├── jsEnumTagOnObjectFrozen.ts │ │ ├── jsExpandoObjectDefineProperty.ts │ │ ├── jsExportAssignmentNonMutableLocation.ts │ │ ├── jsExportMemberMergedWithModuleAugmentation.ts │ │ ├── jsExportMemberMergedWithModuleAugmentation2.ts │ │ ├── jsExportMemberMergedWithModuleAugmentation3.ts │ │ ├── jsExtendsImplicitAny.ts │ │ ├── jsFileAlternativeUseOfOverloadTag.ts │ │ ├── jsFileClassPropertyInitalizationInObjectLiteral.ts │ │ ├── jsFileClassPropertyType.ts │ │ ├── jsFileClassPropertyType2.ts │ │ ├── jsFileClassPropertyType3.ts │ │ ├── jsFileClassSelfReferencedProperty.ts │ │ ├── jsFileCompilationAbstractModifier.ts │ │ ├── jsFileCompilationAmbientVarDeclarationSyntax.ts │ │ ├── jsFileCompilationAwaitModifier.ts │ │ ├── jsFileCompilationBindDeepExportsAssignment.ts │ │ ├── jsFileCompilationBindDuplicateIdentifier.ts │ │ ├── jsFileCompilationBindErrors.ts │ │ ├── jsFileCompilationBindMultipleDefaultExports.ts │ │ ├── jsFileCompilationBindReachabilityErrors.ts │ │ ├── jsFileCompilationBindStrictModeErrors.ts │ │ ├── jsFileCompilationClassMethodContainingArrowFunction.ts │ │ ├── jsFileCompilationConstModifier.ts │ │ ├── jsFileCompilationConstructorOverloadSyntax.ts │ │ ├── jsFileCompilationDecoratorSyntax.ts │ │ ├── jsFileCompilationDuplicateFunctionImplementation.ts │ │ ├── jsFileCompilationDuplicateFunctionImplementationFileOrderReversed.ts │ │ ├── jsFileCompilationDuplicateVariable.ts │ │ ├── jsFileCompilationDuplicateVariableErrorReported.ts │ │ ├── jsFileCompilationEmitBlockedCorrectly.ts │ │ ├── jsFileCompilationEmitDeclarations.ts │ │ ├── jsFileCompilationEmitTrippleSlashReference.ts │ │ ├── jsFileCompilationEnumSyntax.ts │ │ ├── jsFileCompilationErrorOnDeclarationsWithJsFileReferenceWithNoOut.ts │ │ ├── jsFileCompilationErrorOnDeclarationsWithJsFileReferenceWithOut.ts │ │ ├── jsFileCompilationErrorOnDeclarationsWithJsFileReferenceWithOutDir.ts │ │ ├── jsFileCompilationExportAssignmentSyntax.ts │ │ ├── jsFileCompilationExternalPackageError.ts │ │ ├── jsFileCompilationFunctionOverloadSyntax.ts │ │ ├── jsFileCompilationHeritageClauseSyntaxOfClass.ts │ │ ├── jsFileCompilationImportEqualsSyntax.ts │ │ ├── jsFileCompilationInterfaceSyntax.ts │ │ ├── jsFileCompilationLetBeingRenamed.ts │ │ ├── jsFileCompilationLetDeclarationOrder.ts │ │ ├── jsFileCompilationLetDeclarationOrder2.ts │ │ ├── jsFileCompilationMethodOverloadSyntax.ts │ │ ├── jsFileCompilationModuleSyntax.ts │ │ ├── jsFileCompilationNoErrorWithoutDeclarationsWithJsFileReferenceWithNoOut.ts │ │ ├── jsFileCompilationNoErrorWithoutDeclarationsWithJsFileReferenceWithOut.ts │ │ ├── jsFileCompilationNonNullAssertion.ts │ │ ├── jsFileCompilationOptionalClassElementSyntaxOfClass.ts │ │ ├── jsFileCompilationOptionalParameter.ts │ │ ├── jsFileCompilationPublicMethodSyntaxOfClass.ts │ │ ├── jsFileCompilationPublicParameterModifier.ts │ │ ├── jsFileCompilationRestParamJsDocFunction.ts │ │ ├── jsFileCompilationRestParameter.ts │ │ ├── jsFileCompilationReturnTypeSyntaxOfFunction.ts │ │ ├── jsFileCompilationShortHandProperty.ts │ │ ├── jsFileCompilationSyntaxError.ts │ │ ├── jsFileCompilationTypeAliasSyntax.ts │ │ ├── jsFileCompilationTypeArgumentSyntaxOfCall.ts │ │ ├── jsFileCompilationTypeAssertions.ts │ │ ├── jsFileCompilationTypeOfParameter.ts │ │ ├── jsFileCompilationTypeParameterSyntaxOfClass.ts │ │ ├── jsFileCompilationTypeParameterSyntaxOfClassExpression.ts │ │ ├── jsFileCompilationTypeParameterSyntaxOfFunction.ts │ │ ├── jsFileCompilationTypeSyntaxOfVar.ts │ │ ├── jsFileCompilationWithDeclarationEmitPathSameAsInput.ts │ │ ├── jsFileCompilationWithEnabledCompositeOption.ts │ │ ├── jsFileCompilationWithJsEmitPathSameAsInput.ts │ │ ├── jsFileCompilationWithMapFileAsJs.ts │ │ ├── jsFileCompilationWithMapFileAsJsWithInlineSourceMap.ts │ │ ├── jsFileCompilationWithMapFileAsJsWithOutDir.ts │ │ ├── jsFileCompilationWithOut.ts │ │ ├── jsFileCompilationWithOutDeclarationFileNameSameAsInputJsFile.ts │ │ ├── jsFileCompilationWithOutFileNameSameAsInputJsFile.ts │ │ ├── jsFileCompilationWithoutJsExtensions.ts │ │ ├── jsFileCompilationWithoutOut.ts │ │ ├── jsFileESModuleWithEnumTag.ts │ │ ├── jsFileFunctionOverloads.ts │ │ ├── jsFileFunctionOverloads2.ts │ │ ├── jsFileFunctionParametersAsOptional.ts │ │ ├── jsFileFunctionParametersAsOptional2.ts │ │ ├── jsFileImportPreservedWhenUsed.ts │ │ ├── jsFileMethodOverloads.ts │ │ ├── jsFileMethodOverloads2.ts │ │ ├── jsFileMethodOverloads3.ts │ │ ├── jsFileMethodOverloads4.ts │ │ ├── jsFileMethodOverloads5.ts │ │ ├── jsFunctionWithPrototypeNoErrorTruncationNoCrash.ts │ │ ├── jsNegativeElementAccessNotBound.ts │ │ ├── jsNoImplicitAnyNoCascadingReferenceErrors.ts │ │ ├── jsPropertyAssignedAfterMethodDeclaration.ts │ │ ├── jsPropertyAssignedAfterMethodDeclaration_nonError.ts │ │ ├── jsSelfReferencingArgumentsFunction.ts │ │ ├── jsdocAccessEnumType.ts │ │ ├── jsdocArrayObjectPromiseImplicitAny.ts │ │ ├── jsdocArrayObjectPromiseNoImplicitAny.ts │ │ ├── jsdocBracelessTypeTag1.ts │ │ ├── jsdocCallbackAndType.ts │ │ ├── jsdocCastCommentEmit.ts │ │ ├── jsdocClassMissingTypeArguments.ts │ │ ├── jsdocFunctionClassPropertiesDeclaration.ts │ │ ├── jsdocFunctionTypeFalsePositive.ts │ │ ├── jsdocIllegalTags.ts │ │ ├── jsdocImportTypeNodeNamespace.ts │ │ ├── jsdocImportTypeResolution.ts │ │ ├── jsdocInTypeScript.ts │ │ ├── jsdocParamTagInvalid.ts │ │ ├── jsdocParamTagOnPropertyInitializer.ts │ │ ├── jsdocParameterParsingInfiniteLoop.ts │ │ ├── jsdocParameterParsingInvalidName.ts │ │ ├── jsdocPropertyTagInvalid.ts │ │ ├── jsdocReferenceGlobalTypeInCommonJs.ts │ │ ├── jsdocResolveNameFailureInTypedef.ts │ │ ├── jsdocRestParameter.ts │ │ ├── jsdocRestParameter_es6.ts │ │ ├── jsdocTypeCast.ts │ │ ├── jsdocTypeGenericInstantiationAttempt.ts │ │ ├── jsdocTypeNongenericInstantiationAttempt.ts │ │ ├── jsdocTypecastNoTypeNoCrash.ts │ │ ├── jsdocTypedefBeforeParenthesizedExpression.ts │ │ ├── jsdocTypedefMissingType.ts │ │ ├── jsdocTypedefNoCrash.ts │ │ ├── jsdocTypedefNoCrash2.ts │ │ ├── jsdocTypedef_propertyWithNoType.ts │ │ ├── jsdocUnexpectedCharacter.ts │ │ ├── json.stringify.ts │ │ ├── jsonFileImportChecksCallCorrectlyTwice.ts │ │ ├── jsxAttributeMissingInitializer.tsx │ │ ├── jsxAttributeWithoutExpressionReact.tsx │ │ ├── jsxCallElaborationCheckNoCrash1.tsx │ │ ├── jsxCallbackWithDestructuring.tsx │ │ ├── jsxChildWrongType.tsx │ │ ├── jsxChildrenArrayWrongType.tsx │ │ ├── jsxChildrenGenericContextualTypes.tsx │ │ ├── jsxChildrenIndividualErrorElaborations.tsx │ │ ├── jsxChildrenSingleChildConfusableWithMultipleChildrenNoError.tsx │ │ ├── jsxChildrenWrongType.tsx │ │ ├── jsxClassAttributeResolution.tsx │ │ ├── jsxComplexSignatureHasApplicabilityError.tsx │ │ ├── jsxComponentTypeErrors.tsx │ │ ├── jsxContainsOnlyTriviaWhiteSpacesNotCountedAsChild.tsx │ │ ├── jsxDeclarationsWithEsModuleInteropNoCrash.tsx │ │ ├── jsxElementClassTooManyParams.tsx │ │ ├── jsxElementType.tsx │ │ ├── jsxElementTypeLiteral.tsx │ │ ├── jsxElementTypeLiteralWithGeneric.tsx │ │ ├── jsxElementsAsIdentifierNames.tsx │ │ ├── jsxEmitAttributeWithPreserve.tsx │ │ ├── jsxEmitWithAttributes.ts │ │ ├── jsxEmptyExpressionNotCountedAsChild.tsx │ │ ├── jsxEmptyExpressionNotCountedAsChild2.tsx │ │ ├── jsxExcessPropsAndAssignability.tsx │ │ ├── jsxFactoryAndJsxFragmentFactory.tsx │ │ ├── jsxFactoryAndJsxFragmentFactoryErrorNotIdentifier.tsx │ │ ├── jsxFactoryAndJsxFragmentFactoryNull.tsx │ │ ├── jsxFactoryAndReactNamespace.ts │ │ ├── jsxFactoryButNoJsxFragmentFactory.tsx │ │ ├── jsxFactoryIdentifier.ts │ │ ├── jsxFactoryIdentifierAsParameter.ts │ │ ├── jsxFactoryIdentifierWithAbsentParameter.ts │ │ ├── jsxFactoryMissingErrorInsideAClass.ts │ │ ├── jsxFactoryNotIdentifierOrQualifiedName.ts │ │ ├── jsxFactoryNotIdentifierOrQualifiedName2.ts │ │ ├── jsxFactoryQualifiedName.ts │ │ ├── jsxFactoryQualifiedNameResolutionError.ts │ │ ├── jsxFactoryQualifiedNameWithEs5.ts │ │ ├── jsxFragReactReferenceErrors.tsx │ │ ├── jsxFragmentAndFactoryUsedOnFragmentUse.tsx │ │ ├── jsxFragmentFactoryNoUnusedLocals.tsx │ │ ├── jsxFragmentFactoryReference.tsx │ │ ├── jsxFragmentWrongType.tsx │ │ ├── jsxFunctionTypeChildren.tsx │ │ ├── jsxGenericComponentWithSpreadingResultOfGenericFunction.tsx │ │ ├── jsxHasLiteralType.tsx │ │ ├── jsxHash.tsx │ │ ├── jsxImportForSideEffectsNonExtantNoError.tsx │ │ ├── jsxImportInAttribute.tsx │ │ ├── jsxImportSourceNonPragmaComment.tsx │ │ ├── jsxInExtendsClause.tsx │ │ ├── jsxInferenceProducesLiteralAsExpected.tsx │ │ ├── jsxIntrinsicDeclaredUsingTemplateLiteralTypeSignatures.tsx │ │ ├── jsxIntrinsicElementsCompatability.tsx │ │ ├── jsxIntrinsicElementsExtendsRecord.tsx │ │ ├── jsxIntrinsicElementsTypeArgumentErrors.tsx │ │ ├── jsxIntrinsicUnions.tsx │ │ ├── jsxIssuesErrorWhenTagExpectsTooManyArguments.tsx │ │ ├── jsxLibraryManagedAttributesUnusedGeneric.tsx │ │ ├── jsxLocalNamespaceIndexSignatureNoCrash.tsx │ │ ├── jsxMultilineAttributeStringValues.tsx │ │ ├── jsxMultilineAttributeValuesReact.tsx │ │ ├── jsxNamespaceElementChildrenAttributeIgnoredWhenReactJsx.tsx │ │ ├── jsxNamespaceGlobalReexport.tsx │ │ ├── jsxNamespaceGlobalReexportMissingAliasTarget.tsx │ │ ├── jsxNamespaceImplicitImportJSXNamespace.tsx │ │ ├── jsxNamespaceImplicitImportJSXNamespaceFromConfigPickedOverGlobalOne.tsx │ │ ├── jsxNamespaceImplicitImportJSXNamespaceFromPragmaPickedOverGlobalOne.tsx │ │ ├── jsxNamespaceNoElementChildrenAttributeReactJsx.tsx │ │ ├── jsxNamespacePrefixInName.tsx │ │ ├── jsxNamespacePrefixInNameReact.tsx │ │ ├── jsxNamespacePrefixIntrinsics.tsx │ │ ├── jsxNamespaceReexports.tsx │ │ ├── jsxNamespacedNameNotComparedToNonMatchingIndexSignature.tsx │ │ ├── jsxNestedWithinTernaryParsesCorrectly.tsx │ │ ├── jsxPartialSpread.tsx │ │ ├── jsxPreserveWithJsInput.ts │ │ ├── jsxPropsAsIdentifierNames.tsx │ │ ├── jsxRuntimePragma.ts │ │ ├── jsxSpreadFirstUnionNoErrors.tsx │ │ ├── jsxSpreadTag.ts │ │ ├── jsxViaImport.2.tsx │ │ ├── jsxViaImport.tsx │ │ ├── keepImportsInDts1.ts │ │ ├── keepImportsInDts2.ts │ │ ├── keepImportsInDts3.ts │ │ ├── keepImportsInDts4.ts │ │ ├── keyRemappingKeyofResult.ts │ │ ├── keyRemappingKeyofResult2.ts │ │ ├── keyofDoesntContainSymbols.ts │ │ ├── keyofGenericExtendingClassDoubleLayer.ts │ │ ├── keyofIsLiteralContexualType.ts │ │ ├── keyofModuleObjectHasCorrectKeys.ts │ │ ├── keyofObjectWithGlobalSymbolIncluded.ts │ │ ├── keywordExpressionInternalComments.ts │ │ ├── keywordField.ts │ │ ├── keywordInJsxIdentifier.tsx │ │ ├── knockout.ts │ │ ├── lambdaASIEmit.ts │ │ ├── lambdaArgCrash.ts │ │ ├── lambdaExpression.ts │ │ ├── lambdaParamTypes.ts │ │ ├── lambdaParameterWithTupleArgsHasCorrectAssignability.ts │ │ ├── lambdaPropSelf.ts │ │ ├── largeControlFlowGraph.ts │ │ ├── largeTupleTypes.ts │ │ ├── lastPropertyInLiteralWins.ts │ │ ├── lateBoundAssignmentCandidateJS1.ts │ │ ├── lateBoundAssignmentCandidateJS2.ts │ │ ├── lateBoundAssignmentCandidateJS3.ts │ │ ├── lateBoundConstraintTypeChecksCorrectly.ts │ │ ├── lateBoundDestructuringImplicitAnyError.ts │ │ ├── lateBoundFunctionMemberAssignmentDeclarations.ts │ │ ├── lateBoundMethodNameAssigmentJS.ts │ │ ├── letAndVarRedeclaration.ts │ │ ├── letAsIdentifier.ts │ │ ├── letAsIdentifier2.ts │ │ ├── letAsIdentifierInStrictMode.ts │ │ ├── letConstInCaseClauses.ts │ │ ├── letConstMatchingParameterNames.ts │ │ ├── letDeclarations-access.ts │ │ ├── letDeclarations-es5-1.ts │ │ ├── letDeclarations-es5.ts │ │ ├── letDeclarations-invalidContexts.ts │ │ ├── letDeclarations-scopes-duplicates.ts │ │ ├── letDeclarations-scopes-duplicates2.ts │ │ ├── letDeclarations-scopes-duplicates3.ts │ │ ├── letDeclarations-scopes-duplicates4.ts │ │ ├── letDeclarations-scopes-duplicates5.ts │ │ ├── letDeclarations-scopes-duplicates6.ts │ │ ├── letDeclarations-scopes-duplicates7.ts │ │ ├── letDeclarations-scopes.ts │ │ ├── letDeclarations-scopes2.ts │ │ ├── letDeclarations-useBeforeDefinition.ts │ │ ├── letDeclarations-useBeforeDefinition2.ts │ │ ├── letDeclarations-validContexts.ts │ │ ├── letDeclarations.ts │ │ ├── letDeclarations2.ts │ │ ├── letInConstDeclarations_ES5.ts │ │ ├── letInConstDeclarations_ES6.ts │ │ ├── letInLetConstDeclOfForOfAndForIn_ES5.ts │ │ ├── letInLetConstDeclOfForOfAndForIn_ES6.ts │ │ ├── letInLetDeclarations_ES5.ts │ │ ├── letInLetDeclarations_ES6.ts │ │ ├── letInNonStrictMode.ts │ │ ├── letInVarDeclOfForIn_ES5.ts │ │ ├── letInVarDeclOfForIn_ES6.ts │ │ ├── letInVarDeclOfForOf_ES5.ts │ │ ├── letInVarDeclOfForOf_ES6.ts │ │ ├── letKeepNamesOfTopLevelItems.ts │ │ ├── letShadowedByNameInNestedScope.ts │ │ ├── libCompileChecks.ts │ │ ├── libMembers.ts │ │ ├── libReplacement.ts │ │ ├── libTypeScriptOverrideSimple.ts │ │ ├── libTypeScriptOverrideSimpleConfig.ts │ │ ├── libTypeScriptSubfileResolving.ts │ │ ├── libTypeScriptSubfileResolvingConfig.ts │ │ ├── libdtsFix.ts │ │ ├── library_ArraySlice.ts │ │ ├── library_DatePrototypeProperties.ts │ │ ├── library_ObjectPrototypeProperties.ts │ │ ├── library_RegExpExecArraySlice.ts │ │ ├── library_StringSlice.ts │ │ ├── lift.ts │ │ ├── limitDeepInstantiations.ts │ │ ├── listFailure.ts │ │ ├── literalFreshnessPropagationOnNarrowing.ts │ │ ├── literalIntersectionYieldsLiteral.ts │ │ ├── literalTypeNameAssertionNotTriggered.ts │ │ ├── literalWideningWithCompoundLikeAssignments.ts │ │ ├── literals-negative.ts │ │ ├── literals1.ts │ │ ├── literalsInComputedProperties1.ts │ │ ├── localAliasExportAssignment.ts │ │ ├── localClassesInLoop.ts │ │ ├── localClassesInLoop_ES6.ts │ │ ├── localImportNameVsGlobalName.ts │ │ ├── localRequireFunction.ts │ │ ├── localTypeParameterInferencePriority.ts │ │ ├── localVariablesReturnedFromCatchBlocks.ts │ │ ├── logicalNotExpression1.ts │ │ ├── longObjectInstantiationChain1.ts │ │ ├── longObjectInstantiationChain2.ts │ │ ├── longObjectInstantiationChain3.ts │ │ ├── m7Bugs.ts │ │ ├── manyCompilerErrorsInTheTwoFiles.ts │ │ ├── manyConstExports.ts │ │ ├── mapConstructor.ts │ │ ├── mapConstructorOnReadonlyTuple.ts │ │ ├── mapGroupBy.ts │ │ ├── mapOnTupleTypes01.ts │ │ ├── mapOnTupleTypes02.ts │ │ ├── mapUpsert.ts │ │ ├── mappedArrayTupleIntersections.ts │ │ ├── mappedToToIndexSignatureInference.ts │ │ ├── mappedTypeAndIndexSignatureRelation.ts │ │ ├── mappedTypeAsStringTemplate.ts │ │ ├── mappedTypeCircularReferenceInAccessor.ts │ │ ├── mappedTypeContextualTypesApplied.ts │ │ ├── mappedTypeGenericIndexedAccess.ts │ │ ├── mappedTypeGenericInstantiationPreservesHomomorphism.ts │ │ ├── mappedTypeGenericInstantiationPreservesInlineForm.ts │ │ ├── mappedTypeGenericWithKnownKeys.ts │ │ ├── mappedTypeIndexedAccess.ts │ │ ├── mappedTypeIndexedAccessConstraint.ts │ │ ├── mappedTypeInferenceAliasSubstitution.ts │ │ ├── mappedTypeInferenceCircularity.ts │ │ ├── mappedTypeInferenceFromApparentType.ts │ │ ├── mappedTypeInferenceToMappedType.ts │ │ ├── mappedTypeMultiInference.ts │ │ ├── mappedTypeNestedGenericInstantiation.ts │ │ ├── mappedTypeNoTypeNoCrash.ts │ │ ├── mappedTypeNotMistakenlyHomomorphic.ts │ │ ├── mappedTypeOverArrayWithBareAnyRestCanBeUsedAsRestParam1.ts │ │ ├── mappedTypeParameterConstraint.ts │ │ ├── mappedTypePartialConstraints.ts │ │ ├── mappedTypePartialNonHomomorphicBaseConstraint.ts │ │ ├── mappedTypeRecursiveInference.ts │ │ ├── mappedTypeRecursiveInference2.ts │ │ ├── mappedTypeTupleConstraintAssignability.ts │ │ ├── mappedTypeUnionConstrainTupleTreatedAsArrayLike.ts │ │ ├── mappedTypeUnionConstraintInferences.ts │ │ ├── mappedTypeWithAsClauseAndLateBoundProperty.ts │ │ ├── mappedTypeWithAsClauseAndLateBoundProperty2.ts │ │ ├── mappedTypeWithCombinedTypeMappers.ts │ │ ├── mappedTypeWithNameClauseAppliedToArrayType.ts │ │ ├── matchReturnTypeInAllBranches.ts │ │ ├── matchingOfObjectLiteralConstraints.ts │ │ ├── maxConstraints.ts │ │ ├── maxNodeModuleJsDepthDefaultsToZero.ts │ │ ├── maximum10SpellingSuggestions.ts │ │ ├── memberAccessMustUseModuleInstances.ts │ │ ├── memberAccessOnConstructorType.ts │ │ ├── memberOverride.ts │ │ ├── memberScope.ts │ │ ├── memberVariableDeclarations1.ts │ │ ├── mergeMultipleInterfacesReexported.ts │ │ ├── mergeSymbolReexportInterface.ts │ │ ├── mergeSymbolReexportedTypeAliasInstantiation.ts │ │ ├── mergeSymbolRexportFunction.ts │ │ ├── mergeWithImportedNamespace.ts │ │ ├── mergeWithImportedType.ts │ │ ├── mergedClassNamespaceRecordCast.ts │ │ ├── mergedClassWithNamespacePrototype.ts │ │ ├── mergedDeclarationExports.ts │ │ ├── mergedDeclarations1.ts │ │ ├── mergedDeclarations2.ts │ │ ├── mergedDeclarations3.ts │ │ ├── mergedDeclarations4.ts │ │ ├── mergedDeclarations5.ts │ │ ├── mergedDeclarations6.ts │ │ ├── mergedDeclarations7.ts │ │ ├── mergedEnumDeclarationCodeGen.ts │ │ ├── mergedInstantiationAssignment.ts │ │ ├── mergedInterfaceFromMultipleFiles1.ts │ │ ├── mergedModuleDeclarationCodeGen.ts │ │ ├── mergedModuleDeclarationCodeGen2.ts │ │ ├── mergedModuleDeclarationCodeGen3.ts │ │ ├── mergedModuleDeclarationCodeGen4.ts │ │ ├── mergedModuleDeclarationCodeGen5.ts │ │ ├── mergedModuleDeclarationWithSharedExportedVar.ts │ │ ├── metadataImportType.ts │ │ ├── metadataOfClassFromAlias.ts │ │ ├── metadataOfClassFromAlias2.ts │ │ ├── metadataOfClassFromModule.ts │ │ ├── metadataOfEventAlias.ts │ │ ├── metadataOfStringLiteral.ts │ │ ├── metadataOfUnion.ts │ │ ├── metadataOfUnionWithNull.ts │ │ ├── metadataReferencedWithinFilteredUnion.ts │ │ ├── methodChainError.ts │ │ ├── methodContainingLocalFunction.ts │ │ ├── methodInAmbientClass1.ts │ │ ├── methodSignatureDeclarationEmit1.ts │ │ ├── methodSignatureHandledDeclarationKindForSymbol.ts │ │ ├── mismatchedClassConstructorVariable.ts │ │ ├── mismatchedExplicitTypeParameterAndArgumentType.ts │ │ ├── mismatchedGenericArguments1.ts │ │ ├── missingArgument1.ts │ │ ├── missingCloseBrace.ts │ │ ├── missingCloseBraceInObjectLiteral.ts │ │ ├── missingCloseBracketInArray.ts │ │ ├── missingCloseParenStatements.ts │ │ ├── missingCommaInTemplateStringsArray.ts │ │ ├── missingDiscriminants.ts │ │ ├── missingDiscriminants2.ts │ │ ├── missingDomElement_UsingDomLib.ts │ │ ├── missingDomElements.ts │ │ ├── missingFunctionImplementation.ts │ │ ├── missingFunctionImplementation2.ts │ │ ├── missingImportAfterModuleImport.ts │ │ ├── missingMemberErrorHasShortPath.ts │ │ ├── missingPropertiesOfClassExpression.ts │ │ ├── missingRequiredDeclare.d.ts │ │ ├── missingReturnStatement.ts │ │ ├── missingReturnStatement1.ts │ │ ├── missingSelf.ts │ │ ├── missingSemicolonInModuleSpecifier.ts │ │ ├── missingTypeArguments1.ts │ │ ├── missingTypeArguments2.ts │ │ ├── missingTypeArguments3.ts │ │ ├── misspelledJsDocTypedefTags.ts │ │ ├── misspelledNewMetaProperty.ts │ │ ├── mixedExports.ts │ │ ├── mixedStaticAndInstanceClassMembers.ts │ │ ├── mixedTypeEnumComparison.ts │ │ ├── mixinIntersectionIsValidbaseType.ts │ │ ├── mixinOverMappedTypeNoCrash.ts │ │ ├── mixinPrivateAndProtected.ts │ │ ├── mixingApparentTypeOverrides.ts │ │ ├── mixingFunctionAndAmbientModule1.ts │ │ ├── mixingStaticAndInstanceOverloads.ts │ │ ├── modFunctionCrash.ts │ │ ├── modKeyword.ts │ │ ├── modifierOnParameter1.ts │ │ ├── modifierParenCast.ts │ │ ├── modifiersInObjectLiterals.ts │ │ ├── modifiersOnInterfaceIndexSignature1.ts │ │ ├── modularizeLibrary_Dom.asynciterable.ts │ │ ├── modularizeLibrary_Dom.iterable.ts │ │ ├── modularizeLibrary_ErrorFromUsingES6ArrayWithOnlyES6ArrayLib.ts │ │ ├── modularizeLibrary_ErrorFromUsingES6FeaturesWithOnlyES5Lib.ts │ │ ├── modularizeLibrary_ErrorFromUsingWellknownSymbolWithOutES6WellknownSymbolLib.ts │ │ ├── modularizeLibrary_NoErrorDuplicateLibOptions1.ts │ │ ├── modularizeLibrary_NoErrorDuplicateLibOptions2.ts │ │ ├── modularizeLibrary_TargetES5UsingES6Lib.ts │ │ ├── modularizeLibrary_TargetES6UsingES6Lib.ts │ │ ├── modularizeLibrary_UsingES5LibAndES6ArrayLib.ts │ │ ├── modularizeLibrary_UsingES5LibAndES6FeatureLibs.ts │ │ ├── modularizeLibrary_UsingES5LibES6ArrayLibES6WellknownSymbolLib.ts │ │ ├── modularizeLibrary_Worker.asynciterable.ts │ │ ├── modularizeLibrary_Worker.iterable.ts │ │ ├── moduleAliasAsFunctionArgument.ts │ │ ├── moduleAliasInterface.ts │ │ ├── moduleAndInterfaceSharingName.ts │ │ ├── moduleAndInterfaceSharingName2.ts │ │ ├── moduleAndInterfaceSharingName3.ts │ │ ├── moduleAndInterfaceSharingName4.ts │ │ ├── moduleAndInterfaceWithSameName.ts │ │ ├── moduleAsBaseType.ts │ │ ├── moduleAssignmentCompat1.ts │ │ ├── moduleAssignmentCompat2.ts │ │ ├── moduleAssignmentCompat3.ts │ │ ├── moduleAssignmentCompat4.ts │ │ ├── moduleAugmentationCollidingNamesInAugmentation1.ts │ │ ├── moduleAugmentationDeclarationEmit1.ts │ │ ├── moduleAugmentationDeclarationEmit2.ts │ │ ├── moduleAugmentationDisallowedExtensions.ts │ │ ├── moduleAugmentationDoesInterfaceMergeOfReexport.ts │ │ ├── moduleAugmentationDoesNamespaceEnumMergeOfReexport.ts │ │ ├── moduleAugmentationDoesNamespaceMergeOfReexport.ts │ │ ├── moduleAugmentationDuringSyntheticDefaultCheck.ts │ │ ├── moduleAugmentationEnumClassMergeOfReexportIsError.ts │ │ ├── moduleAugmentationExtendAmbientModule1.ts │ │ ├── moduleAugmentationExtendAmbientModule2.ts │ │ ├── moduleAugmentationExtendFileModule1.ts │ │ ├── moduleAugmentationExtendFileModule2.ts │ │ ├── moduleAugmentationGlobal1.ts │ │ ├── moduleAugmentationGlobal2.ts │ │ ├── moduleAugmentationGlobal3.ts │ │ ├── moduleAugmentationGlobal4.ts │ │ ├── moduleAugmentationGlobal5.ts │ │ ├── moduleAugmentationGlobal6.ts │ │ ├── moduleAugmentationGlobal6_1.ts │ │ ├── moduleAugmentationGlobal7.ts │ │ ├── moduleAugmentationGlobal7_1.ts │ │ ├── moduleAugmentationGlobal8.ts │ │ ├── moduleAugmentationGlobal8_1.ts │ │ ├── moduleAugmentationImportsAndExports1.ts │ │ ├── moduleAugmentationImportsAndExports2.ts │ │ ├── moduleAugmentationImportsAndExports3.ts │ │ ├── moduleAugmentationImportsAndExports4.ts │ │ ├── moduleAugmentationImportsAndExports5.ts │ │ ├── moduleAugmentationImportsAndExports6.ts │ │ ├── moduleAugmentationInAmbientModule1.ts │ │ ├── moduleAugmentationInAmbientModule2.ts │ │ ├── moduleAugmentationInAmbientModule3.ts │ │ ├── moduleAugmentationInAmbientModule4.ts │ │ ├── moduleAugmentationInAmbientModule5.ts │ │ ├── moduleAugmentationInDependency.ts │ │ ├── moduleAugmentationInDependency2.ts │ │ ├── moduleAugmentationNoNewNames.ts │ │ ├── moduleAugmentationOfAlias.ts │ │ ├── moduleAugmentationWithNonExistentNamedImport.ts │ │ ├── moduleAugmentationsBundledOutput1.ts │ │ ├── moduleAugmentationsImports1.ts │ │ ├── moduleAugmentationsImports2.ts │ │ ├── moduleAugmentationsImports3.ts │ │ ├── moduleAugmentationsImports4.ts │ │ ├── moduleClassArrayCodeGenTest.ts │ │ ├── moduleCodeGenTest3.ts │ │ ├── moduleCodeGenTest5.ts │ │ ├── moduleCodegenTest4.ts │ │ ├── moduleCrashBug1.ts │ │ ├── moduleDeclarationExportStarShadowingGlobalIsNameable.ts │ │ ├── moduleDetectionIsolatedModulesCjsFileScope.ts │ │ ├── moduleDuplicateIdentifiers.ts │ │ ├── moduleElementsInWrongContext.ts │ │ ├── moduleElementsInWrongContext2.ts │ │ ├── moduleElementsInWrongContext3.ts │ │ ├── moduleExportNonStructured.ts │ │ ├── moduleExports1.ts │ │ ├── moduleExportsTypeNoExcessPropertyCheckFromContainedLiteral.ts │ │ ├── moduleExportsUnaryExpression.ts │ │ ├── moduleIdentifiers.ts │ │ ├── moduleImport.ts │ │ ├── moduleImportedForTypeArgumentPosition.ts │ │ ├── moduleInTypePosition1.ts │ │ ├── moduleKeywordDeprecated.ts │ │ ├── moduleKeywordRepeatError.ts │ │ ├── moduleLocalImportNotIncorrectlyRedirected.ts │ │ ├── moduleMemberMissingErrorIsRelative.ts │ │ ├── moduleMemberWithoutTypeAnnotation1.ts │ │ ├── moduleMemberWithoutTypeAnnotation2.ts │ │ ├── moduleMerge.ts │ │ ├── moduleMergeConstructor.ts │ │ ├── moduleNewExportBug.ts │ │ ├── moduleNoEmit.ts │ │ ├── moduleNodeDefaultImports.ts │ │ ├── moduleNodeImportRequireEmit.ts │ │ ├── moduleNoneDynamicImport.ts │ │ ├── moduleNoneErrors.ts │ │ ├── moduleNoneOutFile.ts │ │ ├── moduleOuterQualification.ts │ │ ├── modulePreserve1.ts │ │ ├── modulePreserve2.ts │ │ ├── modulePreserve3.ts │ │ ├── modulePreserve4.ts │ │ ├── modulePreserve5.ts │ │ ├── modulePreserveImportHelpers.ts │ │ ├── modulePreserveTopLevelAwait1.ts │ │ ├── modulePrologueAMD.ts │ │ ├── modulePrologueCommonjs.ts │ │ ├── modulePrologueES6.ts │ │ ├── modulePrologueSystem.ts │ │ ├── modulePrologueUmd.ts │ │ ├── moduleProperty1.ts │ │ ├── moduleProperty2.ts │ │ ├── moduleRedifinitionErrors.ts │ │ ├── moduleReopenedTypeOtherBlock.ts │ │ ├── moduleReopenedTypeSameBlock.ts │ │ ├── moduleResolutionAsTypeReferenceDirective.ts │ │ ├── moduleResolutionAsTypeReferenceDirectiveAmbient.ts │ │ ├── moduleResolutionAsTypeReferenceDirectiveScoped.ts │ │ ├── moduleResolutionNoResolve.ts │ │ ├── moduleResolutionNoTsCJS.ts │ │ ├── moduleResolutionNoTsESM.ts │ │ ├── moduleResolutionPackageIdWithRelativeAndAbsolutePath.ts │ │ ├── moduleResolutionWithExtensions_notSupported.ts │ │ ├── moduleResolutionWithExtensions_notSupported2.ts │ │ ├── moduleResolutionWithExtensions_notSupported3.ts │ │ ├── moduleResolutionWithExtensions_unexpected.ts │ │ ├── moduleResolutionWithExtensions_unexpected2.ts │ │ ├── moduleResolutionWithExtensions_withAmbientPresent.ts │ │ ├── moduleResolutionWithExtensions_withPaths.ts │ │ ├── moduleResolutionWithModule.ts │ │ ├── moduleResolutionWithRequire.ts │ │ ├── moduleResolutionWithRequireAndImport.ts │ │ ├── moduleResolutionWithSuffixes_empty.ts │ │ ├── moduleResolutionWithSuffixes_notSpecified.ts │ │ ├── moduleResolutionWithSuffixes_one.ts │ │ ├── moduleResolutionWithSuffixes_oneBlank.ts │ │ ├── moduleResolutionWithSuffixes_oneNotFound.ts │ │ ├── moduleResolutionWithSuffixes_one_dirModuleWithIndex.ts │ │ ├── moduleResolutionWithSuffixes_one_externalModule.ts │ │ ├── moduleResolutionWithSuffixes_one_externalModulePath.ts │ │ ├── moduleResolutionWithSuffixes_one_externalModule_withPaths.ts │ │ ├── moduleResolutionWithSuffixes_one_externalTSModule.ts │ │ ├── moduleResolutionWithSuffixes_one_jsModule.ts │ │ ├── moduleResolutionWithSuffixes_one_jsonModule.ts │ │ ├── moduleResolutionWithSuffixes_threeLastIsBlank1.ts │ │ ├── moduleResolutionWithSuffixes_threeLastIsBlank2.ts │ │ ├── moduleResolutionWithSuffixes_threeLastIsBlank3.ts │ │ ├── moduleResolutionWithSuffixes_threeLastIsBlank4.ts │ │ ├── moduleResolutionWithSymlinks.ts │ │ ├── moduleResolutionWithSymlinks_notInNodeModules.ts │ │ ├── moduleResolutionWithSymlinks_preserveSymlinks.ts │ │ ├── moduleResolutionWithSymlinks_referenceTypes.ts │ │ ├── moduleResolutionWithSymlinks_withOutDir.ts │ │ ├── moduleResolution_automaticTypeDirectiveNames.ts │ │ ├── moduleResolution_classicPrefersTs.ts │ │ ├── moduleResolution_explicitNodeModulesImport.ts │ │ ├── moduleResolution_explicitNodeModulesImport_implicitAny.ts │ │ ├── moduleResolution_noLeadingDot.ts │ │ ├── moduleResolution_packageJson_notAtPackageRoot.ts │ │ ├── moduleResolution_packageJson_notAtPackageRoot_fakeScopedPackage.ts │ │ ├── moduleResolution_packageJson_scopedPackage.ts │ │ ├── moduleResolution_packageJson_yesAtPackageRoot.ts │ │ ├── moduleResolution_packageJson_yesAtPackageRoot_fakeScopedPackage.ts │ │ ├── moduleResolution_packageJson_yesAtPackageRoot_mainFieldInSubDirectory.ts │ │ ├── moduleResolution_relativeImportJsFile.ts │ │ ├── moduleResolution_relativeImportJsFile_noImplicitAny.ts │ │ ├── moduleSameValueDuplicateExportedBindings1.ts │ │ ├── moduleSameValueDuplicateExportedBindings2.ts │ │ ├── moduleScopingBug.ts │ │ ├── moduleSharesNameWithImportDeclarationInsideIt.ts │ │ ├── moduleSharesNameWithImportDeclarationInsideIt2.ts │ │ ├── moduleSharesNameWithImportDeclarationInsideIt3.ts │ │ ├── moduleSharesNameWithImportDeclarationInsideIt4.ts │ │ ├── moduleSharesNameWithImportDeclarationInsideIt5.ts │ │ ├── moduleSharesNameWithImportDeclarationInsideIt6.ts │ │ ├── moduleSymbolMerging.ts │ │ ├── moduleUnassignedVariable.ts │ │ ├── moduleVariableArrayIndexer.ts │ │ ├── moduleVariables.ts │ │ ├── moduleVisibilityTest1.ts │ │ ├── moduleVisibilityTest2.ts │ │ ├── moduleVisibilityTest3.ts │ │ ├── moduleVisibilityTest4.ts │ │ ├── moduleWithNoValuesAsType.ts │ │ ├── moduleWithTryStatement1.ts │ │ ├── moduleWithValuesAsType.ts │ │ ├── module_augmentExistingAmbientVariable.ts │ │ ├── module_augmentExistingVariable.ts │ │ ├── module_augmentUninstantiatedModule.ts │ │ ├── module_augmentUninstantiatedModule2.ts │ │ ├── moduledecl.ts │ │ ├── multiCallOverloads.ts │ │ ├── multiExtendsSplitInterfaces1.ts │ │ ├── multiExtendsSplitInterfaces2.ts │ │ ├── multiImportExport.ts │ │ ├── multiLineContextDiagnosticWithPretty.ts │ │ ├── multiLineErrors.ts │ │ ├── multiLinePropertyAccessAndArrowFunctionIndent1.ts │ │ ├── multiModuleClodule1.ts │ │ ├── multiModuleFundule1.ts │ │ ├── multiSignatureTypeInference.ts │ │ ├── multipleBaseInterfaesWithIncompatibleProperties.ts │ │ ├── multipleBaseInterfaesWithIncompatibleProperties2.ts │ │ ├── multipleClassPropertyModifiers.ts │ │ ├── multipleClassPropertyModifiersErrors.ts │ │ ├── multipleExportAssignments.ts │ │ ├── multipleExportAssignmentsInAmbientDeclaration.ts │ │ ├── multipleExports.ts │ │ ├── multipleInferenceContexts.ts │ │ ├── multipleInheritance.ts │ │ ├── multivar.ts │ │ ├── mutrec.ts │ │ ├── mutuallyRecursiveCallbacks.ts │ │ ├── mutuallyRecursiveGenericBaseTypes1.ts │ │ ├── mutuallyRecursiveGenericBaseTypes2.ts │ │ ├── mutuallyRecursiveInference.ts │ │ ├── mutuallyRecursiveInterfaceDeclaration.ts │ │ ├── nameCollisionWithBlockScopedVariable1.ts │ │ ├── nameCollisions.ts │ │ ├── nameCollisionsInPropertyAssignments.ts │ │ ├── namedFunctionExpressionAssignedToClassProperty.ts │ │ ├── namedFunctionExpressionCall.ts │ │ ├── namedFunctionExpressionCallErrors.ts │ │ ├── namedFunctionExpressionInModule.ts │ │ ├── namedImportNonExistentName.ts │ │ ├── namespaceDisambiguationInUnion.ts │ │ ├── namespaceMergedWithFunctionWithOverloadsUsage.ts │ │ ├── namespaceMergedWithImportAliasNoCrash.ts │ │ ├── namespaceNotMergedWithFunctionDefaultExport.ts │ │ ├── namespaces1.ts │ │ ├── namespaces2.ts │ │ ├── namespacesDeclaration1.ts │ │ ├── namespacesDeclaration2.ts │ │ ├── namespacesWithTypeAliasOnlyExportsMerge.ts │ │ ├── nanEquality.ts │ │ ├── narrowByBooleanComparison.ts │ │ ├── narrowByClauseExpressionInSwitchTrue1.ts │ │ ├── narrowByClauseExpressionInSwitchTrue10.ts │ │ ├── narrowByClauseExpressionInSwitchTrue2.ts │ │ ├── narrowByClauseExpressionInSwitchTrue3.ts │ │ ├── narrowByClauseExpressionInSwitchTrue4.ts │ │ ├── narrowByClauseExpressionInSwitchTrue5.ts │ │ ├── narrowByClauseExpressionInSwitchTrue6.ts │ │ ├── narrowByClauseExpressionInSwitchTrue7.ts │ │ ├── narrowByClauseExpressionInSwitchTrue8.ts │ │ ├── narrowByClauseExpressionInSwitchTrue9.ts │ │ ├── narrowByEquality.ts │ │ ├── narrowByInstanceof.ts │ │ ├── narrowByParenthesizedSwitchExpression.ts │ │ ├── narrowBySwitchDiscriminantUndefinedCase1.ts │ │ ├── narrowCommaOperatorNestedWithinLHS.ts │ │ ├── narrowRefinedConstLikeParameterBIndingElementNameInInnerScope.ts │ │ ├── narrowSwitchOptionalChainContainmentEvolvingArrayNoCrash1.ts │ │ ├── narrowTypeByInstanceof.ts │ │ ├── narrowUnknownByTypePredicate.ts │ │ ├── narrowUnknownByTypeofObject.ts │ │ ├── narrowedConstInMethod.ts │ │ ├── narrowedImports.ts │ │ ├── narrowedImports_assumeInitialized.ts │ │ ├── narrowingAssignmentReadonlyRespectsAssertion.ts │ │ ├── narrowingByDiscriminantInLoop.ts │ │ ├── narrowingByTypeofInSwitch.ts │ │ ├── narrowingConstrainedTypeParameter.ts │ │ ├── narrowingDestructuring.ts │ │ ├── narrowingInCaseClauseAfterCaseClauseWithReturn.ts │ │ ├── narrowingIntersection.ts │ │ ├── narrowingMutualSubtypes.ts │ │ ├── narrowingNoInfer1.ts │ │ ├── narrowingOfDottedNames.ts │ │ ├── narrowingOfQualifiedNames.ts │ │ ├── narrowingOrderIndependent.ts │ │ ├── narrowingPastLastAssignment.ts │ │ ├── narrowingPastLastAssignmentInModule.ts │ │ ├── narrowingPlainJsNoCrash1.ts │ │ ├── narrowingRestGenericCall.ts │ │ ├── narrowingTruthyObject.ts │ │ ├── narrowingTypeofDiscriminant.ts │ │ ├── narrowingTypeofFunction.ts │ │ ├── narrowingTypeofObject.ts │ │ ├── narrowingTypeofParenthesized1.ts │ │ ├── narrowingTypeofUndefined1.ts │ │ ├── narrowingTypeofUndefined2.ts │ │ ├── narrowingUnionToNeverAssigment.ts │ │ ├── narrowingUnionToUnion.ts │ │ ├── narrowingUnionWithBang.ts │ │ ├── narrowingWithNonNullExpression.ts │ │ ├── nativeToBoxedTypes.ts │ │ ├── nearbyIdenticalGenericLambdasAssignable.ts │ │ ├── negativeZero.ts │ │ ├── nestedBlockScopedBindings1.ts │ │ ├── nestedBlockScopedBindings10.ts │ │ ├── nestedBlockScopedBindings11.ts │ │ ├── nestedBlockScopedBindings12.ts │ │ ├── nestedBlockScopedBindings13.ts │ │ ├── nestedBlockScopedBindings14.ts │ │ ├── nestedBlockScopedBindings15.ts │ │ ├── nestedBlockScopedBindings16.ts │ │ ├── nestedBlockScopedBindings2.ts │ │ ├── nestedBlockScopedBindings3.ts │ │ ├── nestedBlockScopedBindings4.ts │ │ ├── nestedBlockScopedBindings5.ts │ │ ├── nestedBlockScopedBindings6.ts │ │ ├── nestedBlockScopedBindings7.ts │ │ ├── nestedBlockScopedBindings8.ts │ │ ├── nestedBlockScopedBindings9.ts │ │ ├── nestedCallbackErrorNotFlattened.ts │ │ ├── nestedExcessPropertyChecking.ts │ │ ├── nestedFreshLiteral.ts │ │ ├── nestedGenericConditionalTypeWithGenericImportType.ts │ │ ├── nestedGenericSpreadInference.ts │ │ ├── nestedGenerics.ts │ │ ├── nestedGlobalNamespaceInClass.ts │ │ ├── nestedHomomorphicMappedTypesWithArrayConstraint1.ts │ │ ├── nestedIfStatement.ts │ │ ├── nestedIndexer.ts │ │ ├── nestedInfinitelyExpandedRecursiveTypes.ts │ │ ├── nestedLoopTypeGuards.ts │ │ ├── nestedLoopWithOnlyInnerLetCaptured.ts │ │ ├── nestedLoops.ts │ │ ├── nestedModulePrivateAccess.ts │ │ ├── nestedObjectRest.ts │ │ ├── nestedRecursiveArraysOrObjectsError01.ts │ │ ├── nestedRecursiveLambda.ts │ │ ├── nestedRedeclarationInES6AMD.ts │ │ ├── nestedSelf.ts │ │ ├── nestedSuperCallEmit.ts │ │ ├── nestedThisContainer.ts │ │ ├── nestedTypeVariableInfersLiteral.ts │ │ ├── nestedUnaryExpressionHang.ts │ │ ├── neverAsDiscriminantType.ts │ │ ├── neverNullishThroughParentheses.ts │ │ ├── newAbstractInstance.ts │ │ ├── newAbstractInstance2.ts │ │ ├── newArrays.ts │ │ ├── newExpressionWithCast.ts │ │ ├── newExpressionWithTypeParameterConstrainedToOuterTypeParameter.ts │ │ ├── newFunctionImplicitAny.ts │ │ ├── newLexicalEnvironmentForConvertedLoop.ts │ │ ├── newLineFlagWithCRLF.ts │ │ ├── newLineFlagWithLF.ts │ │ ├── newLineInTypeofInstantiation.ts │ │ ├── newMap.ts │ │ ├── newMissingIdentifier.ts │ │ ├── newNamesInGlobalAugmentations1.ts │ │ ├── newNonReferenceType.ts │ │ ├── newOnInstanceSymbol.ts │ │ ├── newOperator.ts │ │ ├── noAsConstNameLookup.ts │ │ ├── noBundledEmitFromNodeModules.ts │ │ ├── noCatchBlock.ts │ │ ├── noCheckDoesNotReportError.ts │ │ ├── noCheckNoEmit.ts │ │ ├── noCheckRequiresEmitDeclarationOnly.ts │ │ ├── noCircularDefinitionOnExportOfPrivateInMergedNamespace.ts │ │ ├── noCircularitySelfReferentialGetter1.ts │ │ ├── noCircularitySelfReferentialGetter2.ts │ │ ├── noCircularitySelfReferentialGetter3.ts │ │ ├── noCircularitySelfReferentialGetter4.ts │ │ ├── noCollisionThisExpressionAndClassInGlobal.ts │ │ ├── noCollisionThisExpressionAndLocalVarInAccessors.ts │ │ ├── noCollisionThisExpressionAndLocalVarInConstructor.ts │ │ ├── noCollisionThisExpressionAndLocalVarInFunction.ts │ │ ├── noCollisionThisExpressionAndLocalVarInLambda.ts │ │ ├── noCollisionThisExpressionAndLocalVarInMethod.ts │ │ ├── noCollisionThisExpressionAndLocalVarInProperty.ts │ │ ├── noCollisionThisExpressionAndVarInGlobal.ts │ │ ├── noCollisionThisExpressionInFunctionAndVarInGlobal.ts │ │ ├── noConstraintInReturnType1.ts │ │ ├── noCrashOnImportShadowing.ts │ │ ├── noCrashOnMixin.ts │ │ ├── noCrashOnMixin2.ts │ │ ├── noCrashOnNoLib.ts │ │ ├── noCrashOnParameterNamedRequire.ts │ │ ├── noCrashOnThisTypeUsage.ts │ │ ├── noCrashUMDMergedWithGlobalValue.ts │ │ ├── noCrashWithVerbatimModuleSyntaxAndImportsNotUsedAsValues.ts │ │ ├── noEmitAndComposite.ts │ │ ├── noEmitAndCompositeListFilesOnly.ts │ │ ├── noEmitAndIncremental.ts │ │ ├── noEmitAndIncrementalListFilesOnly.ts │ │ ├── noEmitHelpers.ts │ │ ├── noEmitHelpers2.ts │ │ ├── noEmitOnError.ts │ │ ├── noErrorTruncation.ts │ │ ├── noErrorUsingImportExportModuleAugmentationInDeclarationFile1.ts │ │ ├── noErrorUsingImportExportModuleAugmentationInDeclarationFile2.ts │ │ ├── noErrorUsingImportExportModuleAugmentationInDeclarationFile3.ts │ │ ├── noErrorsInCallback.ts │ │ ├── noExcessiveStackDepthError.ts │ │ ├── noImplicitAnyAndPrivateMembersWithoutTypeAnnotations.ts │ │ ├── noImplicitAnyDestructuringInPrivateMethod.ts │ │ ├── noImplicitAnyDestructuringParameterDeclaration.ts │ │ ├── noImplicitAnyDestructuringVarDeclaration.ts │ │ ├── noImplicitAnyDestructuringVarDeclaration2.ts │ │ ├── noImplicitAnyForIn.ts │ │ ├── noImplicitAnyForMethodParameters.ts │ │ ├── noImplicitAnyForwardReferencedInterface.ts │ │ ├── noImplicitAnyFunctionExpressionAssignment.ts │ │ ├── noImplicitAnyFunctions.ts │ │ ├── noImplicitAnyInBareInterface.ts │ │ ├── noImplicitAnyInCastExpression.ts │ │ ├── noImplicitAnyInContextuallyTypesFunctionParamter.ts │ │ ├── noImplicitAnyIndexing.ts │ │ ├── noImplicitAnyIndexingSuppressed.ts │ │ ├── noImplicitAnyLoopCrash.ts │ │ ├── noImplicitAnyMissingGetAccessor.ts │ │ ├── noImplicitAnyMissingSetAccessor.ts │ │ ├── noImplicitAnyModule.ts │ │ ├── noImplicitAnyNamelessParameter.ts │ │ ├── noImplicitAnyParametersInAmbientClass.ts │ │ ├── noImplicitAnyParametersInAmbientFunctions.ts │ │ ├── noImplicitAnyParametersInAmbientModule.ts │ │ ├── noImplicitAnyParametersInBareFunctions.ts │ │ ├── noImplicitAnyParametersInClass.ts │ │ ├── noImplicitAnyParametersInInterface.ts │ │ ├── noImplicitAnyParametersInModule.ts │ │ ├── noImplicitAnyReferencingDeclaredInterface.ts │ │ ├── noImplicitAnyStringIndexerOnObject.ts │ │ ├── noImplicitAnyUnionNormalizedObjectLiteral1.ts │ │ ├── noImplicitAnyWithOverloads.ts │ │ ├── noImplicitReturnInConstructors.ts │ │ ├── noImplicitReturnsExclusions.ts │ │ ├── noImplicitReturnsInAsync1.ts │ │ ├── noImplicitReturnsInAsync2.ts │ │ ├── noImplicitReturnsWithProtectedBlocks1.ts │ │ ├── noImplicitReturnsWithProtectedBlocks2.ts │ │ ├── noImplicitReturnsWithProtectedBlocks3.ts │ │ ├── noImplicitReturnsWithoutReturnExpression.ts │ │ ├── noImplicitSymbolToString.ts │ │ ├── noImplicitThisBigThis.ts │ │ ├── noImplicitThisFunctions.ts │ │ ├── noImplicitUseStrict_amd.ts │ │ ├── noImplicitUseStrict_commonjs.ts │ │ ├── noImplicitUseStrict_es6.ts │ │ ├── noImplicitUseStrict_system.ts │ │ ├── noImplicitUseStrict_umd.ts │ │ ├── noInferCommonPropertyCheck1.ts │ │ ├── noInferUnionExcessPropertyCheck1.ts │ │ ├── noIterationTypeErrorsInCFA.ts │ │ ├── noMappedGetSet.ts │ │ ├── noObjectKeysToKeyofT.ts │ │ ├── noParameterReassignmentIIFEAnnotated.ts │ │ ├── noParameterReassignmentJSIIFE.ts │ │ ├── noReachabilityErrorsOnEmptyStatement.ts │ │ ├── noRepeatedPropertyNames.ts │ │ ├── noSelfOnVars.ts │ │ ├── noStrictGenericChecks.ts │ │ ├── noSubstitutionTemplateStringLiteralTypes.ts │ │ ├── noSubtypeReduction.ts │ │ ├── noSymbolForMergeCrash.ts │ │ ├── noTypeArgumentOnReturnType1.ts │ │ ├── noUncheckedIndexAccess.ts │ │ ├── noUncheckedIndexedAccessCompoundAssignments.ts │ │ ├── noUnusedLocals_destructuringAssignment.ts │ │ ├── noUnusedLocals_potentialPredicateUnusedParam.ts │ │ ├── noUnusedLocals_selfReference.ts │ │ ├── noUnusedLocals_selfReference_skipsBlockLocations.ts │ │ ├── noUnusedLocals_typeParameterMergedWithParameter.ts │ │ ├── noUnusedLocals_writeOnly.ts │ │ ├── noUnusedLocals_writeOnlyProperty.ts │ │ ├── noUnusedLocals_writeOnlyProperty_dynamicNames.ts │ │ ├── noUsedBeforeDefinedErrorInAmbientContext1.ts │ │ ├── noUsedBeforeDefinedErrorInTypeContext.ts │ │ ├── nodeColonModuleResolution.ts │ │ ├── nodeColonModuleResolution2.ts │ │ ├── nodeModuleReexportFromDottedPath.ts │ │ ├── nodeNextCjsNamespaceImportDefault1.ts │ │ ├── nodeNextCjsNamespaceImportDefault2.ts │ │ ├── nodeNextEsmImportsOfPackagesWithExtensionlessMains.ts │ │ ├── nodeNextImportModeImplicitIndexResolution.ts │ │ ├── nodeNextImportModeImplicitIndexResolution2.ts │ │ ├── nodeNextModuleResolution1.ts │ │ ├── nodeNextModuleResolution2.ts │ │ ├── nodeNextPackageImportMapRootDir.ts │ │ ├── nodeNextPackageSelfNameWithOutDir.ts │ │ ├── nodeNextPackageSelfNameWithOutDirDeclDir.ts │ │ ├── nodeNextPackageSelfNameWithOutDirDeclDirComposite.ts │ │ ├── nodeNextPackageSelfNameWithOutDirDeclDirCompositeNestedDirs.ts │ │ ├── nodeNextPackageSelfNameWithOutDirDeclDirNestedDirs.ts │ │ ├── nodeNextPackageSelfNameWithOutDirDeclDirRootDir.ts │ │ ├── nodeNextPackageSelfNameWithOutDirRootDir.ts │ │ ├── nodeResolution1.ts │ │ ├── nodeResolution2.ts │ │ ├── nodeResolution3.ts │ │ ├── nodeResolution4.ts │ │ ├── nodeResolution5.ts │ │ ├── nodeResolution6.ts │ │ ├── nodeResolution7.ts │ │ ├── nodeResolution8.ts │ │ ├── nonArrayRestArgs.ts │ │ ├── nonConflictingRecursiveBaseTypeMembers.ts │ │ ├── nonContextuallyTypedLogicalOr.ts │ │ ├── nonExportedElementsOfMergedModules.ts │ │ ├── nonGenericClassExtendingGenericClassWithAny.ts │ │ ├── nonIdenticalTypeConstraints.ts │ │ ├── nonInferrableTypePropagation1.ts │ │ ├── nonInferrableTypePropagation2.ts │ │ ├── nonInferrableTypePropagation3.ts │ │ ├── nonMergedDeclarationsAndOverloads.ts │ │ ├── nonMergedOverloads.ts │ │ ├── nonNullFullInference.ts │ │ ├── nonNullMappedType.ts │ │ ├── nonNullParameterExtendingStringAssignableToString.ts │ │ ├── nonNullReferenceMatching.ts │ │ ├── nonNullableAndObjectIntersections.ts │ │ ├── nonNullableReduction.ts │ │ ├── nonNullableReductionNonStrict.ts │ │ ├── nonNullableTypes1.ts │ │ ├── nonNullableWithNullableGenericIndexedAccessArg.ts │ │ ├── nonObjectUnionNestedExcessPropertyCheck.ts │ │ ├── nondistributiveConditionalTypeInfer.ts │ │ ├── nonexistentPropertyOnUnion.ts │ │ ├── nonexistentPropertyUnavailableOnPromisedType.ts │ │ ├── nongenericConditionalNotPartiallyComputed.ts │ │ ├── nongenericPartialInstantiationsRelatedInBothDirections.ts │ │ ├── nonnullAssertionPropegatesContextualType.ts │ │ ├── nonstrictTemplateWithNotOctalPrintsAsIs.ts │ │ ├── normalizedIntersectionTooComplex.ts │ │ ├── nounusedTypeParameterConstraint.ts │ │ ├── null.ts │ │ ├── nullKeyword.ts │ │ ├── nullableFunctionError.ts │ │ ├── numberAsInLHS.ts │ │ ├── numberAssignableToEnumInsideUnion.ts │ │ ├── numberLiteralsWithLeadingZeros.ts │ │ ├── numberOnLeftSideOfInExpression.ts │ │ ├── numberToString.ts │ │ ├── numberVsBigIntOperations.ts │ │ ├── numericClassMembers1.ts │ │ ├── numericEnumMappedType.ts │ │ ├── numericIndexExpressions.ts │ │ ├── numericIndexerConstraint.ts │ │ ├── numericIndexerConstraint1.ts │ │ ├── numericIndexerConstraint2.ts │ │ ├── numericIndexerConstraint3.ts │ │ ├── numericIndexerConstraint4.ts │ │ ├── numericIndexerConstraint5.ts │ │ ├── numericIndexerTyping1.ts │ │ ├── numericIndexerTyping2.ts │ │ ├── numericLiteralsWithTrailingDecimalPoints01.ts │ │ ├── numericLiteralsWithTrailingDecimalPoints02.ts │ │ ├── numericMethodName1.ts │ │ ├── numericUnderscoredSeparator.ts │ │ ├── objectAssignLikeNonUnionResult.ts │ │ ├── objectBindingPatternContextuallyTypesArgument.ts │ │ ├── objectBindingPattern_restElementWithPropertyName.ts │ │ ├── objectCreate-errors.ts │ │ ├── objectCreate.ts │ │ ├── objectCreate2.ts │ │ ├── objectCreationExpressionInFunctionParameter.ts │ │ ├── objectCreationOfElementAccessExpression.ts │ │ ├── objectFreeze.ts │ │ ├── objectFreezeLiteralsDontWiden.ts │ │ ├── objectFromEntries.ts │ │ ├── objectGroupBy.ts │ │ ├── objectIndexer.ts │ │ ├── objectInstantiationFromUnionSpread.ts │ │ ├── objectLitArrayDeclNoNew.ts │ │ ├── objectLitGetterSetter.ts │ │ ├── objectLitIndexerContextualType.ts │ │ ├── objectLitPropertyScoping.ts │ │ ├── objectLitStructuralTypeMismatch.ts │ │ ├── objectLitTargetTypeCallSite.ts │ │ ├── objectLiteral1.ts │ │ ├── objectLiteral2.ts │ │ ├── objectLiteralArraySpecialization.ts │ │ ├── objectLiteralComputedNameNoDeclarationError.ts │ │ ├── objectLiteralDeclarationGeneration1.ts │ │ ├── objectLiteralEnumPropertyNames.ts │ │ ├── objectLiteralExcessProperties.ts │ │ ├── objectLiteralFreshnessWithSpread.ts │ │ ├── objectLiteralFunctionArgContextualTyping.ts │ │ ├── objectLiteralFunctionArgContextualTyping2.ts │ │ ├── objectLiteralIndexerErrors.ts │ │ ├── objectLiteralIndexerNoImplicitAny.ts │ │ ├── objectLiteralIndexers.ts │ │ ├── objectLiteralMemberWithModifiers1.ts │ │ ├── objectLiteralMemberWithModifiers2.ts │ │ ├── objectLiteralMemberWithQuestionMark1.ts │ │ ├── objectLiteralMemberWithoutBlock1.ts │ │ ├── objectLiteralParameterResolution.ts │ │ ├── objectLiteralPropertyImplicitlyAny.ts │ │ ├── objectLiteralReferencingInternalProperties.ts │ │ ├── objectLiteralThisWidenedOnUse.ts │ │ ├── objectLiteralWithGetAccessorInsideFunction.ts │ │ ├── objectLiteralWithNumericPropertyName.ts │ │ ├── objectLiteralWithSemicolons1.ts │ │ ├── objectLiteralWithSemicolons2.ts │ │ ├── objectLiteralWithSemicolons3.ts │ │ ├── objectLiteralWithSemicolons4.ts │ │ ├── objectLiteralWithSemicolons5.ts │ │ ├── objectLiteralsAgainstUnionsOfArrays01.ts │ │ ├── objectMembersOnTypes.ts │ │ ├── objectPropertyAsClass.ts │ │ ├── objectRestBindingContextualInference.ts │ │ ├── objectRestSpread.ts │ │ ├── objectSpreadWithinMethodWithinObjectWithSpread.ts │ │ ├── objectTypeWithOptionalProperty1.ts │ │ ├── observableInferenceCanBeMade.ts │ │ ├── octalLiteralAndEscapeSequence.ts │ │ ├── omitTypeHelperModifiers01.ts │ │ ├── omitTypeTestErrors01.ts │ │ ├── omitTypeTests01.ts │ │ ├── omittedExpressionForOfLoop.ts │ │ ├── operationsAvailableOnPromisedType.ts │ │ ├── operatorAddNullUndefined.ts │ │ ├── optionalAccessorsInInterface1.ts │ │ ├── optionalArgsWithDefaultValues.ts │ │ ├── optionalChainWithInstantiationExpression1.ts │ │ ├── optionalChainWithInstantiationExpression2.ts │ │ ├── optionalConstructorArgInSuper.ts │ │ ├── optionalFunctionArgAssignability.ts │ │ ├── optionalParamArgsTest.ts │ │ ├── optionalParamAssignmentCompat.ts │ │ ├── optionalParamInOverride.ts │ │ ├── optionalParamReferencingOtherParams1.ts │ │ ├── optionalParamReferencingOtherParams2.ts │ │ ├── optionalParamReferencingOtherParams3.ts │ │ ├── optionalParamTypeComparison.ts │ │ ├── optionalParameterInDestructuringWithInitializer.ts │ │ ├── optionalParameterProperty.ts │ │ ├── optionalParameterRetainsNull.ts │ │ ├── optionalParamterAndVariableDeclaration.ts │ │ ├── optionalParamterAndVariableDeclaration2.ts │ │ ├── optionalPropertiesInClasses.ts │ │ ├── optionalPropertiesSyntax.ts │ │ ├── optionalPropertiesTest.ts │ │ ├── optionalSetterParam.ts │ │ ├── optionalTupleElementsAndUndefined.ts │ │ ├── optionsCompositeWithIncrementalFalse.ts │ │ ├── optionsInlineSourceMapMapRoot.ts │ │ ├── optionsInlineSourceMapSourceRoot.ts │ │ ├── optionsInlineSourceMapSourcemap.ts │ │ ├── optionsOutAndNoModuleGen.ts │ │ ├── optionsSourcemapInlineSources.ts │ │ ├── optionsSourcemapInlineSourcesMapRoot.ts │ │ ├── optionsSourcemapInlineSourcesSourceRoot.ts │ │ ├── optionsStrictPropertyInitializationStrict.ts │ │ ├── optionsStrictPropertyInitializationStrictNullChecks.ts │ │ ├── optionsTsBuildInfoFileWithoutIncrementalAndComposite.ts │ │ ├── orderMattersForSignatureGroupIdentity.ts │ │ ├── out-flag.ts │ │ ├── out-flag2.ts │ │ ├── out-flag3.ts │ │ ├── outFileIsDeprecated.ts │ │ ├── outModuleConcatAmd.ts │ │ ├── outModuleConcatCommonjs.ts │ │ ├── outModuleConcatCommonjsDeclarationOnly.ts │ │ ├── outModuleConcatES6.ts │ │ ├── outModuleConcatSystem.ts │ │ ├── outModuleConcatUmd.ts │ │ ├── outModuleConcatUnspecifiedModuleKind.ts │ │ ├── outModuleConcatUnspecifiedModuleKindDeclarationOnly.ts │ │ ├── outModuleTripleSlashRefs.ts │ │ ├── overEagerReturnTypeSpecialization.ts │ │ ├── overload1.ts │ │ ├── overload2.ts │ │ ├── overloadAssignmentCompat.ts │ │ ├── overloadBindingAcrossDeclarationBoundaries.ts │ │ ├── overloadBindingAcrossDeclarationBoundaries2.ts │ │ ├── overloadCallTest.ts │ │ ├── overloadConsecutiveness.ts │ │ ├── overloadCrash.ts │ │ ├── overloadEquivalenceWithStatics.ts │ │ ├── overloadErrorMatchesImplementationElaboaration.ts │ │ ├── overloadGenericFunctionWithRestArgs.ts │ │ ├── overloadModifiersMustAgree.ts │ │ ├── overloadOnConstAsTypeAnnotation.ts │ │ ├── overloadOnConstConstraintChecks1.ts │ │ ├── overloadOnConstConstraintChecks2.ts │ │ ├── overloadOnConstConstraintChecks3.ts │ │ ├── overloadOnConstConstraintChecks4.ts │ │ ├── overloadOnConstDuplicateOverloads1.ts │ │ ├── overloadOnConstInBaseWithBadImplementationInDerived.ts │ │ ├── overloadOnConstInCallback1.ts │ │ ├── overloadOnConstInObjectLiteralImplementingAnInterface.ts │ │ ├── overloadOnConstInheritance1.ts │ │ ├── overloadOnConstInheritance2.ts │ │ ├── overloadOnConstInheritance3.ts │ │ ├── overloadOnConstInheritance4.ts │ │ ├── overloadOnConstNoAnyImplementation.ts │ │ ├── overloadOnConstNoAnyImplementation2.ts │ │ ├── overloadOnConstNoNonSpecializedSignature.ts │ │ ├── overloadOnConstNoStringImplementation.ts │ │ ├── overloadOnConstNoStringImplementation2.ts │ │ ├── overloadOnConstantsInvalidOverload1.ts │ │ ├── overloadOnGenericArity.ts │ │ ├── overloadOnGenericClassAndNonGenericClass.ts │ │ ├── overloadResolutionOnDefaultConstructor1.ts │ │ ├── overloadResolutionOverCTLambda.ts │ │ ├── overloadResolutionOverNonCTLambdas.ts │ │ ├── overloadResolutionOverNonCTObjectLit.ts │ │ ├── overloadResolutionTest1.ts │ │ ├── overloadResolutionWithAny.ts │ │ ├── overloadRet.ts │ │ ├── overloadReturnTypes.ts │ │ ├── overloadWithCallbacksWithDifferingOptionalityOnArgs.ts │ │ ├── overloadedConstructorFixesInferencesAppropriately.ts │ │ ├── overloadedStaticMethodSpecialization.ts │ │ ├── overloadingOnConstants1.ts │ │ ├── overloadingOnConstants2.ts │ │ ├── overloadingOnConstantsInImplementation.ts │ │ ├── overloadingStaticFunctionsInFunctions.ts │ │ ├── overloadresolutionWithConstraintCheckingDeferred.ts │ │ ├── overloadsAndTypeArgumentArity.ts │ │ ├── overloadsAndTypeArgumentArityErrors.ts │ │ ├── overloadsInDifferentContainersDisagreeOnAmbient.ts │ │ ├── overloadsWithComputedNames.ts │ │ ├── overloadsWithConstraints.ts │ │ ├── overloadsWithProvisionalErrors.ts │ │ ├── overloadsWithinClasses.ts │ │ ├── overrideBaseIntersectionMethod.ts │ │ ├── overridingPrivateStaticMembers.ts │ │ ├── overshifts.ts │ │ ├── paramPropertiesInSignatures.ts │ │ ├── parameterDecoratorsEmitCrash.ts │ │ ├── parameterDestructuringObjectLiteral.ts │ │ ├── parameterInitializerBeforeDestructuringEmit.ts │ │ ├── parameterListAsTupleType.ts │ │ ├── parameterNamesInTypeParameterList.ts │ │ ├── parameterPropertyInConstructor1.ts │ │ ├── parameterPropertyInConstructor2.ts │ │ ├── parameterPropertyInConstructor3.ts │ │ ├── parameterPropertyInConstructor4.ts │ │ ├── parameterPropertyInConstructorWithPrologues.ts │ │ ├── parameterPropertyInitializerInInitializers.ts │ │ ├── parameterPropertyOutsideConstructor.ts │ │ ├── parameterPropertyReferencingOtherParameter.ts │ │ ├── parameterReferenceInInitializer1.ts │ │ ├── parameterReferenceInInitializer2.ts │ │ ├── parameterReferencesOtherParameter1.ts │ │ ├── parameterReferencesOtherParameter2.ts │ │ ├── parametersSyntaxErrorNoCrash1.ts │ │ ├── parametersSyntaxErrorNoCrash2.ts │ │ ├── parametersSyntaxErrorNoCrash3.ts │ │ ├── paramsOnlyHaveLiteralTypesWhenAppropriatelyContextualized.ts │ │ ├── paramterDestrcuturingDeclaration.ts │ │ ├── parenthesisDoesNotBlockAliasSymbolCreation.ts │ │ ├── parenthesizedArrowExpressionASI.ts │ │ ├── parenthesizedAsyncArrowFunction.ts │ │ ├── parenthesizedExpressionInternalComments.ts │ │ ├── parenthesizedJSDocCastAtReturnStatement.ts │ │ ├── parenthesizedJSDocCastDoesNotNarrow.ts │ │ ├── parenthesizedSatisfiesExpressionWithComments.ts │ │ ├── parse1.ts │ │ ├── parse2.ts │ │ ├── parseArrowFunctionWithFunctionReturnType.ts │ │ ├── parseAssertEntriesError.ts │ │ ├── parseBigInt.ts │ │ ├── parseCommaSeparatedNewlineNew.ts │ │ ├── parseCommaSeparatedNewlineNumber.ts │ │ ├── parseCommaSeparatedNewlineString.ts │ │ ├── parseEntityNameWithReservedWord.ts │ │ ├── parseErrorDoubleCommaInCall.ts │ │ ├── parseErrorInHeritageClause1.ts │ │ ├── parseErrorIncorrectReturnToken.ts │ │ ├── parseGenericArrowRatherThanLeftShift.ts │ │ ├── parseImportAttributesError.ts │ │ ├── parseInvalidNames.ts │ │ ├── parseInvalidNonNullableTypes.ts │ │ ├── parseInvalidNullableTypes.ts │ │ ├── parseJsxElementInUnaryExpressionNoCrash1.ts │ │ ├── parseJsxElementInUnaryExpressionNoCrash2.ts │ │ ├── parseJsxElementInUnaryExpressionNoCrash3.ts │ │ ├── parseJsxExtends1.ts │ │ ├── parseJsxExtends2.ts │ │ ├── parseObjectLiteralsWithoutTypes.ts │ │ ├── parseReplacementCharacter.ts │ │ ├── parseShortform.ts │ │ ├── parseTypes.ts │ │ ├── parseUnaryExpressionNoTypeAssertionInJsx1.ts │ │ ├── parseUnaryExpressionNoTypeAssertionInJsx2.ts │ │ ├── parseUnaryExpressionNoTypeAssertionInJsx3.ts │ │ ├── parseUnaryExpressionNoTypeAssertionInJsx4.ts │ │ ├── parseUnmatchedTypeAssertion.ts │ │ ├── parserConstructorDeclaration12.ts │ │ ├── parserIsClassMemberStart.ts │ │ ├── parserPrivateIdentifierInArrayAssignment.ts │ │ ├── parserUnparsedTokenCrash1.ts │ │ ├── parserUnparsedTokenCrash2.ts │ │ ├── parsingClassRecoversWhenHittingUnexpectedSemicolon.ts │ │ ├── parsingDeepParenthensizedExpression.ts │ │ ├── partialDiscriminatedUnionMemberHasGoodError.ts │ │ ├── partialOfLargeAPIIsAbleToBeWorkedWith.ts │ │ ├── partialTypeNarrowedToByTypeGuard.ts │ │ ├── partiallyAmbientClodule.ts │ │ ├── partiallyAmbientFundule.ts │ │ ├── partiallyDiscriminantedUnions.ts │ │ ├── pathMappingBasedModuleResolution1_amd.ts │ │ ├── pathMappingBasedModuleResolution1_node.ts │ │ ├── pathMappingBasedModuleResolution2_classic.ts │ │ ├── pathMappingBasedModuleResolution2_node.ts │ │ ├── pathMappingBasedModuleResolution3_classic.ts │ │ ├── pathMappingBasedModuleResolution3_node.ts │ │ ├── pathMappingBasedModuleResolution4_classic.ts │ │ ├── pathMappingBasedModuleResolution4_node.ts │ │ ├── pathMappingBasedModuleResolution5_classic.ts │ │ ├── pathMappingBasedModuleResolution5_node.ts │ │ ├── pathMappingBasedModuleResolution6_classic.ts │ │ ├── pathMappingBasedModuleResolution6_node.ts │ │ ├── pathMappingBasedModuleResolution7_classic.ts │ │ ├── pathMappingBasedModuleResolution7_node.ts │ │ ├── pathMappingBasedModuleResolution8_classic.ts │ │ ├── pathMappingBasedModuleResolution8_node.ts │ │ ├── pathMappingBasedModuleResolution_rootImport_aliasWithRoot.ts │ │ ├── pathMappingBasedModuleResolution_rootImport_aliasWithRoot_differentRootTypes.ts │ │ ├── pathMappingBasedModuleResolution_rootImport_aliasWithRoot_multipleAliases.ts │ │ ├── pathMappingBasedModuleResolution_rootImport_aliasWithRoot_realRootFile.ts │ │ ├── pathMappingBasedModuleResolution_rootImport_noAliasWithRoot.ts │ │ ├── pathMappingBasedModuleResolution_rootImport_noAliasWithRoot_realRootFile.ts │ │ ├── pathMappingBasedModuleResolution_withExtension.ts │ │ ├── pathMappingBasedModuleResolution_withExtensionInName.ts │ │ ├── pathMappingBasedModuleResolution_withExtension_MapedToNodeModules.ts │ │ ├── pathMappingBasedModuleResolution_withExtension_failedLookup.ts │ │ ├── pathMappingInheritedBaseUrl.ts │ │ ├── pathMappingWithoutBaseUrl1.ts │ │ ├── pathMappingWithoutBaseUrl2.ts │ │ ├── pathsValidation1.ts │ │ ├── pathsValidation2.ts │ │ ├── pathsValidation3.ts │ │ ├── pathsValidation4.ts │ │ ├── pathsValidation5.ts │ │ ├── performanceComparisonOfStructurallyIdenticalInterfacesWithGenericSignatures.ts │ │ ├── pickOfLargeObjectUnionWorks.ts │ │ ├── pinnedComments1.ts │ │ ├── potentiallyUnassignedVariableInCatch.ts │ │ ├── potentiallyUncalledDecorators.ts │ │ ├── predicateSemantics.ts │ │ ├── prefixIncrementAsOperandOfPlusExpression.ts │ │ ├── prefixUnaryOperatorsOnExportedVariables.ts │ │ ├── prefixedNumberLiteralAssignToNumberLiteralType.ts │ │ ├── preserveConstEnums.ts │ │ ├── preserveUnusedImports.ts │ │ ├── prespecializedGenericMembers1.ts │ │ ├── prettyContextNotDebugAssertion.ts │ │ ├── prettyFileWithErrorsAndTabs.ts │ │ ├── primaryExpressionMods.ts │ │ ├── primitiveConstraints1.ts │ │ ├── primitiveConstraints2.ts │ │ ├── primitiveMembers.ts │ │ ├── primitiveTypeAsClassName.ts │ │ ├── primitiveTypeAsInterfaceName.ts │ │ ├── primitiveTypeAsInterfaceNameGeneric.ts │ │ ├── primitiveTypeAsmoduleName.ts │ │ ├── primitiveTypeAssignment.ts │ │ ├── primitiveUnionDetection.ts │ │ ├── privacyAccessorDeclFile.ts │ │ ├── privacyCannotNameAccessorDeclFile.ts │ │ ├── privacyCannotNameVarTypeDeclFile.ts │ │ ├── privacyCheckAnonymousFunctionParameter.ts │ │ ├── privacyCheckAnonymousFunctionParameter2.ts │ │ ├── privacyCheckCallbackOfInterfaceMethodWithTypeParameter.ts │ │ ├── privacyCheckExportAssignmentOnExportedGenericInterface1.ts │ │ ├── privacyCheckExportAssignmentOnExportedGenericInterface2.ts │ │ ├── privacyCheckExternalModuleExportAssignmentOfGenericClass.ts │ │ ├── privacyCheckOnTypeParameterReferenceInConstructorParameter.ts │ │ ├── privacyCheckTypeOfFunction.ts │ │ ├── privacyCheckTypeOfInvisibleModuleError.ts │ │ ├── privacyCheckTypeOfInvisibleModuleNoError.ts │ │ ├── privacyClass.ts │ │ ├── privacyClassExtendsClauseDeclFile.ts │ │ ├── privacyClassImplementsClauseDeclFile.ts │ │ ├── privacyFunc.ts │ │ ├── privacyFunctionCannotNameParameterTypeDeclFile.ts │ │ ├── privacyFunctionCannotNameReturnTypeDeclFile.ts │ │ ├── privacyFunctionParameterDeclFile.ts │ │ ├── privacyFunctionReturnTypeDeclFile.ts │ │ ├── privacyGetter.ts │ │ ├── privacyGloClass.ts │ │ ├── privacyGloFunc.ts │ │ ├── privacyGloGetter.ts │ │ ├── privacyGloImport.ts │ │ ├── privacyGloImportParseErrors.ts │ │ ├── privacyGloInterface.ts │ │ ├── privacyGloVar.ts │ │ ├── privacyImport.ts │ │ ├── privacyImportParseErrors.ts │ │ ├── privacyInterface.ts │ │ ├── privacyInterfaceExtendsClauseDeclFile.ts │ │ ├── privacyLocalInternalReferenceImportWithExport.ts │ │ ├── privacyLocalInternalReferenceImportWithoutExport.ts │ │ ├── privacyTopLevelAmbientExternalModuleImportWithExport.ts │ │ ├── privacyTopLevelAmbientExternalModuleImportWithoutExport.ts │ │ ├── privacyTopLevelInternalReferenceImportWithExport.ts │ │ ├── privacyTopLevelInternalReferenceImportWithoutExport.ts │ │ ├── privacyTypeParameterOfFunction.ts │ │ ├── privacyTypeParameterOfFunctionDeclFile.ts │ │ ├── privacyTypeParametersOfClass.ts │ │ ├── privacyTypeParametersOfClassDeclFile.ts │ │ ├── privacyTypeParametersOfInterface.ts │ │ ├── privacyTypeParametersOfInterfaceDeclFile.ts │ │ ├── privacyVar.ts │ │ ├── privacyVarDeclFile.ts │ │ ├── privateAccessInSubclass1.ts │ │ ├── privateFieldAssignabilityFromUnknown.ts │ │ ├── privateFieldsInClassExpressionDeclaration.ts │ │ ├── privateInstanceVisibility.ts │ │ ├── privateInterfaceProperties.ts │ │ ├── privateNameJsx.tsx │ │ ├── privateNameWeakMapCollision.ts │ │ ├── privatePropertyInUnion.ts │ │ ├── privatePropertyUsingObjectType.ts │ │ ├── privateVisibility.ts │ │ ├── privateVisibles.ts │ │ ├── promiseAllOnAny01.ts │ │ ├── promiseChaining.ts │ │ ├── promiseChaining1.ts │ │ ├── promiseChaining2.ts │ │ ├── promiseDefinitionTest.ts │ │ ├── promiseEmptyTupleNoException.ts │ │ ├── promiseIdentity.ts │ │ ├── promiseIdentity2.ts │ │ ├── promiseIdentityWithAny.ts │ │ ├── promiseIdentityWithAny2.ts │ │ ├── promiseIdentityWithConstraints.ts │ │ ├── promisePermutations.ts │ │ ├── promisePermutations2.ts │ │ ├── promisePermutations3.ts │ │ ├── promiseTest.ts │ │ ├── promiseTry.ts │ │ ├── promiseType.ts │ │ ├── promiseTypeInference.ts │ │ ├── promiseTypeInferenceUnion.ts │ │ ├── promiseTypeStrictNull.ts │ │ ├── promiseVoidErrorCallback.ts │ │ ├── promiseWithResolvers.ts │ │ ├── promises.ts │ │ ├── promisesWithConstraints.ts │ │ ├── propTypeValidatorInference.ts │ │ ├── propagateNonInferrableType.ts │ │ ├── propagationOfPromiseInitialization.ts │ │ ├── properties.ts │ │ ├── propertiesAndIndexers.ts │ │ ├── propertiesAndIndexers2.ts │ │ ├── propertiesAndIndexersForNumericNames.ts │ │ ├── propertyAccess1.ts │ │ ├── propertyAccess2.ts │ │ ├── propertyAccess3.ts │ │ ├── propertyAccess4.ts │ │ ├── propertyAccess5.ts │ │ ├── propertyAccess6.ts │ │ ├── propertyAccess7.ts │ │ ├── propertyAccessExpressionInnerComments.ts │ │ ├── propertyAccessOfReadonlyIndexSignature.ts │ │ ├── propertyAccessOnObjectLiteral.ts │ │ ├── propertyAccessibility1.ts │ │ ├── propertyAccessibility2.ts │ │ ├── propertyAssignment.ts │ │ ├── propertyIdentityWithPrivacyMismatch.ts │ │ ├── propertyNamesWithStringLiteral.ts │ │ ├── propertyOrdering.ts │ │ ├── propertyOrdering2.ts │ │ ├── propertyOverridingPrototype.ts │ │ ├── propertyParameterWithQuestionMark.ts │ │ ├── propertySignatures.ts │ │ ├── propertyWrappedInTry.ts │ │ ├── protectedAccessThroughContextualThis.ts │ │ ├── protectedMembers.ts │ │ ├── protectedMembersThisParameter.ts │ │ ├── protoAsIndexInIndexExpression.ts │ │ ├── protoAssignment.ts │ │ ├── protoInIndexer.ts │ │ ├── prototypeInstantiatedWithBaseConstraint.ts │ │ ├── prototypeOnConstructorFunctions.ts │ │ ├── prototypes.ts │ │ ├── publicGetterProtectedSetterFromThisParameter.ts │ │ ├── publicMemberImplementedAsPrivateInDerivedClass.ts │ │ ├── pushTypeGetTypeOfAlias.ts │ │ ├── qualifiedModuleLocals.ts │ │ ├── qualifiedName_ImportDeclarations-entity-names-referencing-a-var.ts │ │ ├── qualifiedName_entity-name-resolution-does-not-affect-class-heritage.ts │ │ ├── qualify.ts │ │ ├── quickIntersectionCheckCorrectlyCachesErrors.ts │ │ ├── quickinfoTypeAtReturnPositionsInaccurate.ts │ │ ├── quotedAccessorName1.ts │ │ ├── quotedAccessorName2.ts │ │ ├── quotedFunctionName1.ts │ │ ├── quotedFunctionName2.ts │ │ ├── quotedModuleNameMustBeAmbient.ts │ │ ├── quotedPropertyName1.ts │ │ ├── quotedPropertyName2.ts │ │ ├── quotedPropertyName3.ts │ │ ├── raiseErrorOnParameterProperty.ts │ │ ├── ramdaToolsNoInfinite.ts │ │ ├── ramdaToolsNoInfinite2.ts │ │ ├── randomSemicolons1.ts │ │ ├── reExportGlobalDeclaration1.ts │ │ ├── reExportGlobalDeclaration2.ts │ │ ├── reExportGlobalDeclaration3.ts │ │ ├── reExportGlobalDeclaration4.ts │ │ ├── reExportUndefined1.ts │ │ ├── reExportUndefined2.ts │ │ ├── reachabilityCheckWithEmptyDefault.ts │ │ ├── reachabilityChecks1.ts │ │ ├── reachabilityChecks10.ts │ │ ├── reachabilityChecks11.ts │ │ ├── reachabilityChecks2.ts │ │ ├── reachabilityChecks3.ts │ │ ├── reachabilityChecks4.ts │ │ ├── reachabilityChecks5.ts │ │ ├── reachabilityChecks6.ts │ │ ├── reachabilityChecks7.ts │ │ ├── reachabilityChecks8.ts │ │ ├── reachabilityChecks9.ts │ │ ├── reachabilityChecksIgnored.ts │ │ ├── reachabilityChecksNoCrash1.ts │ │ ├── reactDefaultPropsInferenceSuccess.tsx │ │ ├── reactHOCSpreadprops.tsx │ │ ├── reactImportDropped.ts │ │ ├── reactImportUnusedInNewJSXEmit.tsx │ │ ├── reactJsxReactResolvedNodeNext.tsx │ │ ├── reactJsxReactResolvedNodeNextEsm.tsx │ │ ├── reactNamespaceImportPresevation.tsx │ │ ├── reactNamespaceInvalidInput.tsx │ │ ├── reactNamespaceJSXEmit.tsx │ │ ├── reactNamespaceMissingDeclaration.tsx │ │ ├── reactReadonlyHOCAssignabilityReal.tsx │ │ ├── reactReduxLikeDeferredInferenceAllowsAssignment.ts │ │ ├── reactSFCAndFunctionResolvable.tsx │ │ ├── reactTagNameComponentWithPropsNoOOM.tsx │ │ ├── reactTagNameComponentWithPropsNoOOM2.tsx │ │ ├── reactTransitiveImportHasValidDeclaration.ts │ │ ├── readonlyAssignmentInSubclassOfClassExpression.ts │ │ ├── readonlyFloat32ArrayAssignableWithFloat32Array.ts │ │ ├── readonlyInDeclarationFile.ts │ │ ├── readonlyInNonPropertyParameters.ts │ │ ├── readonlyMembers.ts │ │ ├── readonlyPropertySubtypeRelationDirected.ts │ │ ├── readonlyTupleAndArrayElaboration.ts │ │ ├── reassignStaticProp.ts │ │ ├── reboundBaseClassSymbol.ts │ │ ├── reboundIdentifierOnImportAlias.ts │ │ ├── rectype.ts │ │ ├── recur1.ts │ │ ├── recursiveArrayNotCircular.ts │ │ ├── recursiveBaseCheck.ts │ │ ├── recursiveBaseCheck2.ts │ │ ├── recursiveBaseCheck3.ts │ │ ├── recursiveBaseCheck4.ts │ │ ├── recursiveBaseCheck5.ts │ │ ├── recursiveBaseCheck6.ts │ │ ├── recursiveBaseConstructorCreation1.ts │ │ ├── recursiveBaseConstructorCreation2.ts │ │ ├── recursiveBaseConstructorCreation3.ts │ │ ├── recursiveClassBaseType.ts │ │ ├── recursiveClassInstantiationsWithDefaultConstructors.ts │ │ ├── recursiveClassReferenceTest.ts │ │ ├── recursiveCloduleReference.ts │ │ ├── recursiveComplicatedClasses.ts │ │ ├── recursiveConditionalCrash1.ts │ │ ├── recursiveConditionalCrash2.ts │ │ ├── recursiveConditionalCrash3.ts │ │ ├── recursiveConditionalCrash4.ts │ │ ├── recursiveConditionalEvaluationNonInfinite.ts │ │ ├── recursiveConditionalTypes.ts │ │ ├── recursiveConditionalTypes2.ts │ │ ├── recursiveExcessPropertyChecks.ts │ │ ├── recursiveExportAssignmentAndFindAliasedType1.ts │ │ ├── recursiveExportAssignmentAndFindAliasedType2.ts │ │ ├── recursiveExportAssignmentAndFindAliasedType3.ts │ │ ├── recursiveExportAssignmentAndFindAliasedType4.ts │ │ ├── recursiveExportAssignmentAndFindAliasedType5.ts │ │ ├── recursiveExportAssignmentAndFindAliasedType6.ts │ │ ├── recursiveExportAssignmentAndFindAliasedType7.ts │ │ ├── recursiveFieldSetting.ts │ │ ├── recursiveFunctionTypes.ts │ │ ├── recursiveFunctionTypes1.ts │ │ ├── recursiveGenericMethodCall.ts │ │ ├── recursiveGenericSignatureInstantiation.ts │ │ ├── recursiveGenericSignatureInstantiation2.ts │ │ ├── recursiveGenericTypeHierarchy.ts │ │ ├── recursiveGenericUnionType1.ts │ │ ├── recursiveGenericUnionType2.ts │ │ ├── recursiveGetterAccess.ts │ │ ├── recursiveIdenticalAssignment.ts │ │ ├── recursiveIdenticalOverloadResolution.ts │ │ ├── recursiveInference1.ts │ │ ├── recursiveInferenceBug.ts │ │ ├── recursiveInheritance.ts │ │ ├── recursiveInheritance2.ts │ │ ├── recursiveInheritance3.ts │ │ ├── recursiveInheritanceGeneric.ts │ │ ├── recursiveLetConst.ts │ │ ├── recursiveMods.ts │ │ ├── recursiveNamedLambdaCall.ts │ │ ├── recursiveObjectLiteral.ts │ │ ├── recursiveProperties.ts │ │ ├── recursiveResolveDeclaredMembers.ts │ │ ├── recursiveResolveTypeMembers.ts │ │ ├── recursiveReturns.ts │ │ ├── recursiveReverseMappedType.ts │ │ ├── recursiveSpecializationOfExtendedTypeWithError.ts │ │ ├── recursiveSpecializationOfSignatures.ts │ │ ├── recursiveTupleTypeInference.ts │ │ ├── recursiveTupleTypes1.ts │ │ ├── recursiveTupleTypes2.ts │ │ ├── recursiveTypeAliasWithSpreadConditionalReturnNotCircular.ts │ │ ├── recursiveTypeComparison.ts │ │ ├── recursiveTypeComparison2.ts │ │ ├── recursiveTypeIdentity.ts │ │ ├── recursiveTypeParameterConstraintReferenceLacksTypeArgs.ts │ │ ├── recursiveTypeParameterReferenceError1.ts │ │ ├── recursiveTypeParameterReferenceError2.ts │ │ ├── recursiveTypeRelations.ts │ │ ├── recursiveTypes1.ts │ │ ├── recursiveUnionTypeInference.ts │ │ ├── recursivelyExpandingUnionNoStackoverflow.ts │ │ ├── recursivelySpecializedConstructorDeclaration.ts │ │ ├── redeclarationOfVarWithGenericType.ts │ │ ├── redeclareParameterInCatchBlock.ts │ │ ├── redefineArray.ts │ │ ├── reducibleIndexedAccessTypes.ts │ │ ├── reexportDefaultIsCallable.ts │ │ ├── reexportMissingDefault.ts │ │ ├── reexportMissingDefault1.ts │ │ ├── reexportMissingDefault2.ts │ │ ├── reexportMissingDefault3.ts │ │ ├── reexportMissingDefault4.ts │ │ ├── reexportMissingDefault5.ts │ │ ├── reexportMissingDefault6.ts │ │ ├── reexportMissingDefault7.ts │ │ ├── reexportMissingDefault8.ts │ │ ├── reexportNameAliasedAndHoisted.ts │ │ ├── reexportWrittenCorrectlyInDeclaration.ts │ │ ├── reexportedMissingAlias.ts │ │ ├── referenceSatisfiesExpression.ts │ │ ├── referenceTypesPreferedToPathIfPossible.ts │ │ ├── regExpWithOpenBracketInCharClass.ts │ │ ├── regExpWithSlashInCharClass.ts │ │ ├── regexMatchAll-esnext.ts │ │ ├── regexMatchAll.ts │ │ ├── regexpExecAndMatchTypeUsages.ts │ │ ├── regularExpressionAnnexB.ts │ │ ├── regularExpressionCharacterClassRangeOrder.ts │ │ ├── regularExpressionExtendedUnicodeEscapes.ts │ │ ├── regularExpressionGroupNameSuggestions.ts │ │ ├── regularExpressionScanning.ts │ │ ├── regularExpressionUnicodePropertyValueExpressionSuggestions.ts │ │ ├── regularExpressionWithNonBMPFlags.ts │ │ ├── relatedViaDiscriminatedTypeNoError.ts │ │ ├── relatedViaDiscriminatedTypeNoError2.ts │ │ ├── relationComplexityError.ts │ │ ├── relationalOperatorComparable.ts │ │ ├── relativeNamesInClassicResolution.ts │ │ ├── renamingDestructuredPropertyInFunctionType.ts │ │ ├── renamingDestructuredPropertyInFunctionType2.ts │ │ ├── renamingDestructuredPropertyInFunctionType3.ts │ │ ├── reorderProperties.ts │ │ ├── requireAsFunctionInExternalModule.ts │ │ ├── requireEmitSemicolon.ts │ │ ├── requireOfAnEmptyFile1.ts │ │ ├── requireOfJsonFile.ts │ │ ├── requireOfJsonFileInJsFile.ts │ │ ├── requireOfJsonFileNonRelative.ts │ │ ├── requireOfJsonFileNonRelativeWithoutExtension.ts │ │ ├── requireOfJsonFileNonRelativeWithoutExtensionResolvesToTs.ts │ │ ├── requireOfJsonFileTypes.ts │ │ ├── requireOfJsonFileWithAlwaysStrictWithoutErrors.ts │ │ ├── requireOfJsonFileWithAmd.ts │ │ ├── requireOfJsonFileWithComputedPropertyName.ts │ │ ├── requireOfJsonFileWithDeclaration.ts │ │ ├── requireOfJsonFileWithEmptyObject.ts │ │ ├── requireOfJsonFileWithEmptyObjectWithErrors.ts │ │ ├── requireOfJsonFileWithErrors.ts │ │ ├── requireOfJsonFileWithModuleEmitNone.ts │ │ ├── requireOfJsonFileWithModuleEmitUndefined.ts │ │ ├── requireOfJsonFileWithModuleNodeResolutionEmitAmd.ts │ │ ├── requireOfJsonFileWithModuleNodeResolutionEmitAmdOutFile.ts │ │ ├── requireOfJsonFileWithModuleNodeResolutionEmitEs2015.ts │ │ ├── requireOfJsonFileWithModuleNodeResolutionEmitEsNext.ts │ │ ├── requireOfJsonFileWithModuleNodeResolutionEmitNone.ts │ │ ├── requireOfJsonFileWithModuleNodeResolutionEmitSystem.ts │ │ ├── requireOfJsonFileWithModuleNodeResolutionEmitUmd.ts │ │ ├── requireOfJsonFileWithModuleNodeResolutionEmitUndefined.ts │ │ ├── requireOfJsonFileWithNoContent.ts │ │ ├── requireOfJsonFileWithSourceMap.ts │ │ ├── requireOfJsonFileWithTraillingComma.ts │ │ ├── requireOfJsonFileWithoutAllowJs.ts │ │ ├── requireOfJsonFileWithoutEsModuleInterop.ts │ │ ├── requireOfJsonFileWithoutExtension.ts │ │ ├── requireOfJsonFileWithoutExtensionResolvesToTs.ts │ │ ├── requireOfJsonFileWithoutOutDir.ts │ │ ├── requireOfJsonFileWithoutResolveJsonModule.ts │ │ ├── requireOfJsonFileWithoutResolveJsonModuleAndPathMapping.ts │ │ ├── requireOfJsonFile_PathMapping.ts │ │ ├── requiredInitializedParameter1.ts │ │ ├── requiredInitializedParameter2.ts │ │ ├── requiredInitializedParameter3.ts │ │ ├── requiredInitializedParameter4.ts │ │ ├── requiredMappedTypeModifierTrumpsVariance.ts │ │ ├── reservedNameOnInterfaceImport.ts │ │ ├── reservedNameOnModuleImport.ts │ │ ├── reservedNameOnModuleImportWithInterface.ts │ │ ├── reservedWords.ts │ │ ├── reservedWords2.ts │ │ ├── reservedWords3.ts │ │ ├── resolutionCandidateFromPackageJsonField1.ts │ │ ├── resolutionCandidateFromPackageJsonField2.ts │ │ ├── resolveInterfaceNameWithSameLetDeclarationName1.ts │ │ ├── resolveInterfaceNameWithSameLetDeclarationName2.ts │ │ ├── resolveModuleNameWithSameLetDeclarationName1.ts │ │ ├── resolveModuleNameWithSameLetDeclarationName2.ts │ │ ├── resolveNameWithNamspace.ts │ │ ├── resolveTypeAliasWithSameLetDeclarationName1.ts │ │ ├── resolvingClassDeclarationWhenInBaseTypeResolution.ts │ │ ├── restArgAssignmentCompat.ts │ │ ├── restArgMissingName.ts │ │ ├── restElementAssignable.ts │ │ ├── restElementWithNumberPropertyName.ts │ │ ├── restIntersection.ts │ │ ├── restInvalidArgumentType.ts │ │ ├── restParamAsOptional.ts │ │ ├── restParamModifier.ts │ │ ├── restParamModifier2.ts │ │ ├── restParamUsingMappedTypeOverUnionConstraint.ts │ │ ├── restParameterAssignmentCompatibility.ts │ │ ├── restParameterNoTypeAnnotation.ts │ │ ├── restParameterNotLast.ts │ │ ├── restParameterTypeInstantiation.ts │ │ ├── restParameterWithBindingPattern1.ts │ │ ├── restParameterWithBindingPattern2.ts │ │ ├── restParameterWithBindingPattern3.ts │ │ ├── restParameters.ts │ │ ├── restParamsWithNonRestParams.ts │ │ ├── restTypeRetainsMappyness.ts │ │ ├── restUnion.ts │ │ ├── restUnion2.ts │ │ ├── restUnion3.ts │ │ ├── returnConditionalExpressionJSDocCast.ts │ │ ├── returnInConstructor1.ts │ │ ├── returnInfiniteIntersection.ts │ │ ├── returnStatement1.ts │ │ ├── returnTypeInferenceContextualParameterTypesInGenerator1.ts │ │ ├── returnTypeInferenceContextualTypeIgnoreAnyUnknown1.ts │ │ ├── returnTypeInferenceNotTooBroad.ts │ │ ├── returnTypeParameter.ts │ │ ├── returnTypeParameterWithModules.ts │ │ ├── returnTypePredicateIsInstantiateInContextOfTarget.tsx │ │ ├── returnTypeTypeArguments.ts │ │ ├── returnValueInSetter.ts │ │ ├── reuseInnerModuleMember.ts │ │ ├── reuseTypeAnnotationImportTypeInGlobalThisTypeArgument.ts │ │ ├── reverseInferenceInContextualInstantiation.ts │ │ ├── reverseMappedContravariantInference.ts │ │ ├── reverseMappedIntersectionInference1.ts │ │ ├── reverseMappedIntersectionInference2.ts │ │ ├── reverseMappedPartiallyInferableTypes.ts │ │ ├── reverseMappedTupleContext.ts │ │ ├── reverseMappedTypeAssignableToIndex.ts │ │ ├── reverseMappedTypeContextualTypeNotCircular.ts │ │ ├── reverseMappedTypeContextualTypesPerElementOfTupleConstraint.ts │ │ ├── reverseMappedTypeDeepDeclarationEmit.ts │ │ ├── reverseMappedTypeInferenceSameSource1.ts │ │ ├── reverseMappedTypeInferenceWidening1.ts │ │ ├── reverseMappedTypeInferenceWidening2.ts │ │ ├── reverseMappedTypeIntersectionConstraint.ts │ │ ├── reverseMappedTypeLimitedConstraint.ts │ │ ├── reverseMappedTypePrimitiveConstraintProperty.ts │ │ ├── reverseMappedTypeRecursiveInference.ts │ │ ├── reverseMappedUnionInference.ts │ │ ├── reversedRecusiveTypeInstantiation.ts │ │ ├── satisfiesEmit.ts │ │ ├── scopeCheckClassProperty.ts │ │ ├── scopeCheckExtendedClassInsidePublicMethod2.ts │ │ ├── scopeCheckExtendedClassInsideStaticMethod1.ts │ │ ├── scopeCheckInsidePublicMethod1.ts │ │ ├── scopeCheckInsideStaticMethod1.ts │ │ ├── scopeCheckStaticInitializer.ts │ │ ├── scopeTests.ts │ │ ├── scopingInCatchBlocks.ts │ │ ├── selfInCallback.ts │ │ ├── selfInLambdas.ts │ │ ├── selfNameAndImportsEmitInclusion.ts │ │ ├── selfRef.ts │ │ ├── selfReference.ts │ │ ├── selfReferencesInFunctionParameters.ts │ │ ├── selfReferencingFile.ts │ │ ├── selfReferencingFile2.ts │ │ ├── selfReferencingFile3.ts │ │ ├── selfReferencingSpreadInLoop.ts │ │ ├── selfReferencingTypeReferenceInference.ts │ │ ├── selfReferentialDefaultNoStackOverflow.ts │ │ ├── selfReferentialFunctionType.ts │ │ ├── semicolonsInModuleDeclarations.ts │ │ ├── separate1-1.ts │ │ ├── separate1-2.ts │ │ ├── setMethods.ts │ │ ├── setterBeforeGetter.ts │ │ ├── setterWithReturn.ts │ │ ├── shadowPrivateMembers.ts │ │ ├── shadowedFunctionScopedVariablesByBlockScopedOnes.ts │ │ ├── shadowedReservedCompilerDeclarationsWithNoEmit.ts │ │ ├── shadowingViaLocalValue.ts │ │ ├── shadowingViaLocalValueOrBindingElement.ts │ │ ├── shebang.ts │ │ ├── shebangBeforeReferences.ts │ │ ├── shebangError.ts │ │ ├── shorthand-property-es5-es6.ts │ │ ├── shorthand-property-es6-amd.ts │ │ ├── shorthand-property-es6-es6.ts │ │ ├── shorthandOfExportedEntity01_targetES2015_CommonJS.ts │ │ ├── shorthandOfExportedEntity02_targetES5_CommonJS.ts │ │ ├── shorthandPropertyAssignmentInES6Module.ts │ │ ├── shorthandPropertyAssignmentsInDestructuring.ts │ │ ├── shorthandPropertyAssignmentsInDestructuring_ES6.ts │ │ ├── shorthandPropertyUndefined.ts │ │ ├── shouldNotPrintNullEscapesIntoOctalLiterals.ts │ │ ├── sideEffectImports1.ts │ │ ├── sideEffectImports2.ts │ │ ├── sideEffectImports3.ts │ │ ├── sideEffectImports4.ts │ │ ├── sigantureIsSubTypeIfTheyAreIdentical.ts │ │ ├── signatureCombiningRestParameters1.ts │ │ ├── signatureCombiningRestParameters2.ts │ │ ├── signatureCombiningRestParameters3.ts │ │ ├── signatureCombiningRestParameters4.ts │ │ ├── signatureCombiningRestParameters5.ts │ │ ├── signatureInstantiationWithRecursiveConstraints.ts │ │ ├── signatureLengthMismatchCall.ts │ │ ├── signatureLengthMismatchInOverload.ts │ │ ├── signatureLengthMismatchWithOptionalParameters.ts │ │ ├── signatureOverloadsWithComments.ts │ │ ├── signaturesUseJSDocForOptionalParameters.ts │ │ ├── silentNeverPropagation.ts │ │ ├── simpleArrowFunctionParameterReferencedInObjectLiteral1.ts │ │ ├── simpleRecursionWithBaseCase1.ts │ │ ├── simpleRecursionWithBaseCase2.ts │ │ ├── simpleRecursionWithBaseCase3.ts │ │ ├── simpleRecursionWithBaseCase4.ts │ │ ├── simplifyingConditionalWithInteriorConditionalIsRelated.ts │ │ ├── singletonLabeledTuple.ts │ │ ├── slashBeforeVariableDeclaration1.ts │ │ ├── sliceResultCast.ts │ │ ├── slightlyIndirectedDeepObjectLiteralElaborations.ts │ │ ├── sourceMap-Comment1.ts │ │ ├── sourceMap-Comments.ts │ │ ├── sourceMap-Comments2.ts │ │ ├── sourceMap-EmptyFile1.ts │ │ ├── sourceMap-FileWithComments.ts │ │ ├── sourceMap-InterfacePrecedingVariableDeclaration1.ts │ │ ├── sourceMap-LineBreaks.ts │ │ ├── sourceMap-NewLine1.ts │ │ ├── sourceMap-SemiColon1.ts │ │ ├── sourceMap-SingleSpace1.ts │ │ ├── sourceMap-SkippedNode.ts │ │ ├── sourceMap-StringLiteralWithNewLine.ts │ │ ├── sourceMapForFunctionInInternalModuleWithCommentPrecedingStatement01.ts │ │ ├── sourceMapForFunctionWithCommentPrecedingStatement01.ts │ │ ├── sourceMapPercentEncoded.ts │ │ ├── sourceMapSample.ts │ │ ├── sourceMapValidationClass.ts │ │ ├── sourceMapValidationClassWithDefaultConstructor.ts │ │ ├── sourceMapValidationClassWithDefaultConstructorAndCapturedThisStatement.ts │ │ ├── sourceMapValidationClassWithDefaultConstructorAndExtendsClause.ts │ │ ├── sourceMapValidationClasses.ts │ │ ├── sourceMapValidationDebugger.ts │ │ ├── sourceMapValidationDecorators.ts │ │ ├── sourceMapValidationDestructuringForArrayBindingPattern.ts │ │ ├── sourceMapValidationDestructuringForArrayBindingPattern2.ts │ │ ├── sourceMapValidationDestructuringForArrayBindingPatternDefaultValues.ts │ │ ├── sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2.ts │ │ ├── sourceMapValidationDestructuringForObjectBindingPattern.ts │ │ ├── sourceMapValidationDestructuringForObjectBindingPattern2.ts │ │ ├── sourceMapValidationDestructuringForObjectBindingPatternDefaultValues.ts │ │ ├── sourceMapValidationDestructuringForObjectBindingPatternDefaultValues2.ts │ │ ├── sourceMapValidationDestructuringForOfArrayBindingPattern.ts │ │ ├── sourceMapValidationDestructuringForOfArrayBindingPattern2.ts │ │ ├── sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues.ts │ │ ├── sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues2.ts │ │ ├── sourceMapValidationDestructuringForOfObjectBindingPattern.ts │ │ ├── sourceMapValidationDestructuringForOfObjectBindingPattern2.ts │ │ ├── sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues.ts │ │ ├── sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues2.ts │ │ ├── sourceMapValidationDestructuringParameterNestedObjectBindingPattern.ts │ │ ├── sourceMapValidationDestructuringParameterNestedObjectBindingPatternDefaultValues.ts │ │ ├── sourceMapValidationDestructuringParameterObjectBindingPattern.ts │ │ ├── sourceMapValidationDestructuringParameterObjectBindingPatternDefaultValues.ts │ │ ├── sourceMapValidationDestructuringParametertArrayBindingPattern.ts │ │ ├── sourceMapValidationDestructuringParametertArrayBindingPattern2.ts │ │ ├── sourceMapValidationDestructuringParametertArrayBindingPatternDefaultValues.ts │ │ ├── sourceMapValidationDestructuringParametertArrayBindingPatternDefaultValues2.ts │ │ ├── sourceMapValidationDestructuringVariableStatement.ts │ │ ├── sourceMapValidationDestructuringVariableStatement1.ts │ │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern.ts │ │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern2.ts │ │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern3.ts │ │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern4.ts │ │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern5.ts │ │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern6.ts │ │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPattern7.ts │ │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues.ts │ │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues2.ts │ │ ├── sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues3.ts │ │ ├── sourceMapValidationDestructuringVariableStatementDefaultValues.ts │ │ ├── sourceMapValidationDestructuringVariableStatementNestedObjectBindingPattern.ts │ │ ├── sourceMapValidationDestructuringVariableStatementNestedObjectBindingPatternWithDefaultValues.ts │ │ ├── sourceMapValidationDestructuringVariableStatementObjectBindingPattern1.ts │ │ ├── sourceMapValidationDestructuringVariableStatementObjectBindingPattern2.ts │ │ ├── sourceMapValidationDestructuringVariableStatementObjectBindingPattern3.ts │ │ ├── sourceMapValidationDestructuringVariableStatementObjectBindingPattern4.ts │ │ ├── sourceMapValidationDo.ts │ │ ├── sourceMapValidationEnums.ts │ │ ├── sourceMapValidationExportAssignment.ts │ │ ├── sourceMapValidationExportAssignmentCommonjs.ts │ │ ├── sourceMapValidationFor.ts │ │ ├── sourceMapValidationForIn.ts │ │ ├── sourceMapValidationFunctionExpressions.ts │ │ ├── sourceMapValidationFunctionPropertyAssignment.ts │ │ ├── sourceMapValidationFunctions.ts │ │ ├── sourceMapValidationIfElse.ts │ │ ├── sourceMapValidationImport.ts │ │ ├── sourceMapValidationLabeled.ts │ │ ├── sourceMapValidationLambdaSpanningMultipleLines.ts │ │ ├── sourceMapValidationModule.ts │ │ ├── sourceMapValidationStatements.ts │ │ ├── sourceMapValidationSwitch.ts │ │ ├── sourceMapValidationTryCatchFinally.ts │ │ ├── sourceMapValidationVarInDownLevelGenerator.ts │ │ ├── sourceMapValidationVariables.ts │ │ ├── sourceMapValidationWhile.ts │ │ ├── sourceMapValidationWithComments.ts │ │ ├── sourceMapWithCaseSensitiveFileNames.ts │ │ ├── sourceMapWithCaseSensitiveFileNamesAndOutDir.ts │ │ ├── sourceMapWithMultipleFilesWithCopyright.ts │ │ ├── sourceMapWithMultipleFilesWithFileEndingWithInterface.ts │ │ ├── sourceMapWithNonCaseSensitiveFileNames.ts │ │ ├── sourceMapWithNonCaseSensitiveFileNamesAndOutDir.ts │ │ ├── sourcemapValidationDuplicateNames.ts │ │ ├── spaceBeforeQuestionMarkInPropertyAssignment.ts │ │ ├── specedNoStackBlown.ts │ │ ├── specialIntersectionsInMappedTypes.ts │ │ ├── specializationError.ts │ │ ├── specializationOfExportedClass.ts │ │ ├── specializationsShouldNotAffectEachOther.ts │ │ ├── specializeVarArgs1.ts │ │ ├── specializedInheritedConstructors1.ts │ │ ├── specializedLambdaTypeArguments.ts │ │ ├── specializedOverloadWithRestParameters.ts │ │ ├── specializedSignatureAsCallbackParameter1.ts │ │ ├── specializedSignatureInInterface.ts │ │ ├── specializedSignatureOverloadReturnTypeWithIndexers.ts │ │ ├── spellingSuggestionGlobal1.ts │ │ ├── spellingSuggestionGlobal2.ts │ │ ├── spellingSuggestionGlobal3.ts │ │ ├── spellingSuggestionGlobal4.ts │ │ ├── spellingSuggestionJSXAttribute.tsx │ │ ├── spellingSuggestionLeadingUnderscores01.ts │ │ ├── spellingSuggestionModule.ts │ │ ├── spliceTuples.ts │ │ ├── spreadBooleanRespectsFreshness.ts │ │ ├── spreadExpressionContainingObjectExpressionContextualType.ts │ │ ├── spreadExpressionContextualType.ts │ │ ├── spreadExpressionContextualTypeWithNamespace.ts │ │ ├── spreadIdenticalTypesRemoved.ts │ │ ├── spreadIntersection.ts │ │ ├── spreadIntersectionJsx.tsx │ │ ├── spreadInvalidArgumentType.ts │ │ ├── spreadObjectNoCircular1.ts │ │ ├── spreadObjectPermutations.ts │ │ ├── spreadObjectWithIndexDoesNotAddUndefinedToLocalIndex.ts │ │ ├── spreadOfObjectLiteralAssignableToIndexSignature.ts │ │ ├── spreadOfParamsFromGeneratorMakesRequiredParams.ts │ │ ├── spreadParameterTupleType.ts │ │ ├── spreadTupleAccessedByTypeParameter.ts │ │ ├── spreadTypeRemovesReadonly.ts │ │ ├── spreadUnionPropOverride.ts │ │ ├── spreadsAndContextualTupleTypes.ts │ │ ├── spuriousCircularityOnTypeImport.ts │ │ ├── spyComparisonChecking.ts │ │ ├── stableTypeOrdering.ts │ │ ├── stackDepthLimitCastingType.ts │ │ ├── standaloneBreak.ts │ │ ├── staticAndMemberFunctions.ts │ │ ├── staticAnonymousTypeNotReferencingTypeParameter.ts │ │ ├── staticAsIdentifier.ts │ │ ├── staticClassMemberError.ts │ │ ├── staticClassProps.ts │ │ ├── staticFieldWithInterfaceContext.ts │ │ ├── staticGetter1.ts │ │ ├── staticGetter2.ts │ │ ├── staticGetterAndSetter.ts │ │ ├── staticIndexSignatureAndNormalIndexSignature.ts │ │ ├── staticInheritance.ts │ │ ├── staticInitializersAndLegacyClassDecorators.ts │ │ ├── staticInstanceResolution.ts │ │ ├── staticInstanceResolution2.ts │ │ ├── staticInstanceResolution3.ts │ │ ├── staticInstanceResolution4.ts │ │ ├── staticInstanceResolution5.ts │ │ ├── staticInterfaceAssignmentCompat.ts │ │ ├── staticMemberAccessOffDerivedType1.ts │ │ ├── staticMemberExportAccess.ts │ │ ├── staticMemberOfClassAndPublicMemberOfAnotherClassAssignment.ts │ │ ├── staticMemberWithStringAndNumberNames.ts │ │ ├── staticMethodReferencingTypeArgument1.ts │ │ ├── staticMethodWithTypeParameterExtendsClauseDeclFile.ts │ │ ├── staticMethodsReferencingClassTypeParameters.ts │ │ ├── staticMismatchBecauseOfPrototype.ts │ │ ├── staticModifierAlreadySeen.ts │ │ ├── staticMustPrecedePublic.ts │ │ ├── staticOffOfInstance1.ts │ │ ├── staticOffOfInstance2.ts │ │ ├── staticPropSuper.ts │ │ ├── staticPrototypeProperty.ts │ │ ├── staticPrototypePropertyOnClass.ts │ │ ├── staticVisibility.ts │ │ ├── staticVisibility2.ts │ │ ├── statics.ts │ │ ├── staticsInAFunction.ts │ │ ├── staticsInConstructorBodies.ts │ │ ├── staticsNotInScopeInClodule.ts │ │ ├── stradac.ts │ │ ├── strictBooleanMemberAssignability.ts │ │ ├── strictFunctionTypes1.ts │ │ ├── strictFunctionTypesErrors.ts │ │ ├── strictModeEnumMemberNameReserved.ts │ │ ├── strictModeInConstructor.ts │ │ ├── strictModeReservedWord.ts │ │ ├── strictModeReservedWord2.ts │ │ ├── strictModeReservedWordInClassDeclaration.ts │ │ ├── strictModeReservedWordInDestructuring.ts │ │ ├── strictModeReservedWordInImportEqualDeclaration.ts │ │ ├── strictModeReservedWordInModuleDeclaration.ts │ │ ├── strictModeUseContextualKeyword.ts │ │ ├── strictModeWordInExportDeclaration.ts │ │ ├── strictModeWordInImportDeclaration.ts │ │ ├── strictNullEmptyDestructuring.ts │ │ ├── strictNullLogicalAndOr.ts │ │ ├── strictNullNotNullIndexTypeNoLib.ts │ │ ├── strictNullNotNullIndexTypeShouldWork.ts │ │ ├── strictOptionalProperties1.ts │ │ ├── strictOptionalProperties2.ts │ │ ├── strictOptionalProperties3.ts │ │ ├── strictOptionalProperties4.ts │ │ ├── strictSubtypeAndNarrowing.ts │ │ ├── strictTypeofUnionNarrowing.ts │ │ ├── stringHasStringValuedNumericIndexer.ts │ │ ├── stringIncludes.ts │ │ ├── stringIndexerAndConstructor.ts │ │ ├── stringIndexerAndConstructor1.ts │ │ ├── stringIndexerAssignments1.ts │ │ ├── stringIndexerAssignments2.ts │ │ ├── stringLiteralObjectLiteralDeclaration1.ts │ │ ├── stringLiteralPropertyNameWithLineContinuation1.ts │ │ ├── stringLiteralsErrors.ts │ │ ├── stringMappingAssignability.ts │ │ ├── stringMatchAll.ts │ │ ├── stringPropCodeGen.ts │ │ ├── stringRawType.ts │ │ ├── stringTrim.ts │ │ ├── stripInternal1.ts │ │ ├── stripMembersOptionality.ts │ │ ├── structural1.ts │ │ ├── structuralTypeInDeclareFileForModule.ts │ │ ├── styleOptions.ts │ │ ├── styledComponentsInstantiaionLimitNotReached.ts │ │ ├── subSubClassCanAccessProtectedConstructor.ts │ │ ├── subclassThisTypeAssignable01.ts │ │ ├── subclassThisTypeAssignable02.ts │ │ ├── subclassUint8Array.ts │ │ ├── subclassWithPolymorphicThisIsAssignable.ts │ │ ├── substituteReturnTypeSatisfiesConstraint.ts │ │ ├── substitutionTypeForIndexedAccessType1.ts │ │ ├── substitutionTypeForIndexedAccessType2.ts │ │ ├── substitutionTypeForNonGenericIndexedAccessType.ts │ │ ├── substitutionTypeNoMergeOfAssignableType.ts │ │ ├── substitutionTypePassedToExtends.ts │ │ ├── substitutionTypesCompareCorrectlyInRestrictiveInstances.ts │ │ ├── substitutionTypesInIndexedAccessTypes.ts │ │ ├── subtypeReductionUnionConstraints.ts │ │ ├── subtypeReductionWithAnyFunctionType.ts │ │ ├── subtypeRelationForNever.ts │ │ ├── subtypingTransitivity.ts │ │ ├── super.ts │ │ ├── super1.ts │ │ ├── super2.ts │ │ ├── superAccess.ts │ │ ├── superAccess2.ts │ │ ├── superAccessCastedCall.ts │ │ ├── superAccessInFatArrow1.ts │ │ ├── superCallArgsMustMatch.ts │ │ ├── superCallAssignResult.ts │ │ ├── superCallFromClassThatDerivesFromGenericType1.ts │ │ ├── superCallFromClassThatDerivesFromGenericType2.ts │ │ ├── superCallFromClassThatDerivesFromGenericTypeButWithIncorrectNumberOfTypeArguments1.ts │ │ ├── superCallFromClassThatDerivesFromGenericTypeButWithNoTypeArguments1.ts │ │ ├── superCallFromClassThatDerivesNonGenericTypeButWithTypeArguments1.ts │ │ ├── superCallFromClassThatHasNoBaseType1.ts │ │ ├── superCallFromFunction1.ts │ │ ├── superCallInNonStaticMethod.ts │ │ ├── superCallInStaticMethod.ts │ │ ├── superCallInsideClassDeclaration.ts │ │ ├── superCallInsideClassExpression.ts │ │ ├── superCallInsideObjectLiteralExpression.ts │ │ ├── superCallOutsideConstructor.ts │ │ ├── superCallWithCommentEmit01.ts │ │ ├── superCallWithMissingBaseClass.ts │ │ ├── superCallsInConstructor.ts │ │ ├── superElementAccess.ts │ │ ├── superErrors.ts │ │ ├── superHasMethodsFromMergedInterface.ts │ │ ├── superInCatchBlock1.ts │ │ ├── superInConstructorParam1.ts │ │ ├── superInLambdas.ts │ │ ├── superInObjectLiterals_ES5.ts │ │ ├── superInObjectLiterals_ES6.ts │ │ ├── superNewCall1.ts │ │ ├── superNoModifiersCrash.ts │ │ ├── superPropertyAccess.ts │ │ ├── superPropertyAccess1.ts │ │ ├── superPropertyAccess2.ts │ │ ├── superPropertyAccessInComputedPropertiesOfNestedType_ES5.ts │ │ ├── superPropertyAccessInComputedPropertiesOfNestedType_ES6.ts │ │ ├── superPropertyAccessInSuperCall01.ts │ │ ├── superPropertyAccess_ES5.ts │ │ ├── superPropertyAccess_ES6.ts │ │ ├── superPropertyElementNoUnusedLexicalThisCapture.ts │ │ ├── superWithGenericSpecialization.ts │ │ ├── superWithGenerics.ts │ │ ├── superWithTypeArgument.ts │ │ ├── superWithTypeArgument2.ts │ │ ├── superWithTypeArgument3.ts │ │ ├── super_inside-object-literal-getters-and-setters.ts │ │ ├── switchAssignmentCompat.ts │ │ ├── switchCaseCircularRefeference.ts │ │ ├── switchCaseInternalComments.ts │ │ ├── switchCaseNarrowsMatchingClausesEvenWhenNonMatchingClausesExist.ts │ │ ├── switchCases.ts │ │ ├── switchCasesExpressionTypeMismatch.ts │ │ ├── switchComparableCompatForBrands.ts │ │ ├── switchFallThroughs.ts │ │ ├── switchStatementsWithMultipleDefaults.ts │ │ ├── switchStatementsWithMultipleDefaults1.ts │ │ ├── symbolLinkDeclarationEmitModuleNames.ts │ │ ├── symbolLinkDeclarationEmitModuleNamesImportRef.ts │ │ ├── symbolLinkDeclarationEmitModuleNamesRootDir.ts │ │ ├── symbolMergeValueAndImportedType.ts │ │ ├── symbolObserverMismatchingPolyfillsWorkTogether.ts │ │ ├── symlinkedWorkspaceDependenciesNoDirectLinkGeneratesDeepNonrelativeName.ts │ │ ├── symlinkedWorkspaceDependenciesNoDirectLinkGeneratesNonrelativeName.ts │ │ ├── symlinkedWorkspaceDependenciesNoDirectLinkOptionalGeneratesNonrelativeName.ts │ │ ├── symlinkedWorkspaceDependenciesNoDirectLinkPeerGeneratesNonrelativeName.ts │ │ ├── syntheticDefaultExportsWithDynamicImports.ts │ │ ├── systemDefaultExportCommentValidity.ts │ │ ├── systemDefaultImportCallable.ts │ │ ├── systemExportAssignment.ts │ │ ├── systemExportAssignment2.ts │ │ ├── systemExportAssignment3.ts │ │ ├── systemJsForInNoException.ts │ │ ├── systemModule1.ts │ │ ├── systemModule10.ts │ │ ├── systemModule10_ES5.ts │ │ ├── systemModule11.ts │ │ ├── systemModule12.ts │ │ ├── systemModule13.ts │ │ ├── systemModule14.ts │ │ ├── systemModule15.ts │ │ ├── systemModule16.ts │ │ ├── systemModule17.ts │ │ ├── systemModule18.ts │ │ ├── systemModule2.ts │ │ ├── systemModule3.ts │ │ ├── systemModule4.ts │ │ ├── systemModule5.ts │ │ ├── systemModule6.ts │ │ ├── systemModule7.ts │ │ ├── systemModule8.ts │ │ ├── systemModule9.ts │ │ ├── systemModuleAmbientDeclarations.ts │ │ ├── systemModuleConstEnums.ts │ │ ├── systemModuleConstEnumsSeparateCompilation.ts │ │ ├── systemModuleDeclarationMerging.ts │ │ ├── systemModuleExportDefault.ts │ │ ├── systemModuleNonTopLevelModuleMembers.ts │ │ ├── systemModuleTargetES6.ts │ │ ├── systemModuleTrailingComments.ts │ │ ├── systemModuleWithSuperClass.ts │ │ ├── systemNamespaceAliasEmit.ts │ │ ├── systemObjectShorthandRename.ts │ │ ├── taggedPrimitiveNarrowing.ts │ │ ├── taggedTemplateStringWithSymbolExpression01.ts │ │ ├── taggedTemplateStringsHexadecimalEscapes.ts │ │ ├── taggedTemplateStringsHexadecimalEscapesES6.ts │ │ ├── taggedTemplateStringsWithCurriedFunction.ts │ │ ├── taggedTemplateStringsWithMultilineTemplate.ts │ │ ├── taggedTemplateStringsWithMultilineTemplateES6.ts │ │ ├── taggedTemplateStringsWithUnicodeEscapes.ts │ │ ├── taggedTemplateStringsWithUnicodeEscapesES6.ts │ │ ├── taggedTemplateStringsWithWhitespaceEscapes.ts │ │ ├── taggedTemplateStringsWithWhitespaceEscapesES6.ts │ │ ├── taggedTemplateWithoutDeclaredHelper.ts │ │ ├── taggedTemplatesInDifferentScopes.ts │ │ ├── taggedTemplatesInModuleAndGlobal.ts │ │ ├── taggedTemplatesWithIncompleteNoSubstitutionTemplate1.ts │ │ ├── taggedTemplatesWithIncompleteNoSubstitutionTemplate2.ts │ │ ├── taggedTemplatesWithIncompleteTemplateExpressions1.ts │ │ ├── taggedTemplatesWithIncompleteTemplateExpressions2.ts │ │ ├── taggedTemplatesWithIncompleteTemplateExpressions3.ts │ │ ├── taggedTemplatesWithIncompleteTemplateExpressions4.ts │ │ ├── taggedTemplatesWithIncompleteTemplateExpressions5.ts │ │ ├── taggedTemplatesWithIncompleteTemplateExpressions6.ts │ │ ├── tailRecursiveConditionalTypes.ts │ │ ├── targetEs6DecoratorMetadataImportNotElided.ts │ │ ├── targetTypeArgs.ts │ │ ├── targetTypeBaseCalls.ts │ │ ├── targetTypeCalls.ts │ │ ├── targetTypeCastTest.ts │ │ ├── targetTypeObjectLiteral.ts │ │ ├── targetTypeObjectLiteralToAny.ts │ │ ├── targetTypeTest1.ts │ │ ├── targetTypeTest2.ts │ │ ├── targetTypeTest3.ts │ │ ├── targetTypeVoidFunc.ts │ │ ├── targetTypingOnFunctions.ts │ │ ├── templateExpressionAsPossiblyDiscriminantValue.ts │ │ ├── templateExpressionNoInlininingOfConstantBindingWithInitializer.ts │ │ ├── templateLiteralConstantEvaluation.ts │ │ ├── templateLiteralEscapeSequence.ts │ │ ├── templateLiteralIntersection.ts │ │ ├── templateLiteralIntersection2.ts │ │ ├── templateLiteralIntersection3.ts │ │ ├── templateLiteralIntersection4.ts │ │ ├── templateLiteralsAndDecoratorMetadata.ts │ │ ├── templateLiteralsInTypes.ts │ │ ├── templateLiteralsSourceMap.ts │ │ ├── templateStringsArrayTypeDefinedInES5Mode.ts │ │ ├── templateStringsArrayTypeNotDefinedES5Mode.ts │ │ ├── templateStringsArrayTypeRedefinedInES6Mode.ts │ │ ├── temporal.ts │ │ ├── ternaryExpressionSourceMap.ts │ │ ├── testContainerList.ts │ │ ├── testTypings.ts │ │ ├── thisAssignmentInNamespaceDeclaration1.ts │ │ ├── thisBinding.ts │ │ ├── thisBinding2.ts │ │ ├── thisCapture1.ts │ │ ├── thisConditionalOnMethodReturnOfGenericInstance.ts │ │ ├── thisExpressionInCallExpressionWithTypeArguments.ts │ │ ├── thisExpressionInIndexExpression.ts │ │ ├── thisExpressionOfGenericObject.ts │ │ ├── thisInAccessors.ts │ │ ├── thisInArrowFunctionInStaticInitializer1.ts │ │ ├── thisInClassBodyStaticESNext.ts │ │ ├── thisInConstructorParameter1.ts │ │ ├── thisInConstructorParameter2.ts │ │ ├── thisInFunctionCall.ts │ │ ├── thisInFunctionCallJs.ts │ │ ├── thisInGenericStaticMembers.ts │ │ ├── thisInInnerFunctions.ts │ │ ├── thisInLambda.ts │ │ ├── thisInModule.ts │ │ ├── thisInModuleFunction1.ts │ │ ├── thisInObjectJs.ts │ │ ├── thisInOuterClassBody.ts │ │ ├── thisInPropertyBoundDeclarations.ts │ │ ├── thisInStaticMethod1.ts │ │ ├── thisInStatics.ts │ │ ├── thisInSuperCall.ts │ │ ├── thisInSuperCall1.ts │ │ ├── thisInSuperCall2.ts │ │ ├── thisInSuperCall3.ts │ │ ├── thisInTupleTypeParameterConstraints.ts │ │ ├── thisInTypeQuery.ts │ │ ├── thisIndexOnExistingReadonlyFieldIsNotNever.ts │ │ ├── thisKeyword.ts │ │ ├── thisPredicateInObjectLiteral.ts │ │ ├── thisReferencedInFunctionInsideArrowFunction1.ts │ │ ├── thisShadowingErrorSpans.ts │ │ ├── thisTypeAsConstraint.ts │ │ ├── thisWhenTypeCheckFails.ts │ │ ├── this_inside-enum-should-not-be-allowed.ts │ │ ├── this_inside-object-literal-getters-and-setters.ts │ │ ├── thislessFunctionsNotContextSensitive1.ts │ │ ├── thislessFunctionsNotContextSensitive2.ts │ │ ├── thislessFunctionsNotContextSensitive3.ts │ │ ├── throwWithoutNewLine1.ts │ │ ├── throwWithoutNewLine2.ts │ │ ├── toStringOnPrimitives.ts │ │ ├── tooFewArgumentsInGenericFunctionTypedArgument.ts │ │ ├── tooManyTypeParameters1.ts │ │ ├── topFunctionTypeNotCallable.ts │ │ ├── topLevel.ts │ │ ├── topLevelBlockExpando.ts │ │ ├── topLevelExports.ts │ │ ├── topLevelLambda.ts │ │ ├── topLevelLambda2.ts │ │ ├── topLevelLambda3.ts │ │ ├── topLevelLambda4.ts │ │ ├── trackedSymbolsNoCrash.ts │ │ ├── trailingCommaInHeterogenousArrayLiteral1.ts │ │ ├── trailingCommasES5.ts │ │ ├── transformArrowInBlockScopedLoopVarInitializer.ts │ │ ├── transformNestedGeneratorsWithTry.ts │ │ ├── transformParenthesizesConditionalSubexpression.ts │ │ ├── transformsElideNullUndefinedType.ts │ │ ├── transitiveTypeArgumentInference1.ts │ │ ├── tripleSlashInCommentNotParsed.ts │ │ ├── tripleSlashReferenceAbsoluteWindowsPath.ts │ │ ├── tripleSlashTypesReferenceWithMissingExports.ts │ │ ├── trivialSubtypeReductionNoStructuralCheck.ts │ │ ├── trivialSubtypeReductionNoStructuralCheck2.ts │ │ ├── truthinessCallExpressionCoercion.ts │ │ ├── truthinessCallExpressionCoercion1.ts │ │ ├── truthinessCallExpressionCoercion2.ts │ │ ├── truthinessCallExpressionCoercion3.ts │ │ ├── truthinessCallExpressionCoercion4.ts │ │ ├── truthinessPromiseCoercion.ts │ │ ├── tryCatchFinally.ts │ │ ├── tryCatchFinallyControlFlow.ts │ │ ├── tryStatementInternalComments.ts │ │ ├── tsconfigExtendsPackageJsonExportsWildcard.ts │ │ ├── tsconfigMapOptionsAreCaseInsensitive.ts │ │ ├── tslibInJs.ts │ │ ├── tslibMissingHelper.ts │ │ ├── tslibMultipleMissingHelper.ts │ │ ├── tslibNotFoundDifferentModules.ts │ │ ├── tslibReExportHelpers.ts │ │ ├── tslibReExportHelpers2.ts │ │ ├── tsxAttributeQuickinfoTypesSameAsObjectLiteral.tsx │ │ ├── tsxAttributesHasInferrableIndex.tsx │ │ ├── tsxDeepAttributeAssignabilityError.tsx │ │ ├── tsxDefaultImports.ts │ │ ├── tsxDiscriminantPropertyInference.tsx │ │ ├── tsxFragmentChildrenCheck.ts │ │ ├── tsxInferenceShouldNotYieldAnyOnUnions.tsx │ │ ├── tsxInvokeComponentType.tsx │ │ ├── tsxNoTypeAnnotatedSFC.tsx │ │ ├── tsxNotUsingApparentTypeOfSFC.tsx │ │ ├── tsxReactPropsInferenceSucceedsOnIntersections.tsx │ │ ├── tsxResolveExternalModuleExportsTypes.ts │ │ ├── tsxSpreadDoesNotReportExcessProps.tsx │ │ ├── tsxStatelessComponentDefaultProps.tsx │ │ ├── tsxTypeArgumentPartialDefinitionStillErrors.ts │ │ ├── tsxUnionMemberChecksFilterDataProps.tsx │ │ ├── tsxUnionSpread.tsx │ │ ├── tupleTypeInference.ts │ │ ├── tupleTypeInference2.ts │ │ ├── tupleTypes.ts │ │ ├── twiceNestedKeyofIndexInference.ts │ │ ├── typeAliasDeclarationEmit.ts │ │ ├── typeAliasDeclarationEmit2.ts │ │ ├── typeAliasDeclarationEmit3.ts │ │ ├── typeAliasDeclareKeyword01.d.ts │ │ ├── typeAliasDeclareKeywordNewlines.ts │ │ ├── typeAliasDoesntMakeModuleInstantiated.ts │ │ ├── typeAliasExport.ts │ │ ├── typeAliasFunctionTypeSharedSymbol.ts │ │ ├── typeAliasInstantiationNoLeak1.ts │ │ ├── typeAnnotationBestCommonTypeInArrayLiteral.ts │ │ ├── typeArgInference.ts │ │ ├── typeArgInference2.ts │ │ ├── typeArgInference2WithError.ts │ │ ├── typeArgInferenceWithNull.ts │ │ ├── typeArgumentConstraintResolution1.ts │ │ ├── typeArgumentDefaultUsesConstraintOnCircularDefault.ts │ │ ├── typeArgumentInferenceApparentType1.ts │ │ ├── typeArgumentInferenceApparentType2.ts │ │ ├── typeArgumentInferenceOrdering.ts │ │ ├── typeArgumentInferenceWithConstraintAsCommonRoot.ts │ │ ├── typeArgumentInferenceWithRecursivelyReferencedTypeAliasToTypeLiteral01.ts │ │ ├── typeArgumentInferenceWithRecursivelyReferencedTypeAliasToTypeLiteral02.ts │ │ ├── typeArgumentsInFunctionExpressions.ts │ │ ├── typeArgumentsOnFunctionsWithNoTypeParameters.ts │ │ ├── typeArgumentsShouldDisallowNonGenericOverloads.ts │ │ ├── typeAssertionToGenericFunctionType.ts │ │ ├── typeAssignabilityErrorMessage.ts │ │ ├── typeCheckExportsVariable.ts │ │ ├── typeCheckObjectCreationExpressionWithUndefinedCallResolutionData.ts │ │ ├── typeCheckObjectLiteralMethodBody.ts │ │ ├── typeCheckReturnExpression.ts │ │ ├── typeCheckTypeArgument.ts │ │ ├── typeCheckingInsideFunctionExpressionInArray.ts │ │ ├── typeComparisonCaching.ts │ │ ├── typeConstraintsWithConstructSignatures.ts │ │ ├── typeGuardConstructorClassAndNumber.ts │ │ ├── typeGuardConstructorDerivedClass.ts │ │ ├── typeGuardConstructorNarrowAny.ts │ │ ├── typeGuardConstructorNarrowPrimitivesInUnion.ts │ │ ├── typeGuardConstructorPrimitiveTypes.ts │ │ ├── typeGuardNarrowByMutableUntypedField.ts │ │ ├── typeGuardNarrowByUntypedField.ts │ │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty1.ts │ │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty10.ts │ │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty11.ts │ │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty12.ts │ │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty2.ts │ │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty3.ts │ │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty4.ts │ │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty5.ts │ │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty6.ts │ │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty7.ts │ │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty8.ts │ │ ├── typeGuardNarrowsIndexedAccessOfKnownProperty9.ts │ │ ├── typeGuardOnContainerTypeNoHang.ts │ │ ├── typeIdentityConsidersBrands.ts │ │ ├── typeInfer1.ts │ │ ├── typeInferenceCacheInvalidation.ts │ │ ├── typeInferenceConflictingCandidates.ts │ │ ├── typeInferenceFBoundedTypeParams.ts │ │ ├── typeInferenceFixEarly.ts │ │ ├── typeInferenceLiteralUnion.ts │ │ ├── typeInferenceReturnTypeCallback.ts │ │ ├── typeInferenceTypePredicate.ts │ │ ├── typeInferenceTypePredicate2.ts │ │ ├── typeInferenceWithExcessProperties.ts │ │ ├── typeInferenceWithExcessPropertiesJsx.tsx │ │ ├── typeInferenceWithTypeAnnotation.ts │ │ ├── typeInterfaceDeclarationsInBlockStatements1.ts │ │ ├── typeLiteralCallback.ts │ │ ├── typeMatch1.ts │ │ ├── typeMatch2.ts │ │ ├── typeName1.ts │ │ ├── typeNamedUndefined1.ts │ │ ├── typeNamedUndefined2.ts │ │ ├── typeOfEnumAndVarRedeclarations.ts │ │ ├── typeOfOnTypeArg.ts │ │ ├── typeOfOperator1.ts │ │ ├── typeOfPrototype.ts │ │ ├── typeOfSuperCall.ts │ │ ├── typeOfThisInStatics.ts │ │ ├── typeOfYieldWithUnionInContextualReturnType.ts │ │ ├── typeParamExtendsOtherTypeParam.ts │ │ ├── typeParameterAndArgumentOfSameName1.ts │ │ ├── typeParameterArgumentEquivalence.ts │ │ ├── typeParameterArgumentEquivalence2.ts │ │ ├── typeParameterArgumentEquivalence3.ts │ │ ├── typeParameterArgumentEquivalence4.ts │ │ ├── typeParameterArgumentEquivalence5.ts │ │ ├── typeParameterAsBaseClass.ts │ │ ├── typeParameterAsElementType.ts │ │ ├── typeParameterAssignmentCompat1.ts │ │ ├── typeParameterAssignmentWithConstraints.ts │ │ ├── typeParameterCompatibilityAccrossDeclarations.ts │ │ ├── typeParameterConstrainedToOuterTypeParameter.ts │ │ ├── typeParameterConstrainedToOuterTypeParameter2.ts │ │ ├── typeParameterConstraintInstantiation.ts │ │ ├── typeParameterConstraints1.ts │ │ ├── typeParameterDiamond1.ts │ │ ├── typeParameterDiamond2.ts │ │ ├── typeParameterDiamond3.ts │ │ ├── typeParameterDiamond4.ts │ │ ├── typeParameterDoesntBlockParameterLookup.ts │ │ ├── typeParameterEquality.ts │ │ ├── typeParameterExplicitlyExtendsAny.ts │ │ ├── typeParameterExtendingUnion1.ts │ │ ├── typeParameterExtendingUnion2.ts │ │ ├── typeParameterExtendsPrimitive.ts │ │ ├── typeParameterFixingWithConstraints.ts │ │ ├── typeParameterFixingWithContextSensitiveArguments.ts │ │ ├── typeParameterFixingWithContextSensitiveArguments2.ts │ │ ├── typeParameterFixingWithContextSensitiveArguments3.ts │ │ ├── typeParameterFixingWithContextSensitiveArguments4.ts │ │ ├── typeParameterFixingWithContextSensitiveArguments5.ts │ │ ├── typeParameterHasSelfAsConstraint.ts │ │ ├── typeParameterInConstraint1.ts │ │ ├── typeParameterLeak.ts │ │ ├── typeParameterListWithTrailingComma1.ts │ │ ├── typeParameterOrderReversal.ts │ │ ├── typeParameterWithInvalidConstraintType.ts │ │ ├── typeParametersAndParametersInComputedNames.ts │ │ ├── typeParametersInStaticAccessors.ts │ │ ├── typeParametersInStaticMethods.ts │ │ ├── typeParametersInStaticProperties.ts │ │ ├── typeParametersShouldNotBeEqual.ts │ │ ├── typeParametersShouldNotBeEqual2.ts │ │ ├── typeParametersShouldNotBeEqual3.ts │ │ ├── typePartameterConstraintInstantiatedWithDefaultWhenCheckingDefault.ts │ │ ├── typePredicateAcceptingPartialOfRefinedType.ts │ │ ├── typePredicateFreshLiteralWidening.ts │ │ ├── typePredicateInLoop.ts │ │ ├── typePredicateInherit.ts │ │ ├── typePredicateStructuralMatch.ts │ │ ├── typePredicateTopLevelTypeParameter.ts │ │ ├── typePredicateWithThisParameter.ts │ │ ├── typePredicatesCanNarrowByDiscriminant.ts │ │ ├── typePredicatesInUnion.ts │ │ ├── typePredicatesInUnion2.ts │ │ ├── typePredicatesInUnion3.ts │ │ ├── typePredicatesInUnion_noMatch.ts │ │ ├── typePredicatesOptionalChaining1.ts │ │ ├── typePredicatesOptionalChaining2.ts │ │ ├── typePredicatesOptionalChaining3.ts │ │ ├── typeReferenceDirectiveScopedPackageCustomTypeRoot.ts │ │ ├── typeReferenceDirectiveWithFailedFromTypeRoot.ts │ │ ├── typeReferenceDirectiveWithTypeAsFile.ts │ │ ├── typeReferenceDirectives1.ts │ │ ├── typeReferenceDirectives10.ts │ │ ├── typeReferenceDirectives11.ts │ │ ├── typeReferenceDirectives12.ts │ │ ├── typeReferenceDirectives13.ts │ │ ├── typeReferenceDirectives2.ts │ │ ├── typeReferenceDirectives3.ts │ │ ├── typeReferenceDirectives4.ts │ │ ├── typeReferenceDirectives5.ts │ │ ├── typeReferenceDirectives6.ts │ │ ├── typeReferenceDirectives7.ts │ │ ├── typeReferenceDirectives8.ts │ │ ├── typeReferenceDirectives9.ts │ │ ├── typeResolution.ts │ │ ├── typeRootsFromMultipleNodeModulesDirectories.ts │ │ ├── typeRootsFromNodeModulesInParentDirectory.ts │ │ ├── typeUsedAsTypeLiteralIndex.ts │ │ ├── typeUsedAsValueError.ts │ │ ├── typeUsedAsValueError2.ts │ │ ├── typeVal.ts │ │ ├── typeValueConflict1.ts │ │ ├── typeValueConflict2.ts │ │ ├── typeVariableConstraintIntersections.ts │ │ ├── typeVariableConstraintedToAliasNotAssignableToUnion.ts │ │ ├── typeVariableTypeGuards.ts │ │ ├── typecheckCommaExpression.ts │ │ ├── typecheckIfCondition.ts │ │ ├── typedArrayConstructorOverloads.ts │ │ ├── typedArrays-es5.ts │ │ ├── typedArrays-es6.ts │ │ ├── typedArrays.ts │ │ ├── typedArraysCrossAssignability01.ts │ │ ├── typedArraysSubarray.ts │ │ ├── typedGenericPrototypeMember.ts │ │ ├── typeofAmbientExternalModules.ts │ │ ├── typeofClass.ts │ │ ├── typeofEnum.ts │ │ ├── typeofExternalModules.ts │ │ ├── typeofImportInstantiationExpression.ts │ │ ├── typeofInObjectLiteralType.ts │ │ ├── typeofInterface.ts │ │ ├── typeofInternalModules.ts │ │ ├── typeofObjectInference.ts │ │ ├── typeofProperty.ts │ │ ├── typeofSimple.ts │ │ ├── typeofStrictNull.ts │ │ ├── typeofStripsFreshness.ts │ │ ├── typeofThisInMethodSignature.ts │ │ ├── typeofUndefined.ts │ │ ├── typeofUnknownSymbol.ts │ │ ├── typeofUsedBeforeBlockScoped.ts │ │ ├── umdDependencyComment2.ts │ │ ├── umdDependencyCommentName1.ts │ │ ├── umdDependencyCommentName2.ts │ │ ├── umdGlobalAugmentationNoCrash.ts │ │ ├── umdGlobalConflict.ts │ │ ├── umdNamedAmdMode.ts │ │ ├── umdNamespaceMergedWithGlobalAugmentationIsNotCircular.ts │ │ ├── unaryOperators1.ts │ │ ├── unaryOperatorsInStrictMode.ts │ │ ├── unaryPlus.ts │ │ ├── uncalledFunctionChecksInConditional.ts │ │ ├── uncalledFunctionChecksInConditional2.ts │ │ ├── uncalledFunctionChecksInConditionalPerf.ts │ │ ├── uncaughtCompilerError1.ts │ │ ├── uncaughtCompilerError2.ts │ │ ├── unclosedExportClause01.ts │ │ ├── unclosedExportClause02.ts │ │ ├── undeclaredBase.ts │ │ ├── undeclaredMethod.ts │ │ ├── undeclaredModuleError.ts │ │ ├── undeclaredVarEmit.ts │ │ ├── undefinedArgumentInference.ts │ │ ├── undefinedAsDiscriminantWithUnknown.ts │ │ ├── undefinedAssignableToGenericMappedIntersection.ts │ │ ├── undefinedInferentialTyping.ts │ │ ├── undefinedSymbolReferencedInArrayLiteral1.ts │ │ ├── undefinedTypeArgument1.ts │ │ ├── undefinedTypeArgument2.ts │ │ ├── undefinedTypeAssignment1.ts │ │ ├── undefinedTypeAssignment2.ts │ │ ├── undefinedTypeAssignment3.ts │ │ ├── undefinedTypeAssignment4.ts │ │ ├── underscoreEscapedNameInEnum.ts │ │ ├── underscoreMapFirst.ts │ │ ├── underscoreTest1.ts │ │ ├── underscoreThisInDerivedClass01.ts │ │ ├── underscoreThisInDerivedClass02.ts │ │ ├── unexpectedStatementBlockTerminator.ts │ │ ├── unexportedInstanceClassVariables.ts │ │ ├── unicodeEscapesInJSDoc.ts │ │ ├── unicodeEscapesInNames01.ts │ │ ├── unicodeEscapesInNames02.ts │ │ ├── unicodeIdentifierName2.ts │ │ ├── unicodeIdentifierNames.ts │ │ ├── unicodeStringLiteral.ts │ │ ├── unionCallMixedTypeParameterPresence.ts │ │ ├── unionErrorMessageOnMatchingDiscriminant.ts │ │ ├── unionExcessPropertyCheckNoApparentPropTypeMismatchErrors.ts │ │ ├── unionExcessPropsWithPartialMember.ts │ │ ├── unionOfArraysFilterCall.ts │ │ ├── unionOfClassCalls.ts │ │ ├── unionOfEnumInference.ts │ │ ├── unionOfFunctionAndSignatureIsCallable.ts │ │ ├── unionPropertyExistence.ts │ │ ├── unionPropertyOfProtectedAndIntersectionProperty.ts │ │ ├── unionReductionMutualSubtypes.ts │ │ ├── unionReductionWithStringMappingAndIdenticalBaseTypeExistsNoCrash.tsx │ │ ├── unionRelationshipCheckPasses.ts │ │ ├── unionSignaturesWithThisParameter.ts │ │ ├── unionSubtypeReductionErrors.ts │ │ ├── unionTypeErrorMessageTypeRefs01.ts │ │ ├── unionTypeParameterInference.ts │ │ ├── unionTypeWithIndexAndMethodSignature.ts │ │ ├── unionTypeWithIndexAndTuple.ts │ │ ├── unionTypeWithIndexedLiteralType.ts │ │ ├── unionTypeWithLeadingOperator.ts │ │ ├── unionTypeWithRecursiveSubtypeReduction1.ts │ │ ├── unionTypeWithRecursiveSubtypeReduction2.ts │ │ ├── unionTypeWithRecursiveSubtypeReduction3.ts │ │ ├── unionWithIndexSignature.ts │ │ ├── uniqueSymbolAllowsIndexInObjectWithIndexSignature.ts │ │ ├── uniqueSymbolAssignmentOnGlobalAugmentationSuceeds.ts │ │ ├── uniqueSymbolJs.ts │ │ ├── uniqueSymbolJs2.ts │ │ ├── uniqueSymbolPropertyDeclarationEmit.ts │ │ ├── unknownLikeUnionObjectFlagsNotPropagated.ts │ │ ├── unknownPropertiesAreAssignableToObjectUnion.ts │ │ ├── unknownSymbolInGenericReturnType.ts │ │ ├── unknownSymbolOffContextualType1.ts │ │ ├── unknownSymbols1.ts │ │ ├── unknownSymbols2.ts │ │ ├── unknownTypeArgOnCall.ts │ │ ├── unknownTypeErrors.ts │ │ ├── unmatchedParameterPositions.ts │ │ ├── unmetTypeConstraintInImportCall.ts │ │ ├── unmetTypeConstraintInJSDocImportCall.ts │ │ ├── unparenthesizedConstructorTypeInUnionOrIntersection.ts │ │ ├── unparenthesizedFunctionTypeInUnionOrIntersection.ts │ │ ├── unqualifiedCallToClassStatic1.ts │ │ ├── unreachableDeclarations.ts │ │ ├── unreachableFlowAfterFinally.ts │ │ ├── unreachableJavascriptChecked.ts │ │ ├── unreachableJavascriptUnchecked.ts │ │ ├── unreachableSwitchTypeofAny.ts │ │ ├── unreachableSwitchTypeofUnknown.ts │ │ ├── unresolvableSelfReferencingAwaitedUnion.ts │ │ ├── unresolvedTypeAssertionSymbol.ts │ │ ├── unspecializedConstraints.ts │ │ ├── unterminatedRegexAtEndOfSource1.ts │ │ ├── unterminatedStringLiteralWithBackslash1.ts │ │ ├── untypedArgumentInLambdaExpression.ts │ │ ├── untypedFunctionCallsWithTypeParameters1.ts │ │ ├── untypedModuleImport_withAugmentation2.ts │ │ ├── unusedClassesinModule1.ts │ │ ├── unusedClassesinNamespace1.ts │ │ ├── unusedClassesinNamespace2.ts │ │ ├── unusedClassesinNamespace3.ts │ │ ├── unusedClassesinNamespace4.ts │ │ ├── unusedClassesinNamespace5.ts │ │ ├── unusedDestructuring.ts │ │ ├── unusedDestructuringParameters.ts │ │ ├── unusedFunctionsinNamespaces1.ts │ │ ├── unusedFunctionsinNamespaces2.ts │ │ ├── unusedFunctionsinNamespaces3.ts │ │ ├── unusedFunctionsinNamespaces4.ts │ │ ├── unusedFunctionsinNamespaces5.ts │ │ ├── unusedFunctionsinNamespaces6.ts │ │ ├── unusedGetterInClass.ts │ │ ├── unusedIdentifiersConsolidated1.ts │ │ ├── unusedImportDeclaration.ts │ │ ├── unusedImportWithSpread.ts │ │ ├── unusedImports1.ts │ │ ├── unusedImports10.ts │ │ ├── unusedImports11.ts │ │ ├── unusedImports12.ts │ │ ├── unusedImports13.ts │ │ ├── unusedImports14.ts │ │ ├── unusedImports15.ts │ │ ├── unusedImports16.ts │ │ ├── unusedImports2.ts │ │ ├── unusedImports3.ts │ │ ├── unusedImports4.ts │ │ ├── unusedImports5.ts │ │ ├── unusedImports6.ts │ │ ├── unusedImports7.ts │ │ ├── unusedImports8.ts │ │ ├── unusedImports9.ts │ │ ├── unusedImports_entireImportDeclaration.ts │ │ ├── unusedInterfaceinNamespace1.ts │ │ ├── unusedInterfaceinNamespace2.ts │ │ ├── unusedInterfaceinNamespace3.ts │ │ ├── unusedInterfaceinNamespace4.ts │ │ ├── unusedInterfaceinNamespace5.ts │ │ ├── unusedInvalidTypeArguments.ts │ │ ├── unusedLocalProperty.ts │ │ ├── unusedLocalsAndObjectSpread.ts │ │ ├── unusedLocalsAndObjectSpread2.ts │ │ ├── unusedLocalsAndParameters.ts │ │ ├── unusedLocalsAndParametersDeferred.ts │ │ ├── unusedLocalsAndParametersOverloadSignatures.ts │ │ ├── unusedLocalsAndParametersTypeAliases.ts │ │ ├── unusedLocalsAndParametersTypeAliases2.ts │ │ ├── unusedLocalsInForInOrOf1.ts │ │ ├── unusedLocalsInMethod1.ts │ │ ├── unusedLocalsInMethod2.ts │ │ ├── unusedLocalsInMethod3.ts │ │ ├── unusedLocalsInMethod4.ts │ │ ├── unusedLocalsInRecursiveReturn.ts │ │ ├── unusedLocalsOnFunctionDeclarationWithinFunctionDeclaration1.ts │ │ ├── unusedLocalsOnFunctionDeclarationWithinFunctionDeclaration2.ts │ │ ├── unusedLocalsOnFunctionDeclarationWithinFunctionExpression1.ts │ │ ├── unusedLocalsOnFunctionDeclarationWithinFunctionExpression2.ts │ │ ├── unusedLocalsOnFunctionExpressionWithinFunctionDeclaration1.ts │ │ ├── unusedLocalsOnFunctionExpressionWithinFunctionDeclaration2.ts │ │ ├── unusedLocalsOnFunctionExpressionWithinFunctionExpression1.ts │ │ ├── unusedLocalsOnFunctionExpressionWithinFunctionExpression2.ts │ │ ├── unusedLocalsStartingWithUnderscore.ts │ │ ├── unusedLocalsinConstructor1.ts │ │ ├── unusedLocalsinConstructor2.ts │ │ ├── unusedMethodsInInterface.ts │ │ ├── unusedModuleInModule.ts │ │ ├── unusedMultipleParameter1InContructor.ts │ │ ├── unusedMultipleParameter1InFunctionExpression.ts │ │ ├── unusedMultipleParameter2InContructor.ts │ │ ├── unusedMultipleParameter2InFunctionExpression.ts │ │ ├── unusedMultipleParameters1InFunctionDeclaration.ts │ │ ├── unusedMultipleParameters1InMethodDeclaration.ts │ │ ├── unusedMultipleParameters2InFunctionDeclaration.ts │ │ ├── unusedMultipleParameters2InMethodDeclaration.ts │ │ ├── unusedNamespaceInModule.ts │ │ ├── unusedNamespaceInNamespace.ts │ │ ├── unusedParameterInCatchClause.ts │ │ ├── unusedParameterProperty1.ts │ │ ├── unusedParameterProperty2.ts │ │ ├── unusedParameterUsedInTypeOf.ts │ │ ├── unusedParametersInLambda1.ts │ │ ├── unusedParametersInLambda2.ts │ │ ├── unusedParametersThis.ts │ │ ├── unusedParametersWithUnderscore.ts │ │ ├── unusedParametersinConstructor1.ts │ │ ├── unusedParametersinConstructor2.ts │ │ ├── unusedParametersinConstructor3.ts │ │ ├── unusedPrivateMembers.ts │ │ ├── unusedPrivateMethodInClass1.ts │ │ ├── unusedPrivateMethodInClass2.ts │ │ ├── unusedPrivateMethodInClass3.ts │ │ ├── unusedPrivateMethodInClass4.ts │ │ ├── unusedPrivateStaticMembers.ts │ │ ├── unusedPrivateVariableInClass1.ts │ │ ├── unusedPrivateVariableInClass2.ts │ │ ├── unusedPrivateVariableInClass3.ts │ │ ├── unusedPrivateVariableInClass4.ts │ │ ├── unusedPrivateVariableInClass5.ts │ │ ├── unusedSemicolonInClass.ts │ │ ├── unusedSetterInClass.ts │ │ ├── unusedSetterInClass2.ts │ │ ├── unusedSingleParameterInContructor.ts │ │ ├── unusedSingleParameterInFunctionDeclaration.ts │ │ ├── unusedSingleParameterInFunctionExpression.ts │ │ ├── unusedSingleParameterInMethodDeclaration.ts │ │ ├── unusedSwitchStatement.ts │ │ ├── unusedTypeParameterInFunction1.ts │ │ ├── unusedTypeParameterInFunction2.ts │ │ ├── unusedTypeParameterInFunction3.ts │ │ ├── unusedTypeParameterInFunction4.ts │ │ ├── unusedTypeParameterInInterface1.ts │ │ ├── unusedTypeParameterInInterface2.ts │ │ ├── unusedTypeParameterInLambda1.ts │ │ ├── unusedTypeParameterInLambda2.ts │ │ ├── unusedTypeParameterInLambda3.ts │ │ ├── unusedTypeParameterInMethod1.ts │ │ ├── unusedTypeParameterInMethod2.ts │ │ ├── unusedTypeParameterInMethod3.ts │ │ ├── unusedTypeParameterInMethod4.ts │ │ ├── unusedTypeParameterInMethod5.ts │ │ ├── unusedTypeParameters1.ts │ │ ├── unusedTypeParameters10.ts │ │ ├── unusedTypeParameters2.ts │ │ ├── unusedTypeParameters3.ts │ │ ├── unusedTypeParameters4.ts │ │ ├── unusedTypeParameters5.ts │ │ ├── unusedTypeParameters6.ts │ │ ├── unusedTypeParameters7.ts │ │ ├── unusedTypeParameters8.ts │ │ ├── unusedTypeParameters9.ts │ │ ├── unusedTypeParametersCheckedByNoUnusedParameters.ts │ │ ├── unusedTypeParametersNotCheckedByNoUnusedLocals.ts │ │ ├── unusedTypeParametersWithUnderscore.ts │ │ ├── unusedTypeParameters_infer.ts │ │ ├── unusedTypeParameters_templateTag.ts │ │ ├── unusedTypeParameters_templateTag2.ts │ │ ├── unusedVariablesWithUnderscoreInBindingElement.ts │ │ ├── unusedVariablesWithUnderscoreInForOfLoop.ts │ │ ├── unusedVariablesinBlocks1.ts │ │ ├── unusedVariablesinBlocks2.ts │ │ ├── unusedVariablesinForLoop.ts │ │ ├── unusedVariablesinForLoop2.ts │ │ ├── unusedVariablesinForLoop3.ts │ │ ├── unusedVariablesinForLoop4.ts │ │ ├── unusedVariablesinModules1.ts │ │ ├── unusedVariablesinNamespaces1.ts │ │ ├── unusedVariablesinNamespaces2.ts │ │ ├── unusedVariablesinNamespaces3.ts │ │ ├── unwitnessedTypeParameterVariance.ts │ │ ├── useBeforeDeclaration.ts │ │ ├── useBeforeDeclaration_classDecorators.1.ts │ │ ├── useBeforeDeclaration_classDecorators.2.ts │ │ ├── useBeforeDeclaration_destructuring.ts │ │ ├── useBeforeDeclaration_jsx.tsx │ │ ├── useBeforeDeclaration_propertyAssignment.ts │ │ ├── useBeforeDeclaration_superClass.ts │ │ ├── useBeforeDefinitionInDeclarationFiles.ts │ │ ├── useDefineForClassFieldsFlagDefault.ts │ │ ├── useStrictLikePrologueString01.ts │ │ ├── useUnknownInCatchVariables01.ts │ │ ├── usedImportNotElidedInJs.ts │ │ ├── usingModuleWithExportImportInValuePosition.ts │ │ ├── validRegexp.ts │ │ ├── validUseOfThisInSuper.ts │ │ ├── valueOfTypedArray.ts │ │ ├── varAndFunctionShareName.ts │ │ ├── varArgConstructorMemberParameter.ts │ │ ├── varArgParamTypeCheck.ts │ │ ├── varArgWithNoParamName.ts │ │ ├── varArgsOnConstructorTypes.ts │ │ ├── varAsID.ts │ │ ├── varBlock.ts │ │ ├── varInFunctionInVarInitializer.ts │ │ ├── varNameConflictsWithImportInDifferentPartOfModule.ts │ │ ├── vararg.ts │ │ ├── vardecl.ts │ │ ├── variableDeclarationDeclarationEmitUniqueSymbolPartialStatement.ts │ │ ├── variableDeclarationInStrictMode1.ts │ │ ├── variableDeclarationInnerCommentEmit.ts │ │ ├── variableDeclarator1.ts │ │ ├── variableDeclaratorResolvedDuringContextualTyping.ts │ │ ├── varianceAnnotationValidation.ts │ │ ├── varianceCallbacksAndIndexedAccesses.ts │ │ ├── varianceCantBeStrictWhileStructureIsnt.ts │ │ ├── varianceMeasurement.ts │ │ ├── varianceProblingAndZeroOrderIndexSignatureRelationsAlign.ts │ │ ├── varianceProblingAndZeroOrderIndexSignatureRelationsAlign2.ts │ │ ├── variancePropagation.ts │ │ ├── varianceReferences.ts │ │ ├── varianceRepeatedlyPropegatesWithUnreliableFlag.ts │ │ ├── verbatim-declarations-parameters.ts │ │ ├── verbatimModuleSyntaxDefaultValue.ts │ │ ├── verbatimModuleSyntaxReactReference.ts │ │ ├── verifyDefaultLib_dom.ts │ │ ├── verifyDefaultLib_webworker.ts │ │ ├── visSyntax.ts │ │ ├── visibilityOfCrossModuleTypeUsage.ts │ │ ├── visibilityOfTypeParameters.ts │ │ ├── voidArrayLit.ts │ │ ├── voidAsNonAmbiguousReturnType.ts │ │ ├── voidAsOperator.ts │ │ ├── voidConstructor.ts │ │ ├── voidFunctionAssignmentCompat.ts │ │ ├── voidIsInitialized.ts │ │ ├── voidOperator1.ts │ │ ├── voidReturnIndexUnionInference.ts │ │ ├── voidReturnLambdaValue.ts │ │ ├── voidUndefinedReduction.ts │ │ ├── vueLikeDataAndPropsInference.ts │ │ ├── vueLikeDataAndPropsInference2.ts │ │ ├── weakType.ts │ │ ├── weakTypeAndPrimitiveNarrowing.ts │ │ ├── webworkerIterable.ts │ │ ├── wellKnownSymbolExpando.ts │ │ ├── whileStatementInnerComments.ts │ │ ├── widenToAny1.ts │ │ ├── widenToAny2.ts │ │ ├── widenedTypes.ts │ │ ├── widenedTypes1.ts │ │ ├── wideningWithTopLevelTypeParameter.ts │ │ ├── withExportDecl.ts │ │ ├── withImportDecl.ts │ │ ├── withStatement.ts │ │ ├── withStatementErrors.ts │ │ ├── withStatementInternalComments.ts │ │ ├── withStatementNestedScope.ts │ │ ├── wrappedIncovations1.ts │ │ ├── wrappedIncovations2.ts │ │ ├── wrappedRecursiveGenericType.ts │ │ ├── yieldExpression1.ts │ │ ├── yieldExpressionInFlowLoop.ts │ │ ├── yieldExpressionInnerCommentEmit.ts │ │ ├── yieldInForInInDownlevelGenerator.ts │ │ ├── yieldStarContextualType.ts │ │ └── yieldStringLiteral.ts │ ├── conformance/ │ │ ├── Symbols/ │ │ │ ├── ES5SymbolProperty1.ts │ │ │ ├── ES5SymbolProperty2.ts │ │ │ ├── ES5SymbolProperty3.ts │ │ │ ├── ES5SymbolProperty4.ts │ │ │ ├── ES5SymbolProperty5.ts │ │ │ ├── ES5SymbolProperty6.ts │ │ │ ├── ES5SymbolProperty7.ts │ │ │ └── ES5SymbolType1.ts │ │ ├── additionalChecks/ │ │ │ └── noPropertyAccessFromIndexSignature1.ts │ │ ├── ambient/ │ │ │ ├── ambientDeclarations.ts │ │ │ ├── ambientDeclarationsExternal.ts │ │ │ ├── ambientDeclarationsPatterns.ts │ │ │ ├── ambientDeclarationsPatterns_merging1.ts │ │ │ ├── ambientDeclarationsPatterns_merging2.ts │ │ │ ├── ambientDeclarationsPatterns_merging3.ts │ │ │ ├── ambientDeclarationsPatterns_tooManyAsterisks.ts │ │ │ ├── ambientEnumDeclaration1.ts │ │ │ ├── ambientEnumDeclaration2.ts │ │ │ ├── ambientErrors.ts │ │ │ ├── ambientExternalModuleInsideNonAmbient.ts │ │ │ ├── ambientExternalModuleInsideNonAmbientExternalModule.ts │ │ │ ├── ambientExternalModuleMerging.ts │ │ │ ├── ambientInsideNonAmbient.ts │ │ │ ├── ambientInsideNonAmbientExternalModule.ts │ │ │ ├── ambientModuleDeclarationWithReservedIdentifierInDottedPath.ts │ │ │ ├── ambientModuleDeclarationWithReservedIdentifierInDottedPath2.ts │ │ │ ├── ambientShorthand.ts │ │ │ ├── ambientShorthand_declarationEmit.ts │ │ │ ├── ambientShorthand_duplicate.ts │ │ │ ├── ambientShorthand_merging.ts │ │ │ └── ambientShorthand_reExport.ts │ │ ├── async/ │ │ │ ├── asyncFunctionDeclarationParameterEvaluation.ts │ │ │ ├── es2017/ │ │ │ │ ├── asyncArrowFunction/ │ │ │ │ │ ├── arrowFunctionWithParameterNameAsync_es2017.ts │ │ │ │ │ ├── asyncArrowFunction10_es2017.ts │ │ │ │ │ ├── asyncArrowFunction1_es2017.ts │ │ │ │ │ ├── asyncArrowFunction2_es2017.ts │ │ │ │ │ ├── asyncArrowFunction3_es2017.ts │ │ │ │ │ ├── asyncArrowFunction4_es2017.ts │ │ │ │ │ ├── asyncArrowFunction5_es2017.ts │ │ │ │ │ ├── asyncArrowFunction6_es2017.ts │ │ │ │ │ ├── asyncArrowFunction7_es2017.ts │ │ │ │ │ ├── asyncArrowFunction8_es2017.ts │ │ │ │ │ ├── asyncArrowFunction9_es2017.ts │ │ │ │ │ ├── asyncArrowFunctionCapturesArguments_es2017.ts │ │ │ │ │ ├── asyncArrowFunctionCapturesThis_es2017.ts │ │ │ │ │ ├── asyncArrowFunction_allowJs.ts │ │ │ │ │ └── asyncUnParenthesizedArrowFunction_es2017.ts │ │ │ │ ├── asyncAwaitIsolatedModules_es2017.ts │ │ │ │ ├── asyncAwait_es2017.ts │ │ │ │ ├── asyncMethodWithSuperConflict_es6.ts │ │ │ │ ├── asyncMethodWithSuper_es2017.ts │ │ │ │ ├── asyncUseStrict_es2017.ts │ │ │ │ ├── awaitBinaryExpression/ │ │ │ │ │ ├── awaitBinaryExpression1_es2017.ts │ │ │ │ │ ├── awaitBinaryExpression2_es2017.ts │ │ │ │ │ ├── awaitBinaryExpression3_es2017.ts │ │ │ │ │ ├── awaitBinaryExpression4_es2017.ts │ │ │ │ │ └── awaitBinaryExpression5_es2017.ts │ │ │ │ ├── awaitCallExpression/ │ │ │ │ │ ├── awaitCallExpression1_es2017.ts │ │ │ │ │ ├── awaitCallExpression2_es2017.ts │ │ │ │ │ ├── awaitCallExpression3_es2017.ts │ │ │ │ │ ├── awaitCallExpression4_es2017.ts │ │ │ │ │ ├── awaitCallExpression5_es2017.ts │ │ │ │ │ ├── awaitCallExpression6_es2017.ts │ │ │ │ │ ├── awaitCallExpression7_es2017.ts │ │ │ │ │ └── awaitCallExpression8_es2017.ts │ │ │ │ ├── awaitClassExpression_es2017.ts │ │ │ │ ├── awaitInheritedPromise_es2017.ts │ │ │ │ ├── await_incorrectThisType.ts │ │ │ │ ├── await_unaryExpression_es2017.ts │ │ │ │ ├── await_unaryExpression_es2017_1.ts │ │ │ │ ├── await_unaryExpression_es2017_2.ts │ │ │ │ ├── await_unaryExpression_es2017_3.ts │ │ │ │ └── functionDeclarations/ │ │ │ │ ├── asyncFunctionDeclaration10_es2017.ts │ │ │ │ ├── asyncFunctionDeclaration11_es2017.ts │ │ │ │ ├── asyncFunctionDeclaration12_es2017.ts │ │ │ │ ├── asyncFunctionDeclaration13_es2017.ts │ │ │ │ ├── asyncFunctionDeclaration14_es2017.ts │ │ │ │ ├── asyncFunctionDeclaration1_es2017.ts │ │ │ │ ├── asyncFunctionDeclaration2_es2017.ts │ │ │ │ ├── asyncFunctionDeclaration3_es2017.ts │ │ │ │ ├── asyncFunctionDeclaration4_es2017.ts │ │ │ │ ├── asyncFunctionDeclaration5_es2017.ts │ │ │ │ ├── asyncFunctionDeclaration6_es2017.ts │ │ │ │ ├── asyncFunctionDeclaration7_es2017.ts │ │ │ │ ├── asyncFunctionDeclaration8_es2017.ts │ │ │ │ └── asyncFunctionDeclaration9_es2017.ts │ │ │ ├── es5/ │ │ │ │ ├── asyncAliasReturnType_es5.ts │ │ │ │ ├── asyncArrowFunction/ │ │ │ │ │ ├── arrowFunctionWithParameterNameAsync_es5.ts │ │ │ │ │ ├── asyncArrowFunction10_es5.ts │ │ │ │ │ ├── asyncArrowFunction11_es5.ts │ │ │ │ │ ├── asyncArrowFunction1_es5.ts │ │ │ │ │ ├── asyncArrowFunction2_es5.ts │ │ │ │ │ ├── asyncArrowFunction3_es5.ts │ │ │ │ │ ├── asyncArrowFunction4_es5.ts │ │ │ │ │ ├── asyncArrowFunction5_es5.ts │ │ │ │ │ ├── asyncArrowFunction6_es5.ts │ │ │ │ │ ├── asyncArrowFunction7_es5.ts │ │ │ │ │ ├── asyncArrowFunction8_es5.ts │ │ │ │ │ ├── asyncArrowFunction9_es5.ts │ │ │ │ │ ├── asyncArrowFunctionCapturesArguments_es5.ts │ │ │ │ │ ├── asyncArrowFunctionCapturesThis_es5.ts │ │ │ │ │ └── asyncUnParenthesizedArrowFunction_es5.ts │ │ │ │ ├── asyncAwaitIsolatedModules_es5.ts │ │ │ │ ├── asyncAwaitNestedClasses_es5.ts │ │ │ │ ├── asyncAwait_es5.ts │ │ │ │ ├── asyncClass_es5.ts │ │ │ │ ├── asyncConstructor_es5.ts │ │ │ │ ├── asyncDeclare_es5.ts │ │ │ │ ├── asyncEnum_es5.ts │ │ │ │ ├── asyncGetter_es5.ts │ │ │ │ ├── asyncImportedPromise_es5.ts │ │ │ │ ├── asyncInterface_es5.ts │ │ │ │ ├── asyncMethodWithSuper_es5.ts │ │ │ │ ├── asyncModule_es5.ts │ │ │ │ ├── asyncMultiFile_es5.ts │ │ │ │ ├── asyncQualifiedReturnType_es5.ts │ │ │ │ ├── asyncSetter_es5.ts │ │ │ │ ├── asyncUseStrict_es5.ts │ │ │ │ ├── awaitBinaryExpression/ │ │ │ │ │ ├── awaitBinaryExpression1_es5.ts │ │ │ │ │ ├── awaitBinaryExpression2_es5.ts │ │ │ │ │ ├── awaitBinaryExpression3_es5.ts │ │ │ │ │ ├── awaitBinaryExpression4_es5.ts │ │ │ │ │ └── awaitBinaryExpression5_es5.ts │ │ │ │ ├── awaitCallExpression/ │ │ │ │ │ ├── awaitCallExpression1_es5.ts │ │ │ │ │ ├── awaitCallExpression2_es5.ts │ │ │ │ │ ├── awaitCallExpression3_es5.ts │ │ │ │ │ ├── awaitCallExpression4_es5.ts │ │ │ │ │ ├── awaitCallExpression5_es5.ts │ │ │ │ │ ├── awaitCallExpression6_es5.ts │ │ │ │ │ ├── awaitCallExpression7_es5.ts │ │ │ │ │ └── awaitCallExpression8_es5.ts │ │ │ │ ├── awaitClassExpression_es5.ts │ │ │ │ ├── awaitUnion_es5.ts │ │ │ │ └── functionDeclarations/ │ │ │ │ ├── asyncFunctionDeclaration10_es5.ts │ │ │ │ ├── asyncFunctionDeclaration11_es5.ts │ │ │ │ ├── asyncFunctionDeclaration12_es5.ts │ │ │ │ ├── asyncFunctionDeclaration13_es5.ts │ │ │ │ ├── asyncFunctionDeclaration14_es5.ts │ │ │ │ ├── asyncFunctionDeclaration15_es5.ts │ │ │ │ ├── asyncFunctionDeclaration16_es5.ts │ │ │ │ ├── asyncFunctionDeclaration1_es5.ts │ │ │ │ ├── asyncFunctionDeclaration2_es5.ts │ │ │ │ ├── asyncFunctionDeclaration3_es5.ts │ │ │ │ ├── asyncFunctionDeclaration4_es5.ts │ │ │ │ ├── asyncFunctionDeclaration5_es5.ts │ │ │ │ ├── asyncFunctionDeclaration6_es5.ts │ │ │ │ ├── asyncFunctionDeclaration7_es5.ts │ │ │ │ ├── asyncFunctionDeclaration8_es5.ts │ │ │ │ ├── asyncFunctionDeclaration9_es5.ts │ │ │ │ └── asyncFunctionDeclarationCapturesArguments_es5.ts │ │ │ └── es6/ │ │ │ ├── asyncAliasReturnType_es6.ts │ │ │ ├── asyncArrowFunction/ │ │ │ │ ├── arrowFunctionWithParameterNameAsync_es6.ts │ │ │ │ ├── asyncArrowFunction10_es6.ts │ │ │ │ ├── asyncArrowFunction1_es6.ts │ │ │ │ ├── asyncArrowFunction2_es6.ts │ │ │ │ ├── asyncArrowFunction3_es6.ts │ │ │ │ ├── asyncArrowFunction4_es6.ts │ │ │ │ ├── asyncArrowFunction5_es6.ts │ │ │ │ ├── asyncArrowFunction6_es6.ts │ │ │ │ ├── asyncArrowFunction7_es6.ts │ │ │ │ ├── asyncArrowFunction8_es6.ts │ │ │ │ ├── asyncArrowFunction9_es6.ts │ │ │ │ ├── asyncArrowFunctionCapturesArguments_es6.ts │ │ │ │ ├── asyncArrowFunctionCapturesThis_es6.ts │ │ │ │ └── asyncUnParenthesizedArrowFunction_es6.ts │ │ │ ├── asyncAwaitIsolatedModules_es6.ts │ │ │ ├── asyncAwait_es6.ts │ │ │ ├── asyncClass_es6.ts │ │ │ ├── asyncConstructor_es6.ts │ │ │ ├── asyncDeclare_es6.ts │ │ │ ├── asyncEnum_es6.ts │ │ │ ├── asyncGetter_es6.ts │ │ │ ├── asyncImportedPromise_es6.ts │ │ │ ├── asyncInterface_es6.ts │ │ │ ├── asyncMethodWithSuper_es6.ts │ │ │ ├── asyncModule_es6.ts │ │ │ ├── asyncMultiFile_es6.ts │ │ │ ├── asyncQualifiedReturnType_es6.ts │ │ │ ├── asyncSetter_es6.ts │ │ │ ├── asyncUseStrict_es6.ts │ │ │ ├── asyncWithVarShadowing_es6.ts │ │ │ ├── awaitBinaryExpression/ │ │ │ │ ├── awaitBinaryExpression1_es6.ts │ │ │ │ ├── awaitBinaryExpression2_es6.ts │ │ │ │ ├── awaitBinaryExpression3_es6.ts │ │ │ │ ├── awaitBinaryExpression4_es6.ts │ │ │ │ └── awaitBinaryExpression5_es6.ts │ │ │ ├── awaitCallExpression/ │ │ │ │ ├── awaitCallExpression1_es6.ts │ │ │ │ ├── awaitCallExpression2_es6.ts │ │ │ │ ├── awaitCallExpression3_es6.ts │ │ │ │ ├── awaitCallExpression4_es6.ts │ │ │ │ ├── awaitCallExpression5_es6.ts │ │ │ │ ├── awaitCallExpression6_es6.ts │ │ │ │ ├── awaitCallExpression7_es6.ts │ │ │ │ └── awaitCallExpression8_es6.ts │ │ │ ├── awaitClassExpression_es6.ts │ │ │ ├── awaitUnion_es6.ts │ │ │ ├── await_unaryExpression_es6.ts │ │ │ ├── await_unaryExpression_es6_1.ts │ │ │ ├── await_unaryExpression_es6_2.ts │ │ │ ├── await_unaryExpression_es6_3.ts │ │ │ └── functionDeclarations/ │ │ │ ├── asyncFunctionDeclaration10_es6.ts │ │ │ ├── asyncFunctionDeclaration11_es6.ts │ │ │ ├── asyncFunctionDeclaration12_es6.ts │ │ │ ├── asyncFunctionDeclaration13_es6.ts │ │ │ ├── asyncFunctionDeclaration14_es6.ts │ │ │ ├── asyncFunctionDeclaration15_es6.ts │ │ │ ├── asyncFunctionDeclaration1_es6.ts │ │ │ ├── asyncFunctionDeclaration2_es6.ts │ │ │ ├── asyncFunctionDeclaration3_es6.ts │ │ │ ├── asyncFunctionDeclaration4_es6.ts │ │ │ ├── asyncFunctionDeclaration5_es6.ts │ │ │ ├── asyncFunctionDeclaration6_es6.ts │ │ │ ├── asyncFunctionDeclaration7_es6.ts │ │ │ ├── asyncFunctionDeclaration8_es6.ts │ │ │ ├── asyncFunctionDeclaration9_es6.ts │ │ │ └── asyncOrYieldAsBindingIdentifier1.ts │ │ ├── asyncGenerators/ │ │ │ ├── asyncGeneratorGenericNonWrappedReturn.ts │ │ │ ├── asyncGeneratorParameterEvaluation.ts │ │ │ └── asyncGeneratorPromiseNextType.ts │ │ ├── classes/ │ │ │ ├── awaitAndYieldInProperty.ts │ │ │ ├── classDeclarations/ │ │ │ │ ├── classAbstractKeyword/ │ │ │ │ │ ├── classAbstractAccessor.ts │ │ │ │ │ ├── classAbstractAsIdentifier.ts │ │ │ │ │ ├── classAbstractAssignabilityConstructorFunction.ts │ │ │ │ │ ├── classAbstractClinterfaceAssignability.ts │ │ │ │ │ ├── classAbstractConstructor.ts │ │ │ │ │ ├── classAbstractConstructorAssignability.ts │ │ │ │ │ ├── classAbstractCrashedOnce.ts │ │ │ │ │ ├── classAbstractDeclarations.d.ts │ │ │ │ │ ├── classAbstractExtends.ts │ │ │ │ │ ├── classAbstractFactoryFunction.ts │ │ │ │ │ ├── classAbstractGeneric.ts │ │ │ │ │ ├── classAbstractImportInstantiation.ts │ │ │ │ │ ├── classAbstractInAModule.ts │ │ │ │ │ ├── classAbstractInheritance1.ts │ │ │ │ │ ├── classAbstractInheritance2.ts │ │ │ │ │ ├── classAbstractInstantiations1.ts │ │ │ │ │ ├── classAbstractInstantiations2.ts │ │ │ │ │ ├── classAbstractManyKeywords.ts │ │ │ │ │ ├── classAbstractMergedDeclaration.ts │ │ │ │ │ ├── classAbstractMethodInNonAbstractClass.ts │ │ │ │ │ ├── classAbstractMethodWithImplementation.ts │ │ │ │ │ ├── classAbstractMixedWithModifiers.ts │ │ │ │ │ ├── classAbstractOverloads.ts │ │ │ │ │ ├── classAbstractOverrideWithAbstract.ts │ │ │ │ │ ├── classAbstractProperties.ts │ │ │ │ │ ├── classAbstractSingleLineDecl.ts │ │ │ │ │ ├── classAbstractSuperCalls.ts │ │ │ │ │ ├── classAbstractUsingAbstractMethod1.ts │ │ │ │ │ ├── classAbstractUsingAbstractMethods2.ts │ │ │ │ │ └── classAbstractWithInterface.ts │ │ │ │ ├── classAndInterfaceMerge.d.ts │ │ │ │ ├── classAndInterfaceMergeConflictingMembers.ts │ │ │ │ ├── classAndInterfaceWithSameName.ts │ │ │ │ ├── classAndVariableWithSameName.ts │ │ │ │ ├── classBody/ │ │ │ │ │ ├── classBodyWithStatements.ts │ │ │ │ │ └── classWithEmptyBody.ts │ │ │ │ ├── classDeclarationLoop.ts │ │ │ │ ├── classExtendingBuiltinType.ts │ │ │ │ ├── classExtendingClassLikeType.ts │ │ │ │ ├── classExtendingNonConstructor.ts │ │ │ │ ├── classExtendingNull.ts │ │ │ │ ├── classHeritageSpecification/ │ │ │ │ │ ├── classAppearsToHaveMembersOfObject.ts │ │ │ │ │ ├── classExtendingClass.ts │ │ │ │ │ ├── classExtendingOptionalChain.ts │ │ │ │ │ ├── classExtendingPrimitive.ts │ │ │ │ │ ├── classExtendingPrimitive2.ts │ │ │ │ │ ├── classExtendsEveryObjectType.ts │ │ │ │ │ ├── classExtendsEveryObjectType2.ts │ │ │ │ │ ├── classExtendsItself.ts │ │ │ │ │ ├── classExtendsItselfIndirectly.ts │ │ │ │ │ ├── classExtendsItselfIndirectly2.ts │ │ │ │ │ ├── classExtendsItselfIndirectly3.ts │ │ │ │ │ ├── classExtendsShadowedConstructorFunction.ts │ │ │ │ │ ├── classExtendsValidConstructorFunction.ts │ │ │ │ │ ├── classIsSubtypeOfBaseType.ts │ │ │ │ │ ├── constructorFunctionTypeIsAssignableToBaseType.ts │ │ │ │ │ ├── constructorFunctionTypeIsAssignableToBaseType2.ts │ │ │ │ │ └── derivedTypeDoesNotRequireExtendsClause.ts │ │ │ │ ├── classImplementsMergedClassInterface.ts │ │ │ │ ├── classInsideBlock.ts │ │ │ │ ├── classWithPredefinedTypesAsNames.ts │ │ │ │ ├── classWithPredefinedTypesAsNames2.ts │ │ │ │ ├── classWithSemicolonClassElement1.ts │ │ │ │ ├── classWithSemicolonClassElement2.ts │ │ │ │ ├── declaredClassMergedwithSelf.ts │ │ │ │ ├── mergeClassInterfaceAndModule.ts │ │ │ │ ├── mergedClassInterface.ts │ │ │ │ ├── mergedInheritedClassInterface.ts │ │ │ │ └── modifierOnClassDeclarationMemberInFunction.ts │ │ │ ├── classExpression.ts │ │ │ ├── classExpressions/ │ │ │ │ ├── classExpression1.ts │ │ │ │ ├── classExpression2.ts │ │ │ │ ├── classExpression3.ts │ │ │ │ ├── classExpression4.ts │ │ │ │ ├── classExpression5.ts │ │ │ │ ├── classExpressionLoop.ts │ │ │ │ ├── classWithStaticFieldInParameterBindingPattern.2.ts │ │ │ │ ├── classWithStaticFieldInParameterBindingPattern.3.ts │ │ │ │ ├── classWithStaticFieldInParameterBindingPattern.ts │ │ │ │ ├── classWithStaticFieldInParameterInitializer.2.ts │ │ │ │ ├── classWithStaticFieldInParameterInitializer.3.ts │ │ │ │ ├── classWithStaticFieldInParameterInitializer.ts │ │ │ │ ├── extendClassExpressionFromModule.ts │ │ │ │ ├── genericClassExpressionInFunction.ts │ │ │ │ └── modifierOnClassExpressionMemberInFunction.ts │ │ │ ├── classStaticBlock/ │ │ │ │ ├── classStaticBlock1.ts │ │ │ │ ├── classStaticBlock10.ts │ │ │ │ ├── classStaticBlock11.ts │ │ │ │ ├── classStaticBlock12.ts │ │ │ │ ├── classStaticBlock13.ts │ │ │ │ ├── classStaticBlock14.ts │ │ │ │ ├── classStaticBlock15.ts │ │ │ │ ├── classStaticBlock16.ts │ │ │ │ ├── classStaticBlock17.ts │ │ │ │ ├── classStaticBlock18.ts │ │ │ │ ├── classStaticBlock19.ts │ │ │ │ ├── classStaticBlock2.ts │ │ │ │ ├── classStaticBlock20.ts │ │ │ │ ├── classStaticBlock21.ts │ │ │ │ ├── classStaticBlock22.ts │ │ │ │ ├── classStaticBlock23.ts │ │ │ │ ├── classStaticBlock24.ts │ │ │ │ ├── classStaticBlock25.ts │ │ │ │ ├── classStaticBlock26.ts │ │ │ │ ├── classStaticBlock27.ts │ │ │ │ ├── classStaticBlock28.ts │ │ │ │ ├── classStaticBlock3.ts │ │ │ │ ├── classStaticBlock4.ts │ │ │ │ ├── classStaticBlock5.ts │ │ │ │ ├── classStaticBlock6.ts │ │ │ │ ├── classStaticBlock7.ts │ │ │ │ ├── classStaticBlock8.ts │ │ │ │ ├── classStaticBlock9.ts │ │ │ │ ├── classStaticBlockUseBeforeDef1.ts │ │ │ │ ├── classStaticBlockUseBeforeDef2.ts │ │ │ │ ├── classStaticBlockUseBeforeDef3.ts │ │ │ │ ├── classStaticBlockUseBeforeDef4.ts │ │ │ │ └── classStaticBlockUseBeforeDef5.ts │ │ │ ├── constructorDeclarations/ │ │ │ │ ├── automaticConstructors/ │ │ │ │ │ ├── classWithoutExplicitConstructor.ts │ │ │ │ │ ├── derivedClassWithoutExplicitConstructor.ts │ │ │ │ │ ├── derivedClassWithoutExplicitConstructor2.ts │ │ │ │ │ └── derivedClassWithoutExplicitConstructor3.ts │ │ │ │ ├── classConstructorAccessibility.ts │ │ │ │ ├── classConstructorAccessibility2.ts │ │ │ │ ├── classConstructorAccessibility3.ts │ │ │ │ ├── classConstructorAccessibility4.ts │ │ │ │ ├── classConstructorAccessibility5.ts │ │ │ │ ├── classConstructorOverloadsAccessibility.ts │ │ │ │ ├── classConstructorParametersAccessibility.ts │ │ │ │ ├── classConstructorParametersAccessibility2.ts │ │ │ │ ├── classConstructorParametersAccessibility3.ts │ │ │ │ ├── classWithTwoConstructorDefinitions.ts │ │ │ │ ├── constructorParameters/ │ │ │ │ │ ├── constructorDefaultValuesReferencingThis.ts │ │ │ │ │ ├── constructorImplementationWithDefaultValues.ts │ │ │ │ │ ├── constructorImplementationWithDefaultValues2.ts │ │ │ │ │ ├── constructorOverloadsWithDefaultValues.ts │ │ │ │ │ ├── constructorOverloadsWithOptionalParameters.ts │ │ │ │ │ ├── constructorParameterProperties.ts │ │ │ │ │ ├── constructorParameterProperties2.ts │ │ │ │ │ ├── declarationEmitReadonly.ts │ │ │ │ │ ├── readonlyConstructorAssignment.ts │ │ │ │ │ ├── readonlyInAmbientClass.ts │ │ │ │ │ ├── readonlyInConstructorParameters.ts │ │ │ │ │ └── readonlyReadonly.ts │ │ │ │ ├── constructorWithAssignableReturnExpression.ts │ │ │ │ ├── constructorWithExpressionLessReturn.ts │ │ │ │ ├── quotedConstructors.ts │ │ │ │ └── superCalls/ │ │ │ │ ├── derivedClassConstructorWithoutSuperCall.ts │ │ │ │ ├── derivedClassParameterProperties.ts │ │ │ │ ├── derivedClassSuperCallsInNonConstructorMembers.ts │ │ │ │ ├── derivedClassSuperCallsWithThisArg.ts │ │ │ │ ├── derivedClassSuperProperties.ts │ │ │ │ ├── derivedClassSuperStatementPosition.ts │ │ │ │ ├── emitStatementsBeforeSuperCall.ts │ │ │ │ ├── emitStatementsBeforeSuperCallWithDefineFields.ts │ │ │ │ ├── superCallInConstructorWithNoBaseType.ts │ │ │ │ └── superPropertyInConstructorBeforeSuperCall.ts │ │ │ ├── indexMemberDeclarations/ │ │ │ │ ├── privateIndexer.ts │ │ │ │ ├── privateIndexer2.ts │ │ │ │ ├── publicIndexer.ts │ │ │ │ └── staticIndexers.ts │ │ │ ├── members/ │ │ │ │ ├── accessibility/ │ │ │ │ │ ├── classPropertyAsPrivate.ts │ │ │ │ │ ├── classPropertyAsProtected.ts │ │ │ │ │ ├── classPropertyIsPublicByDefault.ts │ │ │ │ │ ├── privateClassPropertyAccessibleWithinClass.ts │ │ │ │ │ ├── privateClassPropertyAccessibleWithinNestedClass.ts │ │ │ │ │ ├── privateInstanceMemberAccessibility.ts │ │ │ │ │ ├── privateProtectedMembersAreNotAccessibleDestructuring.ts │ │ │ │ │ ├── privateStaticMemberAccessibility.ts │ │ │ │ │ ├── privateStaticNotAccessibleInClodule.ts │ │ │ │ │ ├── privateStaticNotAccessibleInClodule2.ts │ │ │ │ │ ├── protectedClassPropertyAccessibleWithinClass.ts │ │ │ │ │ ├── protectedClassPropertyAccessibleWithinNestedClass.ts │ │ │ │ │ ├── protectedClassPropertyAccessibleWithinNestedSubclass.ts │ │ │ │ │ ├── protectedClassPropertyAccessibleWithinNestedSubclass1.ts │ │ │ │ │ ├── protectedClassPropertyAccessibleWithinSubclass.ts │ │ │ │ │ ├── protectedClassPropertyAccessibleWithinSubclass2.ts │ │ │ │ │ ├── protectedClassPropertyAccessibleWithinSubclass3.ts │ │ │ │ │ ├── protectedInstanceMemberAccessibility.ts │ │ │ │ │ ├── protectedStaticClassPropertyAccessibleWithinSubclass.ts │ │ │ │ │ ├── protectedStaticClassPropertyAccessibleWithinSubclass2.ts │ │ │ │ │ └── protectedStaticNotAccessibleInClodule.ts │ │ │ │ ├── classTypes/ │ │ │ │ │ ├── genericSetterInClassType.ts │ │ │ │ │ ├── genericSetterInClassTypeJsDoc.ts │ │ │ │ │ ├── indexersInClassType.ts │ │ │ │ │ ├── instancePropertiesInheritedIntoClassType.ts │ │ │ │ │ ├── instancePropertyInClassType.ts │ │ │ │ │ └── staticPropertyNotInClassType.ts │ │ │ │ ├── constructorFunctionTypes/ │ │ │ │ │ ├── classWithBaseClassButNoConstructor.ts │ │ │ │ │ ├── classWithConstructors.ts │ │ │ │ │ ├── classWithNoConstructorOrBaseClass.ts │ │ │ │ │ ├── classWithStaticMembers.ts │ │ │ │ │ └── constructorHasPrototypeProperty.ts │ │ │ │ ├── inheritanceAndOverriding/ │ │ │ │ │ ├── derivedClassFunctionOverridesBaseClassAccessor.ts │ │ │ │ │ ├── derivedClassIncludesInheritedMembers.ts │ │ │ │ │ ├── derivedClassOverridesIndexersWithAssignmentCompatibility.ts │ │ │ │ │ ├── derivedClassOverridesPrivates.ts │ │ │ │ │ ├── derivedClassOverridesProtectedMembers.ts │ │ │ │ │ ├── derivedClassOverridesProtectedMembers2.ts │ │ │ │ │ ├── derivedClassOverridesProtectedMembers3.ts │ │ │ │ │ ├── derivedClassOverridesProtectedMembers4.ts │ │ │ │ │ ├── derivedClassOverridesPublicMembers.ts │ │ │ │ │ ├── derivedClassOverridesWithoutSubtype.ts │ │ │ │ │ ├── derivedClassTransitivity.ts │ │ │ │ │ ├── derivedClassTransitivity2.ts │ │ │ │ │ ├── derivedClassTransitivity3.ts │ │ │ │ │ ├── derivedClassTransitivity4.ts │ │ │ │ │ ├── derivedClassWithAny.ts │ │ │ │ │ ├── derivedClassWithPrivateInstanceShadowingProtectedInstance.ts │ │ │ │ │ ├── derivedClassWithPrivateInstanceShadowingPublicInstance.ts │ │ │ │ │ ├── derivedClassWithPrivateStaticShadowingProtectedStatic.ts │ │ │ │ │ ├── derivedClassWithPrivateStaticShadowingPublicStatic.ts │ │ │ │ │ └── derivedGenericClassWithAny.ts │ │ │ │ ├── instanceAndStaticMembers/ │ │ │ │ │ ├── superInStaticMembers1.ts │ │ │ │ │ ├── thisAndSuperInStaticMembers1.ts │ │ │ │ │ ├── thisAndSuperInStaticMembers2.ts │ │ │ │ │ ├── thisAndSuperInStaticMembers3.ts │ │ │ │ │ ├── thisAndSuperInStaticMembers4.ts │ │ │ │ │ ├── typeOfThisInInstanceMember.ts │ │ │ │ │ ├── typeOfThisInInstanceMember2.ts │ │ │ │ │ ├── typeOfThisInStaticMembers.ts │ │ │ │ │ ├── typeOfThisInStaticMembers10.ts │ │ │ │ │ ├── typeOfThisInStaticMembers11.ts │ │ │ │ │ ├── typeOfThisInStaticMembers12.ts │ │ │ │ │ ├── typeOfThisInStaticMembers13.ts │ │ │ │ │ ├── typeOfThisInStaticMembers2.ts │ │ │ │ │ ├── typeOfThisInStaticMembers3.ts │ │ │ │ │ ├── typeOfThisInStaticMembers4.ts │ │ │ │ │ ├── typeOfThisInStaticMembers5.ts │ │ │ │ │ ├── typeOfThisInStaticMembers6.ts │ │ │ │ │ ├── typeOfThisInStaticMembers7.ts │ │ │ │ │ ├── typeOfThisInStaticMembers8.ts │ │ │ │ │ ├── typeOfThisInStaticMembers9.ts │ │ │ │ │ └── typeOfThisInstanceMemberNarrowedWithLoopAntecedent.ts │ │ │ │ └── privateNames/ │ │ │ │ ├── privateNameAccessors.ts │ │ │ │ ├── privateNameAccessorsAccess.ts │ │ │ │ ├── privateNameAccessorsCallExpression.ts │ │ │ │ ├── privateNameAccessorssDerivedClasses.ts │ │ │ │ ├── privateNameAmbientNoImplicitAny.ts │ │ │ │ ├── privateNameAndAny.ts │ │ │ │ ├── privateNameAndIndexSignature.ts │ │ │ │ ├── privateNameAndObjectRestSpread.ts │ │ │ │ ├── privateNameAndPropertySignature.ts │ │ │ │ ├── privateNameAndStaticInitializer.ts │ │ │ │ ├── privateNameBadAssignment.ts │ │ │ │ ├── privateNameBadDeclaration.ts │ │ │ │ ├── privateNameBadSuper.ts │ │ │ │ ├── privateNameBadSuperUseDefineForClassFields.ts │ │ │ │ ├── privateNameCircularReference.ts │ │ │ │ ├── privateNameClassExpressionLoop.ts │ │ │ │ ├── privateNameComputedPropertyName1.ts │ │ │ │ ├── privateNameComputedPropertyName2.ts │ │ │ │ ├── privateNameComputedPropertyName3.ts │ │ │ │ ├── privateNameComputedPropertyName4.ts │ │ │ │ ├── privateNameConstructorReserved.ts │ │ │ │ ├── privateNameConstructorSignature.ts │ │ │ │ ├── privateNameDeclaration.ts │ │ │ │ ├── privateNameDeclarationMerging.ts │ │ │ │ ├── privateNameDuplicateField.ts │ │ │ │ ├── privateNameES5Ban.ts │ │ │ │ ├── privateNameEmitHelpers.ts │ │ │ │ ├── privateNameEnum.ts │ │ │ │ ├── privateNameField.ts │ │ │ │ ├── privateNameFieldAccess.ts │ │ │ │ ├── privateNameFieldAssignment.ts │ │ │ │ ├── privateNameFieldCallExpression.ts │ │ │ │ ├── privateNameFieldClassExpression.ts │ │ │ │ ├── privateNameFieldDerivedClasses.ts │ │ │ │ ├── privateNameFieldDestructuredBinding.ts │ │ │ │ ├── privateNameFieldInitializer.ts │ │ │ │ ├── privateNameFieldParenthesisLeftAssignment.ts │ │ │ │ ├── privateNameFieldUnaryMutation.ts │ │ │ │ ├── privateNameFieldsESNext.ts │ │ │ │ ├── privateNameHashCharName.ts │ │ │ │ ├── privateNameImplicitDeclaration.ts │ │ │ │ ├── privateNameInInExpression.ts │ │ │ │ ├── privateNameInInExpressionTransform.ts │ │ │ │ ├── privateNameInInExpressionUnused.ts │ │ │ │ ├── privateNameInLhsReceiverExpression.ts │ │ │ │ ├── privateNameInObjectLiteral-1.ts │ │ │ │ ├── privateNameInObjectLiteral-2.ts │ │ │ │ ├── privateNameInObjectLiteral-3.ts │ │ │ │ ├── privateNameJsBadAssignment.ts │ │ │ │ ├── privateNameJsBadDeclaration.ts │ │ │ │ ├── privateNameLateSuper.ts │ │ │ │ ├── privateNameLateSuperUseDefineForClassFields.ts │ │ │ │ ├── privateNameMethod.ts │ │ │ │ ├── privateNameMethodAccess.ts │ │ │ │ ├── privateNameMethodAssignment.ts │ │ │ │ ├── privateNameMethodAsync.ts │ │ │ │ ├── privateNameMethodCallExpression.ts │ │ │ │ ├── privateNameMethodClassExpression.ts │ │ │ │ ├── privateNameMethodInStaticFieldInit.ts │ │ │ │ ├── privateNameMethodsDerivedClasses.ts │ │ │ │ ├── privateNameNestedClassAccessorsShadowing.ts │ │ │ │ ├── privateNameNestedClassFieldShadowing.ts │ │ │ │ ├── privateNameNestedClassMethodShadowing.ts │ │ │ │ ├── privateNameNestedClassNameConflict.ts │ │ │ │ ├── privateNameNestedMethodAccess.ts │ │ │ │ ├── privateNameNotAccessibleOutsideDefiningClass.ts │ │ │ │ ├── privateNameNotAllowedOutsideClass.ts │ │ │ │ ├── privateNameReadonly.ts │ │ │ │ ├── privateNameSetterExprReturnValue.ts │ │ │ │ ├── privateNameSetterNoGetter.ts │ │ │ │ ├── privateNameStaticAccessors.ts │ │ │ │ ├── privateNameStaticAccessorsAccess.ts │ │ │ │ ├── privateNameStaticAccessorsCallExpression.ts │ │ │ │ ├── privateNameStaticAccessorssDerivedClasses.ts │ │ │ │ ├── privateNameStaticAndStaticInitializer.ts │ │ │ │ ├── privateNameStaticEmitHelpers.ts │ │ │ │ ├── privateNameStaticFieldAccess.ts │ │ │ │ ├── privateNameStaticFieldAssignment.ts │ │ │ │ ├── privateNameStaticFieldCallExpression.ts │ │ │ │ ├── privateNameStaticFieldClassExpression.ts │ │ │ │ ├── privateNameStaticFieldDerivedClasses.ts │ │ │ │ ├── privateNameStaticFieldDestructuredBinding.ts │ │ │ │ ├── privateNameStaticFieldInitializer.ts │ │ │ │ ├── privateNameStaticFieldNoInitializer.ts │ │ │ │ ├── privateNameStaticFieldUnaryMutation.ts │ │ │ │ ├── privateNameStaticMethod.ts │ │ │ │ ├── privateNameStaticMethodAssignment.ts │ │ │ │ ├── privateNameStaticMethodAsync.ts │ │ │ │ ├── privateNameStaticMethodCallExpression.ts │ │ │ │ ├── privateNameStaticMethodClassExpression.ts │ │ │ │ ├── privateNameStaticMethodInStaticFieldInit.ts │ │ │ │ ├── privateNameStaticsAndStaticMethods.ts │ │ │ │ ├── privateNameUncheckedJsOptionalChain.ts │ │ │ │ ├── privateNameUnused.ts │ │ │ │ ├── privateNameWhenNotUseDefineForClassFieldsInEsNext.ts │ │ │ │ ├── privateNamesAndDecorators.ts │ │ │ │ ├── privateNamesAndFields.ts │ │ │ │ ├── privateNamesAndGenericClasses-2.ts │ │ │ │ ├── privateNamesAndIndexedAccess.ts │ │ │ │ ├── privateNamesAndMethods.ts │ │ │ │ ├── privateNamesAndStaticFields.ts │ │ │ │ ├── privateNamesAndStaticMethods.ts │ │ │ │ ├── privateNamesAndkeyof.ts │ │ │ │ ├── privateNamesAssertion.ts │ │ │ │ ├── privateNamesConstructorChain-1.ts │ │ │ │ ├── privateNamesConstructorChain-2.ts │ │ │ │ ├── privateNamesInGenericClasses.ts │ │ │ │ ├── privateNamesInNestedClasses-1.ts │ │ │ │ ├── privateNamesInNestedClasses-2.ts │ │ │ │ ├── privateNamesIncompatibleModifiers.ts │ │ │ │ ├── privateNamesIncompatibleModifiersJs.ts │ │ │ │ ├── privateNamesInterfaceExtendingClass.ts │ │ │ │ ├── privateNamesNoDelete.ts │ │ │ │ ├── privateNamesNotAllowedAsParameters.ts │ │ │ │ ├── privateNamesNotAllowedInVariableDeclarations.ts │ │ │ │ ├── privateNamesUnique-1.ts │ │ │ │ ├── privateNamesUnique-2.ts │ │ │ │ ├── privateNamesUnique-3.ts │ │ │ │ ├── privateNamesUnique-4.ts │ │ │ │ ├── privateNamesUnique-5.ts │ │ │ │ ├── privateNamesUseBeforeDef.ts │ │ │ │ ├── privateStaticNameShadowing.ts │ │ │ │ ├── privateWriteOnlyAccessorRead.ts │ │ │ │ ├── typeFromPrivatePropertyAssignment.ts │ │ │ │ └── typeFromPrivatePropertyAssignmentJs.ts │ │ │ ├── methodDeclarations/ │ │ │ │ └── optionalMethodDeclarations.ts │ │ │ ├── mixinAbstractClasses.2.ts │ │ │ ├── mixinAbstractClasses.ts │ │ │ ├── mixinAbstractClassesReturnTypeInference.ts │ │ │ ├── mixinAccessModifiers.ts │ │ │ ├── mixinAccessors1.ts │ │ │ ├── mixinAccessors2.ts │ │ │ ├── mixinAccessors3.ts │ │ │ ├── mixinAccessors4.ts │ │ │ ├── mixinAccessors5.ts │ │ │ ├── mixinClassesAnnotated.ts │ │ │ ├── mixinClassesAnonymous.ts │ │ │ ├── mixinClassesMembers.ts │ │ │ ├── mixinWithBaseDependingOnSelfNoCrash1.ts │ │ │ ├── nestedClassDeclaration.ts │ │ │ ├── propertyMemberDeclarations/ │ │ │ │ ├── abstractProperty.ts │ │ │ │ ├── abstractPropertyInitializer.ts │ │ │ │ ├── accessibilityModifiers.ts │ │ │ │ ├── accessorsOverrideMethod.ts │ │ │ │ ├── accessorsOverrideProperty.ts │ │ │ │ ├── accessorsOverrideProperty10.ts │ │ │ │ ├── accessorsOverrideProperty2.ts │ │ │ │ ├── accessorsOverrideProperty3.ts │ │ │ │ ├── accessorsOverrideProperty4.ts │ │ │ │ ├── accessorsOverrideProperty5.ts │ │ │ │ ├── accessorsOverrideProperty6.ts │ │ │ │ ├── accessorsOverrideProperty7.ts │ │ │ │ ├── accessorsOverrideProperty8.ts │ │ │ │ ├── accessorsOverrideProperty9.ts │ │ │ │ ├── assignParameterPropertyToPropertyDeclarationES2022.ts │ │ │ │ ├── assignParameterPropertyToPropertyDeclarationESNext.ts │ │ │ │ ├── autoAccessor1.ts │ │ │ │ ├── autoAccessor10.ts │ │ │ │ ├── autoAccessor11.ts │ │ │ │ ├── autoAccessor2.ts │ │ │ │ ├── autoAccessor3.ts │ │ │ │ ├── autoAccessor4.ts │ │ │ │ ├── autoAccessor5.ts │ │ │ │ ├── autoAccessor6.ts │ │ │ │ ├── autoAccessor7.ts │ │ │ │ ├── autoAccessor8.ts │ │ │ │ ├── autoAccessor9.ts │ │ │ │ ├── autoAccessorAllowedModifiers.ts │ │ │ │ ├── autoAccessorDisallowedModifiers.ts │ │ │ │ ├── autoAccessorExperimentalDecorators.ts │ │ │ │ ├── autoAccessorNoUseDefineForClassFields.ts │ │ │ │ ├── canFollowGetSetKeyword.ts │ │ │ │ ├── constructorParameterShadowsOuterScopes.ts │ │ │ │ ├── constructorParameterShadowsOuterScopes2.ts │ │ │ │ ├── defineProperty.ts │ │ │ │ ├── derivedUninitializedPropertyDeclaration.ts │ │ │ │ ├── initializationOrdering1.ts │ │ │ │ ├── initializerReferencingConstructorLocals.ts │ │ │ │ ├── initializerReferencingConstructorParameters.ts │ │ │ │ ├── instanceMemberInitialization.ts │ │ │ │ ├── instanceMemberWithComputedPropertyName.ts │ │ │ │ ├── instanceMemberWithComputedPropertyName2.ts │ │ │ │ ├── memberAccessorDeclarations/ │ │ │ │ │ ├── accessorWithES5.ts │ │ │ │ │ ├── accessorWithMismatchedAccessibilityModifiers.ts │ │ │ │ │ ├── accessorsAreNotContextuallyTyped.ts │ │ │ │ │ ├── ambientAccessors.ts │ │ │ │ │ └── typeOfThisInAccessor.ts │ │ │ │ ├── memberFunctionDeclarations/ │ │ │ │ │ ├── derivedTypeAccessesHiddenBaseCallViaSuperPropertyAccess.ts │ │ │ │ │ ├── instanceMemberAssignsToClassPrototype.ts │ │ │ │ │ ├── memberFunctionOverloadMixingStaticAndInstance.ts │ │ │ │ │ ├── memberFunctionsWithPrivateOverloads.ts │ │ │ │ │ ├── memberFunctionsWithPublicOverloads.ts │ │ │ │ │ ├── memberFunctionsWithPublicPrivateOverloads.ts │ │ │ │ │ ├── staticFactory1.ts │ │ │ │ │ ├── staticMemberAssignsToConstructorFunctionMembers.ts │ │ │ │ │ └── typeOfThisInMemberFunctions.ts │ │ │ │ ├── optionalMethod.ts │ │ │ │ ├── optionalProperty.ts │ │ │ │ ├── overrideInterfaceProperty.ts │ │ │ │ ├── propertyAndAccessorWithSameName.ts │ │ │ │ ├── propertyAndFunctionWithSameName.ts │ │ │ │ ├── propertyNamedConstructor.ts │ │ │ │ ├── propertyNamedPrototype.ts │ │ │ │ ├── propertyOverridesAccessors.ts │ │ │ │ ├── propertyOverridesAccessors2.ts │ │ │ │ ├── propertyOverridesAccessors3.ts │ │ │ │ ├── propertyOverridesAccessors4.ts │ │ │ │ ├── propertyOverridesAccessors5.ts │ │ │ │ ├── propertyOverridesAccessors6.ts │ │ │ │ ├── propertyOverridesMethod.ts │ │ │ │ ├── redeclaredProperty.ts │ │ │ │ ├── redefinedPararameterProperty.ts │ │ │ │ ├── staticAndNonStaticPropertiesSameName.ts │ │ │ │ ├── staticAutoAccessors.ts │ │ │ │ ├── staticAutoAccessorsWithDecorators.ts │ │ │ │ ├── staticMemberInitialization.ts │ │ │ │ ├── staticPropertyAndFunctionWithSameName.ts │ │ │ │ ├── staticPropertyNameConflicts.ts │ │ │ │ ├── staticPropertyNameConflictsInAmbientContext.ts │ │ │ │ ├── strictPropertyInitialization.ts │ │ │ │ ├── thisInInstanceMemberInitializer.ts │ │ │ │ ├── thisPropertyOverridesAccessors.ts │ │ │ │ ├── twoAccessorsWithSameName.ts │ │ │ │ └── twoAccessorsWithSameName2.ts │ │ │ └── staticIndexSignature/ │ │ │ ├── staticIndexSignature1.ts │ │ │ ├── staticIndexSignature2.ts │ │ │ ├── staticIndexSignature3.ts │ │ │ ├── staticIndexSignature4.ts │ │ │ ├── staticIndexSignature5.ts │ │ │ ├── staticIndexSignature6.ts │ │ │ └── staticIndexSignature7.ts │ │ ├── constEnums/ │ │ │ ├── constEnum1.ts │ │ │ ├── constEnum2.ts │ │ │ ├── constEnum3.ts │ │ │ ├── constEnum4.ts │ │ │ ├── constEnumNoObjectPrototypePropertyAccess.ts │ │ │ ├── constEnumPropertyAccess1.ts │ │ │ ├── constEnumPropertyAccess2.ts │ │ │ ├── constEnumPropertyAccess3.ts │ │ │ └── importElisionConstEnumMerge1.ts │ │ ├── controlFlow/ │ │ │ ├── assertionTypePredicates1.ts │ │ │ ├── assertionTypePredicates2.ts │ │ │ ├── constLocalsInFunctionExpressions.ts │ │ │ ├── controlFlowAliasing.ts │ │ │ ├── controlFlowAliasing2.ts │ │ │ ├── controlFlowAliasingCatchVariables.ts │ │ │ ├── controlFlowAssignmentExpression.ts │ │ │ ├── controlFlowAssignmentPatternOrder.ts │ │ │ ├── controlFlowBinaryAndExpression.ts │ │ │ ├── controlFlowBinaryOrExpression.ts │ │ │ ├── controlFlowBindingElement.ts │ │ │ ├── controlFlowBindingPatternOrder.ts │ │ │ ├── controlFlowCommaOperator.ts │ │ │ ├── controlFlowComputedPropertyNames.ts │ │ │ ├── controlFlowConditionalExpression.ts │ │ │ ├── controlFlowDeleteOperator.ts │ │ │ ├── controlFlowDestructuringDeclaration.ts │ │ │ ├── controlFlowDoWhileStatement.ts │ │ │ ├── controlFlowElementAccess.ts │ │ │ ├── controlFlowElementAccess2.ts │ │ │ ├── controlFlowElementAccessNoCrash1.ts │ │ │ ├── controlFlowForInStatement.ts │ │ │ ├── controlFlowForInStatement2.ts │ │ │ ├── controlFlowForOfStatement.ts │ │ │ ├── controlFlowForStatement.ts │ │ │ ├── controlFlowGenericTypes.ts │ │ │ ├── controlFlowIIFE.ts │ │ │ ├── controlFlowIfStatement.ts │ │ │ ├── controlFlowInOperator.ts │ │ │ ├── controlFlowInstanceOfGuardPrimitives.ts │ │ │ ├── controlFlowInstanceofExtendsFunction.ts │ │ │ ├── controlFlowIteration.ts │ │ │ ├── controlFlowIterationErrors.ts │ │ │ ├── controlFlowIterationErrorsAsync.ts │ │ │ ├── controlFlowNoIntermediateErrors.ts │ │ │ ├── controlFlowNullishCoalesce.ts │ │ │ ├── controlFlowOptionalChain.ts │ │ │ ├── controlFlowOptionalChain2.ts │ │ │ ├── controlFlowOptionalChain3.tsx │ │ │ ├── controlFlowParameter.ts │ │ │ ├── controlFlowStringIndex.ts │ │ │ ├── controlFlowSuperPropertyAccess.ts │ │ │ ├── controlFlowTruthiness.ts │ │ │ ├── controlFlowTypeofObject.ts │ │ │ ├── controlFlowWhileStatement.ts │ │ │ ├── controlFlowWithTemplateLiterals.ts │ │ │ ├── definiteAssignmentAssertions.ts │ │ │ ├── definiteAssignmentAssertionsWithObjectShortHand.ts │ │ │ ├── dependentDestructuredVariables.ts │ │ │ ├── dependentDestructuredVariablesFromNestedPatterns.ts │ │ │ ├── dependentDestructuredVariablesWithExport.ts │ │ │ ├── exhaustiveSwitchStatements1.ts │ │ │ ├── neverReturningFunctions1.ts │ │ │ ├── switchWithConstrainedTypeVariable.ts │ │ │ ├── typeGuardsAsAssertions.ts │ │ │ ├── typeGuardsNestedAssignments.ts │ │ │ └── typeGuardsTypeParameters.ts │ │ ├── declarationEmit/ │ │ │ ├── anonymousClassAccessorsDeclarationEmit1.ts │ │ │ ├── classDoesNotDependOnPrivateMember.ts │ │ │ ├── declarationEmitWorkWithInlineComments.ts │ │ │ ├── exportDefaultExpressionComments.ts │ │ │ ├── exportDefaultNamespace.ts │ │ │ ├── leaveOptionalParameterAsWritten.ts │ │ │ ├── libReferenceDeclarationEmit.ts │ │ │ ├── libReferenceDeclarationEmitBundle.ts │ │ │ ├── libReferenceNoLib.ts │ │ │ ├── libReferenceNoLibBundle.ts │ │ │ ├── nullPropertyName.ts │ │ │ ├── typePredicates/ │ │ │ │ ├── declarationEmitIdentifierPredicates01.ts │ │ │ │ ├── declarationEmitIdentifierPredicatesWithPrivateName01.ts │ │ │ │ ├── declarationEmitThisPredicates01.ts │ │ │ │ ├── declarationEmitThisPredicates02.ts │ │ │ │ ├── declarationEmitThisPredicatesWithPrivateName01.ts │ │ │ │ └── declarationEmitThisPredicatesWithPrivateName02.ts │ │ │ ├── typeReferenceRelatedFiles.ts │ │ │ ├── typeofImportTypeOnlyExport.ts │ │ │ ├── typesVersionsDeclarationEmit.ambient.ts │ │ │ ├── typesVersionsDeclarationEmit.multiFile.ts │ │ │ ├── typesVersionsDeclarationEmit.multiFileBackReferenceToSelf.ts │ │ │ └── typesVersionsDeclarationEmit.multiFileBackReferenceToUnmapped.ts │ │ ├── decorators/ │ │ │ ├── class/ │ │ │ │ ├── accessor/ │ │ │ │ │ ├── decoratorOnClassAccessor1.ts │ │ │ │ │ ├── decoratorOnClassAccessor2.ts │ │ │ │ │ ├── decoratorOnClassAccessor3.ts │ │ │ │ │ ├── decoratorOnClassAccessor4.ts │ │ │ │ │ ├── decoratorOnClassAccessor5.ts │ │ │ │ │ ├── decoratorOnClassAccessor6.ts │ │ │ │ │ ├── decoratorOnClassAccessor7.ts │ │ │ │ │ └── decoratorOnClassAccessor8.ts │ │ │ │ ├── constructableDecoratorOnClass01.ts │ │ │ │ ├── constructor/ │ │ │ │ │ ├── decoratorOnClassConstructor1.ts │ │ │ │ │ ├── decoratorOnClassConstructor2.ts │ │ │ │ │ ├── decoratorOnClassConstructor3.ts │ │ │ │ │ ├── decoratorOnClassConstructor4.ts │ │ │ │ │ └── parameter/ │ │ │ │ │ ├── decoratorOnClassConstructorParameter1.ts │ │ │ │ │ ├── decoratorOnClassConstructorParameter4.ts │ │ │ │ │ └── decoratorOnClassConstructorParameter5.ts │ │ │ │ ├── decoratedBlockScopedClass1.ts │ │ │ │ ├── decoratedBlockScopedClass2.ts │ │ │ │ ├── decoratedBlockScopedClass3.ts │ │ │ │ ├── decoratedClassExportsCommonJS1.ts │ │ │ │ ├── decoratedClassExportsCommonJS2.ts │ │ │ │ ├── decoratedClassExportsSystem1.ts │ │ │ │ ├── decoratedClassExportsSystem2.ts │ │ │ │ ├── decoratedClassFromExternalModule.ts │ │ │ │ ├── decoratorChecksFunctionBodies.ts │ │ │ │ ├── decoratorInstantiateModulesInFunctionBodies.ts │ │ │ │ ├── decoratorOnClass1.ts │ │ │ │ ├── decoratorOnClass2.ts │ │ │ │ ├── decoratorOnClass3.ts │ │ │ │ ├── decoratorOnClass4.ts │ │ │ │ ├── decoratorOnClass5.ts │ │ │ │ ├── decoratorOnClass8.ts │ │ │ │ ├── decoratorOnClass9.ts │ │ │ │ ├── method/ │ │ │ │ │ ├── decoratorOnClassMethod1.ts │ │ │ │ │ ├── decoratorOnClassMethod10.ts │ │ │ │ │ ├── decoratorOnClassMethod11.ts │ │ │ │ │ ├── decoratorOnClassMethod12.ts │ │ │ │ │ ├── decoratorOnClassMethod13.ts │ │ │ │ │ ├── decoratorOnClassMethod14.ts │ │ │ │ │ ├── decoratorOnClassMethod15.ts │ │ │ │ │ ├── decoratorOnClassMethod16.ts │ │ │ │ │ ├── decoratorOnClassMethod17.ts │ │ │ │ │ ├── decoratorOnClassMethod18.ts │ │ │ │ │ ├── decoratorOnClassMethod19.ts │ │ │ │ │ ├── decoratorOnClassMethod2.ts │ │ │ │ │ ├── decoratorOnClassMethod3.ts │ │ │ │ │ ├── decoratorOnClassMethod4.ts │ │ │ │ │ ├── decoratorOnClassMethod5.ts │ │ │ │ │ ├── decoratorOnClassMethod6.ts │ │ │ │ │ ├── decoratorOnClassMethod7.ts │ │ │ │ │ ├── decoratorOnClassMethod8.ts │ │ │ │ │ ├── decoratorOnClassMethodOverload1.ts │ │ │ │ │ ├── decoratorOnClassMethodOverload2.ts │ │ │ │ │ └── parameter/ │ │ │ │ │ ├── decoratorOnClassMethodParameter1.ts │ │ │ │ │ ├── decoratorOnClassMethodParameter2.ts │ │ │ │ │ ├── decoratorOnClassMethodParameter3.ts │ │ │ │ │ └── decoratorOnClassMethodThisParameter.ts │ │ │ │ └── property/ │ │ │ │ ├── decoratorOnClassProperty1.ts │ │ │ │ ├── decoratorOnClassProperty10.ts │ │ │ │ ├── decoratorOnClassProperty11.ts │ │ │ │ ├── decoratorOnClassProperty12.ts │ │ │ │ ├── decoratorOnClassProperty13.ts │ │ │ │ ├── decoratorOnClassProperty2.ts │ │ │ │ ├── decoratorOnClassProperty3.ts │ │ │ │ ├── decoratorOnClassProperty6.ts │ │ │ │ └── decoratorOnClassProperty7.ts │ │ │ ├── decoratorCallGeneric.ts │ │ │ ├── decoratorInAmbientContext.ts │ │ │ ├── decoratorMetadata-jsdoc.ts │ │ │ ├── decoratorMetadata.ts │ │ │ ├── decoratorMetadataWithTypeOnlyImport.ts │ │ │ ├── decoratorMetadataWithTypeOnlyImport2.ts │ │ │ ├── invalid/ │ │ │ │ ├── decoratorOnArrowFunction.ts │ │ │ │ ├── decoratorOnAwait.ts │ │ │ │ ├── decoratorOnEnum.ts │ │ │ │ ├── decoratorOnEnum2.ts │ │ │ │ ├── decoratorOnFunctionDeclaration.ts │ │ │ │ ├── decoratorOnFunctionExpression.ts │ │ │ │ ├── decoratorOnFunctionParameter.ts │ │ │ │ ├── decoratorOnImportEquals1.ts │ │ │ │ ├── decoratorOnImportEquals2.ts │ │ │ │ ├── decoratorOnInterface.ts │ │ │ │ ├── decoratorOnInternalModule.ts │ │ │ │ ├── decoratorOnTypeAlias.ts │ │ │ │ ├── decoratorOnUsing.ts │ │ │ │ └── decoratorOnVar.ts │ │ │ ├── legacyDecorators-contextualTypes.ts │ │ │ └── missingDecoratorType.ts │ │ ├── directives/ │ │ │ ├── multiline.tsx │ │ │ ├── ts-expect-error-js.ts │ │ │ ├── ts-expect-error-nocheck-js.ts │ │ │ ├── ts-expect-error-nocheck.ts │ │ │ ├── ts-expect-error.ts │ │ │ └── ts-ignore.ts │ │ ├── dynamicImport/ │ │ │ ├── importCallExpression1ES2020.ts │ │ │ ├── importCallExpression2ES2020.ts │ │ │ ├── importCallExpression3ES2020.ts │ │ │ ├── importCallExpression4ES2020.ts │ │ │ ├── importCallExpression5ES2020.ts │ │ │ ├── importCallExpression6ES2020.ts │ │ │ ├── importCallExpressionAsyncES2020.ts │ │ │ ├── importCallExpressionAsyncES5AMD.ts │ │ │ ├── importCallExpressionAsyncES5CJS.ts │ │ │ ├── importCallExpressionAsyncES5System.ts │ │ │ ├── importCallExpressionAsyncES5UMD.ts │ │ │ ├── importCallExpressionAsyncES6AMD.ts │ │ │ ├── importCallExpressionAsyncES6CJS.ts │ │ │ ├── importCallExpressionAsyncES6System.ts │ │ │ ├── importCallExpressionAsyncES6UMD.ts │ │ │ ├── importCallExpressionCheckReturntype1.ts │ │ │ ├── importCallExpressionDeclarationEmit1.ts │ │ │ ├── importCallExpressionDeclarationEmit2.ts │ │ │ ├── importCallExpressionDeclarationEmit3.ts │ │ │ ├── importCallExpressionES5AMD.ts │ │ │ ├── importCallExpressionES5CJS.ts │ │ │ ├── importCallExpressionES5System.ts │ │ │ ├── importCallExpressionES5UMD.ts │ │ │ ├── importCallExpressionES6AMD.ts │ │ │ ├── importCallExpressionES6CJS.ts │ │ │ ├── importCallExpressionES6System.ts │ │ │ ├── importCallExpressionES6UMD.ts │ │ │ ├── importCallExpressionErrorInES2015.ts │ │ │ ├── importCallExpressionGrammarError.ts │ │ │ ├── importCallExpressionInAMD1.ts │ │ │ ├── importCallExpressionInAMD2.ts │ │ │ ├── importCallExpressionInAMD3.ts │ │ │ ├── importCallExpressionInAMD4.ts │ │ │ ├── importCallExpressionInCJS1.ts │ │ │ ├── importCallExpressionInCJS2.ts │ │ │ ├── importCallExpressionInCJS3.ts │ │ │ ├── importCallExpressionInCJS4.ts │ │ │ ├── importCallExpressionInCJS5.ts │ │ │ ├── importCallExpressionInExportEqualsAMD.ts │ │ │ ├── importCallExpressionInExportEqualsCJS.ts │ │ │ ├── importCallExpressionInExportEqualsUMD.ts │ │ │ ├── importCallExpressionInScriptContext1.ts │ │ │ ├── importCallExpressionInScriptContext2.ts │ │ │ ├── importCallExpressionInSystem1.ts │ │ │ ├── importCallExpressionInSystem2.ts │ │ │ ├── importCallExpressionInSystem3.ts │ │ │ ├── importCallExpressionInSystem4.ts │ │ │ ├── importCallExpressionInUMD1.ts │ │ │ ├── importCallExpressionInUMD2.ts │ │ │ ├── importCallExpressionInUMD3.ts │ │ │ ├── importCallExpressionInUMD4.ts │ │ │ ├── importCallExpressionInUMD5.ts │ │ │ ├── importCallExpressionIncorrect1.ts │ │ │ ├── importCallExpressionIncorrect2.ts │ │ │ ├── importCallExpressionNestedAMD.ts │ │ │ ├── importCallExpressionNestedAMD2.ts │ │ │ ├── importCallExpressionNestedCJS.ts │ │ │ ├── importCallExpressionNestedCJS2.ts │ │ │ ├── importCallExpressionNestedES2015.ts │ │ │ ├── importCallExpressionNestedES20152.ts │ │ │ ├── importCallExpressionNestedES2020.ts │ │ │ ├── importCallExpressionNestedES20202.ts │ │ │ ├── importCallExpressionNestedSystem.ts │ │ │ ├── importCallExpressionNestedSystem2.ts │ │ │ ├── importCallExpressionNestedUMD.ts │ │ │ ├── importCallExpressionNestedUMD2.ts │ │ │ ├── importCallExpressionNoModuleKindSpecified.ts │ │ │ ├── importCallExpressionReturnPromiseOfAny.ts │ │ │ ├── importCallExpressionShouldNotGetParen.ts │ │ │ ├── importCallExpressionSpecifierNotStringTypeError.ts │ │ │ └── importCallExpressionWithTypeArgument.ts │ │ ├── emitter/ │ │ │ ├── es2015/ │ │ │ │ └── asyncGenerators/ │ │ │ │ ├── emitter.asyncGenerators.classMethods.es2015.ts │ │ │ │ ├── emitter.asyncGenerators.functionDeclarations.es2015.ts │ │ │ │ ├── emitter.asyncGenerators.functionExpressions.es2015.ts │ │ │ │ └── emitter.asyncGenerators.objectLiteralMethods.es2015.ts │ │ │ ├── es2018/ │ │ │ │ └── asyncGenerators/ │ │ │ │ ├── emitter.asyncGenerators.classMethods.es2018.ts │ │ │ │ ├── emitter.asyncGenerators.functionDeclarations.es2018.ts │ │ │ │ ├── emitter.asyncGenerators.functionExpressions.es2018.ts │ │ │ │ └── emitter.asyncGenerators.objectLiteralMethods.es2018.ts │ │ │ ├── es2019/ │ │ │ │ └── noCatchBinding/ │ │ │ │ └── emitter.noCatchBinding.es2019.ts │ │ │ └── es5/ │ │ │ └── asyncGenerators/ │ │ │ ├── emitter.asyncGenerators.classMethods.es5.ts │ │ │ ├── emitter.asyncGenerators.functionDeclarations.es5.ts │ │ │ ├── emitter.asyncGenerators.functionExpressions.es5.ts │ │ │ └── emitter.asyncGenerators.objectLiteralMethods.es5.ts │ │ ├── enums/ │ │ │ ├── awaitAndYield.ts │ │ │ ├── enumBasics.ts │ │ │ ├── enumClassification.ts │ │ │ ├── enumConstantMemberWithString.ts │ │ │ ├── enumConstantMemberWithStringEmitDeclaration.ts │ │ │ ├── enumConstantMemberWithTemplateLiterals.ts │ │ │ ├── enumConstantMemberWithTemplateLiteralsEmitDeclaration.ts │ │ │ ├── enumConstantMembers.ts │ │ │ ├── enumErrorOnConstantBindingWithInitializer.ts │ │ │ ├── enumErrors.ts │ │ │ ├── enumExportMergingES6.ts │ │ │ ├── enumMerging.ts │ │ │ ├── enumMergingErrors.ts │ │ │ └── enumShadowedInfinityNaN.ts │ │ ├── es2016/ │ │ │ └── es2016IntlAPIs.ts │ │ ├── es2017/ │ │ │ ├── assignSharedArrayBufferToArrayBuffer.ts │ │ │ ├── es2017DateAPIs.ts │ │ │ ├── useObjectValuesAndEntries1.ts │ │ │ ├── useObjectValuesAndEntries2.ts │ │ │ ├── useObjectValuesAndEntries3.ts │ │ │ ├── useObjectValuesAndEntries4.ts │ │ │ ├── useSharedArrayBuffer1.ts │ │ │ ├── useSharedArrayBuffer2.ts │ │ │ ├── useSharedArrayBuffer3.ts │ │ │ ├── useSharedArrayBuffer4.ts │ │ │ ├── useSharedArrayBuffer5.ts │ │ │ └── useSharedArrayBuffer6.ts │ │ ├── es2018/ │ │ │ ├── es2018IntlAPIs.ts │ │ │ ├── invalidTaggedTemplateEscapeSequences.ts │ │ │ ├── usePromiseFinally.ts │ │ │ └── useRegexpGroups.ts │ │ ├── es2019/ │ │ │ ├── allowUnescapedParagraphAndLineSeparatorsInStringLiteral.ts │ │ │ ├── globalThisAmbientModules.ts │ │ │ ├── globalThisBlockscopedProperties.ts │ │ │ ├── globalThisCollision.ts │ │ │ ├── globalThisGlobalExportAsGlobal.ts │ │ │ ├── globalThisPropertyAssignment.ts │ │ │ ├── globalThisReadonlyProperties.ts │ │ │ ├── globalThisTypeIndexAccess.ts │ │ │ ├── globalThisUnknown.ts │ │ │ ├── globalThisUnknownNoImplicitAny.ts │ │ │ ├── globalThisVarDeclaration.ts │ │ │ └── importMeta/ │ │ │ ├── importMeta.ts │ │ │ └── importMetaNarrowing.ts │ │ ├── es2020/ │ │ │ ├── bigintMissingES2019.ts │ │ │ ├── bigintMissingES2020.ts │ │ │ ├── bigintMissingESNext.ts │ │ │ ├── constructBigint.ts │ │ │ ├── es2020IntlAPIs.ts │ │ │ ├── intlNumberFormatES2020.ts │ │ │ ├── localesObjectArgument.ts │ │ │ └── modules/ │ │ │ ├── exportAsNamespace1.ts │ │ │ ├── exportAsNamespace2.ts │ │ │ ├── exportAsNamespace3.ts │ │ │ ├── exportAsNamespace4.ts │ │ │ ├── exportAsNamespace5.ts │ │ │ ├── exportAsNamespace_exportAssignment.ts │ │ │ ├── exportAsNamespace_missingEmitHelpers.ts │ │ │ └── exportAsNamespace_nonExistent.ts │ │ ├── es2021/ │ │ │ ├── es2021LocalesObjectArgument.ts │ │ │ ├── intlDateTimeFormatRangeES2021.ts │ │ │ └── logicalAssignment/ │ │ │ ├── logicalAssignment1.ts │ │ │ ├── logicalAssignment10.ts │ │ │ ├── logicalAssignment2.ts │ │ │ ├── logicalAssignment3.ts │ │ │ ├── logicalAssignment4.ts │ │ │ ├── logicalAssignment5.ts │ │ │ ├── logicalAssignment6.ts │ │ │ ├── logicalAssignment7.ts │ │ │ ├── logicalAssignment8.ts │ │ │ └── logicalAssignment9.ts │ │ ├── es2022/ │ │ │ ├── arbitraryModuleNamespaceIdentifiers/ │ │ │ │ ├── arbitraryModuleNamespaceIdentifiers_exportEmpty.ts │ │ │ │ ├── arbitraryModuleNamespaceIdentifiers_importEmpty.ts │ │ │ │ ├── arbitraryModuleNamespaceIdentifiers_module.ts │ │ │ │ └── arbitraryModuleNamespaceIdentifiers_syntax.ts │ │ │ ├── es2022IntlAPIs.ts │ │ │ ├── es2022LocalesObjectArgument.ts │ │ │ └── es2024SharedMemory.ts │ │ ├── es2023/ │ │ │ ├── intlNumberFormatES2023.ts │ │ │ └── intlNumberFormatES5UseGrouping.ts │ │ ├── es2024/ │ │ │ ├── resizableArrayBuffer.ts │ │ │ ├── sharedMemory.ts │ │ │ └── transferableArrayBuffer.ts │ │ ├── es2025/ │ │ │ ├── float16Array.ts │ │ │ ├── intlDurationFormat.ts │ │ │ ├── regExpEscape.ts │ │ │ └── syncIteratorHelpers.ts │ │ ├── es5/ │ │ │ └── es5DateAPIs.ts │ │ ├── es6/ │ │ │ ├── Symbols/ │ │ │ │ ├── symbolDeclarationEmit1.ts │ │ │ │ ├── symbolDeclarationEmit10.ts │ │ │ │ ├── symbolDeclarationEmit11.ts │ │ │ │ ├── symbolDeclarationEmit12.ts │ │ │ │ ├── symbolDeclarationEmit13.ts │ │ │ │ ├── symbolDeclarationEmit14.ts │ │ │ │ ├── symbolDeclarationEmit2.ts │ │ │ │ ├── symbolDeclarationEmit3.ts │ │ │ │ ├── symbolDeclarationEmit4.ts │ │ │ │ ├── symbolDeclarationEmit5.ts │ │ │ │ ├── symbolDeclarationEmit6.ts │ │ │ │ ├── symbolDeclarationEmit7.ts │ │ │ │ ├── symbolDeclarationEmit8.ts │ │ │ │ ├── symbolDeclarationEmit9.ts │ │ │ │ ├── symbolProperty1.ts │ │ │ │ ├── symbolProperty10.ts │ │ │ │ ├── symbolProperty11.ts │ │ │ │ ├── symbolProperty12.ts │ │ │ │ ├── symbolProperty13.ts │ │ │ │ ├── symbolProperty14.ts │ │ │ │ ├── symbolProperty15.ts │ │ │ │ ├── symbolProperty16.ts │ │ │ │ ├── symbolProperty17.ts │ │ │ │ ├── symbolProperty18.ts │ │ │ │ ├── symbolProperty19.ts │ │ │ │ ├── symbolProperty2.ts │ │ │ │ ├── symbolProperty20.ts │ │ │ │ ├── symbolProperty21.ts │ │ │ │ ├── symbolProperty22.ts │ │ │ │ ├── symbolProperty23.ts │ │ │ │ ├── symbolProperty24.ts │ │ │ │ ├── symbolProperty25.ts │ │ │ │ ├── symbolProperty26.ts │ │ │ │ ├── symbolProperty27.ts │ │ │ │ ├── symbolProperty28.ts │ │ │ │ ├── symbolProperty29.ts │ │ │ │ ├── symbolProperty3.ts │ │ │ │ ├── symbolProperty30.ts │ │ │ │ ├── symbolProperty31.ts │ │ │ │ ├── symbolProperty32.ts │ │ │ │ ├── symbolProperty33.ts │ │ │ │ ├── symbolProperty34.ts │ │ │ │ ├── symbolProperty35.ts │ │ │ │ ├── symbolProperty36.ts │ │ │ │ ├── symbolProperty37.ts │ │ │ │ ├── symbolProperty38.ts │ │ │ │ ├── symbolProperty39.ts │ │ │ │ ├── symbolProperty4.ts │ │ │ │ ├── symbolProperty40.ts │ │ │ │ ├── symbolProperty41.ts │ │ │ │ ├── symbolProperty42.ts │ │ │ │ ├── symbolProperty43.ts │ │ │ │ ├── symbolProperty44.ts │ │ │ │ ├── symbolProperty45.ts │ │ │ │ ├── symbolProperty46.ts │ │ │ │ ├── symbolProperty47.ts │ │ │ │ ├── symbolProperty48.ts │ │ │ │ ├── symbolProperty49.ts │ │ │ │ ├── symbolProperty5.ts │ │ │ │ ├── symbolProperty50.ts │ │ │ │ ├── symbolProperty51.ts │ │ │ │ ├── symbolProperty52.ts │ │ │ │ ├── symbolProperty53.ts │ │ │ │ ├── symbolProperty54.ts │ │ │ │ ├── symbolProperty55.ts │ │ │ │ ├── symbolProperty56.ts │ │ │ │ ├── symbolProperty57.ts │ │ │ │ ├── symbolProperty58.ts │ │ │ │ ├── symbolProperty59.ts │ │ │ │ ├── symbolProperty6.ts │ │ │ │ ├── symbolProperty60.ts │ │ │ │ ├── symbolProperty61.ts │ │ │ │ ├── symbolProperty7.ts │ │ │ │ ├── symbolProperty8.ts │ │ │ │ ├── symbolProperty9.ts │ │ │ │ ├── symbolType1.ts │ │ │ │ ├── symbolType10.ts │ │ │ │ ├── symbolType11.ts │ │ │ │ ├── symbolType12.ts │ │ │ │ ├── symbolType13.ts │ │ │ │ ├── symbolType14.ts │ │ │ │ ├── symbolType15.ts │ │ │ │ ├── symbolType16.ts │ │ │ │ ├── symbolType17.ts │ │ │ │ ├── symbolType18.ts │ │ │ │ ├── symbolType19.ts │ │ │ │ ├── symbolType2.ts │ │ │ │ ├── symbolType20.ts │ │ │ │ ├── symbolType3.ts │ │ │ │ ├── symbolType4.ts │ │ │ │ ├── symbolType5.ts │ │ │ │ ├── symbolType6.ts │ │ │ │ ├── symbolType7.ts │ │ │ │ ├── symbolType8.ts │ │ │ │ └── symbolType9.ts │ │ │ ├── arrowFunction/ │ │ │ │ ├── disallowLineTerminatorBeforeArrow.ts │ │ │ │ ├── emitArrowFunction.ts │ │ │ │ ├── emitArrowFunctionAsIs.ts │ │ │ │ ├── emitArrowFunctionAsIsES6.ts │ │ │ │ ├── emitArrowFunctionES6.ts │ │ │ │ ├── emitArrowFunctionThisCapturing.ts │ │ │ │ ├── emitArrowFunctionThisCapturingES6.ts │ │ │ │ ├── emitArrowFunctionWhenUsingArguments01.ts │ │ │ │ ├── emitArrowFunctionWhenUsingArguments01_ES6.ts │ │ │ │ ├── emitArrowFunctionWhenUsingArguments02.ts │ │ │ │ ├── emitArrowFunctionWhenUsingArguments02_ES6.ts │ │ │ │ ├── emitArrowFunctionWhenUsingArguments03.ts │ │ │ │ ├── emitArrowFunctionWhenUsingArguments03_ES6.ts │ │ │ │ ├── emitArrowFunctionWhenUsingArguments04.ts │ │ │ │ ├── emitArrowFunctionWhenUsingArguments04_ES6.ts │ │ │ │ ├── emitArrowFunctionWhenUsingArguments05.ts │ │ │ │ ├── emitArrowFunctionWhenUsingArguments05_ES6.ts │ │ │ │ ├── emitArrowFunctionWhenUsingArguments06.ts │ │ │ │ ├── emitArrowFunctionWhenUsingArguments06_ES6.ts │ │ │ │ ├── emitArrowFunctionWhenUsingArguments07.ts │ │ │ │ ├── emitArrowFunctionWhenUsingArguments07_ES6.ts │ │ │ │ ├── emitArrowFunctionWhenUsingArguments08.ts │ │ │ │ ├── emitArrowFunctionWhenUsingArguments08_ES6.ts │ │ │ │ ├── emitArrowFunctionWhenUsingArguments09.ts │ │ │ │ ├── emitArrowFunctionWhenUsingArguments09_ES6.ts │ │ │ │ ├── emitArrowFunctionWhenUsingArguments10.ts │ │ │ │ ├── emitArrowFunctionWhenUsingArguments10_ES6.ts │ │ │ │ ├── emitArrowFunctionWhenUsingArguments11.ts │ │ │ │ ├── emitArrowFunctionWhenUsingArguments11_ES6.ts │ │ │ │ ├── emitArrowFunctionWhenUsingArguments12.ts │ │ │ │ ├── emitArrowFunctionWhenUsingArguments12_ES6.ts │ │ │ │ ├── emitArrowFunctionWhenUsingArguments13.ts │ │ │ │ ├── emitArrowFunctionWhenUsingArguments13_ES6.ts │ │ │ │ ├── emitArrowFunctionWhenUsingArguments14.ts │ │ │ │ ├── emitArrowFunctionWhenUsingArguments14_ES6.ts │ │ │ │ ├── emitArrowFunctionWhenUsingArguments15.ts │ │ │ │ ├── emitArrowFunctionWhenUsingArguments15_ES6.ts │ │ │ │ ├── emitArrowFunctionWhenUsingArguments16.ts │ │ │ │ ├── emitArrowFunctionWhenUsingArguments16_ES6.ts │ │ │ │ ├── emitArrowFunctionWhenUsingArguments17.ts │ │ │ │ ├── emitArrowFunctionWhenUsingArguments17_ES6.ts │ │ │ │ ├── emitArrowFunctionWhenUsingArguments18.ts │ │ │ │ ├── emitArrowFunctionWhenUsingArguments18_ES6.ts │ │ │ │ ├── emitArrowFunctionWhenUsingArguments19.ts │ │ │ │ ├── emitArrowFunctionWhenUsingArguments19_ES6.ts │ │ │ │ ├── emitArrowFunctionsAsIs.ts │ │ │ │ └── emitArrowFunctionsAsIsES6.ts │ │ │ ├── binaryAndOctalIntegerLiteral/ │ │ │ │ ├── binaryIntegerLiteral.ts │ │ │ │ ├── binaryIntegerLiteralES6.ts │ │ │ │ ├── binaryIntegerLiteralError.ts │ │ │ │ ├── invalidBinaryIntegerLiteralAndOctalIntegerLiteral.ts │ │ │ │ ├── octalIntegerLiteral.ts │ │ │ │ ├── octalIntegerLiteralES6.ts │ │ │ │ └── octalIntegerLiteralError.ts │ │ │ ├── classDeclaration/ │ │ │ │ ├── classWithSemicolonClassElementES61.ts │ │ │ │ ├── classWithSemicolonClassElementES62.ts │ │ │ │ ├── emitClassDeclarationOverloadInES6.ts │ │ │ │ ├── emitClassDeclarationWithConstructorInES6.ts │ │ │ │ ├── emitClassDeclarationWithExtensionAndTypeArgumentInES6.ts │ │ │ │ ├── emitClassDeclarationWithExtensionInES6.ts │ │ │ │ ├── emitClassDeclarationWithGetterSetterInES6.ts │ │ │ │ ├── emitClassDeclarationWithLiteralPropertyNameInES6.ts │ │ │ │ ├── emitClassDeclarationWithMethodInES6.ts │ │ │ │ ├── emitClassDeclarationWithPropertyAccessInHeritageClause1.ts │ │ │ │ ├── emitClassDeclarationWithPropertyAssignmentInES6.ts │ │ │ │ ├── emitClassDeclarationWithStaticPropertyAssignmentInES6.ts │ │ │ │ ├── emitClassDeclarationWithSuperMethodCall01.ts │ │ │ │ ├── emitClassDeclarationWithThisKeywordInES6.ts │ │ │ │ ├── emitClassDeclarationWithTypeArgumentAndOverloadInES6.ts │ │ │ │ ├── emitClassDeclarationWithTypeArgumentInES6.ts │ │ │ │ ├── exportDefaultClassWithStaticPropertyAssignmentsInES6.ts │ │ │ │ ├── parseClassDeclarationInStrictModeByDefaultInES6.ts │ │ │ │ ├── superCallBeforeThisAccessing1.ts │ │ │ │ ├── superCallBeforeThisAccessing2.ts │ │ │ │ ├── superCallBeforeThisAccessing3.ts │ │ │ │ ├── superCallBeforeThisAccessing4.ts │ │ │ │ ├── superCallBeforeThisAccessing5.ts │ │ │ │ ├── superCallBeforeThisAccessing6.ts │ │ │ │ ├── superCallBeforeThisAccessing7.ts │ │ │ │ ├── superCallBeforeThisAccessing8.ts │ │ │ │ └── superCallFromClassThatHasNoBaseTypeButWithSameSymbolInterface.ts │ │ │ ├── classExpressions/ │ │ │ │ ├── classExpressionES61.ts │ │ │ │ ├── classExpressionES62.ts │ │ │ │ ├── classExpressionES63.ts │ │ │ │ ├── typeArgumentInferenceWithClassExpression1.ts │ │ │ │ ├── typeArgumentInferenceWithClassExpression2.ts │ │ │ │ └── typeArgumentInferenceWithClassExpression3.ts │ │ │ ├── computedProperties/ │ │ │ │ ├── computedPropertyNames10_ES5.ts │ │ │ │ ├── computedPropertyNames10_ES6.ts │ │ │ │ ├── computedPropertyNames11_ES5.ts │ │ │ │ ├── computedPropertyNames11_ES6.ts │ │ │ │ ├── computedPropertyNames12_ES5.ts │ │ │ │ ├── computedPropertyNames12_ES6.ts │ │ │ │ ├── computedPropertyNames13_ES5.ts │ │ │ │ ├── computedPropertyNames13_ES6.ts │ │ │ │ ├── computedPropertyNames14_ES5.ts │ │ │ │ ├── computedPropertyNames14_ES6.ts │ │ │ │ ├── computedPropertyNames15_ES5.ts │ │ │ │ ├── computedPropertyNames15_ES6.ts │ │ │ │ ├── computedPropertyNames16_ES5.ts │ │ │ │ ├── computedPropertyNames16_ES6.ts │ │ │ │ ├── computedPropertyNames17_ES5.ts │ │ │ │ ├── computedPropertyNames17_ES6.ts │ │ │ │ ├── computedPropertyNames18_ES5.ts │ │ │ │ ├── computedPropertyNames18_ES6.ts │ │ │ │ ├── computedPropertyNames19_ES5.ts │ │ │ │ ├── computedPropertyNames19_ES6.ts │ │ │ │ ├── computedPropertyNames1_ES5.ts │ │ │ │ ├── computedPropertyNames1_ES6.ts │ │ │ │ ├── computedPropertyNames20_ES5.ts │ │ │ │ ├── computedPropertyNames20_ES6.ts │ │ │ │ ├── computedPropertyNames21_ES5.ts │ │ │ │ ├── computedPropertyNames21_ES6.ts │ │ │ │ ├── computedPropertyNames22_ES5.ts │ │ │ │ ├── computedPropertyNames22_ES6.ts │ │ │ │ ├── computedPropertyNames23_ES5.ts │ │ │ │ ├── computedPropertyNames23_ES6.ts │ │ │ │ ├── computedPropertyNames24_ES5.ts │ │ │ │ ├── computedPropertyNames24_ES6.ts │ │ │ │ ├── computedPropertyNames25_ES5.ts │ │ │ │ ├── computedPropertyNames25_ES6.ts │ │ │ │ ├── computedPropertyNames26_ES5.ts │ │ │ │ ├── computedPropertyNames26_ES6.ts │ │ │ │ ├── computedPropertyNames27_ES5.ts │ │ │ │ ├── computedPropertyNames27_ES6.ts │ │ │ │ ├── computedPropertyNames28_ES5.ts │ │ │ │ ├── computedPropertyNames28_ES6.ts │ │ │ │ ├── computedPropertyNames29_ES5.ts │ │ │ │ ├── computedPropertyNames29_ES6.ts │ │ │ │ ├── computedPropertyNames2_ES5.ts │ │ │ │ ├── computedPropertyNames2_ES6.ts │ │ │ │ ├── computedPropertyNames30_ES5.ts │ │ │ │ ├── computedPropertyNames30_ES6.ts │ │ │ │ ├── computedPropertyNames31_ES5.ts │ │ │ │ ├── computedPropertyNames31_ES6.ts │ │ │ │ ├── computedPropertyNames32_ES5.ts │ │ │ │ ├── computedPropertyNames32_ES6.ts │ │ │ │ ├── computedPropertyNames33_ES5.ts │ │ │ │ ├── computedPropertyNames33_ES6.ts │ │ │ │ ├── computedPropertyNames34_ES5.ts │ │ │ │ ├── computedPropertyNames34_ES6.ts │ │ │ │ ├── computedPropertyNames35_ES5.ts │ │ │ │ ├── computedPropertyNames35_ES6.ts │ │ │ │ ├── computedPropertyNames36_ES5.ts │ │ │ │ ├── computedPropertyNames36_ES6.ts │ │ │ │ ├── computedPropertyNames37_ES5.ts │ │ │ │ ├── computedPropertyNames37_ES6.ts │ │ │ │ ├── computedPropertyNames38_ES5.ts │ │ │ │ ├── computedPropertyNames38_ES6.ts │ │ │ │ ├── computedPropertyNames39_ES5.ts │ │ │ │ ├── computedPropertyNames39_ES6.ts │ │ │ │ ├── computedPropertyNames3_ES5.ts │ │ │ │ ├── computedPropertyNames3_ES6.ts │ │ │ │ ├── computedPropertyNames40_ES5.ts │ │ │ │ ├── computedPropertyNames40_ES6.ts │ │ │ │ ├── computedPropertyNames41_ES5.ts │ │ │ │ ├── computedPropertyNames41_ES6.ts │ │ │ │ ├── computedPropertyNames42_ES5.ts │ │ │ │ ├── computedPropertyNames42_ES6.ts │ │ │ │ ├── computedPropertyNames43_ES5.ts │ │ │ │ ├── computedPropertyNames43_ES6.ts │ │ │ │ ├── computedPropertyNames44_ES5.ts │ │ │ │ ├── computedPropertyNames44_ES6.ts │ │ │ │ ├── computedPropertyNames45_ES5.ts │ │ │ │ ├── computedPropertyNames45_ES6.ts │ │ │ │ ├── computedPropertyNames46_ES5.ts │ │ │ │ ├── computedPropertyNames46_ES6.ts │ │ │ │ ├── computedPropertyNames47_ES5.ts │ │ │ │ ├── computedPropertyNames47_ES6.ts │ │ │ │ ├── computedPropertyNames48_ES5.ts │ │ │ │ ├── computedPropertyNames48_ES6.ts │ │ │ │ ├── computedPropertyNames49_ES5.ts │ │ │ │ ├── computedPropertyNames49_ES6.ts │ │ │ │ ├── computedPropertyNames4_ES5.ts │ │ │ │ ├── computedPropertyNames4_ES6.ts │ │ │ │ ├── computedPropertyNames50_ES5.ts │ │ │ │ ├── computedPropertyNames50_ES6.ts │ │ │ │ ├── computedPropertyNames51_ES5.ts │ │ │ │ ├── computedPropertyNames51_ES6.ts │ │ │ │ ├── computedPropertyNames52.ts │ │ │ │ ├── computedPropertyNames5_ES5.ts │ │ │ │ ├── computedPropertyNames5_ES6.ts │ │ │ │ ├── computedPropertyNames6_ES5.ts │ │ │ │ ├── computedPropertyNames6_ES6.ts │ │ │ │ ├── computedPropertyNames7_ES5.ts │ │ │ │ ├── computedPropertyNames7_ES6.ts │ │ │ │ ├── computedPropertyNames8_ES5.ts │ │ │ │ ├── computedPropertyNames8_ES6.ts │ │ │ │ ├── computedPropertyNames9_ES5.ts │ │ │ │ ├── computedPropertyNames9_ES6.ts │ │ │ │ ├── computedPropertyNamesContextualType10_ES5.ts │ │ │ │ ├── computedPropertyNamesContextualType10_ES6.ts │ │ │ │ ├── computedPropertyNamesContextualType1_ES5.ts │ │ │ │ ├── computedPropertyNamesContextualType1_ES6.ts │ │ │ │ ├── computedPropertyNamesContextualType2_ES5.ts │ │ │ │ ├── computedPropertyNamesContextualType2_ES6.ts │ │ │ │ ├── computedPropertyNamesContextualType3_ES5.ts │ │ │ │ ├── computedPropertyNamesContextualType3_ES6.ts │ │ │ │ ├── computedPropertyNamesContextualType4_ES5.ts │ │ │ │ ├── computedPropertyNamesContextualType4_ES6.ts │ │ │ │ ├── computedPropertyNamesContextualType5_ES5.ts │ │ │ │ ├── computedPropertyNamesContextualType5_ES6.ts │ │ │ │ ├── computedPropertyNamesContextualType6_ES5.ts │ │ │ │ ├── computedPropertyNamesContextualType6_ES6.ts │ │ │ │ ├── computedPropertyNamesContextualType7_ES5.ts │ │ │ │ ├── computedPropertyNamesContextualType7_ES6.ts │ │ │ │ ├── computedPropertyNamesContextualType8_ES5.ts │ │ │ │ ├── computedPropertyNamesContextualType8_ES6.ts │ │ │ │ ├── computedPropertyNamesContextualType9_ES5.ts │ │ │ │ ├── computedPropertyNamesContextualType9_ES6.ts │ │ │ │ ├── computedPropertyNamesDeclarationEmit1_ES5.ts │ │ │ │ ├── computedPropertyNamesDeclarationEmit1_ES6.ts │ │ │ │ ├── computedPropertyNamesDeclarationEmit2_ES5.ts │ │ │ │ ├── computedPropertyNamesDeclarationEmit2_ES6.ts │ │ │ │ ├── computedPropertyNamesDeclarationEmit3_ES5.ts │ │ │ │ ├── computedPropertyNamesDeclarationEmit3_ES6.ts │ │ │ │ ├── computedPropertyNamesDeclarationEmit4_ES5.ts │ │ │ │ ├── computedPropertyNamesDeclarationEmit4_ES6.ts │ │ │ │ ├── computedPropertyNamesDeclarationEmit5_ES5.ts │ │ │ │ ├── computedPropertyNamesDeclarationEmit5_ES6.ts │ │ │ │ ├── computedPropertyNamesDeclarationEmit6_ES5.ts │ │ │ │ ├── computedPropertyNamesDeclarationEmit6_ES6.ts │ │ │ │ ├── computedPropertyNamesOnOverloads_ES5.ts │ │ │ │ ├── computedPropertyNamesOnOverloads_ES6.ts │ │ │ │ ├── computedPropertyNamesSourceMap1_ES5.ts │ │ │ │ ├── computedPropertyNamesSourceMap1_ES6.ts │ │ │ │ ├── computedPropertyNamesSourceMap2_ES5.ts │ │ │ │ ├── computedPropertyNamesSourceMap2_ES6.ts │ │ │ │ └── computedPropertyNamesWithStaticProperty.ts │ │ │ ├── decorators/ │ │ │ │ └── class/ │ │ │ │ ├── accessor/ │ │ │ │ │ └── decoratorOnClassAccessor1.es6.ts │ │ │ │ ├── decoratorOnClass1.es6.ts │ │ │ │ ├── decoratorOnClass2.es6.ts │ │ │ │ ├── decoratorOnClass3.es6.ts │ │ │ │ ├── decoratorOnClass4.es6.ts │ │ │ │ ├── decoratorOnClass5.es6.ts │ │ │ │ ├── decoratorOnClass6.es6.ts │ │ │ │ ├── decoratorOnClass7.es6.ts │ │ │ │ ├── decoratorOnClass8.es6.ts │ │ │ │ ├── method/ │ │ │ │ │ ├── decoratorOnClassMethod1.es6.ts │ │ │ │ │ └── parameter/ │ │ │ │ │ └── decoratorOnClassMethodParameter1.es6.ts │ │ │ │ └── property/ │ │ │ │ └── decoratorOnClassProperty1.es6.ts │ │ │ ├── defaultParameters/ │ │ │ │ ├── emitDefaultParametersFunction.ts │ │ │ │ ├── emitDefaultParametersFunctionES6.ts │ │ │ │ ├── emitDefaultParametersFunctionExpression.ts │ │ │ │ ├── emitDefaultParametersFunctionExpressionES6.ts │ │ │ │ ├── emitDefaultParametersFunctionProperty.ts │ │ │ │ ├── emitDefaultParametersFunctionPropertyES6.ts │ │ │ │ ├── emitDefaultParametersMethod.ts │ │ │ │ └── emitDefaultParametersMethodES6.ts │ │ │ ├── destructuring/ │ │ │ │ ├── arrayAssignmentPatternWithAny.ts │ │ │ │ ├── declarationInAmbientContext.ts │ │ │ │ ├── declarationWithNoInitializer.ts │ │ │ │ ├── declarationsAndAssignments.ts │ │ │ │ ├── destructuringArrayBindingPatternAndAssignment1ES5.ts │ │ │ │ ├── destructuringArrayBindingPatternAndAssignment1ES5iterable.ts │ │ │ │ ├── destructuringArrayBindingPatternAndAssignment1ES6.ts │ │ │ │ ├── destructuringArrayBindingPatternAndAssignment2.ts │ │ │ │ ├── destructuringArrayBindingPatternAndAssignment3.ts │ │ │ │ ├── destructuringArrayBindingPatternAndAssignment4.ts │ │ │ │ ├── destructuringArrayBindingPatternAndAssignment5SiblingInitializer.ts │ │ │ │ ├── destructuringAssignabilityCheck.ts │ │ │ │ ├── destructuringCatch.ts │ │ │ │ ├── destructuringControlFlow.ts │ │ │ │ ├── destructuringEvaluationOrder.ts │ │ │ │ ├── destructuringInFunctionType.ts │ │ │ │ ├── destructuringObjectAssignmentPatternWithNestedSpread.ts │ │ │ │ ├── destructuringObjectBindingPatternAndAssignment1ES5.ts │ │ │ │ ├── destructuringObjectBindingPatternAndAssignment1ES6.ts │ │ │ │ ├── destructuringObjectBindingPatternAndAssignment3.ts │ │ │ │ ├── destructuringObjectBindingPatternAndAssignment4.ts │ │ │ │ ├── destructuringObjectBindingPatternAndAssignment5.ts │ │ │ │ ├── destructuringObjectBindingPatternAndAssignment6.ts │ │ │ │ ├── destructuringObjectBindingPatternAndAssignment7.ts │ │ │ │ ├── destructuringObjectBindingPatternAndAssignment8.ts │ │ │ │ ├── destructuringObjectBindingPatternAndAssignment9SiblingInitializer.ts │ │ │ │ ├── destructuringParameterDeclaration10.ts │ │ │ │ ├── destructuringParameterDeclaration1ES5.ts │ │ │ │ ├── destructuringParameterDeclaration1ES5iterable.ts │ │ │ │ ├── destructuringParameterDeclaration1ES6.ts │ │ │ │ ├── destructuringParameterDeclaration2.ts │ │ │ │ ├── destructuringParameterDeclaration3ES5.ts │ │ │ │ ├── destructuringParameterDeclaration3ES5iterable.ts │ │ │ │ ├── destructuringParameterDeclaration3ES6.ts │ │ │ │ ├── destructuringParameterDeclaration4.ts │ │ │ │ ├── destructuringParameterDeclaration5.ts │ │ │ │ ├── destructuringParameterDeclaration6.ts │ │ │ │ ├── destructuringParameterDeclaration7ES5.ts │ │ │ │ ├── destructuringParameterDeclaration7ES5iterable.ts │ │ │ │ ├── destructuringParameterDeclaration8.ts │ │ │ │ ├── destructuringParameterDeclaration9.ts │ │ │ │ ├── destructuringParameterProperties1.ts │ │ │ │ ├── destructuringParameterProperties2.ts │ │ │ │ ├── destructuringParameterProperties3.ts │ │ │ │ ├── destructuringParameterProperties4.ts │ │ │ │ ├── destructuringParameterProperties5.ts │ │ │ │ ├── destructuringReassignsRightHandSide.ts │ │ │ │ ├── destructuringSameNames.ts │ │ │ │ ├── destructuringSpread.ts │ │ │ │ ├── destructuringTypeAssertionsES5_1.ts │ │ │ │ ├── destructuringTypeAssertionsES5_2.ts │ │ │ │ ├── destructuringTypeAssertionsES5_3.ts │ │ │ │ ├── destructuringTypeAssertionsES5_4.ts │ │ │ │ ├── destructuringTypeAssertionsES5_5.ts │ │ │ │ ├── destructuringTypeAssertionsES5_6.ts │ │ │ │ ├── destructuringTypeAssertionsES5_7.ts │ │ │ │ ├── destructuringVariableDeclaration1ES5.ts │ │ │ │ ├── destructuringVariableDeclaration1ES5iterable.ts │ │ │ │ ├── destructuringVariableDeclaration1ES6.ts │ │ │ │ ├── destructuringVariableDeclaration2.ts │ │ │ │ ├── destructuringVoid.ts │ │ │ │ ├── destructuringVoidStrictNullChecks.ts │ │ │ │ ├── destructuringWithLiteralInitializers.ts │ │ │ │ ├── destructuringWithLiteralInitializers2.ts │ │ │ │ ├── emptyArrayBindingPatternParameter01.ts │ │ │ │ ├── emptyArrayBindingPatternParameter02.ts │ │ │ │ ├── emptyArrayBindingPatternParameter03.ts │ │ │ │ ├── emptyArrayBindingPatternParameter04.ts │ │ │ │ ├── emptyAssignmentPatterns01_ES5.ts │ │ │ │ ├── emptyAssignmentPatterns01_ES5iterable.ts │ │ │ │ ├── emptyAssignmentPatterns01_ES6.ts │ │ │ │ ├── emptyAssignmentPatterns02_ES5.ts │ │ │ │ ├── emptyAssignmentPatterns02_ES5iterable.ts │ │ │ │ ├── emptyAssignmentPatterns02_ES6.ts │ │ │ │ ├── emptyAssignmentPatterns03_ES5.ts │ │ │ │ ├── emptyAssignmentPatterns03_ES5iterable.ts │ │ │ │ ├── emptyAssignmentPatterns03_ES6.ts │ │ │ │ ├── emptyAssignmentPatterns04_ES5.ts │ │ │ │ ├── emptyAssignmentPatterns04_ES5iterable.ts │ │ │ │ ├── emptyAssignmentPatterns04_ES6.ts │ │ │ │ ├── emptyObjectBindingPatternParameter01.ts │ │ │ │ ├── emptyObjectBindingPatternParameter02.ts │ │ │ │ ├── emptyObjectBindingPatternParameter03.ts │ │ │ │ ├── emptyObjectBindingPatternParameter04.ts │ │ │ │ ├── emptyVariableDeclarationBindingPatterns01_ES5.ts │ │ │ │ ├── emptyVariableDeclarationBindingPatterns01_ES5iterable.ts │ │ │ │ ├── emptyVariableDeclarationBindingPatterns01_ES6.ts │ │ │ │ ├── emptyVariableDeclarationBindingPatterns02_ES5.ts │ │ │ │ ├── emptyVariableDeclarationBindingPatterns02_ES5iterable.ts │ │ │ │ ├── emptyVariableDeclarationBindingPatterns02_ES6.ts │ │ │ │ ├── iterableArrayPattern1.ts │ │ │ │ ├── iterableArrayPattern10.ts │ │ │ │ ├── iterableArrayPattern11.ts │ │ │ │ ├── iterableArrayPattern12.ts │ │ │ │ ├── iterableArrayPattern13.ts │ │ │ │ ├── iterableArrayPattern14.ts │ │ │ │ ├── iterableArrayPattern15.ts │ │ │ │ ├── iterableArrayPattern16.ts │ │ │ │ ├── iterableArrayPattern17.ts │ │ │ │ ├── iterableArrayPattern18.ts │ │ │ │ ├── iterableArrayPattern19.ts │ │ │ │ ├── iterableArrayPattern2.ts │ │ │ │ ├── iterableArrayPattern20.ts │ │ │ │ ├── iterableArrayPattern21.ts │ │ │ │ ├── iterableArrayPattern22.ts │ │ │ │ ├── iterableArrayPattern23.ts │ │ │ │ ├── iterableArrayPattern24.ts │ │ │ │ ├── iterableArrayPattern25.ts │ │ │ │ ├── iterableArrayPattern26.ts │ │ │ │ ├── iterableArrayPattern27.ts │ │ │ │ ├── iterableArrayPattern28.ts │ │ │ │ ├── iterableArrayPattern29.ts │ │ │ │ ├── iterableArrayPattern3.ts │ │ │ │ ├── iterableArrayPattern30.ts │ │ │ │ ├── iterableArrayPattern4.ts │ │ │ │ ├── iterableArrayPattern5.ts │ │ │ │ ├── iterableArrayPattern6.ts │ │ │ │ ├── iterableArrayPattern7.ts │ │ │ │ ├── iterableArrayPattern8.ts │ │ │ │ ├── iterableArrayPattern9.ts │ │ │ │ ├── missingAndExcessProperties.ts │ │ │ │ ├── nonIterableRestElement1.ts │ │ │ │ ├── nonIterableRestElement2.ts │ │ │ │ ├── nonIterableRestElement3.ts │ │ │ │ ├── objectBindingPatternKeywordIdentifiers01.ts │ │ │ │ ├── objectBindingPatternKeywordIdentifiers02.ts │ │ │ │ ├── objectBindingPatternKeywordIdentifiers03.ts │ │ │ │ ├── objectBindingPatternKeywordIdentifiers04.ts │ │ │ │ ├── objectBindingPatternKeywordIdentifiers05.ts │ │ │ │ ├── objectBindingPatternKeywordIdentifiers06.ts │ │ │ │ ├── optionalBindingParameters1.ts │ │ │ │ ├── optionalBindingParameters2.ts │ │ │ │ ├── optionalBindingParameters3.ts │ │ │ │ ├── optionalBindingParameters4.ts │ │ │ │ ├── optionalBindingParametersInOverloads1.ts │ │ │ │ ├── optionalBindingParametersInOverloads2.ts │ │ │ │ ├── restElementWithAssignmentPattern1.ts │ │ │ │ ├── restElementWithAssignmentPattern2.ts │ │ │ │ ├── restElementWithAssignmentPattern3.ts │ │ │ │ ├── restElementWithAssignmentPattern4.ts │ │ │ │ ├── restElementWithAssignmentPattern5.ts │ │ │ │ ├── restElementWithBindingPattern.ts │ │ │ │ ├── restElementWithBindingPattern2.ts │ │ │ │ ├── restElementWithInitializer1.ts │ │ │ │ ├── restElementWithInitializer2.ts │ │ │ │ ├── restElementWithNullInitializer.ts │ │ │ │ └── restPropertyWithBindingPattern.ts │ │ │ ├── for-ofStatements/ │ │ │ │ ├── for-of-excess-declarations.ts │ │ │ │ ├── for-of1.ts │ │ │ │ ├── for-of10.ts │ │ │ │ ├── for-of11.ts │ │ │ │ ├── for-of12.ts │ │ │ │ ├── for-of13.ts │ │ │ │ ├── for-of14.ts │ │ │ │ ├── for-of15.ts │ │ │ │ ├── for-of16.ts │ │ │ │ ├── for-of17.ts │ │ │ │ ├── for-of18.ts │ │ │ │ ├── for-of19.ts │ │ │ │ ├── for-of2.ts │ │ │ │ ├── for-of20.ts │ │ │ │ ├── for-of21.ts │ │ │ │ ├── for-of22.ts │ │ │ │ ├── for-of23.ts │ │ │ │ ├── for-of24.ts │ │ │ │ ├── for-of25.ts │ │ │ │ ├── for-of26.ts │ │ │ │ ├── for-of27.ts │ │ │ │ ├── for-of28.ts │ │ │ │ ├── for-of29.ts │ │ │ │ ├── for-of3.ts │ │ │ │ ├── for-of30.ts │ │ │ │ ├── for-of31.ts │ │ │ │ ├── for-of32.ts │ │ │ │ ├── for-of33.ts │ │ │ │ ├── for-of34.ts │ │ │ │ ├── for-of35.ts │ │ │ │ ├── for-of36.ts │ │ │ │ ├── for-of37.ts │ │ │ │ ├── for-of38.ts │ │ │ │ ├── for-of39.ts │ │ │ │ ├── for-of4.ts │ │ │ │ ├── for-of40.ts │ │ │ │ ├── for-of41.ts │ │ │ │ ├── for-of42.ts │ │ │ │ ├── for-of43.ts │ │ │ │ ├── for-of44.ts │ │ │ │ ├── for-of45.ts │ │ │ │ ├── for-of46.ts │ │ │ │ ├── for-of47.ts │ │ │ │ ├── for-of48.ts │ │ │ │ ├── for-of49.ts │ │ │ │ ├── for-of5.ts │ │ │ │ ├── for-of50.ts │ │ │ │ ├── for-of51.ts │ │ │ │ ├── for-of52.ts │ │ │ │ ├── for-of53.ts │ │ │ │ ├── for-of54.ts │ │ │ │ ├── for-of55.ts │ │ │ │ ├── for-of56.ts │ │ │ │ ├── for-of57.ts │ │ │ │ ├── for-of58.ts │ │ │ │ ├── for-of6.ts │ │ │ │ ├── for-of7.ts │ │ │ │ ├── for-of8.ts │ │ │ │ └── for-of9.ts │ │ │ ├── functionDeclarations/ │ │ │ │ ├── FunctionDeclaration10_es6.ts │ │ │ │ ├── FunctionDeclaration11_es6.ts │ │ │ │ ├── FunctionDeclaration12_es6.ts │ │ │ │ ├── FunctionDeclaration13_es6.ts │ │ │ │ ├── FunctionDeclaration1_es6.ts │ │ │ │ ├── FunctionDeclaration2_es6.ts │ │ │ │ ├── FunctionDeclaration3_es6.ts │ │ │ │ ├── FunctionDeclaration4_es6.ts │ │ │ │ ├── FunctionDeclaration5_es6.ts │ │ │ │ ├── FunctionDeclaration6_es6.ts │ │ │ │ ├── FunctionDeclaration7_es6.ts │ │ │ │ ├── FunctionDeclaration8_es6.ts │ │ │ │ └── FunctionDeclaration9_es6.ts │ │ │ ├── functionExpressions/ │ │ │ │ ├── FunctionExpression1_es6.ts │ │ │ │ └── FunctionExpression2_es6.ts │ │ │ ├── functionPropertyAssignments/ │ │ │ │ ├── FunctionPropertyAssignments1_es6.ts │ │ │ │ ├── FunctionPropertyAssignments2_es6.ts │ │ │ │ ├── FunctionPropertyAssignments3_es6.ts │ │ │ │ ├── FunctionPropertyAssignments4_es6.ts │ │ │ │ ├── FunctionPropertyAssignments5_es6.ts │ │ │ │ └── FunctionPropertyAssignments6_es6.ts │ │ │ ├── memberFunctionDeclarations/ │ │ │ │ ├── MemberFunctionDeclaration1_es6.ts │ │ │ │ ├── MemberFunctionDeclaration2_es6.ts │ │ │ │ ├── MemberFunctionDeclaration3_es6.ts │ │ │ │ ├── MemberFunctionDeclaration4_es6.ts │ │ │ │ ├── MemberFunctionDeclaration5_es6.ts │ │ │ │ ├── MemberFunctionDeclaration6_es6.ts │ │ │ │ ├── MemberFunctionDeclaration7_es6.ts │ │ │ │ └── MemberFunctionDeclaration8_es6.ts │ │ │ ├── moduleExportsAmd/ │ │ │ │ ├── anonymousDefaultExportsAmd.ts │ │ │ │ ├── decoratedDefaultExportsGetExportedAmd.ts │ │ │ │ ├── defaultExportsGetExportedAmd.ts │ │ │ │ └── outFilerootDirModuleNamesAmd.ts │ │ │ ├── moduleExportsCommonjs/ │ │ │ │ ├── anonymousDefaultExportsCommonjs.ts │ │ │ │ ├── decoratedDefaultExportsGetExportedCommonjs.ts │ │ │ │ └── defaultExportsGetExportedCommonjs.ts │ │ │ ├── moduleExportsSystem/ │ │ │ │ ├── anonymousDefaultExportsSystem.ts │ │ │ │ ├── decoratedDefaultExportsGetExportedSystem.ts │ │ │ │ ├── defaultExportsGetExportedSystem.ts │ │ │ │ ├── outFilerootDirModuleNamesSystem.ts │ │ │ │ ├── topLevelVarHoistingCommonJS.ts │ │ │ │ └── topLevelVarHoistingSystem.ts │ │ │ ├── moduleExportsUmd/ │ │ │ │ ├── anonymousDefaultExportsUmd.ts │ │ │ │ ├── decoratedDefaultExportsGetExportedUmd.ts │ │ │ │ └── defaultExportsGetExportedUmd.ts │ │ │ ├── modules/ │ │ │ │ ├── defaultExportInAwaitExpression01.ts │ │ │ │ ├── defaultExportInAwaitExpression02.ts │ │ │ │ ├── defaultExportWithOverloads01.ts │ │ │ │ ├── defaultExportsCannotMerge01.ts │ │ │ │ ├── defaultExportsCannotMerge02.ts │ │ │ │ ├── defaultExportsCannotMerge03.ts │ │ │ │ ├── defaultExportsCannotMerge04.ts │ │ │ │ ├── exportAndImport-es5-amd.ts │ │ │ │ ├── exportAndImport-es5.ts │ │ │ │ ├── exportBinding.ts │ │ │ │ ├── exportSpellingSuggestion.ts │ │ │ │ ├── exportStar-amd.ts │ │ │ │ ├── exportStar.ts │ │ │ │ ├── exportsAndImports1-amd.ts │ │ │ │ ├── exportsAndImports1-es6.ts │ │ │ │ ├── exportsAndImports1.ts │ │ │ │ ├── exportsAndImports2-amd.ts │ │ │ │ ├── exportsAndImports2-es6.ts │ │ │ │ ├── exportsAndImports2.ts │ │ │ │ ├── exportsAndImports3-amd.ts │ │ │ │ ├── exportsAndImports3-es6.ts │ │ │ │ ├── exportsAndImports3.ts │ │ │ │ ├── exportsAndImports4-amd.ts │ │ │ │ ├── exportsAndImports4-es6.ts │ │ │ │ ├── exportsAndImports4.ts │ │ │ │ ├── exportsAndImports5.ts │ │ │ │ ├── exportsAndImportsWithContextualKeywordNames01.ts │ │ │ │ ├── exportsAndImportsWithContextualKeywordNames02.ts │ │ │ │ ├── exportsAndImportsWithUnderscores1.ts │ │ │ │ ├── exportsAndImportsWithUnderscores2.ts │ │ │ │ ├── exportsAndImportsWithUnderscores3.ts │ │ │ │ ├── exportsAndImportsWithUnderscores4.ts │ │ │ │ ├── importEmptyFromModuleNotExisted.ts │ │ │ │ ├── multipleDefaultExports01.ts │ │ │ │ ├── multipleDefaultExports02.ts │ │ │ │ ├── multipleDefaultExports03.ts │ │ │ │ ├── multipleDefaultExports04.ts │ │ │ │ ├── multipleDefaultExports05.ts │ │ │ │ └── reExportDefaultExport.ts │ │ │ ├── newTarget/ │ │ │ │ ├── invalidNewTarget.es5.ts │ │ │ │ ├── invalidNewTarget.es6.ts │ │ │ │ ├── newTarget.es5.ts │ │ │ │ ├── newTarget.es6.ts │ │ │ │ └── newTargetNarrowing.ts │ │ │ ├── propertyAccess/ │ │ │ │ └── propertyAccessNumericLiterals.es6.ts │ │ │ ├── restParameters/ │ │ │ │ ├── emitRestParametersFunction.ts │ │ │ │ ├── emitRestParametersFunctionES6.ts │ │ │ │ ├── emitRestParametersFunctionExpression.ts │ │ │ │ ├── emitRestParametersFunctionExpressionES6.ts │ │ │ │ ├── emitRestParametersFunctionProperty.ts │ │ │ │ ├── emitRestParametersFunctionPropertyES6.ts │ │ │ │ ├── emitRestParametersMethod.ts │ │ │ │ ├── emitRestParametersMethodES6.ts │ │ │ │ └── readonlyRestParameters.ts │ │ │ ├── shorthandPropertyAssignment/ │ │ │ │ ├── objectLiteralShorthandProperties.ts │ │ │ │ ├── objectLiteralShorthandPropertiesAssignment.ts │ │ │ │ ├── objectLiteralShorthandPropertiesAssignmentES6.ts │ │ │ │ ├── objectLiteralShorthandPropertiesAssignmentError.ts │ │ │ │ ├── objectLiteralShorthandPropertiesAssignmentErrorFromMissingIdentifier.ts │ │ │ │ ├── objectLiteralShorthandPropertiesES6.ts │ │ │ │ ├── objectLiteralShorthandPropertiesErrorFromNoneExistingIdentifier.ts │ │ │ │ ├── objectLiteralShorthandPropertiesErrorFromNotUsingIdentifier.ts │ │ │ │ ├── objectLiteralShorthandPropertiesErrorWithModule.ts │ │ │ │ ├── objectLiteralShorthandPropertiesFunctionArgument.ts │ │ │ │ ├── objectLiteralShorthandPropertiesFunctionArgument2.ts │ │ │ │ ├── objectLiteralShorthandPropertiesWithModule.ts │ │ │ │ └── objectLiteralShorthandPropertiesWithModuleES6.ts │ │ │ ├── spread/ │ │ │ │ ├── arrayLiteralSpread.ts │ │ │ │ ├── arrayLiteralSpreadES5iterable.ts │ │ │ │ ├── arraySpreadImportHelpers.ts │ │ │ │ ├── arraySpreadInCall.ts │ │ │ │ ├── iteratorSpreadInArray.ts │ │ │ │ ├── iteratorSpreadInArray10.ts │ │ │ │ ├── iteratorSpreadInArray11.ts │ │ │ │ ├── iteratorSpreadInArray2.ts │ │ │ │ ├── iteratorSpreadInArray3.ts │ │ │ │ ├── iteratorSpreadInArray4.ts │ │ │ │ ├── iteratorSpreadInArray5.ts │ │ │ │ ├── iteratorSpreadInArray6.ts │ │ │ │ ├── iteratorSpreadInArray7.ts │ │ │ │ ├── iteratorSpreadInArray8.ts │ │ │ │ ├── iteratorSpreadInArray9.ts │ │ │ │ ├── iteratorSpreadInCall.ts │ │ │ │ ├── iteratorSpreadInCall10.ts │ │ │ │ ├── iteratorSpreadInCall11.ts │ │ │ │ ├── iteratorSpreadInCall12.ts │ │ │ │ ├── iteratorSpreadInCall2.ts │ │ │ │ ├── iteratorSpreadInCall3.ts │ │ │ │ ├── iteratorSpreadInCall4.ts │ │ │ │ ├── iteratorSpreadInCall5.ts │ │ │ │ ├── iteratorSpreadInCall6.ts │ │ │ │ ├── iteratorSpreadInCall7.ts │ │ │ │ ├── iteratorSpreadInCall8.ts │ │ │ │ └── iteratorSpreadInCall9.ts │ │ │ ├── templates/ │ │ │ │ ├── TemplateExpression1.ts │ │ │ │ ├── taggedTemplateStringsPlainCharactersThatArePartsOfEscapes01.ts │ │ │ │ ├── taggedTemplateStringsPlainCharactersThatArePartsOfEscapes01_ES6.ts │ │ │ │ ├── taggedTemplateStringsPlainCharactersThatArePartsOfEscapes02.ts │ │ │ │ ├── taggedTemplateStringsPlainCharactersThatArePartsOfEscapes02_ES6.ts │ │ │ │ ├── taggedTemplateStringsTypeArgumentInference.ts │ │ │ │ ├── taggedTemplateStringsTypeArgumentInferenceES6.ts │ │ │ │ ├── taggedTemplateStringsWithIncompatibleTypedTags.ts │ │ │ │ ├── taggedTemplateStringsWithIncompatibleTypedTagsES6.ts │ │ │ │ ├── taggedTemplateStringsWithManyCallAndMemberExpressions.ts │ │ │ │ ├── taggedTemplateStringsWithManyCallAndMemberExpressionsES6.ts │ │ │ │ ├── taggedTemplateStringsWithOverloadResolution1.ts │ │ │ │ ├── taggedTemplateStringsWithOverloadResolution1_ES6.ts │ │ │ │ ├── taggedTemplateStringsWithOverloadResolution2.ts │ │ │ │ ├── taggedTemplateStringsWithOverloadResolution2_ES6.ts │ │ │ │ ├── taggedTemplateStringsWithOverloadResolution3.ts │ │ │ │ ├── taggedTemplateStringsWithOverloadResolution3_ES6.ts │ │ │ │ ├── taggedTemplateStringsWithTagNamedDeclare.ts │ │ │ │ ├── taggedTemplateStringsWithTagNamedDeclareES6.ts │ │ │ │ ├── taggedTemplateStringsWithTagsTypedAsAny.ts │ │ │ │ ├── taggedTemplateStringsWithTagsTypedAsAnyES6.ts │ │ │ │ ├── taggedTemplateStringsWithTypeErrorInFunctionExpressionsInSubstitutionExpression.ts │ │ │ │ ├── taggedTemplateStringsWithTypeErrorInFunctionExpressionsInSubstitutionExpressionES6.ts │ │ │ │ ├── taggedTemplateStringsWithTypedTags.ts │ │ │ │ ├── taggedTemplateStringsWithTypedTagsES6.ts │ │ │ │ ├── taggedTemplateUntypedTagCall01.ts │ │ │ │ ├── taggedTemplateWithConstructableTag01.ts │ │ │ │ ├── taggedTemplateWithConstructableTag02.ts │ │ │ │ ├── taggedTemplatesWithTypeArguments1.ts │ │ │ │ ├── taggedTemplatesWithTypeArguments2.ts │ │ │ │ ├── templateStringBinaryOperations.ts │ │ │ │ ├── templateStringBinaryOperationsES6.ts │ │ │ │ ├── templateStringBinaryOperationsES6Invalid.ts │ │ │ │ ├── templateStringBinaryOperationsInvalid.ts │ │ │ │ ├── templateStringControlCharacterEscapes01.ts │ │ │ │ ├── templateStringControlCharacterEscapes01_ES6.ts │ │ │ │ ├── templateStringControlCharacterEscapes02.ts │ │ │ │ ├── templateStringControlCharacterEscapes02_ES6.ts │ │ │ │ ├── templateStringControlCharacterEscapes03.ts │ │ │ │ ├── templateStringControlCharacterEscapes03_ES6.ts │ │ │ │ ├── templateStringControlCharacterEscapes04.ts │ │ │ │ ├── templateStringControlCharacterEscapes04_ES6.ts │ │ │ │ ├── templateStringInArray.ts │ │ │ │ ├── templateStringInArrowFunction.ts │ │ │ │ ├── templateStringInArrowFunctionES6.ts │ │ │ │ ├── templateStringInCallExpression.ts │ │ │ │ ├── templateStringInCallExpressionES6.ts │ │ │ │ ├── templateStringInConditional.ts │ │ │ │ ├── templateStringInConditionalES6.ts │ │ │ │ ├── templateStringInDeleteExpression.ts │ │ │ │ ├── templateStringInDeleteExpressionES6.ts │ │ │ │ ├── templateStringInDivision.ts │ │ │ │ ├── templateStringInEqualityChecks.ts │ │ │ │ ├── templateStringInEqualityChecksES6.ts │ │ │ │ ├── templateStringInFunctionExpression.ts │ │ │ │ ├── templateStringInFunctionExpressionES6.ts │ │ │ │ ├── templateStringInFunctionParameterType.ts │ │ │ │ ├── templateStringInFunctionParameterTypeES6.ts │ │ │ │ ├── templateStringInInOperator.ts │ │ │ │ ├── templateStringInInOperatorES6.ts │ │ │ │ ├── templateStringInIndexExpression.ts │ │ │ │ ├── templateStringInIndexExpressionES6.ts │ │ │ │ ├── templateStringInInstanceOf.ts │ │ │ │ ├── templateStringInInstanceOfES6.ts │ │ │ │ ├── templateStringInModuleName.ts │ │ │ │ ├── templateStringInModuleNameES6.ts │ │ │ │ ├── templateStringInModulo.ts │ │ │ │ ├── templateStringInModuloES6.ts │ │ │ │ ├── templateStringInMultiplication.ts │ │ │ │ ├── templateStringInMultiplicationES6.ts │ │ │ │ ├── templateStringInNewExpression.ts │ │ │ │ ├── templateStringInNewExpressionES6.ts │ │ │ │ ├── templateStringInNewOperator.ts │ │ │ │ ├── templateStringInNewOperatorES6.ts │ │ │ │ ├── templateStringInObjectLiteral.ts │ │ │ │ ├── templateStringInObjectLiteralES6.ts │ │ │ │ ├── templateStringInParentheses.ts │ │ │ │ ├── templateStringInParenthesesES6.ts │ │ │ │ ├── templateStringInPropertyAssignment.ts │ │ │ │ ├── templateStringInPropertyAssignmentES6.ts │ │ │ │ ├── templateStringInPropertyName1.ts │ │ │ │ ├── templateStringInPropertyName2.ts │ │ │ │ ├── templateStringInPropertyNameES6_1.ts │ │ │ │ ├── templateStringInPropertyNameES6_2.ts │ │ │ │ ├── templateStringInSwitchAndCase.ts │ │ │ │ ├── templateStringInSwitchAndCaseES6.ts │ │ │ │ ├── templateStringInTaggedTemplate.ts │ │ │ │ ├── templateStringInTaggedTemplateES6.ts │ │ │ │ ├── templateStringInTypeAssertion.ts │ │ │ │ ├── templateStringInTypeAssertionES6.ts │ │ │ │ ├── templateStringInTypeOf.ts │ │ │ │ ├── templateStringInTypeOfES6.ts │ │ │ │ ├── templateStringInUnaryPlus.ts │ │ │ │ ├── templateStringInUnaryPlusES6.ts │ │ │ │ ├── templateStringInWhile.ts │ │ │ │ ├── templateStringInWhileES6.ts │ │ │ │ ├── templateStringInYieldKeyword.ts │ │ │ │ ├── templateStringMultiline1.ts │ │ │ │ ├── templateStringMultiline1_ES6.ts │ │ │ │ ├── templateStringMultiline2.ts │ │ │ │ ├── templateStringMultiline2_ES6.ts │ │ │ │ ├── templateStringMultiline3.ts │ │ │ │ ├── templateStringMultiline3_ES6.ts │ │ │ │ ├── templateStringPlainCharactersThatArePartsOfEscapes01.ts │ │ │ │ ├── templateStringPlainCharactersThatArePartsOfEscapes01_ES6.ts │ │ │ │ ├── templateStringPlainCharactersThatArePartsOfEscapes02.ts │ │ │ │ ├── templateStringPlainCharactersThatArePartsOfEscapes02_ES6.ts │ │ │ │ ├── templateStringTermination1.ts │ │ │ │ ├── templateStringTermination1_ES6.ts │ │ │ │ ├── templateStringTermination2.ts │ │ │ │ ├── templateStringTermination2_ES6.ts │ │ │ │ ├── templateStringTermination3.ts │ │ │ │ ├── templateStringTermination3_ES6.ts │ │ │ │ ├── templateStringTermination4.ts │ │ │ │ ├── templateStringTermination4_ES6.ts │ │ │ │ ├── templateStringTermination5.ts │ │ │ │ ├── templateStringTermination5_ES6.ts │ │ │ │ ├── templateStringUnterminated1.ts │ │ │ │ ├── templateStringUnterminated1_ES6.ts │ │ │ │ ├── templateStringUnterminated2.ts │ │ │ │ ├── templateStringUnterminated2_ES6.ts │ │ │ │ ├── templateStringUnterminated3.ts │ │ │ │ ├── templateStringUnterminated3_ES6.ts │ │ │ │ ├── templateStringUnterminated4.ts │ │ │ │ ├── templateStringUnterminated4_ES6.ts │ │ │ │ ├── templateStringUnterminated5.ts │ │ │ │ ├── templateStringUnterminated5_ES6.ts │ │ │ │ ├── templateStringWhitespaceEscapes1.ts │ │ │ │ ├── templateStringWhitespaceEscapes1_ES6.ts │ │ │ │ ├── templateStringWhitespaceEscapes2.ts │ │ │ │ ├── templateStringWhitespaceEscapes2_ES6.ts │ │ │ │ ├── templateStringWithBackslashEscapes01.ts │ │ │ │ ├── templateStringWithBackslashEscapes01_ES6.ts │ │ │ │ ├── templateStringWithCommentsInArrowFunction.ts │ │ │ │ ├── templateStringWithEmbeddedAddition.ts │ │ │ │ ├── templateStringWithEmbeddedAdditionES6.ts │ │ │ │ ├── templateStringWithEmbeddedArray.ts │ │ │ │ ├── templateStringWithEmbeddedArrayES6.ts │ │ │ │ ├── templateStringWithEmbeddedArrowFunction.ts │ │ │ │ ├── templateStringWithEmbeddedArrowFunctionES6.ts │ │ │ │ ├── templateStringWithEmbeddedComments.ts │ │ │ │ ├── templateStringWithEmbeddedCommentsES6.ts │ │ │ │ ├── templateStringWithEmbeddedConditional.ts │ │ │ │ ├── templateStringWithEmbeddedConditionalES6.ts │ │ │ │ ├── templateStringWithEmbeddedDivision.ts │ │ │ │ ├── templateStringWithEmbeddedDivisionES6.ts │ │ │ │ ├── templateStringWithEmbeddedFunctionExpression.ts │ │ │ │ ├── templateStringWithEmbeddedFunctionExpressionES6.ts │ │ │ │ ├── templateStringWithEmbeddedInOperator.ts │ │ │ │ ├── templateStringWithEmbeddedInOperatorES6.ts │ │ │ │ ├── templateStringWithEmbeddedInstanceOf.ts │ │ │ │ ├── templateStringWithEmbeddedInstanceOfES6.ts │ │ │ │ ├── templateStringWithEmbeddedModulo.ts │ │ │ │ ├── templateStringWithEmbeddedModuloES6.ts │ │ │ │ ├── templateStringWithEmbeddedMultiplication.ts │ │ │ │ ├── templateStringWithEmbeddedMultiplicationES6.ts │ │ │ │ ├── templateStringWithEmbeddedNewOperator.ts │ │ │ │ ├── templateStringWithEmbeddedNewOperatorES6.ts │ │ │ │ ├── templateStringWithEmbeddedObjectLiteral.ts │ │ │ │ ├── templateStringWithEmbeddedObjectLiteralES6.ts │ │ │ │ ├── templateStringWithEmbeddedTemplateString.ts │ │ │ │ ├── templateStringWithEmbeddedTemplateStringES6.ts │ │ │ │ ├── templateStringWithEmbeddedTypeAssertionOnAddition.ts │ │ │ │ ├── templateStringWithEmbeddedTypeAssertionOnAdditionES6.ts │ │ │ │ ├── templateStringWithEmbeddedTypeOfOperator.ts │ │ │ │ ├── templateStringWithEmbeddedTypeOfOperatorES6.ts │ │ │ │ ├── templateStringWithEmbeddedUnaryPlus.ts │ │ │ │ ├── templateStringWithEmbeddedUnaryPlusES6.ts │ │ │ │ ├── templateStringWithEmbeddedYieldKeyword.ts │ │ │ │ ├── templateStringWithEmbeddedYieldKeywordES6.ts │ │ │ │ ├── templateStringWithEmptyLiteralPortions.ts │ │ │ │ ├── templateStringWithEmptyLiteralPortionsES6.ts │ │ │ │ ├── templateStringWithOpenCommentInStringPortion.ts │ │ │ │ ├── templateStringWithOpenCommentInStringPortionES6.ts │ │ │ │ ├── templateStringWithPropertyAccess.ts │ │ │ │ ├── templateStringWithPropertyAccessES6.ts │ │ │ │ ├── templateStringsWithTypeErrorInFunctionExpressionsInSubstitutionExpression.ts │ │ │ │ └── templateStringsWithTypeErrorInFunctionExpressionsInSubstitutionExpressionES6.ts │ │ │ ├── unicodeExtendedEscapes/ │ │ │ │ ├── unicodeExtendedEscapesInRegularExpressions01.ts │ │ │ │ ├── unicodeExtendedEscapesInRegularExpressions02.ts │ │ │ │ ├── unicodeExtendedEscapesInRegularExpressions03.ts │ │ │ │ ├── unicodeExtendedEscapesInRegularExpressions04.ts │ │ │ │ ├── unicodeExtendedEscapesInRegularExpressions05.ts │ │ │ │ ├── unicodeExtendedEscapesInRegularExpressions06.ts │ │ │ │ ├── unicodeExtendedEscapesInRegularExpressions07.ts │ │ │ │ ├── unicodeExtendedEscapesInRegularExpressions08.ts │ │ │ │ ├── unicodeExtendedEscapesInRegularExpressions09.ts │ │ │ │ ├── unicodeExtendedEscapesInRegularExpressions10.ts │ │ │ │ ├── unicodeExtendedEscapesInRegularExpressions11.ts │ │ │ │ ├── unicodeExtendedEscapesInRegularExpressions12.ts │ │ │ │ ├── unicodeExtendedEscapesInRegularExpressions13.ts │ │ │ │ ├── unicodeExtendedEscapesInRegularExpressions14.ts │ │ │ │ ├── unicodeExtendedEscapesInRegularExpressions15.ts │ │ │ │ ├── unicodeExtendedEscapesInRegularExpressions16.ts │ │ │ │ ├── unicodeExtendedEscapesInRegularExpressions17.ts │ │ │ │ ├── unicodeExtendedEscapesInRegularExpressions18.ts │ │ │ │ ├── unicodeExtendedEscapesInRegularExpressions19.ts │ │ │ │ ├── unicodeExtendedEscapesInStrings01.ts │ │ │ │ ├── unicodeExtendedEscapesInStrings02.ts │ │ │ │ ├── unicodeExtendedEscapesInStrings03.ts │ │ │ │ ├── unicodeExtendedEscapesInStrings04.ts │ │ │ │ ├── unicodeExtendedEscapesInStrings05.ts │ │ │ │ ├── unicodeExtendedEscapesInStrings06.ts │ │ │ │ ├── unicodeExtendedEscapesInStrings07.ts │ │ │ │ ├── unicodeExtendedEscapesInStrings08.ts │ │ │ │ ├── unicodeExtendedEscapesInStrings09.ts │ │ │ │ ├── unicodeExtendedEscapesInStrings10.ts │ │ │ │ ├── unicodeExtendedEscapesInStrings11.ts │ │ │ │ ├── unicodeExtendedEscapesInStrings12.ts │ │ │ │ ├── unicodeExtendedEscapesInStrings13.ts │ │ │ │ ├── unicodeExtendedEscapesInStrings14.ts │ │ │ │ ├── unicodeExtendedEscapesInStrings15.ts │ │ │ │ ├── unicodeExtendedEscapesInStrings16.ts │ │ │ │ ├── unicodeExtendedEscapesInStrings17.ts │ │ │ │ ├── unicodeExtendedEscapesInStrings18.ts │ │ │ │ ├── unicodeExtendedEscapesInStrings19.ts │ │ │ │ ├── unicodeExtendedEscapesInStrings20.ts │ │ │ │ ├── unicodeExtendedEscapesInStrings21.ts │ │ │ │ ├── unicodeExtendedEscapesInStrings22.ts │ │ │ │ ├── unicodeExtendedEscapesInStrings23.ts │ │ │ │ ├── unicodeExtendedEscapesInStrings24.ts │ │ │ │ ├── unicodeExtendedEscapesInStrings25.ts │ │ │ │ ├── unicodeExtendedEscapesInTemplates01.ts │ │ │ │ ├── unicodeExtendedEscapesInTemplates02.ts │ │ │ │ ├── unicodeExtendedEscapesInTemplates03.ts │ │ │ │ ├── unicodeExtendedEscapesInTemplates04.ts │ │ │ │ ├── unicodeExtendedEscapesInTemplates05.ts │ │ │ │ ├── unicodeExtendedEscapesInTemplates06.ts │ │ │ │ ├── unicodeExtendedEscapesInTemplates07.ts │ │ │ │ ├── unicodeExtendedEscapesInTemplates08.ts │ │ │ │ ├── unicodeExtendedEscapesInTemplates09.ts │ │ │ │ ├── unicodeExtendedEscapesInTemplates10.ts │ │ │ │ ├── unicodeExtendedEscapesInTemplates11.ts │ │ │ │ ├── unicodeExtendedEscapesInTemplates12.ts │ │ │ │ ├── unicodeExtendedEscapesInTemplates13.ts │ │ │ │ ├── unicodeExtendedEscapesInTemplates14.ts │ │ │ │ ├── unicodeExtendedEscapesInTemplates15.ts │ │ │ │ ├── unicodeExtendedEscapesInTemplates16.ts │ │ │ │ ├── unicodeExtendedEscapesInTemplates17.ts │ │ │ │ ├── unicodeExtendedEscapesInTemplates18.ts │ │ │ │ ├── unicodeExtendedEscapesInTemplates19.ts │ │ │ │ └── unicodeExtendedEscapesInTemplates20.ts │ │ │ ├── variableDeclarations/ │ │ │ │ ├── VariableDeclaration10_es6.ts │ │ │ │ ├── VariableDeclaration11_es6.ts │ │ │ │ ├── VariableDeclaration12_es6.ts │ │ │ │ ├── VariableDeclaration13_es6.ts │ │ │ │ ├── VariableDeclaration1_es6.ts │ │ │ │ ├── VariableDeclaration2_es6.ts │ │ │ │ ├── VariableDeclaration3_es6.ts │ │ │ │ ├── VariableDeclaration4_es6.ts │ │ │ │ ├── VariableDeclaration5_es6.ts │ │ │ │ ├── VariableDeclaration6_es6.ts │ │ │ │ ├── VariableDeclaration7_es6.ts │ │ │ │ ├── VariableDeclaration8_es6.ts │ │ │ │ └── VariableDeclaration9_es6.ts │ │ │ └── yieldExpressions/ │ │ │ ├── YieldExpression10_es6.ts │ │ │ ├── YieldExpression11_es6.ts │ │ │ ├── YieldExpression12_es6.ts │ │ │ ├── YieldExpression13_es6.ts │ │ │ ├── YieldExpression14_es6.ts │ │ │ ├── YieldExpression15_es6.ts │ │ │ ├── YieldExpression16_es6.ts │ │ │ ├── YieldExpression17_es6.ts │ │ │ ├── YieldExpression18_es6.ts │ │ │ ├── YieldExpression19_es6.ts │ │ │ ├── YieldExpression1_es6.ts │ │ │ ├── YieldExpression20_es6.ts │ │ │ ├── YieldExpression2_es6.ts │ │ │ ├── YieldExpression3_es6.ts │ │ │ ├── YieldExpression4_es6.ts │ │ │ ├── YieldExpression5_es6.ts │ │ │ ├── YieldExpression6_es6.ts │ │ │ ├── YieldExpression7_es6.ts │ │ │ ├── YieldExpression8_es6.ts │ │ │ ├── YieldExpression9_es6.ts │ │ │ ├── YieldStarExpression1_es6.ts │ │ │ ├── YieldStarExpression2_es6.ts │ │ │ ├── YieldStarExpression3_es6.ts │ │ │ ├── YieldStarExpression4_es6.ts │ │ │ ├── generatorInAmbientContext1.ts │ │ │ ├── generatorInAmbientContext2.ts │ │ │ ├── generatorInAmbientContext3.d.ts │ │ │ ├── generatorInAmbientContext4.d.ts │ │ │ ├── generatorInAmbientContext5.ts │ │ │ ├── generatorInAmbientContext6.ts │ │ │ ├── generatorNoImplicitReturns.ts │ │ │ ├── generatorOverloads1.ts │ │ │ ├── generatorOverloads2.ts │ │ │ ├── generatorOverloads3.ts │ │ │ ├── generatorOverloads4.ts │ │ │ ├── generatorOverloads5.ts │ │ │ ├── generatorTypeCheck1.ts │ │ │ ├── generatorTypeCheck10.ts │ │ │ ├── generatorTypeCheck11.ts │ │ │ ├── generatorTypeCheck12.ts │ │ │ ├── generatorTypeCheck13.ts │ │ │ ├── generatorTypeCheck14.ts │ │ │ ├── generatorTypeCheck15.ts │ │ │ ├── generatorTypeCheck16.ts │ │ │ ├── generatorTypeCheck17.ts │ │ │ ├── generatorTypeCheck18.ts │ │ │ ├── generatorTypeCheck19.ts │ │ │ ├── generatorTypeCheck2.ts │ │ │ ├── generatorTypeCheck20.ts │ │ │ ├── generatorTypeCheck21.ts │ │ │ ├── generatorTypeCheck22.ts │ │ │ ├── generatorTypeCheck23.ts │ │ │ ├── generatorTypeCheck24.ts │ │ │ ├── generatorTypeCheck25.ts │ │ │ ├── generatorTypeCheck26.ts │ │ │ ├── generatorTypeCheck27.ts │ │ │ ├── generatorTypeCheck28.ts │ │ │ ├── generatorTypeCheck29.ts │ │ │ ├── generatorTypeCheck3.ts │ │ │ ├── generatorTypeCheck30.ts │ │ │ ├── generatorTypeCheck31.ts │ │ │ ├── generatorTypeCheck32.ts │ │ │ ├── generatorTypeCheck33.ts │ │ │ ├── generatorTypeCheck34.ts │ │ │ ├── generatorTypeCheck35.ts │ │ │ ├── generatorTypeCheck36.ts │ │ │ ├── generatorTypeCheck37.ts │ │ │ ├── generatorTypeCheck38.ts │ │ │ ├── generatorTypeCheck39.ts │ │ │ ├── generatorTypeCheck4.ts │ │ │ ├── generatorTypeCheck40.ts │ │ │ ├── generatorTypeCheck41.ts │ │ │ ├── generatorTypeCheck42.ts │ │ │ ├── generatorTypeCheck43.ts │ │ │ ├── generatorTypeCheck44.ts │ │ │ ├── generatorTypeCheck45.ts │ │ │ ├── generatorTypeCheck46.ts │ │ │ ├── generatorTypeCheck47.ts │ │ │ ├── generatorTypeCheck48.ts │ │ │ ├── generatorTypeCheck49.ts │ │ │ ├── generatorTypeCheck5.ts │ │ │ ├── generatorTypeCheck50.ts │ │ │ ├── generatorTypeCheck51.ts │ │ │ ├── generatorTypeCheck52.ts │ │ │ ├── generatorTypeCheck53.ts │ │ │ ├── generatorTypeCheck54.ts │ │ │ ├── generatorTypeCheck55.ts │ │ │ ├── generatorTypeCheck56.ts │ │ │ ├── generatorTypeCheck57.ts │ │ │ ├── generatorTypeCheck58.ts │ │ │ ├── generatorTypeCheck59.ts │ │ │ ├── generatorTypeCheck6.ts │ │ │ ├── generatorTypeCheck60.ts │ │ │ ├── generatorTypeCheck61.ts │ │ │ ├── generatorTypeCheck62.ts │ │ │ ├── generatorTypeCheck63.ts │ │ │ ├── generatorTypeCheck64.ts │ │ │ ├── generatorTypeCheck7.ts │ │ │ ├── generatorTypeCheck8.ts │ │ │ ├── generatorTypeCheck9.ts │ │ │ └── yieldExpressionInControlFlow.ts │ │ ├── es7/ │ │ │ ├── exponentiationOperator/ │ │ │ │ ├── compoundExponentiationAssignmentLHSCanBeAssigned1.ts │ │ │ │ ├── compoundExponentiationAssignmentLHSCannotBeAssigned.ts │ │ │ │ ├── compoundExponentiationAssignmentLHSIsReference.ts │ │ │ │ ├── compoundExponentiationAssignmentLHSIsValue.ts │ │ │ │ ├── emitCompoundExponentiationAssignmentWithIndexingOnLHS1.ts │ │ │ │ ├── emitCompoundExponentiationAssignmentWithIndexingOnLHS2.ts │ │ │ │ ├── emitCompoundExponentiationAssignmentWithIndexingOnLHS3.ts │ │ │ │ ├── emitCompoundExponentiationAssignmentWithIndexingOnLHS4.ts │ │ │ │ ├── emitCompoundExponentiationAssignmentWithPropertyAccessingOnLHS1.ts │ │ │ │ ├── emitCompoundExponentiationOperator1.ts │ │ │ │ ├── emitCompoundExponentiationOperator2.ts │ │ │ │ ├── emitExponentiationOperator1.ts │ │ │ │ ├── emitExponentiationOperator2.ts │ │ │ │ ├── emitExponentiationOperator3.ts │ │ │ │ ├── emitExponentiationOperator4.ts │ │ │ │ ├── emitExponentiationOperatorInTempalteString4.ts │ │ │ │ ├── emitExponentiationOperatorInTempalteString4ES6.ts │ │ │ │ ├── emitExponentiationOperatorInTemplateString1.ts │ │ │ │ ├── emitExponentiationOperatorInTemplateString1ES6.ts │ │ │ │ ├── emitExponentiationOperatorInTemplateString2.ts │ │ │ │ ├── emitExponentiationOperatorInTemplateString2ES6.ts │ │ │ │ ├── emitExponentiationOperatorInTemplateString3.ts │ │ │ │ ├── emitExponentiationOperatorInTemplateString3ES6.ts │ │ │ │ ├── exponentiationOperatorInTemplateStringWithSyntaxError1.ts │ │ │ │ ├── exponentiationOperatorInTemplateStringWithSyntaxError2.ts │ │ │ │ ├── exponentiationOperatorInTemplateStringWithSyntaxError3.ts │ │ │ │ ├── exponentiationOperatorSyntaxError1.ts │ │ │ │ ├── exponentiationOperatorSyntaxError2.ts │ │ │ │ ├── exponentiationOperatorWithAnyAndNumber.ts │ │ │ │ ├── exponentiationOperatorWithEnum.ts │ │ │ │ ├── exponentiationOperatorWithEnumUnion.ts │ │ │ │ ├── exponentiationOperatorWithInvalidOperands.ts │ │ │ │ ├── exponentiationOperatorWithInvalidSimpleUnaryExpressionOperands.ts │ │ │ │ ├── exponentiationOperatorWithNew.ts │ │ │ │ ├── exponentiationOperatorWithNullValueAndInvalidOperands.ts │ │ │ │ ├── exponentiationOperatorWithNullValueAndValidOperands.ts │ │ │ │ ├── exponentiationOperatorWithOnlyNullValueOrUndefinedValue.ts │ │ │ │ ├── exponentiationOperatorWithTemplateStringInvalid.ts │ │ │ │ ├── exponentiationOperatorWithTemplateStringInvalidES6.ts │ │ │ │ ├── exponentiationOperatorWithTypeParameter.ts │ │ │ │ ├── exponentiationOperatorWithUndefinedValueAndInvalidOperands.ts │ │ │ │ └── exponentiationOperatorWithUndefinedValueAndValidOperands.ts │ │ │ ├── trailingCommasInBindingPatterns.ts │ │ │ ├── trailingCommasInFunctionParametersAndArguments.ts │ │ │ └── trailingCommasInGetter.ts │ │ ├── esDecorators/ │ │ │ ├── classDeclaration/ │ │ │ │ ├── accessors/ │ │ │ │ │ ├── esDecorators-classDeclaration-accessors-nonStatic.ts │ │ │ │ │ ├── esDecorators-classDeclaration-accessors-nonStaticAbstract.ts │ │ │ │ │ ├── esDecorators-classDeclaration-accessors-nonStaticPrivate.ts │ │ │ │ │ ├── esDecorators-classDeclaration-accessors-static.ts │ │ │ │ │ └── esDecorators-classDeclaration-accessors-staticPrivate.ts │ │ │ │ ├── classSuper/ │ │ │ │ │ ├── esDecorators-classDeclaration-classSuper.1.ts │ │ │ │ │ ├── esDecorators-classDeclaration-classSuper.2.ts │ │ │ │ │ ├── esDecorators-classDeclaration-classSuper.3.ts │ │ │ │ │ ├── esDecorators-classDeclaration-classSuper.4.ts │ │ │ │ │ ├── esDecorators-classDeclaration-classSuper.5.ts │ │ │ │ │ ├── esDecorators-classDeclaration-classSuper.6.ts │ │ │ │ │ └── esDecorators-classDeclaration-classSuper.7.ts │ │ │ │ ├── classThisReference/ │ │ │ │ │ ├── esDecorators-classDeclaration-classThisReference.es5.ts │ │ │ │ │ └── esDecorators-classDeclaration-classThisReference.ts │ │ │ │ ├── esDecorators-classDeclaration-commentPreservation.ts │ │ │ │ ├── esDecorators-classDeclaration-commonjs-classNamespaceMerge.ts │ │ │ │ ├── esDecorators-classDeclaration-commonjs.ts │ │ │ │ ├── esDecorators-classDeclaration-exportModifier.2.ts │ │ │ │ ├── esDecorators-classDeclaration-exportModifier.ts │ │ │ │ ├── esDecorators-classDeclaration-missingEmitHelpers-classDecorator.1.ts │ │ │ │ ├── esDecorators-classDeclaration-missingEmitHelpers-classDecorator.2.ts │ │ │ │ ├── esDecorators-classDeclaration-missingEmitHelpers-classDecorator.3.ts │ │ │ │ ├── esDecorators-classDeclaration-missingEmitHelpers-nonStaticPrivateAutoAccessor.ts │ │ │ │ ├── esDecorators-classDeclaration-missingEmitHelpers-nonStaticPrivateField.ts │ │ │ │ ├── esDecorators-classDeclaration-missingEmitHelpers-nonStaticPrivateGetter.ts │ │ │ │ ├── esDecorators-classDeclaration-missingEmitHelpers-nonStaticPrivateMethod.ts │ │ │ │ ├── esDecorators-classDeclaration-missingEmitHelpers-nonStaticPrivateSetter.ts │ │ │ │ ├── esDecorators-classDeclaration-missingEmitHelpers-staticComputedAutoAccessor.ts │ │ │ │ ├── esDecorators-classDeclaration-missingEmitHelpers-staticComputedField.ts │ │ │ │ ├── esDecorators-classDeclaration-missingEmitHelpers-staticComputedGetter.ts │ │ │ │ ├── esDecorators-classDeclaration-missingEmitHelpers-staticComputedMethod.ts │ │ │ │ ├── esDecorators-classDeclaration-missingEmitHelpers-staticComputedSetter.ts │ │ │ │ ├── esDecorators-classDeclaration-missingEmitHelpers-staticPrivateAutoAccessor.ts │ │ │ │ ├── esDecorators-classDeclaration-missingEmitHelpers-staticPrivateField.ts │ │ │ │ ├── esDecorators-classDeclaration-missingEmitHelpers-staticPrivateGetter.ts │ │ │ │ ├── esDecorators-classDeclaration-missingEmitHelpers-staticPrivateMethod.ts │ │ │ │ ├── esDecorators-classDeclaration-missingEmitHelpers-staticPrivateSetter.ts │ │ │ │ ├── esDecorators-classDeclaration-multipleDecorators.ts │ │ │ │ ├── esDecorators-classDeclaration-outerThisReference.ts │ │ │ │ ├── esDecorators-classDeclaration-parameterDecorators.ts │ │ │ │ ├── esDecorators-classDeclaration-parameterProperties.ts │ │ │ │ ├── esDecorators-classDeclaration-setFunctionName.ts │ │ │ │ ├── esDecorators-classDeclaration-simpleTransformation.ts │ │ │ │ ├── esDecorators-classDeclaration-sourceMap.ts │ │ │ │ ├── fields/ │ │ │ │ │ ├── esDecorators-classDeclaration-fields-nonStatic.ts │ │ │ │ │ ├── esDecorators-classDeclaration-fields-nonStaticAbstract.ts │ │ │ │ │ ├── esDecorators-classDeclaration-fields-nonStaticAbstractAccessor.ts │ │ │ │ │ ├── esDecorators-classDeclaration-fields-nonStaticAccessor.ts │ │ │ │ │ ├── esDecorators-classDeclaration-fields-nonStaticAmbient.ts │ │ │ │ │ ├── esDecorators-classDeclaration-fields-nonStaticPrivate.ts │ │ │ │ │ ├── esDecorators-classDeclaration-fields-nonStaticPrivateAccessor.ts │ │ │ │ │ ├── esDecorators-classDeclaration-fields-static.ts │ │ │ │ │ ├── esDecorators-classDeclaration-fields-staticAccessor.ts │ │ │ │ │ ├── esDecorators-classDeclaration-fields-staticAmbient.ts │ │ │ │ │ ├── esDecorators-classDeclaration-fields-staticPrivate.ts │ │ │ │ │ └── esDecorators-classDeclaration-fields-staticPrivateAccessor.ts │ │ │ │ └── methods/ │ │ │ │ ├── esDecorators-classDeclaration-methods-nonStatic.ts │ │ │ │ ├── esDecorators-classDeclaration-methods-nonStaticAbstract.ts │ │ │ │ ├── esDecorators-classDeclaration-methods-nonStaticPrivate.ts │ │ │ │ ├── esDecorators-classDeclaration-methods-static.ts │ │ │ │ └── esDecorators-classDeclaration-methods-staticPrivate.ts │ │ │ ├── classExpression/ │ │ │ │ ├── classSuper/ │ │ │ │ │ ├── esDecorators-classExpression-classSuper.1.ts │ │ │ │ │ ├── esDecorators-classExpression-classSuper.2.ts │ │ │ │ │ ├── esDecorators-classExpression-classSuper.3.ts │ │ │ │ │ ├── esDecorators-classExpression-classSuper.4.ts │ │ │ │ │ ├── esDecorators-classExpression-classSuper.5.ts │ │ │ │ │ └── esDecorators-classExpression-classSuper.6.ts │ │ │ │ ├── esDecorators-classExpression-commentPreservation.ts │ │ │ │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.1.ts │ │ │ │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.10.ts │ │ │ │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.11.ts │ │ │ │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.12.ts │ │ │ │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.13.ts │ │ │ │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.14.ts │ │ │ │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.15.ts │ │ │ │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.16.ts │ │ │ │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.17.ts │ │ │ │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.2.ts │ │ │ │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.3.ts │ │ │ │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.4.ts │ │ │ │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.5.ts │ │ │ │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.6.ts │ │ │ │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.7.ts │ │ │ │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.8.ts │ │ │ │ ├── esDecorators-classExpression-missingEmitHelpers-classDecorator.9.ts │ │ │ │ └── namedEvaluation/ │ │ │ │ ├── esDecorators-classExpression-namedEvaluation.1.ts │ │ │ │ ├── esDecorators-classExpression-namedEvaluation.10.ts │ │ │ │ ├── esDecorators-classExpression-namedEvaluation.11.ts │ │ │ │ ├── esDecorators-classExpression-namedEvaluation.2.ts │ │ │ │ ├── esDecorators-classExpression-namedEvaluation.3.ts │ │ │ │ ├── esDecorators-classExpression-namedEvaluation.4.ts │ │ │ │ ├── esDecorators-classExpression-namedEvaluation.5.ts │ │ │ │ ├── esDecorators-classExpression-namedEvaluation.6.ts │ │ │ │ ├── esDecorators-classExpression-namedEvaluation.7.ts │ │ │ │ ├── esDecorators-classExpression-namedEvaluation.8.ts │ │ │ │ └── esDecorators-classExpression-namedEvaluation.9.ts │ │ │ ├── esDecorators-arguments.ts │ │ │ ├── esDecorators-contextualTypes.2.ts │ │ │ ├── esDecorators-contextualTypes.ts │ │ │ ├── esDecorators-decoratorExpression.1.ts │ │ │ ├── esDecorators-decoratorExpression.2.ts │ │ │ ├── esDecorators-decoratorExpression.3.ts │ │ │ ├── esDecorators-emitDecoratorMetadata.ts │ │ │ ├── esDecorators-preservesThis.ts │ │ │ ├── esDecorators-privateFieldAccess.ts │ │ │ └── metadata/ │ │ │ ├── esDecoratorsMetadata1.ts │ │ │ ├── esDecoratorsMetadata2.ts │ │ │ ├── esDecoratorsMetadata3.ts │ │ │ ├── esDecoratorsMetadata4.ts │ │ │ └── esDecoratorsMetadata5.ts │ │ ├── esnext/ │ │ │ ├── esnextSharedMemory.ts │ │ │ └── logicalAssignment/ │ │ │ └── logicalAssignment11.ts │ │ ├── expressions/ │ │ │ ├── arrayLiterals/ │ │ │ │ ├── arrayLiteralInference.ts │ │ │ │ ├── arrayLiterals.ts │ │ │ │ ├── arrayLiterals2ES5.ts │ │ │ │ ├── arrayLiterals2ES6.ts │ │ │ │ └── arrayLiterals3.ts │ │ │ ├── asOperator/ │ │ │ │ ├── asOpEmitParens.ts │ │ │ │ ├── asOperator1.ts │ │ │ │ ├── asOperator2.ts │ │ │ │ ├── asOperator3.ts │ │ │ │ ├── asOperator4.ts │ │ │ │ ├── asOperatorASI.ts │ │ │ │ ├── asOperatorAmbiguity.ts │ │ │ │ ├── asOperatorContextualType.ts │ │ │ │ └── asOperatorNames.ts │ │ │ ├── assignmentOperator/ │ │ │ │ ├── assignmentGenericLookupTypeNarrowing.ts │ │ │ │ ├── assignmentLHSIsReference.ts │ │ │ │ ├── assignmentLHSIsValue.ts │ │ │ │ ├── assignmentTypeNarrowing.ts │ │ │ │ ├── compoundAdditionAssignmentLHSCanBeAssigned.ts │ │ │ │ ├── compoundAdditionAssignmentLHSCannotBeAssigned.ts │ │ │ │ ├── compoundAdditionAssignmentWithInvalidOperands.ts │ │ │ │ ├── compoundArithmeticAssignmentLHSCanBeAssigned.ts │ │ │ │ ├── compoundArithmeticAssignmentWithInvalidOperands.ts │ │ │ │ ├── compoundAssignmentLHSIsReference.ts │ │ │ │ └── compoundAssignmentLHSIsValue.ts │ │ │ ├── binaryOperators/ │ │ │ │ ├── additionOperator/ │ │ │ │ │ ├── additionOperatorWithAnyAndEveryType.ts │ │ │ │ │ ├── additionOperatorWithConstrainedTypeParameter.ts │ │ │ │ │ ├── additionOperatorWithInvalidOperands.ts │ │ │ │ │ ├── additionOperatorWithNullValueAndInvalidOperator.ts │ │ │ │ │ ├── additionOperatorWithNullValueAndValidOperator.ts │ │ │ │ │ ├── additionOperatorWithNumberAndEnum.ts │ │ │ │ │ ├── additionOperatorWithOnlyNullValueOrUndefinedValue.ts │ │ │ │ │ ├── additionOperatorWithStringAndEveryType.ts │ │ │ │ │ ├── additionOperatorWithTypeParameter.ts │ │ │ │ │ ├── additionOperatorWithUndefinedValueAndInvalidOperands.ts │ │ │ │ │ └── additionOperatorWithUndefinedValueAndValidOperator.ts │ │ │ │ ├── arithmeticOperator/ │ │ │ │ │ ├── arithmeticOperatorWithAnyAndNumber.ts │ │ │ │ │ ├── arithmeticOperatorWithEnum.ts │ │ │ │ │ ├── arithmeticOperatorWithEnumUnion.ts │ │ │ │ │ ├── arithmeticOperatorWithInvalidOperands.ts │ │ │ │ │ ├── arithmeticOperatorWithNullValueAndInvalidOperands.ts │ │ │ │ │ ├── arithmeticOperatorWithNullValueAndValidOperands.ts │ │ │ │ │ ├── arithmeticOperatorWithOnlyNullValueOrUndefinedValue.ts │ │ │ │ │ ├── arithmeticOperatorWithTypeParameter.ts │ │ │ │ │ ├── arithmeticOperatorWithUndefinedValueAndInvalidOperands.ts │ │ │ │ │ └── arithmeticOperatorWithUndefinedValueAndValidOperands.ts │ │ │ │ ├── comparisonOperator/ │ │ │ │ │ ├── comparisonOperatorWithIdenticalObjects.ts │ │ │ │ │ ├── comparisonOperatorWithIdenticalPrimitiveType.ts │ │ │ │ │ ├── comparisonOperatorWithIdenticalTypeParameter.ts │ │ │ │ │ ├── comparisonOperatorWithIntersectionType.ts │ │ │ │ │ ├── comparisonOperatorWithNoRelationshipObjectsOnCallSignature.ts │ │ │ │ │ ├── comparisonOperatorWithNoRelationshipObjectsOnConstructorSignature.ts │ │ │ │ │ ├── comparisonOperatorWithNoRelationshipObjectsOnIndexSignature.ts │ │ │ │ │ ├── comparisonOperatorWithNoRelationshipObjectsOnInstantiatedCallSignature.ts │ │ │ │ │ ├── comparisonOperatorWithNoRelationshipObjectsOnInstantiatedConstructorSignature.ts │ │ │ │ │ ├── comparisonOperatorWithNoRelationshipObjectsOnOptionalProperty.ts │ │ │ │ │ ├── comparisonOperatorWithNoRelationshipObjectsOnProperty.ts │ │ │ │ │ ├── comparisonOperatorWithNoRelationshipPrimitiveType.ts │ │ │ │ │ ├── comparisonOperatorWithNoRelationshipTypeParameter.ts │ │ │ │ │ ├── comparisonOperatorWithNumberOperand.ts │ │ │ │ │ ├── comparisonOperatorWithNumericLiteral.ts │ │ │ │ │ ├── comparisonOperatorWithOneOperandIsAny.ts │ │ │ │ │ ├── comparisonOperatorWithOneOperandIsNull.ts │ │ │ │ │ ├── comparisonOperatorWithOneOperandIsUndefined.ts │ │ │ │ │ ├── comparisonOperatorWithSubtypeEnumAndNumber.ts │ │ │ │ │ ├── comparisonOperatorWithSubtypeObjectOnCallSignature.ts │ │ │ │ │ ├── comparisonOperatorWithSubtypeObjectOnConstructorSignature.ts │ │ │ │ │ ├── comparisonOperatorWithSubtypeObjectOnIndexSignature.ts │ │ │ │ │ ├── comparisonOperatorWithSubtypeObjectOnInstantiatedCallSignature.ts │ │ │ │ │ ├── comparisonOperatorWithSubtypeObjectOnInstantiatedConstructorSignature.ts │ │ │ │ │ ├── comparisonOperatorWithSubtypeObjectOnOptionalProperty.ts │ │ │ │ │ ├── comparisonOperatorWithSubtypeObjectOnProperty.ts │ │ │ │ │ ├── comparisonOperatorWithTwoOperandsAreAny.ts │ │ │ │ │ └── comparisonOperatorWithTypeParameter.ts │ │ │ │ ├── inOperator/ │ │ │ │ │ ├── inOperatorWithInvalidOperands.ts │ │ │ │ │ └── inOperatorWithValidOperands.ts │ │ │ │ ├── instanceofOperator/ │ │ │ │ │ ├── instanceofOperatorWithAny.ts │ │ │ │ │ ├── instanceofOperatorWithInvalidOperands.es2015.ts │ │ │ │ │ ├── instanceofOperatorWithInvalidOperands.ts │ │ │ │ │ ├── instanceofOperatorWithInvalidStaticToString.ts │ │ │ │ │ ├── instanceofOperatorWithLHSIsObject.ts │ │ │ │ │ ├── instanceofOperatorWithLHSIsTypeParameter.ts │ │ │ │ │ ├── instanceofOperatorWithRHSHasSymbolHasInstance.ts │ │ │ │ │ └── instanceofOperatorWithRHSIsSubtypeOfFunction.ts │ │ │ │ ├── logicalAndOperator/ │ │ │ │ │ ├── logicalAndOperatorStrictMode.ts │ │ │ │ │ ├── logicalAndOperatorWithEveryType.ts │ │ │ │ │ └── logicalAndOperatorWithTypeParameters.ts │ │ │ │ └── logicalOrOperator/ │ │ │ │ ├── logicalOrExpressionIsContextuallyTyped.ts │ │ │ │ ├── logicalOrExpressionIsNotContextuallyTyped.ts │ │ │ │ ├── logicalOrOperatorWithEveryType.ts │ │ │ │ └── logicalOrOperatorWithTypeParameters.ts │ │ │ ├── commaOperator/ │ │ │ │ ├── commaOperatorInvalidAssignmentType.ts │ │ │ │ ├── commaOperatorOtherInvalidOperation.ts │ │ │ │ ├── commaOperatorOtherValidOperation.ts │ │ │ │ ├── commaOperatorWithSecondOperandAnyType.ts │ │ │ │ ├── commaOperatorWithSecondOperandBooleanType.ts │ │ │ │ ├── commaOperatorWithSecondOperandNumberType.ts │ │ │ │ ├── commaOperatorWithSecondOperandObjectType.ts │ │ │ │ ├── commaOperatorWithSecondOperandStringType.ts │ │ │ │ ├── commaOperatorWithoutOperand.ts │ │ │ │ └── commaOperatorsMultipleOperators.ts │ │ │ ├── conditonalOperator/ │ │ │ │ ├── conditionalOperatorConditionIsBooleanType.ts │ │ │ │ ├── conditionalOperatorConditionIsNumberType.ts │ │ │ │ ├── conditionalOperatorConditionIsObjectType.ts │ │ │ │ ├── conditionalOperatorConditoinIsAnyType.ts │ │ │ │ ├── conditionalOperatorConditoinIsStringType.ts │ │ │ │ ├── conditionalOperatorWithIdenticalBCT.ts │ │ │ │ └── conditionalOperatorWithoutIdenticalBCT.ts │ │ │ ├── contextualTyping/ │ │ │ │ ├── argumentExpressionContextualTyping.ts │ │ │ │ ├── arrayLiteralExpressionContextualTyping.ts │ │ │ │ ├── functionExpressionContextualTyping1.ts │ │ │ │ ├── functionExpressionContextualTyping2.ts │ │ │ │ ├── functionExpressionContextualTyping3.ts │ │ │ │ ├── generatedContextualTyping.ts │ │ │ │ ├── getSetAccessorContextualTyping.ts │ │ │ │ ├── iterableContextualTyping1.ts │ │ │ │ ├── objectLiteralContextualTyping.ts │ │ │ │ ├── parenthesizedContexualTyping1.ts │ │ │ │ ├── parenthesizedContexualTyping2.ts │ │ │ │ ├── parenthesizedContexualTyping3.ts │ │ │ │ ├── superCallParameterContextualTyping1.ts │ │ │ │ ├── superCallParameterContextualTyping2.ts │ │ │ │ ├── superCallParameterContextualTyping3.ts │ │ │ │ ├── taggedTemplateContextualTyping1.ts │ │ │ │ └── taggedTemplateContextualTyping2.ts │ │ │ ├── elementAccess/ │ │ │ │ ├── letIdentifierInElementAccess01.ts │ │ │ │ └── stringEnumInElementAccess01.ts │ │ │ ├── functionCalls/ │ │ │ │ ├── callOverload.ts │ │ │ │ ├── callWithMissingVoid.ts │ │ │ │ ├── callWithMissingVoidUndefinedUnknownAnyInJs.ts │ │ │ │ ├── callWithSpread.ts │ │ │ │ ├── callWithSpread2.ts │ │ │ │ ├── callWithSpread3.ts │ │ │ │ ├── callWithSpread4.ts │ │ │ │ ├── callWithSpread5.ts │ │ │ │ ├── callWithSpreadES6.ts │ │ │ │ ├── forgottenNew.ts │ │ │ │ ├── functionCalls.ts │ │ │ │ ├── grammarAmbiguities.ts │ │ │ │ ├── newWithSpread.ts │ │ │ │ ├── newWithSpreadES5.ts │ │ │ │ ├── newWithSpreadES6.ts │ │ │ │ ├── overloadResolution.ts │ │ │ │ ├── overloadResolutionClassConstructors.ts │ │ │ │ ├── overloadResolutionConstructors.ts │ │ │ │ ├── typeArgumentInference.ts │ │ │ │ ├── typeArgumentInferenceConstructSignatures.ts │ │ │ │ ├── typeArgumentInferenceErrors.ts │ │ │ │ ├── typeArgumentInferenceTransitiveConstraints.ts │ │ │ │ ├── typeArgumentInferenceWithConstraints.ts │ │ │ │ └── typeArgumentInferenceWithObjectLiteral.ts │ │ │ ├── functions/ │ │ │ │ ├── arrowFunctionContexts.ts │ │ │ │ ├── arrowFunctionExpressions.ts │ │ │ │ ├── contextuallyTypedFunctionExpressionsAndReturnAnnotations.ts │ │ │ │ ├── contextuallyTypedIife.ts │ │ │ │ ├── contextuallyTypedIifeStrict.ts │ │ │ │ ├── typeOfThisInFunctionExpression.ts │ │ │ │ └── voidParamAssignmentCompatibility.ts │ │ │ ├── identifiers/ │ │ │ │ └── scopeResolutionIdentifiers.ts │ │ │ ├── literals/ │ │ │ │ ├── literals.ts │ │ │ │ └── strictModeOctalLiterals.ts │ │ │ ├── newOperator/ │ │ │ │ ├── newOperatorConformance.ts │ │ │ │ ├── newOperatorErrorCases.ts │ │ │ │ └── newOperatorErrorCases_noImplicitAny.ts │ │ │ ├── nullishCoalescingOperator/ │ │ │ │ ├── nullishCoalescingAssignmentVsPrivateFieldsJsEmit1.ts │ │ │ │ ├── nullishCoalescingOperator1.ts │ │ │ │ ├── nullishCoalescingOperator10.ts │ │ │ │ ├── nullishCoalescingOperator11.ts │ │ │ │ ├── nullishCoalescingOperator12.ts │ │ │ │ ├── nullishCoalescingOperator2.ts │ │ │ │ ├── nullishCoalescingOperator3.ts │ │ │ │ ├── nullishCoalescingOperator4.ts │ │ │ │ ├── nullishCoalescingOperator5.ts │ │ │ │ ├── nullishCoalescingOperator6.ts │ │ │ │ ├── nullishCoalescingOperator7.ts │ │ │ │ ├── nullishCoalescingOperator8.ts │ │ │ │ ├── nullishCoalescingOperator9.ts │ │ │ │ ├── nullishCoalescingOperatorInAsyncGenerator.ts │ │ │ │ ├── nullishCoalescingOperatorInParameterBindingPattern.2.ts │ │ │ │ ├── nullishCoalescingOperatorInParameterBindingPattern.ts │ │ │ │ ├── nullishCoalescingOperatorInParameterInitializer.2.ts │ │ │ │ ├── nullishCoalescingOperatorInParameterInitializer.ts │ │ │ │ ├── nullishCoalescingOperator_es2020.ts │ │ │ │ └── nullishCoalescingOperator_not_strict.ts │ │ │ ├── objectLiterals/ │ │ │ │ ├── objectLiteralErrors.ts │ │ │ │ ├── objectLiteralGettersAndSetters.ts │ │ │ │ └── objectLiteralNormalization.ts │ │ │ ├── operators/ │ │ │ │ └── incrementAndDecrement.ts │ │ │ ├── optionalChaining/ │ │ │ │ ├── callChain/ │ │ │ │ │ ├── callChain.2.ts │ │ │ │ │ ├── callChain.3.ts │ │ │ │ │ ├── callChain.ts │ │ │ │ │ ├── callChainInference.ts │ │ │ │ │ ├── callChainWithSuper.ts │ │ │ │ │ ├── parentheses.ts │ │ │ │ │ ├── superMethodCall.ts │ │ │ │ │ └── thisMethodCall.ts │ │ │ │ ├── delete/ │ │ │ │ │ └── deleteChain.ts │ │ │ │ ├── elementAccessChain/ │ │ │ │ │ ├── elementAccessChain.2.ts │ │ │ │ │ ├── elementAccessChain.3.ts │ │ │ │ │ └── elementAccessChain.ts │ │ │ │ ├── optionalChainingInArrow.ts │ │ │ │ ├── optionalChainingInLoop.ts │ │ │ │ ├── optionalChainingInParameterBindingPattern.2.ts │ │ │ │ ├── optionalChainingInParameterBindingPattern.ts │ │ │ │ ├── optionalChainingInParameterInitializer.2.ts │ │ │ │ ├── optionalChainingInParameterInitializer.ts │ │ │ │ ├── optionalChainingInTypeAssertions.ts │ │ │ │ ├── optionalChainingInference.ts │ │ │ │ ├── privateIdentifierChain/ │ │ │ │ │ └── privateIdentifierChain.1.ts │ │ │ │ ├── propertyAccessChain/ │ │ │ │ │ ├── propertyAccessChain.2.ts │ │ │ │ │ ├── propertyAccessChain.3.ts │ │ │ │ │ └── propertyAccessChain.ts │ │ │ │ └── taggedTemplateChain/ │ │ │ │ └── taggedTemplateChain.ts │ │ │ ├── propertyAccess/ │ │ │ │ ├── propertyAccess.ts │ │ │ │ ├── propertyAccessNumericLiterals.ts │ │ │ │ ├── propertyAccessStringIndexSignature.ts │ │ │ │ └── propertyAccessWidening.ts │ │ │ ├── superCalls/ │ │ │ │ ├── errorSuperCalls.ts │ │ │ │ └── superCalls.ts │ │ │ ├── superPropertyAccess/ │ │ │ │ ├── errorSuperPropertyAccess.ts │ │ │ │ ├── superPropertyAccessNoError.ts │ │ │ │ ├── superSymbolIndexedAccess1.ts │ │ │ │ ├── superSymbolIndexedAccess2.ts │ │ │ │ ├── superSymbolIndexedAccess3.ts │ │ │ │ ├── superSymbolIndexedAccess4.ts │ │ │ │ ├── superSymbolIndexedAccess5.ts │ │ │ │ └── superSymbolIndexedAccess6.ts │ │ │ ├── thisKeyword/ │ │ │ │ ├── thisInInvalidContexts.ts │ │ │ │ ├── thisInInvalidContextsExternalModule.ts │ │ │ │ ├── thisInObjectLiterals.ts │ │ │ │ ├── typeOfThisGeneral.ts │ │ │ │ └── typeOfThisInConstructorParamList.ts │ │ │ ├── typeAssertions/ │ │ │ │ ├── constAssertionOnEnum.ts │ │ │ │ ├── constAssertions.ts │ │ │ │ ├── duplicatePropertiesInTypeAssertions01.ts │ │ │ │ ├── duplicatePropertiesInTypeAssertions02.ts │ │ │ │ └── typeAssertions.ts │ │ │ ├── typeGuards/ │ │ │ │ ├── TypeGuardWithArrayUnion.ts │ │ │ │ ├── TypeGuardWithEnumUnion.ts │ │ │ │ ├── nullOrUndefinedTypeGuardIsOrderIndependent.ts │ │ │ │ ├── typeGuardEnums.ts │ │ │ │ ├── typeGuardFunction.ts │ │ │ │ ├── typeGuardFunctionErrors.ts │ │ │ │ ├── typeGuardFunctionGenerics.ts │ │ │ │ ├── typeGuardFunctionOfFormThis.ts │ │ │ │ ├── typeGuardFunctionOfFormThisErrors.ts │ │ │ │ ├── typeGuardInClass.ts │ │ │ │ ├── typeGuardIntersectionTypes.ts │ │ │ │ ├── typeGuardNarrowsPrimitiveIntersection.ts │ │ │ │ ├── typeGuardNarrowsToLiteralType.ts │ │ │ │ ├── typeGuardNarrowsToLiteralTypeUnion.ts │ │ │ │ ├── typeGuardNesting.ts │ │ │ │ ├── typeGuardOfFormExpr1AndExpr2.ts │ │ │ │ ├── typeGuardOfFormExpr1OrExpr2.ts │ │ │ │ ├── typeGuardOfFormFunctionEquality.ts │ │ │ │ ├── typeGuardOfFormInstanceOf.ts │ │ │ │ ├── typeGuardOfFormInstanceOfOnInterface.ts │ │ │ │ ├── typeGuardOfFormIsType.ts │ │ │ │ ├── typeGuardOfFormIsTypeOnInterfaces.ts │ │ │ │ ├── typeGuardOfFormNotExpr.ts │ │ │ │ ├── typeGuardOfFormThisMember.ts │ │ │ │ ├── typeGuardOfFormThisMemberErrors.ts │ │ │ │ ├── typeGuardOfFormTypeOfBoolean.ts │ │ │ │ ├── typeGuardOfFormTypeOfEqualEqualHasNoEffect.ts │ │ │ │ ├── typeGuardOfFormTypeOfFunction.ts │ │ │ │ ├── typeGuardOfFormTypeOfIsOrderIndependent.ts │ │ │ │ ├── typeGuardOfFormTypeOfNotEqualHasNoEffect.ts │ │ │ │ ├── typeGuardOfFormTypeOfNumber.ts │ │ │ │ ├── typeGuardOfFormTypeOfOther.ts │ │ │ │ ├── typeGuardOfFormTypeOfPrimitiveSubtype.ts │ │ │ │ ├── typeGuardOfFormTypeOfString.ts │ │ │ │ ├── typeGuardOfFromPropNameInUnionType.ts │ │ │ │ ├── typeGuardRedundancy.ts │ │ │ │ ├── typeGuardTautologicalConsistiency.ts │ │ │ │ ├── typeGuardTypeOfUndefined.ts │ │ │ │ ├── typeGuardsDefeat.ts │ │ │ │ ├── typeGuardsInClassAccessors.ts │ │ │ │ ├── typeGuardsInClassMethods.ts │ │ │ │ ├── typeGuardsInConditionalExpression.ts │ │ │ │ ├── typeGuardsInDoStatement.ts │ │ │ │ ├── typeGuardsInExternalModule.ts │ │ │ │ ├── typeGuardsInForStatement.ts │ │ │ │ ├── typeGuardsInFunction.ts │ │ │ │ ├── typeGuardsInFunctionAndModuleBlock.ts │ │ │ │ ├── typeGuardsInGlobal.ts │ │ │ │ ├── typeGuardsInIfStatement.ts │ │ │ │ ├── typeGuardsInModule.ts │ │ │ │ ├── typeGuardsInProperties.ts │ │ │ │ ├── typeGuardsInRightOperandOfAndAndOperator.ts │ │ │ │ ├── typeGuardsInRightOperandOfOrOrOperator.ts │ │ │ │ ├── typeGuardsInWhileStatement.ts │ │ │ │ ├── typeGuardsObjectMethods.ts │ │ │ │ ├── typeGuardsOnClassProperty.ts │ │ │ │ ├── typeGuardsWithAny.ts │ │ │ │ ├── typeGuardsWithInstanceOf.ts │ │ │ │ ├── typeGuardsWithInstanceOfByConstructorSignature.ts │ │ │ │ ├── typeGuardsWithInstanceOfBySymbolHasInstance.ts │ │ │ │ ├── typePredicateASI.ts │ │ │ │ ├── typePredicateOnVariableDeclaration01.ts │ │ │ │ └── typePredicateOnVariableDeclaration02.ts │ │ │ ├── typeSatisfaction/ │ │ │ │ ├── typeSatisfaction.ts │ │ │ │ ├── typeSatisfactionWithDefaultExport.ts │ │ │ │ ├── typeSatisfaction_asConstArrays.ts │ │ │ │ ├── typeSatisfaction_contextualTyping1.ts │ │ │ │ ├── typeSatisfaction_contextualTyping2.ts │ │ │ │ ├── typeSatisfaction_contextualTyping3.ts │ │ │ │ ├── typeSatisfaction_ensureInterfaceImpl.ts │ │ │ │ ├── typeSatisfaction_errorLocations1.ts │ │ │ │ ├── typeSatisfaction_js.ts │ │ │ │ ├── typeSatisfaction_optionalMemberConformance.ts │ │ │ │ ├── typeSatisfaction_propNameConstraining.ts │ │ │ │ ├── typeSatisfaction_propertyNameFulfillment.ts │ │ │ │ ├── typeSatisfaction_propertyValueConformance1.ts │ │ │ │ ├── typeSatisfaction_propertyValueConformance2.ts │ │ │ │ ├── typeSatisfaction_propertyValueConformance3.ts │ │ │ │ └── typeSatisfaction_vacuousIntersectionOfContextualTypes.ts │ │ │ ├── unaryOperators/ │ │ │ │ ├── bitwiseNotOperator/ │ │ │ │ │ ├── bitwiseNotOperatorInvalidOperations.ts │ │ │ │ │ ├── bitwiseNotOperatorWithAnyOtherType.ts │ │ │ │ │ ├── bitwiseNotOperatorWithBooleanType.ts │ │ │ │ │ ├── bitwiseNotOperatorWithEnumType.ts │ │ │ │ │ ├── bitwiseNotOperatorWithNumberType.ts │ │ │ │ │ └── bitwiseNotOperatorWithStringType.ts │ │ │ │ ├── decrementOperator/ │ │ │ │ │ ├── decrementOperatorWithAnyOtherType.ts │ │ │ │ │ ├── decrementOperatorWithAnyOtherTypeInvalidOperations.ts │ │ │ │ │ ├── decrementOperatorWithEnumType.ts │ │ │ │ │ ├── decrementOperatorWithEnumTypeInvalidOperations.ts │ │ │ │ │ ├── decrementOperatorWithNumberType.ts │ │ │ │ │ ├── decrementOperatorWithNumberTypeInvalidOperations.ts │ │ │ │ │ ├── decrementOperatorWithUnsupportedBooleanType.ts │ │ │ │ │ └── decrementOperatorWithUnsupportedStringType.ts │ │ │ │ ├── deleteOperator/ │ │ │ │ │ ├── deleteOperatorInvalidOperations.ts │ │ │ │ │ ├── deleteOperatorWithAnyOtherType.ts │ │ │ │ │ ├── deleteOperatorWithBooleanType.ts │ │ │ │ │ ├── deleteOperatorWithEnumType.ts │ │ │ │ │ ├── deleteOperatorWithNumberType.ts │ │ │ │ │ └── deleteOperatorWithStringType.ts │ │ │ │ ├── incrementOperator/ │ │ │ │ │ ├── incrementOperatorWithAnyOtherType.ts │ │ │ │ │ ├── incrementOperatorWithAnyOtherTypeInvalidOperations.ts │ │ │ │ │ ├── incrementOperatorWithEnumType.ts │ │ │ │ │ ├── incrementOperatorWithEnumTypeInvalidOperations.ts │ │ │ │ │ ├── incrementOperatorWithNumberType.ts │ │ │ │ │ ├── incrementOperatorWithNumberTypeInvalidOperations.ts │ │ │ │ │ ├── incrementOperatorWithUnsupportedBooleanType.ts │ │ │ │ │ └── incrementOperatorWithUnsupportedStringType.ts │ │ │ │ ├── logicalNotOperator/ │ │ │ │ │ ├── logicalNotOperatorInvalidOperations.ts │ │ │ │ │ ├── logicalNotOperatorWithAnyOtherType.ts │ │ │ │ │ ├── logicalNotOperatorWithBooleanType.ts │ │ │ │ │ ├── logicalNotOperatorWithEnumType.ts │ │ │ │ │ ├── logicalNotOperatorWithNumberType.ts │ │ │ │ │ └── logicalNotOperatorWithStringType.ts │ │ │ │ ├── negateOperator/ │ │ │ │ │ ├── negateOperatorInvalidOperations.ts │ │ │ │ │ ├── negateOperatorWithAnyOtherType.ts │ │ │ │ │ ├── negateOperatorWithBooleanType.ts │ │ │ │ │ ├── negateOperatorWithEnumType.ts │ │ │ │ │ ├── negateOperatorWithNumberType.ts │ │ │ │ │ └── negateOperatorWithStringType.ts │ │ │ │ ├── plusOperator/ │ │ │ │ │ ├── plusOperatorInvalidOperations.ts │ │ │ │ │ ├── plusOperatorWithAnyOtherType.ts │ │ │ │ │ ├── plusOperatorWithBooleanType.ts │ │ │ │ │ ├── plusOperatorWithEnumType.ts │ │ │ │ │ ├── plusOperatorWithNumberType.ts │ │ │ │ │ └── plusOperatorWithStringType.ts │ │ │ │ ├── typeofOperator/ │ │ │ │ │ ├── typeofOperatorInvalidOperations.ts │ │ │ │ │ ├── typeofOperatorWithAnyOtherType.ts │ │ │ │ │ ├── typeofOperatorWithBooleanType.ts │ │ │ │ │ ├── typeofOperatorWithEnumType.ts │ │ │ │ │ ├── typeofOperatorWithNumberType.ts │ │ │ │ │ └── typeofOperatorWithStringType.ts │ │ │ │ └── voidOperator/ │ │ │ │ ├── voidOperatorInvalidOperations.ts │ │ │ │ ├── voidOperatorWithAnyOtherType.ts │ │ │ │ ├── voidOperatorWithBooleanType.ts │ │ │ │ ├── voidOperatorWithEnumType.ts │ │ │ │ ├── voidOperatorWithNumberType.ts │ │ │ │ └── voidOperatorWithStringType.ts │ │ │ └── valuesAndReferences/ │ │ │ ├── assignmentToParenthesizedIdentifiers.ts │ │ │ └── assignments.ts │ │ ├── externalModules/ │ │ │ ├── amdImportAsPrimaryExpression.ts │ │ │ ├── amdImportNotAsPrimaryExpression.ts │ │ │ ├── asiPreventsParsingAsAmbientExternalModule01.ts │ │ │ ├── asiPreventsParsingAsAmbientExternalModule02.ts │ │ │ ├── circularReference.ts │ │ │ ├── commonJSImportAsPrimaryExpression.ts │ │ │ ├── commonJSImportNotAsPrimaryExpression.ts │ │ │ ├── commonJsImportBindingElementNarrowType.ts │ │ │ ├── duplicateExportAssignments.ts │ │ │ ├── es6/ │ │ │ │ ├── es6modulekind.ts │ │ │ │ ├── es6modulekindExportClassNameWithObject.ts │ │ │ │ ├── es6modulekindWithES2015Target.ts │ │ │ │ ├── es6modulekindWithES5Target.ts │ │ │ │ ├── es6modulekindWithES5Target10.ts │ │ │ │ ├── es6modulekindWithES5Target11.ts │ │ │ │ ├── es6modulekindWithES5Target12.ts │ │ │ │ ├── es6modulekindWithES5Target2.ts │ │ │ │ ├── es6modulekindWithES5Target3.ts │ │ │ │ ├── es6modulekindWithES5Target4.ts │ │ │ │ ├── es6modulekindWithES5Target5.ts │ │ │ │ ├── es6modulekindWithES5Target6.ts │ │ │ │ ├── es6modulekindWithES5Target7.ts │ │ │ │ ├── es6modulekindWithES5Target8.ts │ │ │ │ └── es6modulekindWithES5Target9.ts │ │ │ ├── esnext/ │ │ │ │ ├── esnextmodulekind.ts │ │ │ │ ├── esnextmodulekindWithES2015Target.ts │ │ │ │ ├── esnextmodulekindWithES5Target.ts │ │ │ │ ├── esnextmodulekindWithES5Target10.ts │ │ │ │ ├── esnextmodulekindWithES5Target11.ts │ │ │ │ ├── esnextmodulekindWithES5Target12.ts │ │ │ │ ├── esnextmodulekindWithES5Target2.ts │ │ │ │ ├── esnextmodulekindWithES5Target3.ts │ │ │ │ ├── esnextmodulekindWithES5Target4.ts │ │ │ │ ├── esnextmodulekindWithES5Target5.ts │ │ │ │ ├── esnextmodulekindWithES5Target6.ts │ │ │ │ ├── esnextmodulekindWithES5Target7.ts │ │ │ │ ├── esnextmodulekindWithES5Target8.ts │ │ │ │ ├── esnextmodulekindWithES5Target9.ts │ │ │ │ └── exnextmodulekindExportClassNameWithObject.ts │ │ │ ├── exportAmbientClassNameWithObject.ts │ │ │ ├── exportAssignDottedName.ts │ │ │ ├── exportAssignImportedIdentifier.ts │ │ │ ├── exportAssignNonIdentifier.ts │ │ │ ├── exportAssignTypes.ts │ │ │ ├── exportAssignmentAndDeclaration.ts │ │ │ ├── exportAssignmentCircularModules.ts │ │ │ ├── exportAssignmentConstrainedGenericType.ts │ │ │ ├── exportAssignmentGenericType.ts │ │ │ ├── exportAssignmentMergedInterface.ts │ │ │ ├── exportAssignmentMergedModule.ts │ │ │ ├── exportAssignmentOfExportNamespaceWithDefault.ts │ │ │ ├── exportAssignmentTopLevelClodule.ts │ │ │ ├── exportAssignmentTopLevelEnumdule.ts │ │ │ ├── exportAssignmentTopLevelFundule.ts │ │ │ ├── exportAssignmentTopLevelIdentifier.ts │ │ │ ├── exportClassNameWithObjectAMD.ts │ │ │ ├── exportClassNameWithObjectCommonJS.ts │ │ │ ├── exportClassNameWithObjectSystem.ts │ │ │ ├── exportClassNameWithObjectUMD.ts │ │ │ ├── exportDeclaredModule.ts │ │ │ ├── exportDefaultClassNameWithObject.ts │ │ │ ├── exportNonInitializedVariablesAMD.ts │ │ │ ├── exportNonInitializedVariablesCommonJS.ts │ │ │ ├── exportNonInitializedVariablesES6.ts │ │ │ ├── exportNonInitializedVariablesInIfThenStatementNoCrash1.ts │ │ │ ├── exportNonInitializedVariablesSystem.ts │ │ │ ├── exportNonInitializedVariablesUMD.ts │ │ │ ├── exportNonLocalDeclarations.ts │ │ │ ├── exportNonVisibleType.ts │ │ │ ├── exportTypeMergedWithExportStarAsNamespace.ts │ │ │ ├── globalAugmentationModuleResolution.ts │ │ │ ├── importImportOnlyModule.ts │ │ │ ├── importNonExternalModule.ts │ │ │ ├── importNonStringLiteral.ts │ │ │ ├── importTsBeforeDTs.ts │ │ │ ├── importsImplicitlyReadonly.ts │ │ │ ├── initializersInDeclarations.ts │ │ │ ├── invalidSyntaxNamespaceImportWithAMD.ts │ │ │ ├── invalidSyntaxNamespaceImportWithCommonjs.ts │ │ │ ├── invalidSyntaxNamespaceImportWithSystem.ts │ │ │ ├── moduleResolutionWithExtensions.ts │ │ │ ├── moduleResolutionWithoutExtension1.ts │ │ │ ├── moduleResolutionWithoutExtension2.ts │ │ │ ├── moduleResolutionWithoutExtension3.ts │ │ │ ├── moduleResolutionWithoutExtension4.ts │ │ │ ├── moduleResolutionWithoutExtension5.ts │ │ │ ├── moduleResolutionWithoutExtension6.ts │ │ │ ├── moduleResolutionWithoutExtension7.ts │ │ │ ├── moduleResolutionWithoutExtension8.ts │ │ │ ├── moduleScoping.ts │ │ │ ├── multipleExportDefault1.ts │ │ │ ├── multipleExportDefault2.ts │ │ │ ├── multipleExportDefault3.ts │ │ │ ├── multipleExportDefault4.ts │ │ │ ├── multipleExportDefault5.ts │ │ │ ├── multipleExportDefault6.ts │ │ │ ├── nameDelimitedBySlashes.ts │ │ │ ├── nameWithFileExtension.ts │ │ │ ├── nameWithRelativePaths.ts │ │ │ ├── reexportClassDefinition.ts │ │ │ ├── relativePathMustResolve.ts │ │ │ ├── relativePathToDeclarationFile.ts │ │ │ ├── rewriteRelativeImportExtensions/ │ │ │ │ ├── cjsErrors.ts │ │ │ │ ├── emit.ts │ │ │ │ ├── emitModuleCommonJS.ts │ │ │ │ ├── nodeModulesTsFiles.ts │ │ │ │ ├── nonTSExtensions.ts │ │ │ │ └── packageJsonImportsErrors.ts │ │ │ ├── topLevelAmbientModule.ts │ │ │ ├── topLevelAwait.1.ts │ │ │ ├── topLevelAwait.2.ts │ │ │ ├── topLevelAwait.3.ts │ │ │ ├── topLevelAwaitErrors.1.ts │ │ │ ├── topLevelAwaitErrors.10.ts │ │ │ ├── topLevelAwaitErrors.11.ts │ │ │ ├── topLevelAwaitErrors.12.ts │ │ │ ├── topLevelAwaitErrors.2.ts │ │ │ ├── topLevelAwaitErrors.3.ts │ │ │ ├── topLevelAwaitErrors.4.ts │ │ │ ├── topLevelAwaitErrors.5.ts │ │ │ ├── topLevelAwaitErrors.6.ts │ │ │ ├── topLevelAwaitErrors.7.ts │ │ │ ├── topLevelAwaitErrors.8.ts │ │ │ ├── topLevelAwaitErrors.9.ts │ │ │ ├── topLevelAwaitNonModule.ts │ │ │ ├── topLevelFileModule.ts │ │ │ ├── topLevelFileModuleMissing.ts │ │ │ ├── topLevelModuleDeclarationAndFile.ts │ │ │ ├── typeAndNamespaceExportMerge.ts │ │ │ ├── typeOnly/ │ │ │ │ ├── allowsImportingTsExtension.ts │ │ │ │ ├── ambient.ts │ │ │ │ ├── chained.ts │ │ │ │ ├── chained2.ts │ │ │ │ ├── circular1.ts │ │ │ │ ├── circular2.ts │ │ │ │ ├── circular3.ts │ │ │ │ ├── circular4.ts │ │ │ │ ├── cjsImportInES2015.ts │ │ │ │ ├── computedPropertyName.ts │ │ │ │ ├── enums.ts │ │ │ │ ├── exportDeclaration.ts │ │ │ │ ├── exportDeclaration_missingBraces.ts │ │ │ │ ├── exportDeclaration_moduleSpecifier-isolatedModules.ts │ │ │ │ ├── exportDeclaration_moduleSpecifier.ts │ │ │ │ ├── exportDeclaration_value.ts │ │ │ │ ├── exportDefault.ts │ │ │ │ ├── exportNamespace1.ts │ │ │ │ ├── exportNamespace10.ts │ │ │ │ ├── exportNamespace11.ts │ │ │ │ ├── exportNamespace12.ts │ │ │ │ ├── exportNamespace2.ts │ │ │ │ ├── exportNamespace3.ts │ │ │ │ ├── exportNamespace4.ts │ │ │ │ ├── exportNamespace5.ts │ │ │ │ ├── exportNamespace6.ts │ │ │ │ ├── exportNamespace7.ts │ │ │ │ ├── exportNamespace8.ts │ │ │ │ ├── exportNamespace9.ts │ │ │ │ ├── exportNamespace_js.ts │ │ │ │ ├── exportSpecifiers.ts │ │ │ │ ├── exportSpecifiers_js.ts │ │ │ │ ├── extendsClause.ts │ │ │ │ ├── filterNamespace_import.ts │ │ │ │ ├── generic.ts │ │ │ │ ├── grammarErrors.ts │ │ │ │ ├── implementsClause.ts │ │ │ │ ├── importClause_default.ts │ │ │ │ ├── importClause_namedImports.ts │ │ │ │ ├── importClause_namespaceImport.ts │ │ │ │ ├── importDefaultNamedType.ts │ │ │ │ ├── importDefaultNamedType2.ts │ │ │ │ ├── importDefaultNamedType3.ts │ │ │ │ ├── importEquals1.ts │ │ │ │ ├── importEquals2.ts │ │ │ │ ├── importEquals3.ts │ │ │ │ ├── importEqualsDeclaration.ts │ │ │ │ ├── importSpecifiers1.ts │ │ │ │ ├── importSpecifiers_js.ts │ │ │ │ ├── importsNotUsedAsValues_error.ts │ │ │ │ ├── mergedWithLocalValue.ts │ │ │ │ ├── namespaceImportTypeQuery.ts │ │ │ │ ├── namespaceImportTypeQuery2.ts │ │ │ │ ├── namespaceImportTypeQuery3.ts │ │ │ │ ├── namespaceImportTypeQuery4.ts │ │ │ │ ├── namespaceMemberAccess.ts │ │ │ │ ├── nestedNamespace.ts │ │ │ │ ├── preserveValueImports.ts │ │ │ │ ├── preserveValueImports_errors.ts │ │ │ │ ├── preserveValueImports_importsNotUsedAsValues.ts │ │ │ │ ├── preserveValueImports_mixedImports.ts │ │ │ │ ├── preserveValueImports_module.ts │ │ │ │ ├── renamed.ts │ │ │ │ ├── typeOnlyESMImportFromCJS.ts │ │ │ │ └── typeQuery.ts │ │ │ ├── typeOnlyMerge1.ts │ │ │ ├── typeOnlyMerge2.ts │ │ │ ├── typeOnlyMerge3.ts │ │ │ ├── typeValueMerge1.ts │ │ │ ├── typesOnlyExternalModuleStillHasInstance.ts │ │ │ ├── umd-augmentation-1.ts │ │ │ ├── umd-augmentation-2.ts │ │ │ ├── umd-augmentation-3.ts │ │ │ ├── umd-augmentation-4.ts │ │ │ ├── umd-errors.ts │ │ │ ├── umd1.ts │ │ │ ├── umd2.ts │ │ │ ├── umd3.ts │ │ │ ├── umd4.ts │ │ │ ├── umd5.ts │ │ │ ├── umd6.ts │ │ │ ├── umd7.ts │ │ │ ├── umd8.ts │ │ │ ├── umd9.ts │ │ │ ├── valuesMergingAcrossModules.ts │ │ │ ├── verbatimModuleSyntaxAmbientConstEnum.ts │ │ │ ├── verbatimModuleSyntaxCompat.ts │ │ │ ├── verbatimModuleSyntaxCompat2.ts │ │ │ ├── verbatimModuleSyntaxCompat3.ts │ │ │ ├── verbatimModuleSyntaxCompat4.ts │ │ │ ├── verbatimModuleSyntaxConstEnum.ts │ │ │ ├── verbatimModuleSyntaxConstEnumUsage.ts │ │ │ ├── verbatimModuleSyntaxDeclarationFile.ts │ │ │ ├── verbatimModuleSyntaxInternalImportEquals.ts │ │ │ ├── verbatimModuleSyntaxNoElisionCJS.ts │ │ │ ├── verbatimModuleSyntaxNoElisionESM.ts │ │ │ ├── verbatimModuleSyntaxRestrictionsCJS.ts │ │ │ └── verbatimModuleSyntaxRestrictionsESM.ts │ │ ├── fixSignatureCaching.ts │ │ ├── functions/ │ │ │ ├── functionImplementationErrors.ts │ │ │ ├── functionImplementations.ts │ │ │ ├── functionNameConflicts.ts │ │ │ ├── functionOverloadCompatibilityWithVoid01.ts │ │ │ ├── functionOverloadCompatibilityWithVoid02.ts │ │ │ ├── functionOverloadCompatibilityWithVoid03.ts │ │ │ ├── functionOverloadErrors.ts │ │ │ ├── functionOverloadErrorsSyntax.ts │ │ │ ├── functionParameterObjectRestAndInitializers.ts │ │ │ ├── functionWithUseStrictAndSimpleParameterList.ts │ │ │ ├── functionWithUseStrictAndSimpleParameterList_es2016.ts │ │ │ ├── parameterInitializersBackwardReferencing.ts │ │ │ ├── parameterInitializersForwardReferencing.2.ts │ │ │ ├── parameterInitializersForwardReferencing.ts │ │ │ ├── parameterInitializersForwardReferencing1.ts │ │ │ ├── parameterInitializersForwardReferencing1_es6.ts │ │ │ ├── strictBindCallApply1.ts │ │ │ └── strictBindCallApply2.ts │ │ ├── generators/ │ │ │ ├── generatorAssignability.ts │ │ │ ├── generatorExplicitReturnType.ts │ │ │ ├── generatorImplicitAny.ts │ │ │ ├── generatorReturnContextualType.ts │ │ │ ├── generatorReturnTypeFallback.1.ts │ │ │ ├── generatorReturnTypeFallback.2.ts │ │ │ ├── generatorReturnTypeFallback.3.ts │ │ │ ├── generatorReturnTypeFallback.4.ts │ │ │ ├── generatorReturnTypeFallback.5.ts │ │ │ ├── generatorReturnTypeIndirectReferenceToGlobalType.ts │ │ │ ├── generatorReturnTypeInference.ts │ │ │ ├── generatorReturnTypeInferenceNonStrict.ts │ │ │ ├── generatorYieldContextualType.ts │ │ │ ├── restParameterInDownlevelGenerator.ts │ │ │ └── yieldStatementNoAsiAfterTransform.ts │ │ ├── importAssertion/ │ │ │ ├── importAssertion1.ts │ │ │ ├── importAssertion2.ts │ │ │ ├── importAssertion3.ts │ │ │ ├── importAssertion4.ts │ │ │ └── importAssertion5.ts │ │ ├── importAttributes/ │ │ │ ├── importAttributes1.ts │ │ │ ├── importAttributes10.ts │ │ │ ├── importAttributes11.ts │ │ │ ├── importAttributes2.ts │ │ │ ├── importAttributes3.ts │ │ │ ├── importAttributes4.ts │ │ │ ├── importAttributes5.ts │ │ │ ├── importAttributes6.ts │ │ │ ├── importAttributes7.ts │ │ │ ├── importAttributes8.ts │ │ │ └── importAttributes9.ts │ │ ├── importDefer/ │ │ │ ├── dynamicImportDefer.ts │ │ │ ├── dynamicImportDeferInvalidStandalone.ts │ │ │ ├── exportDeferInvalid.ts │ │ │ ├── importBindingDefer.ts │ │ │ ├── importBindingDefer2.ts │ │ │ ├── importDefaultBindingDefer.ts │ │ │ ├── importDeferComments.ts │ │ │ ├── importDeferDeclaration.ts │ │ │ ├── importDeferFromInvalid.ts │ │ │ ├── importDeferInvalidDefault.ts │ │ │ ├── importDeferInvalidNamed.ts │ │ │ ├── importDeferNamespace.ts │ │ │ ├── importDeferTypeConflict1.ts │ │ │ ├── importDeferTypeConflict2.ts │ │ │ ├── importEqualsBindingDefer.ts │ │ │ ├── importMetaPropertyInvalidInCall.ts │ │ │ └── typeofImportDefer.ts │ │ ├── inferFromBindingPattern.ts │ │ ├── interfaces/ │ │ │ ├── declarationMerging/ │ │ │ │ ├── genericAndNonGenericInterfaceWithTheSameName.ts │ │ │ │ ├── genericAndNonGenericInterfaceWithTheSameName2.ts │ │ │ │ ├── mergeThreeInterfaces.ts │ │ │ │ ├── mergeThreeInterfaces2.ts │ │ │ │ ├── mergeTwoInterfaces.ts │ │ │ │ ├── mergeTwoInterfaces2.ts │ │ │ │ ├── mergedInheritedMembersSatisfyAbstractBase.ts │ │ │ │ ├── mergedInterfacesWithConflictingPropertyNames.ts │ │ │ │ ├── mergedInterfacesWithConflictingPropertyNames2.ts │ │ │ │ ├── mergedInterfacesWithIndexers.ts │ │ │ │ ├── mergedInterfacesWithIndexers2.ts │ │ │ │ ├── mergedInterfacesWithInheritedPrivates.ts │ │ │ │ ├── mergedInterfacesWithInheritedPrivates2.ts │ │ │ │ ├── mergedInterfacesWithInheritedPrivates3.ts │ │ │ │ ├── mergedInterfacesWithMultipleBases.ts │ │ │ │ ├── mergedInterfacesWithMultipleBases2.ts │ │ │ │ ├── mergedInterfacesWithMultipleBases3.ts │ │ │ │ ├── mergedInterfacesWithMultipleBases4.ts │ │ │ │ ├── twoGenericInterfacesDifferingByTypeParameterName.ts │ │ │ │ ├── twoGenericInterfacesDifferingByTypeParameterName2.ts │ │ │ │ ├── twoGenericInterfacesWithDifferentConstraints.ts │ │ │ │ ├── twoGenericInterfacesWithTheSameNameButDifferentArity.ts │ │ │ │ ├── twoInterfacesDifferentRootModule.ts │ │ │ │ ├── twoInterfacesDifferentRootModule2.ts │ │ │ │ ├── twoMergedInterfacesWithDifferingOverloads.ts │ │ │ │ └── twoMergedInterfacesWithDifferingOverloads2.ts │ │ │ ├── interfaceDeclarations/ │ │ │ │ ├── asiPreventsParsingAsInterface01.ts │ │ │ │ ├── asiPreventsParsingAsInterface02.ts │ │ │ │ ├── asiPreventsParsingAsInterface03.ts │ │ │ │ ├── asiPreventsParsingAsInterface04.ts │ │ │ │ ├── asiPreventsParsingAsInterface05.ts │ │ │ │ ├── derivedInterfaceDoesNotHideBaseSignatures.ts │ │ │ │ ├── derivedInterfaceIncompatibleWithBaseIndexer.ts │ │ │ │ ├── interfaceExtendingOptionalChain.ts │ │ │ │ ├── interfaceExtendsObjectIntersection.ts │ │ │ │ ├── interfaceExtendsObjectIntersectionErrors.ts │ │ │ │ ├── interfaceThatHidesBaseProperty.ts │ │ │ │ ├── interfaceThatHidesBaseProperty2.ts │ │ │ │ ├── interfaceThatIndirectlyInheritsFromItself.ts │ │ │ │ ├── interfaceThatInheritsFromItself.ts │ │ │ │ ├── interfaceWithAccessibilityModifiers.ts │ │ │ │ ├── interfaceWithCallAndConstructSignature.ts │ │ │ │ ├── interfaceWithCallSignaturesThatHidesBaseSignature.ts │ │ │ │ ├── interfaceWithCallSignaturesThatHidesBaseSignature2.ts │ │ │ │ ├── interfaceWithConstructSignaturesThatHidesBaseSignature.ts │ │ │ │ ├── interfaceWithConstructSignaturesThatHidesBaseSignature2.ts │ │ │ │ ├── interfaceWithMultipleBaseTypes.ts │ │ │ │ ├── interfaceWithMultipleBaseTypes2.ts │ │ │ │ ├── interfaceWithOverloadedCallAndConstructSignatures.ts │ │ │ │ ├── interfaceWithPropertyOfEveryType.ts │ │ │ │ ├── interfaceWithPropertyThatIsPrivateInBaseType.ts │ │ │ │ ├── interfaceWithPropertyThatIsPrivateInBaseType2.ts │ │ │ │ ├── interfaceWithSpecializedCallAndConstructSignatures.ts │ │ │ │ ├── interfaceWithStringIndexerHidingBaseTypeIndexer.ts │ │ │ │ ├── interfaceWithStringIndexerHidingBaseTypeIndexer2.ts │ │ │ │ ├── interfaceWithStringIndexerHidingBaseTypeIndexer3.ts │ │ │ │ └── interfacesWithPredefinedTypesAsNames.ts │ │ │ └── interfacesExtendingClasses/ │ │ │ ├── implementingAnInterfaceExtendingClassWithPrivates.ts │ │ │ ├── implementingAnInterfaceExtendingClassWithPrivates2.ts │ │ │ ├── implementingAnInterfaceExtendingClassWithProtecteds.ts │ │ │ ├── interfaceExtendingClass.ts │ │ │ ├── interfaceExtendingClass2.ts │ │ │ ├── interfaceExtendingClassWithPrivates.ts │ │ │ ├── interfaceExtendingClassWithPrivates2.ts │ │ │ ├── interfaceExtendingClassWithProtecteds.ts │ │ │ └── interfaceExtendingClassWithProtecteds2.ts │ │ ├── internalModules/ │ │ │ ├── DeclarationMerging/ │ │ │ │ ├── AmbientModuleAndAmbientFunctionWithTheSameNameAndCommonRoot.ts │ │ │ │ ├── AmbientModuleAndAmbientWithSameNameAndCommonRoot.ts │ │ │ │ ├── AmbientModuleAndNonAmbientClassWithSameNameAndCommonRoot.ts │ │ │ │ ├── AmbientModuleAndNonAmbientFunctionWithTheSameNameAndCommonRoot.ts │ │ │ │ ├── ClassAndModuleThatMergeWithModuleMemberThatUsesClassTypeParameter.ts │ │ │ │ ├── ClassAndModuleThatMergeWithModulesExportedGenericFunctionAndGenericClassStaticFunctionOfTheSameName.ts │ │ │ │ ├── ClassAndModuleThatMergeWithModulesExportedGenericFunctionAndNonGenericClassStaticFunctionOfTheSameName.ts │ │ │ │ ├── ClassAndModuleThatMergeWithModulesExportedStaticFunctionUsingClassPrivateStatics.ts │ │ │ │ ├── ClassAndModuleThatMergeWithStaticFunctionAndExportedFunctionThatShareAName.ts │ │ │ │ ├── ClassAndModuleThatMergeWithStaticFunctionAndNonExportedFunctionThatShareAName.ts │ │ │ │ ├── ClassAndModuleThatMergeWithStaticVariableAndExportedVarThatShareAName.ts │ │ │ │ ├── ClassAndModuleThatMergeWithStaticVariableAndNonExportedVarThatShareAName.ts │ │ │ │ ├── ClassAndModuleThatMergeWithStringIndexerAndExportedFunctionWithTypeIncompatibleWithIndexer.ts │ │ │ │ ├── ClassAndModuleWithSameNameAndCommonRoot.ts │ │ │ │ ├── ClassAndModuleWithSameNameAndCommonRootES6.ts │ │ │ │ ├── EnumAndModuleWithSameNameAndCommonRoot.ts │ │ │ │ ├── FunctionAndModuleWithSameNameAndCommonRoot.ts │ │ │ │ ├── FunctionAndModuleWithSameNameAndDifferentCommonRoot.ts │ │ │ │ ├── ModuleAndClassWithSameNameAndCommonRoot.ts │ │ │ │ ├── ModuleAndEnumWithSameNameAndCommonRoot.ts │ │ │ │ ├── ModuleAndFunctionWithSameNameAndCommonRoot.ts │ │ │ │ ├── TwoInternalModulesThatMergeEachWithExportedAndNonExportedClassesOfTheSameName.ts │ │ │ │ ├── TwoInternalModulesThatMergeEachWithExportedAndNonExportedInterfacesOfTheSameName.ts │ │ │ │ ├── TwoInternalModulesThatMergeEachWithExportedAndNonExportedLocalVarsOfTheSameName.ts │ │ │ │ ├── TwoInternalModulesThatMergeEachWithExportedClassesOfTheSameName.ts │ │ │ │ ├── TwoInternalModulesThatMergeEachWithExportedInterfacesOfTheSameName.ts │ │ │ │ ├── TwoInternalModulesThatMergeEachWithExportedLocalVarsOfTheSameName.ts │ │ │ │ ├── TwoInternalModulesThatMergeEachWithExportedModulesOfTheSameName.ts │ │ │ │ ├── TwoInternalModulesWithTheSameNameAndDifferentCommonRoot.ts │ │ │ │ └── TwoInternalModulesWithTheSameNameAndSameCommonRoot.ts │ │ │ ├── codeGeneration/ │ │ │ │ ├── exportCodeGen.ts │ │ │ │ ├── importStatements.ts │ │ │ │ ├── importStatementsInterfaces.ts │ │ │ │ └── nameCollision.ts │ │ │ ├── exportDeclarations/ │ │ │ │ ├── ExportClassWhichExtendsInterfaceWithInaccessibleType.ts │ │ │ │ ├── ExportClassWithAccessibleTypesInTypeParameterConstraintsClassHeritageListMemberTypeAnnotations.ts │ │ │ │ ├── ExportClassWithInaccessibleTypeInIndexerTypeAnnotations.ts │ │ │ │ ├── ExportClassWithInaccessibleTypeInTypeParameterConstraint.ts │ │ │ │ ├── ExportFunctionWithAccessibleTypesInParameterAndReturnTypeAnnotation.ts │ │ │ │ ├── ExportFunctionWithInaccessibleTypesInParameterTypeAnnotation.ts │ │ │ │ ├── ExportFunctionWithInaccessibleTypesInReturnTypeAnnotation.ts │ │ │ │ ├── ExportInterfaceWithAccessibleTypesInTypeParameterConstraintsClassHeritageListMemberTypeAnnotations.ts │ │ │ │ ├── ExportInterfaceWithInaccessibleTypeInIndexerTypeAnnotations.ts │ │ │ │ ├── ExportInterfaceWithInaccessibleTypeInTypeParameterConstraint.ts │ │ │ │ ├── ExportModuleWithAccessibleTypesOnItsExportedMembers.ts │ │ │ │ ├── ExportObjectLiteralAndObjectTypeLiteralWithAccessibleTypesInMemberTypeAnnotations.ts │ │ │ │ ├── ExportObjectLiteralAndObjectTypeLiteralWithAccessibleTypesInNestedMemberTypeAnnotations.ts │ │ │ │ ├── ExportVariableOfGenericTypeWithInaccessibleTypeAsTypeArgument.ts │ │ │ │ ├── ExportVariableWithAccessibleTypeInTypeAnnotation.ts │ │ │ │ ├── ExportVariableWithInaccessibleTypeInTypeAnnotation.ts │ │ │ │ ├── ModuleWithExportedAndNonExportedClasses.ts │ │ │ │ ├── ModuleWithExportedAndNonExportedEnums.ts │ │ │ │ ├── ModuleWithExportedAndNonExportedFunctions.ts │ │ │ │ ├── ModuleWithExportedAndNonExportedImportAlias.ts │ │ │ │ ├── ModuleWithExportedAndNonExportedVariables.ts │ │ │ │ └── NonInitializedExportInInternalModule.ts │ │ │ ├── importDeclarations/ │ │ │ │ ├── circularImportAlias.ts │ │ │ │ ├── exportImportAlias.ts │ │ │ │ ├── importAliasIdentifiers.ts │ │ │ │ ├── invalidImportAliasIdentifiers.ts │ │ │ │ └── shadowedInternalModule.ts │ │ │ ├── moduleBody/ │ │ │ │ ├── invalidModuleWithStatementsOfEveryKind.ts │ │ │ │ ├── invalidModuleWithVarStatements.ts │ │ │ │ └── moduleWithStatementsOfEveryKind.ts │ │ │ └── moduleDeclarations/ │ │ │ ├── InvalidNonInstantiatedModule.ts │ │ │ ├── asiPreventsParsingAsNamespace01.ts │ │ │ ├── asiPreventsParsingAsNamespace02.ts │ │ │ ├── asiPreventsParsingAsNamespace03.ts │ │ │ ├── asiPreventsParsingAsNamespace04.ts │ │ │ ├── asiPreventsParsingAsNamespace05.ts │ │ │ ├── instantiatedModule.ts │ │ │ ├── invalidInstantiatedModule.ts │ │ │ ├── invalidNestedModules.ts │ │ │ ├── nestedModules.ts │ │ │ ├── nonInstantiatedModule.ts │ │ │ └── reExportAliasMakesInstantiated.ts │ │ ├── jsdoc/ │ │ │ ├── assertionsAndNonReturningFunctions.ts │ │ │ ├── callOfPropertylessConstructorFunction.ts │ │ │ ├── callbackCrossModule.ts │ │ │ ├── callbackOnConstructor.ts │ │ │ ├── callbackTag1.ts │ │ │ ├── callbackTag2.ts │ │ │ ├── callbackTag3.ts │ │ │ ├── callbackTag4.ts │ │ │ ├── callbackTagNamespace.ts │ │ │ ├── callbackTagNestedParameter.ts │ │ │ ├── callbackTagVariadicType.ts │ │ │ ├── checkExportsObjectAssignProperty.ts │ │ │ ├── checkExportsObjectAssignPrototypeProperty.ts │ │ │ ├── checkJsdocOnEndOfFile.ts │ │ │ ├── checkJsdocOptionalParamOrder.ts │ │ │ ├── checkJsdocParamOnVariableDeclaredFunctionExpression.ts │ │ │ ├── checkJsdocParamTag1.ts │ │ │ ├── checkJsdocReturnTag1.ts │ │ │ ├── checkJsdocReturnTag2.ts │ │ │ ├── checkJsdocSatisfiesTag1.ts │ │ │ ├── checkJsdocSatisfiesTag10.ts │ │ │ ├── checkJsdocSatisfiesTag11.ts │ │ │ ├── checkJsdocSatisfiesTag12.ts │ │ │ ├── checkJsdocSatisfiesTag13.ts │ │ │ ├── checkJsdocSatisfiesTag14.ts │ │ │ ├── checkJsdocSatisfiesTag15.ts │ │ │ ├── checkJsdocSatisfiesTag2.ts │ │ │ ├── checkJsdocSatisfiesTag3.ts │ │ │ ├── checkJsdocSatisfiesTag4.ts │ │ │ ├── checkJsdocSatisfiesTag5.ts │ │ │ ├── checkJsdocSatisfiesTag6.ts │ │ │ ├── checkJsdocSatisfiesTag7.ts │ │ │ ├── checkJsdocSatisfiesTag8.ts │ │ │ ├── checkJsdocSatisfiesTag9.ts │ │ │ ├── checkJsdocTypeTag1.ts │ │ │ ├── checkJsdocTypeTag2.ts │ │ │ ├── checkJsdocTypeTag3.ts │ │ │ ├── checkJsdocTypeTag4.ts │ │ │ ├── checkJsdocTypeTag5.ts │ │ │ ├── checkJsdocTypeTag6.ts │ │ │ ├── checkJsdocTypeTag7.ts │ │ │ ├── checkJsdocTypeTag8.ts │ │ │ ├── checkJsdocTypeTagOnObjectProperty1.ts │ │ │ ├── checkJsdocTypeTagOnObjectProperty2.ts │ │ │ ├── checkJsdocTypedefInParamTag1.ts │ │ │ ├── checkJsdocTypedefOnlySourceFile.ts │ │ │ ├── checkObjectDefineProperty.ts │ │ │ ├── checkOtherObjectAssignProperty.ts │ │ │ ├── constructorTagOnClassConstructor.ts │ │ │ ├── constructorTagOnNestedBinaryExpression.ts │ │ │ ├── constructorTagOnObjectLiteralMethod.ts │ │ │ ├── constructorTagWithThisTag.ts │ │ │ ├── declarations/ │ │ │ │ ├── jsDeclarationsClassAccessor.ts │ │ │ │ ├── jsDeclarationsClassExtendsVisibility.ts │ │ │ │ ├── jsDeclarationsClassImplementsGenericsSerialization.ts │ │ │ │ ├── jsDeclarationsClassLeadingOptional.ts │ │ │ │ ├── jsDeclarationsClassLikeHeuristic.ts │ │ │ │ ├── jsDeclarationsClassMethod.ts │ │ │ │ ├── jsDeclarationsClassStatic.ts │ │ │ │ ├── jsDeclarationsClassStatic2.ts │ │ │ │ ├── jsDeclarationsClassStaticMethodAugmentation.ts │ │ │ │ ├── jsDeclarationsClasses.ts │ │ │ │ ├── jsDeclarationsClassesErr.ts │ │ │ │ ├── jsDeclarationsCommonjsRelativePath.ts │ │ │ │ ├── jsDeclarationsComputedNames.ts │ │ │ │ ├── jsDeclarationsConstsAsNamespacesWithReferences.ts │ │ │ │ ├── jsDeclarationsCrossfileMerge.ts │ │ │ │ ├── jsDeclarationsDefault.ts │ │ │ │ ├── jsDeclarationsDefaultsErr.ts │ │ │ │ ├── jsDeclarationsDocCommentsOnConsts.ts │ │ │ │ ├── jsDeclarationsEnumTag.ts │ │ │ │ ├── jsDeclarationsEnums.ts │ │ │ │ ├── jsDeclarationsExportAssignedClassExpression.ts │ │ │ │ ├── jsDeclarationsExportAssignedClassExpressionAnonymous.ts │ │ │ │ ├── jsDeclarationsExportAssignedClassExpressionAnonymousWithSub.ts │ │ │ │ ├── jsDeclarationsExportAssignedClassExpressionShadowing.ts │ │ │ │ ├── jsDeclarationsExportAssignedClassInstance1.ts │ │ │ │ ├── jsDeclarationsExportAssignedClassInstance2.ts │ │ │ │ ├── jsDeclarationsExportAssignedClassInstance3.ts │ │ │ │ ├── jsDeclarationsExportAssignedConstructorFunction.ts │ │ │ │ ├── jsDeclarationsExportAssignedConstructorFunctionWithSub.ts │ │ │ │ ├── jsDeclarationsExportAssignedVisibility.ts │ │ │ │ ├── jsDeclarationsExportAssignmentExpressionPlusSecondary.ts │ │ │ │ ├── jsDeclarationsExportAssignmentWithKeywordName.ts │ │ │ │ ├── jsDeclarationsExportDefinePropertyEmit.ts │ │ │ │ ├── jsDeclarationsExportDoubleAssignmentInClosure.ts │ │ │ │ ├── jsDeclarationsExportForms.ts │ │ │ │ ├── jsDeclarationsExportFormsErr.ts │ │ │ │ ├── jsDeclarationsExportSpecifierNonlocal.ts │ │ │ │ ├── jsDeclarationsExportSubAssignments.ts │ │ │ │ ├── jsDeclarationsExportedClassAliases.ts │ │ │ │ ├── jsDeclarationsFunctionClassesCjsExportAssignment.ts │ │ │ │ ├── jsDeclarationsFunctionJSDoc.ts │ │ │ │ ├── jsDeclarationsFunctionKeywordProp.ts │ │ │ │ ├── jsDeclarationsFunctionKeywordPropExhaustive.ts │ │ │ │ ├── jsDeclarationsFunctionLikeClasses.ts │ │ │ │ ├── jsDeclarationsFunctionLikeClasses2.ts │ │ │ │ ├── jsDeclarationsFunctionPrototypeStatic.ts │ │ │ │ ├── jsDeclarationsFunctionWithDefaultAssignedMember.ts │ │ │ │ ├── jsDeclarationsFunctions.ts │ │ │ │ ├── jsDeclarationsFunctionsCjs.ts │ │ │ │ ├── jsDeclarationsGetterSetter.ts │ │ │ │ ├── jsDeclarationsImportAliasExposedWithinNamespace.ts │ │ │ │ ├── jsDeclarationsImportAliasExposedWithinNamespaceCjs.ts │ │ │ │ ├── jsDeclarationsImportNamespacedType.ts │ │ │ │ ├── jsDeclarationsImportTypeBundled.ts │ │ │ │ ├── jsDeclarationsInterfaces.ts │ │ │ │ ├── jsDeclarationsJSDocRedirectedLookups.ts │ │ │ │ ├── jsDeclarationsJson.ts │ │ │ │ ├── jsDeclarationsMissingGenerics.ts │ │ │ │ ├── jsDeclarationsMissingTypeParameters.ts │ │ │ │ ├── jsDeclarationsModuleReferenceHasEmit.ts │ │ │ │ ├── jsDeclarationsMultipleExportFromMerge.ts │ │ │ │ ├── jsDeclarationsNestedParams.ts │ │ │ │ ├── jsDeclarationsNonIdentifierInferredNames.ts │ │ │ │ ├── jsDeclarationsOptionalTypeLiteralProps1.ts │ │ │ │ ├── jsDeclarationsOptionalTypeLiteralProps2.ts │ │ │ │ ├── jsDeclarationsPackageJson.ts │ │ │ │ ├── jsDeclarationsParameterTagReusesInputNodeInEmit1.ts │ │ │ │ ├── jsDeclarationsParameterTagReusesInputNodeInEmit2.ts │ │ │ │ ├── jsDeclarationsPrivateFields01.ts │ │ │ │ ├── jsDeclarationsReactComponents.ts │ │ │ │ ├── jsDeclarationsReexportAliases.ts │ │ │ │ ├── jsDeclarationsReexportAliasesEsModuleInterop.ts │ │ │ │ ├── jsDeclarationsReexportedCjsAlias.ts │ │ │ │ ├── jsDeclarationsReferenceToClassInstanceCrossFile.ts │ │ │ │ ├── jsDeclarationsRestArgsWithThisTypeInJSDocFunction.ts │ │ │ │ ├── jsDeclarationsReusesExistingNodesMappingJSDocTypes.ts │ │ │ │ ├── jsDeclarationsReusesExistingTypeAnnotations.ts │ │ │ │ ├── jsDeclarationsSubclassWithExplicitNoArgumentConstructor.ts │ │ │ │ ├── jsDeclarationsThisTypes.ts │ │ │ │ ├── jsDeclarationsTypeAliases.ts │ │ │ │ ├── jsDeclarationsTypeReassignmentFromDeclaration.ts │ │ │ │ ├── jsDeclarationsTypeReassignmentFromDeclaration2.ts │ │ │ │ ├── jsDeclarationsTypeReferences.ts │ │ │ │ ├── jsDeclarationsTypeReferences2.ts │ │ │ │ ├── jsDeclarationsTypeReferences3.ts │ │ │ │ ├── jsDeclarationsTypeReferences4.ts │ │ │ │ ├── jsDeclarationsTypedefAndImportTypes.ts │ │ │ │ ├── jsDeclarationsTypedefAndLatebound.ts │ │ │ │ ├── jsDeclarationsTypedefDescriptionsPreserved.ts │ │ │ │ ├── jsDeclarationsTypedefFunction.ts │ │ │ │ ├── jsDeclarationsTypedefPropertyAndExportAssignment.ts │ │ │ │ └── jsDeclarationsUniqueSymbolUsage.ts │ │ │ ├── enumTag.ts │ │ │ ├── enumTagCircularReference.ts │ │ │ ├── enumTagImported.ts │ │ │ ├── enumTagOnExports.ts │ │ │ ├── enumTagOnExports2.ts │ │ │ ├── enumTagUseBeforeDefCrash.ts │ │ │ ├── errorIsolation.ts │ │ │ ├── errorOnFunctionReturnType.ts │ │ │ ├── exportedAliasedEnumTag.ts │ │ │ ├── exportedEnumTypeAndValue.ts │ │ │ ├── extendsTag1.ts │ │ │ ├── extendsTag2.ts │ │ │ ├── extendsTag3.ts │ │ │ ├── extendsTag4.ts │ │ │ ├── extendsTag5.ts │ │ │ ├── extendsTag6.ts │ │ │ ├── extendsTagEmit.ts │ │ │ ├── importDeferJsdoc.ts │ │ │ ├── importTag1.ts │ │ │ ├── importTag10.ts │ │ │ ├── importTag11.ts │ │ │ ├── importTag12.ts │ │ │ ├── importTag13.ts │ │ │ ├── importTag14.ts │ │ │ ├── importTag15.ts │ │ │ ├── importTag16.ts │ │ │ ├── importTag17.ts │ │ │ ├── importTag18.ts │ │ │ ├── importTag19.ts │ │ │ ├── importTag2.ts │ │ │ ├── importTag20.ts │ │ │ ├── importTag21.ts │ │ │ ├── importTag22.ts │ │ │ ├── importTag23.ts │ │ │ ├── importTag24.ts │ │ │ ├── importTag25.ts │ │ │ ├── importTag3.ts │ │ │ ├── importTag4.ts │ │ │ ├── importTag5.ts │ │ │ ├── importTag6.ts │ │ │ ├── importTag7.ts │ │ │ ├── importTag8.ts │ │ │ ├── importTag9.ts │ │ │ ├── inferThis.ts │ │ │ ├── instantiateTemplateTagTypeParameterOnVariableStatement.ts │ │ │ ├── jsdocAccessibilityTags.ts │ │ │ ├── jsdocAccessibilityTagsDeclarations.ts │ │ │ ├── jsdocAugmentsMissingType.ts │ │ │ ├── jsdocAugments_errorInExtendsExpression.ts │ │ │ ├── jsdocAugments_nameMismatch.ts │ │ │ ├── jsdocAugments_noExtends.ts │ │ │ ├── jsdocAugments_notAClass.ts │ │ │ ├── jsdocAugments_qualifiedName.ts │ │ │ ├── jsdocAugments_withTypeParameter.ts │ │ │ ├── jsdocBindingInUnreachableCode.ts │ │ │ ├── jsdocCatchClauseWithTypeAnnotation.ts │ │ │ ├── jsdocDisallowedInTypescript.ts │ │ │ ├── jsdocFunctionType.ts │ │ │ ├── jsdocFunction_missingReturn.ts │ │ │ ├── jsdocImplementsTag.ts │ │ │ ├── jsdocImplements_class.ts │ │ │ ├── jsdocImplements_interface.ts │ │ │ ├── jsdocImplements_interface_multiple.ts │ │ │ ├── jsdocImplements_missingType.ts │ │ │ ├── jsdocImplements_namespacedInterface.ts │ │ │ ├── jsdocImplements_properties.ts │ │ │ ├── jsdocImplements_signatures.ts │ │ │ ├── jsdocImportType.ts │ │ │ ├── jsdocImportType2.ts │ │ │ ├── jsdocImportTypeReferenceToClassAlias.ts │ │ │ ├── jsdocImportTypeReferenceToCommonjsModule.ts │ │ │ ├── jsdocImportTypeReferenceToESModule.ts │ │ │ ├── jsdocImportTypeReferenceToStringLiteral.ts │ │ │ ├── jsdocIndexSignature.ts │ │ │ ├── jsdocLinkTag1.ts │ │ │ ├── jsdocLinkTag2.ts │ │ │ ├── jsdocLinkTag3.ts │ │ │ ├── jsdocLinkTag4.ts │ │ │ ├── jsdocLinkTag5.ts │ │ │ ├── jsdocLinkTag6.ts │ │ │ ├── jsdocLinkTag7.ts │ │ │ ├── jsdocLinkTag8.ts │ │ │ ├── jsdocLinkTag9.ts │ │ │ ├── jsdocLiteral.ts │ │ │ ├── jsdocNeverUndefinedNull.ts │ │ │ ├── jsdocOuterTypeParameters1.ts │ │ │ ├── jsdocOuterTypeParameters2.ts │ │ │ ├── jsdocOuterTypeParameters3.ts │ │ │ ├── jsdocOverrideTag1.ts │ │ │ ├── jsdocParamTag2.ts │ │ │ ├── jsdocParamTagTypeLiteral.ts │ │ │ ├── jsdocParseBackquotedParamName.ts │ │ │ ├── jsdocParseDotDotDotInJSDocFunction.ts │ │ │ ├── jsdocParseErrorsInTypescript.ts │ │ │ ├── jsdocParseHigherOrderFunction.ts │ │ │ ├── jsdocParseMatchingBackticks.ts │ │ │ ├── jsdocParseParenthesizedJSDocParameter.ts │ │ │ ├── jsdocParseStarEquals.ts │ │ │ ├── jsdocPostfixEqualsAddsOptionality.ts │ │ │ ├── jsdocPrefixPostfixParsing.ts │ │ │ ├── jsdocPrivateName1.ts │ │ │ ├── jsdocPrivateName2.ts │ │ │ ├── jsdocPrototypePropertyAccessWithType.ts │ │ │ ├── jsdocReadonly.ts │ │ │ ├── jsdocReadonlyDeclarations.ts │ │ │ ├── jsdocReturnTag1.ts │ │ │ ├── jsdocSignatureOnReturnedFunction.ts │ │ │ ├── jsdocTemplateClass.ts │ │ │ ├── jsdocTemplateConstructorFunction.ts │ │ │ ├── jsdocTemplateConstructorFunction2.ts │ │ │ ├── jsdocTemplateTag.ts │ │ │ ├── jsdocTemplateTag2.ts │ │ │ ├── jsdocTemplateTag3.ts │ │ │ ├── jsdocTemplateTag4.ts │ │ │ ├── jsdocTemplateTag5.ts │ │ │ ├── jsdocTemplateTag6.ts │ │ │ ├── jsdocTemplateTag7.ts │ │ │ ├── jsdocTemplateTag8.ts │ │ │ ├── jsdocTemplateTagDefault.ts │ │ │ ├── jsdocTemplateTagNameResolution.ts │ │ │ ├── jsdocThisType.ts │ │ │ ├── jsdocTwoLineTypedef.ts │ │ │ ├── jsdocTypeDefAtStartOfFile.ts │ │ │ ├── jsdocTypeFromChainedAssignment.ts │ │ │ ├── jsdocTypeFromChainedAssignment2.ts │ │ │ ├── jsdocTypeFromChainedAssignment3.ts │ │ │ ├── jsdocTypeReferenceExports.ts │ │ │ ├── jsdocTypeReferenceToImport.ts │ │ │ ├── jsdocTypeReferenceToImportOfClassExpression.ts │ │ │ ├── jsdocTypeReferenceToImportOfFunctionExpression.ts │ │ │ ├── jsdocTypeReferenceToMergedClass.ts │ │ │ ├── jsdocTypeReferenceToValue.ts │ │ │ ├── jsdocTypeReferenceUseBeforeDef.ts │ │ │ ├── jsdocTypeTag.ts │ │ │ ├── jsdocTypeTagCast.ts │ │ │ ├── jsdocTypeTagOnParameter1.ts │ │ │ ├── jsdocTypeTagParameterType.ts │ │ │ ├── jsdocTypeTagRequiredParameters.ts │ │ │ ├── jsdocVariableDeclarationWithTypeAnnotation.ts │ │ │ ├── jsdocVariadicType.ts │ │ │ ├── linkTagEmit1.ts │ │ │ ├── moduleExportsElementAccessAssignment.ts │ │ │ ├── moduleExportsElementAccessAssignment2.ts │ │ │ ├── noAssertForUnparseableTypedefs.ts │ │ │ ├── noDuplicateJsdoc1.ts │ │ │ ├── overloadTag1.ts │ │ │ ├── overloadTag2.ts │ │ │ ├── overloadTag3.ts │ │ │ ├── paramTagBracketsAddOptionalUndefined.ts │ │ │ ├── paramTagNestedWithoutTopLevelObject.ts │ │ │ ├── paramTagNestedWithoutTopLevelObject2.ts │ │ │ ├── paramTagNestedWithoutTopLevelObject3.ts │ │ │ ├── paramTagNestedWithoutTopLevelObject4.ts │ │ │ ├── paramTagOnCallExpression.ts │ │ │ ├── paramTagOnFunctionUsingArguments.ts │ │ │ ├── paramTagTypeResolution.ts │ │ │ ├── paramTagTypeResolution2.ts │ │ │ ├── paramTagWrapping.ts │ │ │ ├── parseLinkTag.ts │ │ │ ├── parseThrowsTag.ts │ │ │ ├── returnTagTypeGuard.ts │ │ │ ├── seeTag1.ts │ │ │ ├── seeTag2.ts │ │ │ ├── seeTag3.ts │ │ │ ├── seeTag4.ts │ │ │ ├── syntaxErrors.ts │ │ │ ├── templateInsideCallback.ts │ │ │ ├── thisPrototypeMethodCompoundAssignment.ts │ │ │ ├── thisPrototypeMethodCompoundAssignmentJs.ts │ │ │ ├── thisTag1.ts │ │ │ ├── thisTag2.ts │ │ │ ├── thisTag3.ts │ │ │ ├── tsNoCheckForTypescript.ts │ │ │ ├── tsNoCheckForTypescriptComments1.ts │ │ │ ├── tsNoCheckForTypescriptComments2.ts │ │ │ ├── typeParameterExtendsUnionConstraintDistributed.ts │ │ │ ├── typeTagCircularReferenceOnConstructorFunction.ts │ │ │ ├── typeTagModuleExports.ts │ │ │ ├── typeTagNoErasure.ts │ │ │ ├── typeTagOnPropertyAssignment.ts │ │ │ ├── typeTagPrototypeAssignment.ts │ │ │ ├── typeTagWithGenericSignature.ts │ │ │ ├── typedefCrossModule.ts │ │ │ ├── typedefCrossModule2.ts │ │ │ ├── typedefCrossModule3.ts │ │ │ ├── typedefCrossModule4.ts │ │ │ ├── typedefCrossModule5.ts │ │ │ ├── typedefDuplicateTypeDeclaration.ts │ │ │ ├── typedefInnerNamepaths.ts │ │ │ ├── typedefMultipleTypeParameters.ts │ │ │ ├── typedefOnSemicolonClassElement.ts │ │ │ ├── typedefOnStatements.ts │ │ │ ├── typedefScope1.ts │ │ │ ├── typedefTagExtraneousProperty.ts │ │ │ ├── typedefTagNested.ts │ │ │ ├── typedefTagTypeResolution.ts │ │ │ └── typedefTagWrapping.ts │ │ ├── jsx/ │ │ │ ├── checkJsxChildrenCanBeTupleType.tsx │ │ │ ├── checkJsxChildrenProperty1.tsx │ │ │ ├── checkJsxChildrenProperty10.tsx │ │ │ ├── checkJsxChildrenProperty11.tsx │ │ │ ├── checkJsxChildrenProperty12.tsx │ │ │ ├── checkJsxChildrenProperty13.tsx │ │ │ ├── checkJsxChildrenProperty14.tsx │ │ │ ├── checkJsxChildrenProperty15.tsx │ │ │ ├── checkJsxChildrenProperty16.tsx │ │ │ ├── checkJsxChildrenProperty2.tsx │ │ │ ├── checkJsxChildrenProperty3.tsx │ │ │ ├── checkJsxChildrenProperty4.tsx │ │ │ ├── checkJsxChildrenProperty5.tsx │ │ │ ├── checkJsxChildrenProperty6.tsx │ │ │ ├── checkJsxChildrenProperty7.tsx │ │ │ ├── checkJsxChildrenProperty8.tsx │ │ │ ├── checkJsxChildrenProperty9.tsx │ │ │ ├── checkJsxGenericTagHasCorrectInferences.tsx │ │ │ ├── checkJsxIntersectionElementPropsType.tsx │ │ │ ├── checkJsxNamespaceNamesQuestionableForms.tsx │ │ │ ├── checkJsxSubtleSkipContextSensitiveBug.tsx │ │ │ ├── checkJsxUnionSFXContextualTypeInferredCorrectly.tsx │ │ │ ├── commentEmittingInPreserveJsx1.tsx │ │ │ ├── correctlyMarkAliasAsReferences1.tsx │ │ │ ├── correctlyMarkAliasAsReferences2.tsx │ │ │ ├── correctlyMarkAliasAsReferences3.tsx │ │ │ ├── correctlyMarkAliasAsReferences4.tsx │ │ │ ├── inline/ │ │ │ │ ├── inlineJsxAndJsxFragPragma.tsx │ │ │ │ ├── inlineJsxAndJsxFragPragmaOverridesCompilerOptions.tsx │ │ │ │ ├── inlineJsxFactoryDeclarations.tsx │ │ │ │ ├── inlineJsxFactoryDeclarationsLocalTypes.tsx │ │ │ │ ├── inlineJsxFactoryLocalTypeGlobalFallback.tsx │ │ │ │ ├── inlineJsxFactoryOverridesCompilerOption.tsx │ │ │ │ └── inlineJsxFactoryWithFragmentIsError.tsx │ │ │ ├── jsxAndTypeAssertion.tsx │ │ │ ├── jsxAttributeInitializer.ts │ │ │ ├── jsxCheckJsxNoTypeArgumentsAllowed.tsx │ │ │ ├── jsxEsprimaFbTestSuite.tsx │ │ │ ├── jsxInvalidEsprimaTestSuite.tsx │ │ │ ├── jsxParsingError1.tsx │ │ │ ├── jsxParsingError2.tsx │ │ │ ├── jsxParsingError3.tsx │ │ │ ├── jsxParsingError4.tsx │ │ │ ├── jsxParsingErrorImmediateSpreadInAttributeValue.tsx │ │ │ ├── jsxReactTestSuite.tsx │ │ │ ├── jsxSpreadOverwritesAttributeStrict.tsx │ │ │ ├── jsxUnclosedParserRecovery.ts │ │ │ ├── jsxs/ │ │ │ │ ├── jsxJsxsCjsTransformChildren.tsx │ │ │ │ ├── jsxJsxsCjsTransformCustomImport.tsx │ │ │ │ ├── jsxJsxsCjsTransformCustomImportPragma.tsx │ │ │ │ ├── jsxJsxsCjsTransformKeyProp.tsx │ │ │ │ ├── jsxJsxsCjsTransformKeyPropCustomImport.tsx │ │ │ │ ├── jsxJsxsCjsTransformKeyPropCustomImportPragma.tsx │ │ │ │ ├── jsxJsxsCjsTransformNestedSelfClosingChild.tsx │ │ │ │ ├── jsxJsxsCjsTransformSubstitutesNames.tsx │ │ │ │ └── jsxJsxsCjsTransformSubstitutesNamesFragment.tsx │ │ │ ├── tsxAttributeErrors.tsx │ │ │ ├── tsxAttributeInvalidNames.tsx │ │ │ ├── tsxAttributeResolution.tsx │ │ │ ├── tsxAttributeResolution1.tsx │ │ │ ├── tsxAttributeResolution10.tsx │ │ │ ├── tsxAttributeResolution11.tsx │ │ │ ├── tsxAttributeResolution12.tsx │ │ │ ├── tsxAttributeResolution13.tsx │ │ │ ├── tsxAttributeResolution14.tsx │ │ │ ├── tsxAttributeResolution15.tsx │ │ │ ├── tsxAttributeResolution16.tsx │ │ │ ├── tsxAttributeResolution2.tsx │ │ │ ├── tsxAttributeResolution3.tsx │ │ │ ├── tsxAttributeResolution4.tsx │ │ │ ├── tsxAttributeResolution5.tsx │ │ │ ├── tsxAttributeResolution6.tsx │ │ │ ├── tsxAttributeResolution7.tsx │ │ │ ├── tsxAttributeResolution8.tsx │ │ │ ├── tsxAttributeResolution9.tsx │ │ │ ├── tsxCorrectlyParseLessThanComparison1.tsx │ │ │ ├── tsxDefaultAttributesResolution1.tsx │ │ │ ├── tsxDefaultAttributesResolution2.tsx │ │ │ ├── tsxDefaultAttributesResolution3.tsx │ │ │ ├── tsxDynamicTagName1.tsx │ │ │ ├── tsxDynamicTagName2.tsx │ │ │ ├── tsxDynamicTagName3.tsx │ │ │ ├── tsxDynamicTagName4.tsx │ │ │ ├── tsxDynamicTagName5.tsx │ │ │ ├── tsxDynamicTagName6.tsx │ │ │ ├── tsxDynamicTagName7.tsx │ │ │ ├── tsxDynamicTagName8.tsx │ │ │ ├── tsxDynamicTagName9.tsx │ │ │ ├── tsxElementResolution.tsx │ │ │ ├── tsxElementResolution1.tsx │ │ │ ├── tsxElementResolution10.tsx │ │ │ ├── tsxElementResolution11.tsx │ │ │ ├── tsxElementResolution12.tsx │ │ │ ├── tsxElementResolution13.tsx │ │ │ ├── tsxElementResolution14.tsx │ │ │ ├── tsxElementResolution15.tsx │ │ │ ├── tsxElementResolution16.tsx │ │ │ ├── tsxElementResolution17.tsx │ │ │ ├── tsxElementResolution18.tsx │ │ │ ├── tsxElementResolution19.tsx │ │ │ ├── tsxElementResolution2.tsx │ │ │ ├── tsxElementResolution3.tsx │ │ │ ├── tsxElementResolution4.tsx │ │ │ ├── tsxElementResolution5.tsx │ │ │ ├── tsxElementResolution6.tsx │ │ │ ├── tsxElementResolution7.tsx │ │ │ ├── tsxElementResolution8.tsx │ │ │ ├── tsxElementResolution9.tsx │ │ │ ├── tsxEmit1.tsx │ │ │ ├── tsxEmit2.tsx │ │ │ ├── tsxEmit3.tsx │ │ │ ├── tsxEmitSpreadAttribute.ts │ │ │ ├── tsxErrorRecovery1.tsx │ │ │ ├── tsxErrorRecovery2.tsx │ │ │ ├── tsxErrorRecovery3.tsx │ │ │ ├── tsxExternalModuleEmit1.tsx │ │ │ ├── tsxExternalModuleEmit2.tsx │ │ │ ├── tsxFragmentErrors.tsx │ │ │ ├── tsxFragmentPreserveEmit.tsx │ │ │ ├── tsxFragmentReactEmit.tsx │ │ │ ├── tsxGenericArrowFunctionParsing.tsx │ │ │ ├── tsxGenericAttributesType1.tsx │ │ │ ├── tsxGenericAttributesType2.tsx │ │ │ ├── tsxGenericAttributesType3.tsx │ │ │ ├── tsxGenericAttributesType4.tsx │ │ │ ├── tsxGenericAttributesType5.tsx │ │ │ ├── tsxGenericAttributesType6.tsx │ │ │ ├── tsxGenericAttributesType7.tsx │ │ │ ├── tsxGenericAttributesType8.tsx │ │ │ ├── tsxGenericAttributesType9.tsx │ │ │ ├── tsxInArrowFunction.tsx │ │ │ ├── tsxIntrinsicAttributeErrors.tsx │ │ │ ├── tsxLibraryManagedAttributes.tsx │ │ │ ├── tsxNamespacedAttributeName1.tsx │ │ │ ├── tsxNamespacedAttributeName2.tsx │ │ │ ├── tsxNamespacedTagName1.tsx │ │ │ ├── tsxNamespacedTagName2.tsx │ │ │ ├── tsxNoJsx.tsx │ │ │ ├── tsxOpeningClosingNames.tsx │ │ │ ├── tsxParseTests1.tsx │ │ │ ├── tsxParseTests2.tsx │ │ │ ├── tsxPreserveEmit1.tsx │ │ │ ├── tsxPreserveEmit2.tsx │ │ │ ├── tsxPreserveEmit3.tsx │ │ │ ├── tsxReactComponentWithDefaultTypeParameter1.tsx │ │ │ ├── tsxReactComponentWithDefaultTypeParameter2.tsx │ │ │ ├── tsxReactComponentWithDefaultTypeParameter3.tsx │ │ │ ├── tsxReactEmit1.tsx │ │ │ ├── tsxReactEmit2.tsx │ │ │ ├── tsxReactEmit3.tsx │ │ │ ├── tsxReactEmit4.tsx │ │ │ ├── tsxReactEmit5.tsx │ │ │ ├── tsxReactEmit6.tsx │ │ │ ├── tsxReactEmit7.tsx │ │ │ ├── tsxReactEmit8.tsx │ │ │ ├── tsxReactEmitEntities.tsx │ │ │ ├── tsxReactEmitNesting.tsx │ │ │ ├── tsxReactEmitSpreadAttribute.ts │ │ │ ├── tsxReactEmitWhitespace.tsx │ │ │ ├── tsxReactEmitWhitespace2.tsx │ │ │ ├── tsxSfcReturnNull.tsx │ │ │ ├── tsxSfcReturnNullStrictNullChecks.tsx │ │ │ ├── tsxSfcReturnUndefinedStrictNullChecks.tsx │ │ │ ├── tsxSpreadAttributesResolution1.tsx │ │ │ ├── tsxSpreadAttributesResolution10.tsx │ │ │ ├── tsxSpreadAttributesResolution11.tsx │ │ │ ├── tsxSpreadAttributesResolution12.tsx │ │ │ ├── tsxSpreadAttributesResolution13.tsx │ │ │ ├── tsxSpreadAttributesResolution14.tsx │ │ │ ├── tsxSpreadAttributesResolution15.tsx │ │ │ ├── tsxSpreadAttributesResolution16.tsx │ │ │ ├── tsxSpreadAttributesResolution17.tsx │ │ │ ├── tsxSpreadAttributesResolution2.tsx │ │ │ ├── tsxSpreadAttributesResolution3.tsx │ │ │ ├── tsxSpreadAttributesResolution4.tsx │ │ │ ├── tsxSpreadAttributesResolution5.tsx │ │ │ ├── tsxSpreadAttributesResolution6.tsx │ │ │ ├── tsxSpreadAttributesResolution7.tsx │ │ │ ├── tsxSpreadAttributesResolution8.tsx │ │ │ ├── tsxSpreadAttributesResolution9.tsx │ │ │ ├── tsxSpreadChildren.tsx │ │ │ ├── tsxSpreadChildrenInvalidType.tsx │ │ │ ├── tsxSpreadInvalidType.tsx │ │ │ ├── tsxStatelessFunctionComponentOverload1.tsx │ │ │ ├── tsxStatelessFunctionComponentOverload2.tsx │ │ │ ├── tsxStatelessFunctionComponentOverload3.tsx │ │ │ ├── tsxStatelessFunctionComponentOverload4.tsx │ │ │ ├── tsxStatelessFunctionComponentOverload5.tsx │ │ │ ├── tsxStatelessFunctionComponentOverload6.tsx │ │ │ ├── tsxStatelessFunctionComponentWithDefaultTypeParameter1.tsx │ │ │ ├── tsxStatelessFunctionComponentWithDefaultTypeParameter2.tsx │ │ │ ├── tsxStatelessFunctionComponents1.tsx │ │ │ ├── tsxStatelessFunctionComponents2.tsx │ │ │ ├── tsxStatelessFunctionComponents3.tsx │ │ │ ├── tsxStatelessFunctionComponentsWithTypeArguments1.tsx │ │ │ ├── tsxStatelessFunctionComponentsWithTypeArguments2.tsx │ │ │ ├── tsxStatelessFunctionComponentsWithTypeArguments3.tsx │ │ │ ├── tsxStatelessFunctionComponentsWithTypeArguments4.tsx │ │ │ ├── tsxStatelessFunctionComponentsWithTypeArguments5.tsx │ │ │ ├── tsxTypeArgumentResolution.tsx │ │ │ ├── tsxTypeArgumentsJsxPreserveOutput.tsx │ │ │ ├── tsxTypeErrors.tsx │ │ │ ├── tsxUnionElementType1.tsx │ │ │ ├── tsxUnionElementType2.tsx │ │ │ ├── tsxUnionElementType3.tsx │ │ │ ├── tsxUnionElementType4.tsx │ │ │ ├── tsxUnionElementType5.tsx │ │ │ ├── tsxUnionElementType6.tsx │ │ │ ├── tsxUnionTypeComponent1.tsx │ │ │ ├── tsxUnionTypeComponent2.tsx │ │ │ └── unicodeEscapesInJsxtags.tsx │ │ ├── moduleResolution/ │ │ │ ├── allowImportingTsExtensions.ts │ │ │ ├── allowImportingTypesDtsExtension.ts │ │ │ ├── bundler/ │ │ │ │ ├── bundlerCommonJS.ts │ │ │ │ ├── bundlerConditionsExcludesNode.ts │ │ │ │ ├── bundlerDirectoryModule.ts │ │ │ │ ├── bundlerImportESM.ts │ │ │ │ ├── bundlerImportTsExtensions.ts │ │ │ │ ├── bundlerNodeModules1.ts │ │ │ │ ├── bundlerOptionsCompat.ts │ │ │ │ ├── bundlerRelative1.ts │ │ │ │ └── bundlerSyntaxRestrictions.ts │ │ │ ├── conditionalExportsResolutionFallback.ts │ │ │ ├── conditionalExportsResolutionFallbackNull.ts │ │ │ ├── customConditions.ts │ │ │ ├── declarationNotFoundPackageBundlesTypes.ts │ │ │ ├── extensionLoadingPriority.ts │ │ │ ├── importFromDot.ts │ │ │ ├── nestedPackageJsonRedirect.ts │ │ │ ├── node10AlternateResult_noResolution.ts │ │ │ ├── node10Alternateresult_noTypes.ts │ │ │ ├── node10IsNode_node.ts │ │ │ ├── node10IsNode_node10.ts │ │ │ ├── nodeModulesAtTypesPriority.ts │ │ │ ├── packageJsonExportsOptionsCompat.ts │ │ │ ├── packageJsonImportsExportsOptionCompat.ts │ │ │ ├── packageJsonMain.ts │ │ │ ├── packageJsonMain_isNonRecursive.ts │ │ │ ├── resolutionModeCache.ts │ │ │ ├── resolutionModeImportType1.ts │ │ │ ├── resolutionModeTripleSlash1.ts │ │ │ ├── resolutionModeTripleSlash2.ts │ │ │ ├── resolutionModeTripleSlash3.ts │ │ │ ├── resolutionModeTripleSlash4.ts │ │ │ ├── resolutionModeTripleSlash5.ts │ │ │ ├── resolutionModeTypeOnlyImport1.ts │ │ │ ├── resolvesWithoutExportsDiagnostic1.ts │ │ │ ├── scopedPackages.ts │ │ │ ├── scopedPackagesClassic.ts │ │ │ ├── selfNameModuleAugmentation.ts │ │ │ ├── typesVersions.ambientModules.ts │ │ │ ├── typesVersions.emptyTypes.ts │ │ │ ├── typesVersions.justIndex.ts │ │ │ ├── typesVersions.multiFile.ts │ │ │ ├── untypedModuleImport.ts │ │ │ ├── untypedModuleImport_allowJs.ts │ │ │ ├── untypedModuleImport_noImplicitAny.ts │ │ │ ├── untypedModuleImport_noImplicitAny_relativePath.ts │ │ │ ├── untypedModuleImport_noImplicitAny_scoped.ts │ │ │ ├── untypedModuleImport_noImplicitAny_typesForPackageExist.ts │ │ │ ├── untypedModuleImport_vsAmbient.ts │ │ │ └── untypedModuleImport_withAugmentation.ts │ │ ├── node/ │ │ │ ├── allowJs/ │ │ │ │ ├── nodeAllowJsPackageSelfName.ts │ │ │ │ ├── nodeAllowJsPackageSelfName2.ts │ │ │ │ ├── nodeModulesAllowJs1.ts │ │ │ │ ├── nodeModulesAllowJsCjsFromJs.ts │ │ │ │ ├── nodeModulesAllowJsConditionalPackageExports.ts │ │ │ │ ├── nodeModulesAllowJsDynamicImport.ts │ │ │ │ ├── nodeModulesAllowJsExportAssignment.ts │ │ │ │ ├── nodeModulesAllowJsExportlessJsModuleDetectionAuto.ts │ │ │ │ ├── nodeModulesAllowJsGeneratedNameCollisions.ts │ │ │ │ ├── nodeModulesAllowJsImportAssignment.ts │ │ │ │ ├── nodeModulesAllowJsImportHelpersCollisions1.ts │ │ │ │ ├── nodeModulesAllowJsImportHelpersCollisions2.ts │ │ │ │ ├── nodeModulesAllowJsImportHelpersCollisions3.ts │ │ │ │ ├── nodeModulesAllowJsImportMeta.ts │ │ │ │ ├── nodeModulesAllowJsPackageExports.ts │ │ │ │ ├── nodeModulesAllowJsPackageImports.ts │ │ │ │ ├── nodeModulesAllowJsPackagePatternExports.ts │ │ │ │ ├── nodeModulesAllowJsPackagePatternExportsExclude.ts │ │ │ │ ├── nodeModulesAllowJsPackagePatternExportsTrailers.ts │ │ │ │ ├── nodeModulesAllowJsSynchronousCallErrors.ts │ │ │ │ └── nodeModulesAllowJsTopLevelAwait.ts │ │ │ ├── esmModuleExports1.ts │ │ │ ├── esmModuleExports2.ts │ │ │ ├── esmModuleExports3.ts │ │ │ ├── legacyNodeModulesExportsSpecifierGenerationConditions.ts │ │ │ ├── nodeModules1.ts │ │ │ ├── nodeModulesCJSEmit1.ts │ │ │ ├── nodeModulesCJSResolvingToESM1_emptyPackageJson.ts │ │ │ ├── nodeModulesCJSResolvingToESM2_cjsPackageJson.ts │ │ │ ├── nodeModulesCJSResolvingToESM3_modulePackageJson.ts │ │ │ ├── nodeModulesCJSResolvingToESM4_noPackageJson.ts │ │ │ ├── nodeModulesCjsFormatFileAlwaysHasDefault.ts │ │ │ ├── nodeModulesConditionalPackageExports.ts │ │ │ ├── nodeModulesDeclarationEmitDynamicImportWithPackageExports.ts │ │ │ ├── nodeModulesDeclarationEmitWithPackageExports.ts │ │ │ ├── nodeModulesDynamicImport.ts │ │ │ ├── nodeModulesExportAssignments.ts │ │ │ ├── nodeModulesExportsBlocksSpecifierResolution.ts │ │ │ ├── nodeModulesExportsBlocksTypesVersions.ts │ │ │ ├── nodeModulesExportsDoubleAsterisk.ts │ │ │ ├── nodeModulesExportsSourceTs.ts │ │ │ ├── nodeModulesExportsSpecifierGenerationConditions.ts │ │ │ ├── nodeModulesExportsSpecifierGenerationDirectory.ts │ │ │ ├── nodeModulesExportsSpecifierGenerationPattern.ts │ │ │ ├── nodeModulesForbidenSyntax.ts │ │ │ ├── nodeModulesGeneratedNameCollisions.ts │ │ │ ├── nodeModulesImportAssertions.ts │ │ │ ├── nodeModulesImportAssignments.ts │ │ │ ├── nodeModulesImportAttributes.ts │ │ │ ├── nodeModulesImportAttributesModeDeclarationEmit1.ts │ │ │ ├── nodeModulesImportAttributesModeDeclarationEmit2.ts │ │ │ ├── nodeModulesImportAttributesModeDeclarationEmitErrors.ts │ │ │ ├── nodeModulesImportAttributesTypeModeDeclarationEmit.ts │ │ │ ├── nodeModulesImportAttributesTypeModeDeclarationEmitErrors.ts │ │ │ ├── nodeModulesImportHelpersCollisions.ts │ │ │ ├── nodeModulesImportHelpersCollisions2.ts │ │ │ ├── nodeModulesImportHelpersCollisions3.ts │ │ │ ├── nodeModulesImportMeta.ts │ │ │ ├── nodeModulesImportModeDeclarationEmit1.ts │ │ │ ├── nodeModulesImportModeDeclarationEmit2.ts │ │ │ ├── nodeModulesImportModeDeclarationEmitErrors1.ts │ │ │ ├── nodeModulesImportResolutionIntoExport.ts │ │ │ ├── nodeModulesImportResolutionNoCycle.ts │ │ │ ├── nodeModulesImportTypeModeDeclarationEmit1.ts │ │ │ ├── nodeModulesImportTypeModeDeclarationEmitErrors1.ts │ │ │ ├── nodeModulesJson.ts │ │ │ ├── nodeModulesNoDirectoryModule.ts │ │ │ ├── nodeModulesPackageExports.ts │ │ │ ├── nodeModulesPackageImports.ts │ │ │ ├── nodeModulesPackageImportsRootWildcard.ts │ │ │ ├── nodeModulesPackageImportsRootWildcardNode16.ts │ │ │ ├── nodeModulesPackagePatternExports.ts │ │ │ ├── nodeModulesPackagePatternExportsExclude.ts │ │ │ ├── nodeModulesPackagePatternExportsTrailers.ts │ │ │ ├── nodeModulesResolveJsonModule.ts │ │ │ ├── nodeModulesSynchronousCallErrors.ts │ │ │ ├── nodeModulesTopLevelAwait.ts │ │ │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit1.ts │ │ │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit2.ts │ │ │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit3.ts │ │ │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit4.ts │ │ │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit5.ts │ │ │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit6.ts │ │ │ ├── nodeModulesTripleSlashReferenceModeDeclarationEmit7.ts │ │ │ ├── nodeModulesTripleSlashReferenceModeOverride1.ts │ │ │ ├── nodeModulesTripleSlashReferenceModeOverride2.ts │ │ │ ├── nodeModulesTripleSlashReferenceModeOverride3.ts │ │ │ ├── nodeModulesTripleSlashReferenceModeOverride4.ts │ │ │ ├── nodeModulesTripleSlashReferenceModeOverride5.ts │ │ │ ├── nodeModulesTripleSlashReferenceModeOverrideModeError.ts │ │ │ ├── nodeModulesTripleSlashReferenceModeOverrideOldResolutionError.ts │ │ │ ├── nodeModulesTypesVersionPackageExports.ts │ │ │ ├── nodePackageSelfName.ts │ │ │ └── nodePackageSelfNameScoped.ts │ │ ├── nonjsExtensions/ │ │ │ ├── declarationFileForHtmlFileWithinDeclarationFile.ts │ │ │ ├── declarationFileForHtmlImport.ts │ │ │ ├── declarationFileForJsonImport.ts │ │ │ ├── declarationFileForTsJsImport.ts │ │ │ └── declarationFilesForNodeNativeModules.ts │ │ ├── override/ │ │ │ ├── override1.ts │ │ │ ├── override10.ts │ │ │ ├── override11.ts │ │ │ ├── override12.ts │ │ │ ├── override13.ts │ │ │ ├── override14.ts │ │ │ ├── override15.ts │ │ │ ├── override16.ts │ │ │ ├── override17.ts │ │ │ ├── override18.ts │ │ │ ├── override19.ts │ │ │ ├── override2.ts │ │ │ ├── override20.ts │ │ │ ├── override21.ts │ │ │ ├── override3.ts │ │ │ ├── override4.ts │ │ │ ├── override5.ts │ │ │ ├── override6.ts │ │ │ ├── override7.ts │ │ │ ├── override8.ts │ │ │ ├── override9.ts │ │ │ ├── overrideDynamicName1.ts │ │ │ ├── overrideKeywordOrder.ts │ │ │ ├── overrideLateBindableIndexSignature1.ts │ │ │ ├── overrideLateBindableName1.ts │ │ │ ├── overrideParameterProperty.ts │ │ │ ├── overrideWithoutNoImplicitOverride1.ts │ │ │ ├── override_js1.ts │ │ │ ├── override_js2.ts │ │ │ ├── override_js3.ts │ │ │ └── override_js4.ts │ │ ├── parser/ │ │ │ ├── ecmascript2018/ │ │ │ │ ├── asyncGenerators/ │ │ │ │ │ ├── parser.asyncGenerators.classMethods.es2018.ts │ │ │ │ │ ├── parser.asyncGenerators.functionDeclarations.es2018.ts │ │ │ │ │ ├── parser.asyncGenerators.functionExpressions.es2018.ts │ │ │ │ │ └── parser.asyncGenerators.objectLiteralMethods.es2018.ts │ │ │ │ └── forAwait/ │ │ │ │ └── parser.forAwait.es2018.ts │ │ │ ├── ecmascript2021/ │ │ │ │ └── numericSeparators/ │ │ │ │ ├── parser.numericSeparators.binary.ts │ │ │ │ ├── parser.numericSeparators.binaryNegative.ts │ │ │ │ ├── parser.numericSeparators.decimal.ts │ │ │ │ ├── parser.numericSeparators.decmialNegative.ts │ │ │ │ ├── parser.numericSeparators.hex.ts │ │ │ │ ├── parser.numericSeparators.hexNegative.ts │ │ │ │ ├── parser.numericSeparators.octal.ts │ │ │ │ ├── parser.numericSeparators.octalNegative.ts │ │ │ │ └── parser.numericSeparators.unicodeEscape.ts │ │ │ ├── ecmascript3/ │ │ │ │ └── Accessors/ │ │ │ │ ├── parserES3Accessors1.ts │ │ │ │ ├── parserES3Accessors2.ts │ │ │ │ ├── parserES3Accessors3.ts │ │ │ │ └── parserES3Accessors4.ts │ │ │ ├── ecmascript5/ │ │ │ │ ├── Accessors/ │ │ │ │ │ ├── parserAccessors1.ts │ │ │ │ │ ├── parserAccessors10.ts │ │ │ │ │ ├── parserAccessors2.ts │ │ │ │ │ ├── parserAccessors3.ts │ │ │ │ │ ├── parserAccessors4.ts │ │ │ │ │ ├── parserAccessors5.ts │ │ │ │ │ ├── parserAccessors6.ts │ │ │ │ │ ├── parserAccessors7.ts │ │ │ │ │ ├── parserAccessors8.ts │ │ │ │ │ ├── parserAccessors9.ts │ │ │ │ │ ├── parserGetAccessorWithTypeParameters1.ts │ │ │ │ │ ├── parserSetAccessorWithTypeAnnotation1.ts │ │ │ │ │ └── parserSetAccessorWithTypeParameters1.ts │ │ │ │ ├── ArrayLiteralExpressions/ │ │ │ │ │ ├── parserArrayLiteralExpression1.ts │ │ │ │ │ ├── parserArrayLiteralExpression10.ts │ │ │ │ │ ├── parserArrayLiteralExpression11.ts │ │ │ │ │ ├── parserArrayLiteralExpression12.ts │ │ │ │ │ ├── parserArrayLiteralExpression13.ts │ │ │ │ │ ├── parserArrayLiteralExpression14.ts │ │ │ │ │ ├── parserArrayLiteralExpression15.ts │ │ │ │ │ ├── parserArrayLiteralExpression2.ts │ │ │ │ │ ├── parserArrayLiteralExpression3.ts │ │ │ │ │ ├── parserArrayLiteralExpression4.ts │ │ │ │ │ ├── parserArrayLiteralExpression5.ts │ │ │ │ │ ├── parserArrayLiteralExpression6.ts │ │ │ │ │ ├── parserArrayLiteralExpression7.ts │ │ │ │ │ ├── parserArrayLiteralExpression8.ts │ │ │ │ │ └── parserArrayLiteralExpression9.ts │ │ │ │ ├── ArrowFunctionExpressions/ │ │ │ │ │ ├── parserArrowFunctionExpression1.ts │ │ │ │ │ ├── parserArrowFunctionExpression10.ts │ │ │ │ │ ├── parserArrowFunctionExpression11.ts │ │ │ │ │ ├── parserArrowFunctionExpression12.ts │ │ │ │ │ ├── parserArrowFunctionExpression13.ts │ │ │ │ │ ├── parserArrowFunctionExpression14.ts │ │ │ │ │ ├── parserArrowFunctionExpression15.ts │ │ │ │ │ ├── parserArrowFunctionExpression16.ts │ │ │ │ │ ├── parserArrowFunctionExpression17.ts │ │ │ │ │ ├── parserArrowFunctionExpression2.ts │ │ │ │ │ ├── parserArrowFunctionExpression3.ts │ │ │ │ │ ├── parserArrowFunctionExpression4.ts │ │ │ │ │ ├── parserArrowFunctionExpression5.ts │ │ │ │ │ ├── parserArrowFunctionExpression6.ts │ │ │ │ │ ├── parserArrowFunctionExpression7.ts │ │ │ │ │ ├── parserArrowFunctionExpression8.ts │ │ │ │ │ └── parserArrowFunctionExpression9.ts │ │ │ │ ├── AutomaticSemicolonInsertion/ │ │ │ │ │ └── parserAutomaticSemicolonInsertion1.ts │ │ │ │ ├── CatchClauses/ │ │ │ │ │ └── parserCatchClauseWithTypeAnnotation1.ts │ │ │ │ ├── ClassDeclarations/ │ │ │ │ │ ├── parserClass1.ts │ │ │ │ │ ├── parserClass2.ts │ │ │ │ │ ├── parserClassDeclaration1.ts │ │ │ │ │ ├── parserClassDeclaration10.ts │ │ │ │ │ ├── parserClassDeclaration11.ts │ │ │ │ │ ├── parserClassDeclaration12.ts │ │ │ │ │ ├── parserClassDeclaration13.ts │ │ │ │ │ ├── parserClassDeclaration14.ts │ │ │ │ │ ├── parserClassDeclaration15.ts │ │ │ │ │ ├── parserClassDeclaration16.ts │ │ │ │ │ ├── parserClassDeclaration17.ts │ │ │ │ │ ├── parserClassDeclaration18.ts │ │ │ │ │ ├── parserClassDeclaration19.ts │ │ │ │ │ ├── parserClassDeclaration2.ts │ │ │ │ │ ├── parserClassDeclaration20.ts │ │ │ │ │ ├── parserClassDeclaration21.ts │ │ │ │ │ ├── parserClassDeclaration22.ts │ │ │ │ │ ├── parserClassDeclaration23.ts │ │ │ │ │ ├── parserClassDeclaration24.ts │ │ │ │ │ ├── parserClassDeclaration25.ts │ │ │ │ │ ├── parserClassDeclaration26.ts │ │ │ │ │ ├── parserClassDeclaration3.ts │ │ │ │ │ ├── parserClassDeclaration4.ts │ │ │ │ │ ├── parserClassDeclaration5.ts │ │ │ │ │ ├── parserClassDeclaration6.ts │ │ │ │ │ ├── parserClassDeclaration7.d.ts │ │ │ │ │ ├── parserClassDeclaration7.ts │ │ │ │ │ ├── parserClassDeclaration8.ts │ │ │ │ │ ├── parserClassDeclaration9.ts │ │ │ │ │ └── parserClassDeclarationIndexSignature1.ts │ │ │ │ ├── ComputedPropertyNames/ │ │ │ │ │ ├── parserES5ComputedPropertyName1.ts │ │ │ │ │ ├── parserES5ComputedPropertyName10.ts │ │ │ │ │ ├── parserES5ComputedPropertyName11.ts │ │ │ │ │ ├── parserES5ComputedPropertyName2.ts │ │ │ │ │ ├── parserES5ComputedPropertyName3.ts │ │ │ │ │ ├── parserES5ComputedPropertyName4.ts │ │ │ │ │ ├── parserES5ComputedPropertyName5.ts │ │ │ │ │ ├── parserES5ComputedPropertyName6.ts │ │ │ │ │ ├── parserES5ComputedPropertyName7.ts │ │ │ │ │ ├── parserES5ComputedPropertyName8.ts │ │ │ │ │ └── parserES5ComputedPropertyName9.ts │ │ │ │ ├── ConstructorDeclarations/ │ │ │ │ │ ├── parserConstructorDeclaration1.ts │ │ │ │ │ ├── parserConstructorDeclaration10.ts │ │ │ │ │ ├── parserConstructorDeclaration11.ts │ │ │ │ │ ├── parserConstructorDeclaration2.ts │ │ │ │ │ ├── parserConstructorDeclaration3.ts │ │ │ │ │ ├── parserConstructorDeclaration4.ts │ │ │ │ │ ├── parserConstructorDeclaration5.ts │ │ │ │ │ ├── parserConstructorDeclaration6.ts │ │ │ │ │ ├── parserConstructorDeclaration7.ts │ │ │ │ │ ├── parserConstructorDeclaration8.ts │ │ │ │ │ └── parserConstructorDeclaration9.ts │ │ │ │ ├── EnumDeclarations/ │ │ │ │ │ ├── parserEnum1.ts │ │ │ │ │ ├── parserEnum2.ts │ │ │ │ │ ├── parserEnum3.ts │ │ │ │ │ ├── parserEnum4.ts │ │ │ │ │ ├── parserEnum5.ts │ │ │ │ │ ├── parserEnum6.ts │ │ │ │ │ ├── parserEnum7.ts │ │ │ │ │ ├── parserEnumDeclaration1.ts │ │ │ │ │ ├── parserEnumDeclaration2.d.ts │ │ │ │ │ ├── parserEnumDeclaration2.ts │ │ │ │ │ ├── parserEnumDeclaration3.d.ts │ │ │ │ │ ├── parserEnumDeclaration3.ts │ │ │ │ │ ├── parserEnumDeclaration4.ts │ │ │ │ │ ├── parserEnumDeclaration5.ts │ │ │ │ │ ├── parserEnumDeclaration6.ts │ │ │ │ │ ├── parserInterfaceKeywordInEnum.ts │ │ │ │ │ └── parserInterfaceKeywordInEnum1.ts │ │ │ │ ├── ErrorRecovery/ │ │ │ │ │ ├── AccessibilityAfterStatic/ │ │ │ │ │ │ ├── parserAccessibilityAfterStatic1.ts │ │ │ │ │ │ ├── parserAccessibilityAfterStatic10.ts │ │ │ │ │ │ ├── parserAccessibilityAfterStatic11.ts │ │ │ │ │ │ ├── parserAccessibilityAfterStatic14.ts │ │ │ │ │ │ ├── parserAccessibilityAfterStatic2.ts │ │ │ │ │ │ ├── parserAccessibilityAfterStatic3.ts │ │ │ │ │ │ ├── parserAccessibilityAfterStatic4.ts │ │ │ │ │ │ ├── parserAccessibilityAfterStatic5.ts │ │ │ │ │ │ ├── parserAccessibilityAfterStatic6.ts │ │ │ │ │ │ └── parserAccessibilityAfterStatic7.ts │ │ │ │ │ ├── ArgumentLists/ │ │ │ │ │ │ ├── parserErrorRecovery_ArgumentList1.ts │ │ │ │ │ │ ├── parserErrorRecovery_ArgumentList2.ts │ │ │ │ │ │ ├── parserErrorRecovery_ArgumentList3.ts │ │ │ │ │ │ ├── parserErrorRecovery_ArgumentList4.ts │ │ │ │ │ │ ├── parserErrorRecovery_ArgumentList6.ts │ │ │ │ │ │ └── parserErrorRecovery_ArgumentList7.ts │ │ │ │ │ ├── ArrayLiteralExpressions/ │ │ │ │ │ │ ├── parserErrorRecoveryArrayLiteralExpression1.ts │ │ │ │ │ │ ├── parserErrorRecoveryArrayLiteralExpression2.ts │ │ │ │ │ │ └── parserErrorRecoveryArrayLiteralExpression3.ts │ │ │ │ │ ├── ArrowFunctions/ │ │ │ │ │ │ ├── ArrowFunction1.ts │ │ │ │ │ │ ├── ArrowFunction3.ts │ │ │ │ │ │ ├── ArrowFunction4.ts │ │ │ │ │ │ ├── parserX_ArrowFunction1.ts │ │ │ │ │ │ ├── parserX_ArrowFunction3.ts │ │ │ │ │ │ └── parserX_ArrowFunction4.ts │ │ │ │ │ ├── Blocks/ │ │ │ │ │ │ ├── parserErrorRecovery_Block1.ts │ │ │ │ │ │ ├── parserErrorRecovery_Block2.ts │ │ │ │ │ │ └── parserErrorRecovery_Block3.ts │ │ │ │ │ ├── ClassElements/ │ │ │ │ │ │ ├── parserErrorRecovery_ClassElement1.ts │ │ │ │ │ │ ├── parserErrorRecovery_ClassElement2.ts │ │ │ │ │ │ └── parserErrorRecovery_ClassElement3.ts │ │ │ │ │ ├── Expressions/ │ │ │ │ │ │ └── parserErrorRecovery_Expression1.ts │ │ │ │ │ ├── ExtendsOrImplementsClauses/ │ │ │ │ │ │ ├── parserErrorRecovery_ExtendsOrImplementsClause1.ts │ │ │ │ │ │ ├── parserErrorRecovery_ExtendsOrImplementsClause2.ts │ │ │ │ │ │ ├── parserErrorRecovery_ExtendsOrImplementsClause3.ts │ │ │ │ │ │ ├── parserErrorRecovery_ExtendsOrImplementsClause4.ts │ │ │ │ │ │ ├── parserErrorRecovery_ExtendsOrImplementsClause5.ts │ │ │ │ │ │ └── parserErrorRecovery_ExtendsOrImplementsClause6.ts │ │ │ │ │ ├── IfStatements/ │ │ │ │ │ │ ├── parserErrorRecoveryIfStatement1.ts │ │ │ │ │ │ ├── parserErrorRecoveryIfStatement2.ts │ │ │ │ │ │ ├── parserErrorRecoveryIfStatement3.ts │ │ │ │ │ │ ├── parserErrorRecoveryIfStatement4.ts │ │ │ │ │ │ ├── parserErrorRecoveryIfStatement5.ts │ │ │ │ │ │ └── parserErrorRecoveryIfStatement6.ts │ │ │ │ │ ├── IncompleteMemberVariables/ │ │ │ │ │ │ ├── parserErrorRecovery_IncompleteMemberVariable1.ts │ │ │ │ │ │ └── parserErrorRecovery_IncompleteMemberVariable2.ts │ │ │ │ │ ├── LeftShifts/ │ │ │ │ │ │ └── parserErrorRecovery_LeftShift1.ts │ │ │ │ │ ├── ModuleElements/ │ │ │ │ │ │ ├── parserErrorRecovery_ModuleElement1.ts │ │ │ │ │ │ └── parserErrorRecovery_ModuleElement2.ts │ │ │ │ │ ├── ObjectLiterals/ │ │ │ │ │ │ ├── parserErrorRecovery_ObjectLiteral1.ts │ │ │ │ │ │ ├── parserErrorRecovery_ObjectLiteral2.ts │ │ │ │ │ │ ├── parserErrorRecovery_ObjectLiteral3.ts │ │ │ │ │ │ ├── parserErrorRecovery_ObjectLiteral4.ts │ │ │ │ │ │ └── parserErrorRecovery_ObjectLiteral5.ts │ │ │ │ │ ├── ParameterLists/ │ │ │ │ │ │ ├── parserErrorRecovery_ParameterList1.ts │ │ │ │ │ │ ├── parserErrorRecovery_ParameterList2.ts │ │ │ │ │ │ ├── parserErrorRecovery_ParameterList4.ts │ │ │ │ │ │ ├── parserErrorRecovery_ParameterList5.ts │ │ │ │ │ │ └── parserErrorRecovery_ParameterList6.ts │ │ │ │ │ ├── SourceUnits/ │ │ │ │ │ │ └── parserErrorRecovery_SourceUnit1.ts │ │ │ │ │ ├── SwitchStatements/ │ │ │ │ │ │ ├── parserErrorRecovery_SwitchStatement1.ts │ │ │ │ │ │ └── parserErrorRecovery_SwitchStatement2.ts │ │ │ │ │ ├── TypeArgumentLists/ │ │ │ │ │ │ ├── TypeArgumentList1.ts │ │ │ │ │ │ └── parserX_TypeArgumentList1.ts │ │ │ │ │ ├── VariableLists/ │ │ │ │ │ │ ├── parserErrorRecovery_VariableList1.ts │ │ │ │ │ │ ├── parserInvalidIdentifiersInVariableStatements1.ts │ │ │ │ │ │ ├── parserVariableStatement1.ts │ │ │ │ │ │ ├── parserVariableStatement2.ts │ │ │ │ │ │ ├── parserVariableStatement3.ts │ │ │ │ │ │ └── parserVariableStatement4.ts │ │ │ │ │ ├── parserCommaInTypeMemberList1.ts │ │ │ │ │ ├── parserCommaInTypeMemberList2.ts │ │ │ │ │ ├── parserEmptyParenthesizedExpression1.ts │ │ │ │ │ ├── parserEqualsGreaterThanAfterFunction1.ts │ │ │ │ │ ├── parserEqualsGreaterThanAfterFunction2.ts │ │ │ │ │ ├── parserErrantAccessibilityModifierInModule1.ts │ │ │ │ │ ├── parserErrantEqualsGreaterThanAfterFunction1.ts │ │ │ │ │ ├── parserErrantEqualsGreaterThanAfterFunction2.ts │ │ │ │ │ ├── parserErrantSemicolonInClass1.ts │ │ │ │ │ ├── parserFuzz1.ts │ │ │ │ │ ├── parserMissingLambdaOpenBrace1.ts │ │ │ │ │ ├── parserModifierOnPropertySignature1.ts │ │ │ │ │ ├── parserModifierOnPropertySignature2.ts │ │ │ │ │ ├── parserModifierOnStatementInBlock1.ts │ │ │ │ │ ├── parserModifierOnStatementInBlock2.ts │ │ │ │ │ ├── parserModifierOnStatementInBlock3.ts │ │ │ │ │ ├── parserModifierOnStatementInBlock4.ts │ │ │ │ │ ├── parserPublicBreak1.ts │ │ │ │ │ ├── parserStatementIsNotAMemberVariableDeclaration1.ts │ │ │ │ │ ├── parserUnfinishedTypeNameBeforeKeyword1.ts │ │ │ │ │ ├── parserUnterminatedGeneric1.ts │ │ │ │ │ └── parserUnterminatedGeneric2.ts │ │ │ │ ├── ExportAssignments/ │ │ │ │ │ ├── parserExportAssignment1.ts │ │ │ │ │ ├── parserExportAssignment2.ts │ │ │ │ │ ├── parserExportAssignment3.ts │ │ │ │ │ ├── parserExportAssignment4.ts │ │ │ │ │ ├── parserExportAssignment5.ts │ │ │ │ │ ├── parserExportAssignment6.ts │ │ │ │ │ ├── parserExportAssignment7.ts │ │ │ │ │ ├── parserExportAssignment8.ts │ │ │ │ │ └── parserExportAssignment9.ts │ │ │ │ ├── Expressions/ │ │ │ │ │ ├── parseIncompleteBinaryExpression1.ts │ │ │ │ │ ├── parserAssignmentExpression1.ts │ │ │ │ │ ├── parserConditionalExpression1.ts │ │ │ │ │ ├── parserInvocationOfMemberAccessOffOfObjectCreationExpression1.ts │ │ │ │ │ ├── parserMemberAccessAfterPostfixExpression1.ts │ │ │ │ │ ├── parserObjectCreation2.ts │ │ │ │ │ ├── parserPostfixPostfixExpression1.ts │ │ │ │ │ ├── parserPostfixUnaryExpression1.ts │ │ │ │ │ ├── parserTypeAssertionInObjectCreationExpression1.ts │ │ │ │ │ ├── parserUnaryExpression1.ts │ │ │ │ │ ├── parserUnaryExpression2.ts │ │ │ │ │ ├── parserUnaryExpression3.ts │ │ │ │ │ ├── parserUnaryExpression4.ts │ │ │ │ │ ├── parserUnaryExpression5.ts │ │ │ │ │ ├── parserUnaryExpression6.ts │ │ │ │ │ └── parserUnaryExpression7.ts │ │ │ │ ├── FunctionDeclarations/ │ │ │ │ │ ├── parserFunctionDeclaration1.d.ts │ │ │ │ │ ├── parserFunctionDeclaration1.ts │ │ │ │ │ ├── parserFunctionDeclaration2.d.ts │ │ │ │ │ ├── parserFunctionDeclaration2.ts │ │ │ │ │ ├── parserFunctionDeclaration3.ts │ │ │ │ │ ├── parserFunctionDeclaration4.ts │ │ │ │ │ ├── parserFunctionDeclaration5.ts │ │ │ │ │ ├── parserFunctionDeclaration6.ts │ │ │ │ │ ├── parserFunctionDeclaration7.ts │ │ │ │ │ └── parserFunctionDeclaration8.ts │ │ │ │ ├── Fuzz/ │ │ │ │ │ ├── parser0_004152.ts │ │ │ │ │ └── parser768531.ts │ │ │ │ ├── Generics/ │ │ │ │ │ ├── parserAmbiguity1.ts │ │ │ │ │ ├── parserAmbiguity2.ts │ │ │ │ │ ├── parserAmbiguity3.ts │ │ │ │ │ ├── parserAmbiguityWithBinaryOperator1.ts │ │ │ │ │ ├── parserAmbiguityWithBinaryOperator2.ts │ │ │ │ │ ├── parserAmbiguityWithBinaryOperator3.ts │ │ │ │ │ ├── parserAmbiguityWithBinaryOperator4.ts │ │ │ │ │ ├── parserCastVersusArrowFunction1.ts │ │ │ │ │ ├── parserConstructorAmbiguity1.ts │ │ │ │ │ ├── parserConstructorAmbiguity2.ts │ │ │ │ │ ├── parserConstructorAmbiguity3.ts │ │ │ │ │ ├── parserConstructorAmbiguity4.ts │ │ │ │ │ ├── parserGenericClass1.ts │ │ │ │ │ ├── parserGenericClass2.ts │ │ │ │ │ ├── parserGenericConstraint1.ts │ │ │ │ │ ├── parserGenericConstraint2.ts │ │ │ │ │ ├── parserGenericConstraint3.ts │ │ │ │ │ ├── parserGenericConstraint4.ts │ │ │ │ │ ├── parserGenericConstraint5.ts │ │ │ │ │ ├── parserGenericConstraint6.ts │ │ │ │ │ ├── parserGenericConstraint7.ts │ │ │ │ │ ├── parserGenericsInInterfaceDeclaration1.ts │ │ │ │ │ ├── parserGenericsInTypeContexts1.ts │ │ │ │ │ ├── parserGenericsInTypeContexts2.ts │ │ │ │ │ ├── parserGenericsInVariableDeclaration1.ts │ │ │ │ │ ├── parserGreaterThanTokenAmbiguity1.ts │ │ │ │ │ ├── parserGreaterThanTokenAmbiguity10.ts │ │ │ │ │ ├── parserGreaterThanTokenAmbiguity11.ts │ │ │ │ │ ├── parserGreaterThanTokenAmbiguity12.ts │ │ │ │ │ ├── parserGreaterThanTokenAmbiguity13.ts │ │ │ │ │ ├── parserGreaterThanTokenAmbiguity14.ts │ │ │ │ │ ├── parserGreaterThanTokenAmbiguity15.ts │ │ │ │ │ ├── parserGreaterThanTokenAmbiguity16.ts │ │ │ │ │ ├── parserGreaterThanTokenAmbiguity17.ts │ │ │ │ │ ├── parserGreaterThanTokenAmbiguity18.ts │ │ │ │ │ ├── parserGreaterThanTokenAmbiguity19.ts │ │ │ │ │ ├── parserGreaterThanTokenAmbiguity2.ts │ │ │ │ │ ├── parserGreaterThanTokenAmbiguity20.ts │ │ │ │ │ ├── parserGreaterThanTokenAmbiguity3.ts │ │ │ │ │ ├── parserGreaterThanTokenAmbiguity4.ts │ │ │ │ │ ├── parserGreaterThanTokenAmbiguity5.ts │ │ │ │ │ ├── parserGreaterThanTokenAmbiguity6.ts │ │ │ │ │ ├── parserGreaterThanTokenAmbiguity7.ts │ │ │ │ │ ├── parserGreaterThanTokenAmbiguity8.ts │ │ │ │ │ ├── parserGreaterThanTokenAmbiguity9.ts │ │ │ │ │ ├── parserMemberAccessExpression1.ts │ │ │ │ │ ├── parserMemberAccessOffOfGenericType1.ts │ │ │ │ │ └── parserObjectCreation1.ts │ │ │ │ ├── IndexMemberDeclarations/ │ │ │ │ │ ├── parserIndexMemberDeclaration1.ts │ │ │ │ │ ├── parserIndexMemberDeclaration10.ts │ │ │ │ │ ├── parserIndexMemberDeclaration2.ts │ │ │ │ │ ├── parserIndexMemberDeclaration3.ts │ │ │ │ │ ├── parserIndexMemberDeclaration4.ts │ │ │ │ │ ├── parserIndexMemberDeclaration5.ts │ │ │ │ │ ├── parserIndexMemberDeclaration6.ts │ │ │ │ │ ├── parserIndexMemberDeclaration7.ts │ │ │ │ │ ├── parserIndexMemberDeclaration8.ts │ │ │ │ │ └── parserIndexMemberDeclaration9.ts │ │ │ │ ├── IndexSignatures/ │ │ │ │ │ ├── parserIndexSignature1.ts │ │ │ │ │ ├── parserIndexSignature10.ts │ │ │ │ │ ├── parserIndexSignature11.ts │ │ │ │ │ ├── parserIndexSignature2.ts │ │ │ │ │ ├── parserIndexSignature3.ts │ │ │ │ │ ├── parserIndexSignature4.ts │ │ │ │ │ ├── parserIndexSignature5.ts │ │ │ │ │ ├── parserIndexSignature6.ts │ │ │ │ │ ├── parserIndexSignature7.ts │ │ │ │ │ ├── parserIndexSignature8.ts │ │ │ │ │ └── parserIndexSignature9.ts │ │ │ │ ├── InterfaceDeclarations/ │ │ │ │ │ ├── parserInterfaceDeclaration1.ts │ │ │ │ │ ├── parserInterfaceDeclaration2.ts │ │ │ │ │ ├── parserInterfaceDeclaration3.ts │ │ │ │ │ ├── parserInterfaceDeclaration4.ts │ │ │ │ │ ├── parserInterfaceDeclaration5.ts │ │ │ │ │ ├── parserInterfaceDeclaration6.ts │ │ │ │ │ ├── parserInterfaceDeclaration7.ts │ │ │ │ │ ├── parserInterfaceDeclaration8.ts │ │ │ │ │ └── parserInterfaceDeclaration9.ts │ │ │ │ ├── MemberAccessorDeclarations/ │ │ │ │ │ ├── parserMemberAccessor1.ts │ │ │ │ │ ├── parserMemberAccessorDeclaration1.ts │ │ │ │ │ ├── parserMemberAccessorDeclaration10.ts │ │ │ │ │ ├── parserMemberAccessorDeclaration11.ts │ │ │ │ │ ├── parserMemberAccessorDeclaration12.ts │ │ │ │ │ ├── parserMemberAccessorDeclaration13.ts │ │ │ │ │ ├── parserMemberAccessorDeclaration14.ts │ │ │ │ │ ├── parserMemberAccessorDeclaration15.ts │ │ │ │ │ ├── parserMemberAccessorDeclaration16.ts │ │ │ │ │ ├── parserMemberAccessorDeclaration17.ts │ │ │ │ │ ├── parserMemberAccessorDeclaration18.ts │ │ │ │ │ ├── parserMemberAccessorDeclaration2.ts │ │ │ │ │ ├── parserMemberAccessorDeclaration3.ts │ │ │ │ │ ├── parserMemberAccessorDeclaration4.ts │ │ │ │ │ ├── parserMemberAccessorDeclaration5.ts │ │ │ │ │ ├── parserMemberAccessorDeclaration6.ts │ │ │ │ │ ├── parserMemberAccessorDeclaration7.ts │ │ │ │ │ ├── parserMemberAccessorDeclaration8.ts │ │ │ │ │ └── parserMemberAccessorDeclaration9.ts │ │ │ │ ├── MemberFunctionDeclarations/ │ │ │ │ │ ├── parserMemberFunctionDeclaration1.ts │ │ │ │ │ ├── parserMemberFunctionDeclaration2.ts │ │ │ │ │ ├── parserMemberFunctionDeclaration3.ts │ │ │ │ │ ├── parserMemberFunctionDeclaration4.ts │ │ │ │ │ ├── parserMemberFunctionDeclaration5.ts │ │ │ │ │ └── parserMemberFunctionDeclarationAmbiguities1.ts │ │ │ │ ├── MemberVariableDeclarations/ │ │ │ │ │ ├── parserMemberVariableDeclaration1.ts │ │ │ │ │ ├── parserMemberVariableDeclaration2.ts │ │ │ │ │ ├── parserMemberVariableDeclaration3.ts │ │ │ │ │ ├── parserMemberVariableDeclaration4.ts │ │ │ │ │ └── parserMemberVariableDeclaration5.ts │ │ │ │ ├── MethodSignatures/ │ │ │ │ │ ├── parserMethodSignature1.ts │ │ │ │ │ ├── parserMethodSignature10.ts │ │ │ │ │ ├── parserMethodSignature11.ts │ │ │ │ │ ├── parserMethodSignature12.ts │ │ │ │ │ ├── parserMethodSignature2.ts │ │ │ │ │ ├── parserMethodSignature3.ts │ │ │ │ │ ├── parserMethodSignature4.ts │ │ │ │ │ ├── parserMethodSignature5.ts │ │ │ │ │ ├── parserMethodSignature6.ts │ │ │ │ │ ├── parserMethodSignature7.ts │ │ │ │ │ ├── parserMethodSignature8.ts │ │ │ │ │ └── parserMethodSignature9.ts │ │ │ │ ├── MissingTokens/ │ │ │ │ │ ├── parserMissingToken1.ts │ │ │ │ │ └── parserMissingToken2.ts │ │ │ │ ├── ModuleDeclarations/ │ │ │ │ │ ├── parserModule1.ts │ │ │ │ │ ├── parserModuleDeclaration1.d.ts │ │ │ │ │ ├── parserModuleDeclaration1.ts │ │ │ │ │ ├── parserModuleDeclaration10.ts │ │ │ │ │ ├── parserModuleDeclaration11.ts │ │ │ │ │ ├── parserModuleDeclaration12.ts │ │ │ │ │ ├── parserModuleDeclaration2.d.ts │ │ │ │ │ ├── parserModuleDeclaration2.ts │ │ │ │ │ ├── parserModuleDeclaration3.d.ts │ │ │ │ │ ├── parserModuleDeclaration3.ts │ │ │ │ │ ├── parserModuleDeclaration4.d.ts │ │ │ │ │ ├── parserModuleDeclaration4.ts │ │ │ │ │ ├── parserModuleDeclaration5.ts │ │ │ │ │ ├── parserModuleDeclaration6.ts │ │ │ │ │ ├── parserModuleDeclaration7.ts │ │ │ │ │ ├── parserModuleDeclaration8.ts │ │ │ │ │ └── parserModuleDeclaration9.ts │ │ │ │ ├── ObjectLiterals/ │ │ │ │ │ └── parserObjectLiterals1.ts │ │ │ │ ├── ObjectTypes/ │ │ │ │ │ ├── parserObjectType1.ts │ │ │ │ │ ├── parserObjectType2.ts │ │ │ │ │ ├── parserObjectType3.ts │ │ │ │ │ ├── parserObjectType4.ts │ │ │ │ │ ├── parserObjectType5.ts │ │ │ │ │ └── parserObjectType6.ts │ │ │ │ ├── ParameterLists/ │ │ │ │ │ ├── parserParameterList1.ts │ │ │ │ │ ├── parserParameterList10.ts │ │ │ │ │ ├── parserParameterList11.ts │ │ │ │ │ ├── parserParameterList12.ts │ │ │ │ │ ├── parserParameterList13.ts │ │ │ │ │ ├── parserParameterList14.ts │ │ │ │ │ ├── parserParameterList15.ts │ │ │ │ │ ├── parserParameterList16.ts │ │ │ │ │ ├── parserParameterList17.ts │ │ │ │ │ ├── parserParameterList2.ts │ │ │ │ │ ├── parserParameterList3.ts │ │ │ │ │ ├── parserParameterList4.ts │ │ │ │ │ ├── parserParameterList5.ts │ │ │ │ │ ├── parserParameterList6.ts │ │ │ │ │ ├── parserParameterList7.ts │ │ │ │ │ ├── parserParameterList8.ts │ │ │ │ │ └── parserParameterList9.ts │ │ │ │ ├── PropertyAssignments/ │ │ │ │ │ ├── parserFunctionPropertyAssignment1.ts │ │ │ │ │ ├── parserFunctionPropertyAssignment2.ts │ │ │ │ │ ├── parserFunctionPropertyAssignment3.ts │ │ │ │ │ └── parserFunctionPropertyAssignment4.ts │ │ │ │ ├── PropertySignatures/ │ │ │ │ │ ├── parserPropertySignature1.ts │ │ │ │ │ ├── parserPropertySignature10.ts │ │ │ │ │ ├── parserPropertySignature11.ts │ │ │ │ │ ├── parserPropertySignature12.ts │ │ │ │ │ ├── parserPropertySignature2.ts │ │ │ │ │ ├── parserPropertySignature3.ts │ │ │ │ │ ├── parserPropertySignature4.ts │ │ │ │ │ ├── parserPropertySignature5.ts │ │ │ │ │ ├── parserPropertySignature6.ts │ │ │ │ │ ├── parserPropertySignature7.ts │ │ │ │ │ ├── parserPropertySignature8.ts │ │ │ │ │ └── parserPropertySignature9.ts │ │ │ │ ├── Protected/ │ │ │ │ │ ├── Protected1.ts │ │ │ │ │ ├── Protected2.ts │ │ │ │ │ ├── Protected3.ts │ │ │ │ │ ├── Protected4.ts │ │ │ │ │ ├── Protected5.ts │ │ │ │ │ ├── Protected6.ts │ │ │ │ │ ├── Protected7.ts │ │ │ │ │ ├── Protected8.ts │ │ │ │ │ └── Protected9.ts │ │ │ │ ├── RealWorld/ │ │ │ │ │ ├── parserharness.ts │ │ │ │ │ └── parserindenter.ts │ │ │ │ ├── RegressionTests/ │ │ │ │ │ ├── parser509534.ts │ │ │ │ │ ├── parser509546.ts │ │ │ │ │ ├── parser509546_1.ts │ │ │ │ │ ├── parser509546_2.ts │ │ │ │ │ ├── parser509618.ts │ │ │ │ │ ├── parser509630.ts │ │ │ │ │ ├── parser509667.ts │ │ │ │ │ ├── parser509668.ts │ │ │ │ │ ├── parser509669.ts │ │ │ │ │ ├── parser509677.ts │ │ │ │ │ ├── parser509693.ts │ │ │ │ │ ├── parser509698.ts │ │ │ │ │ ├── parser512084.ts │ │ │ │ │ ├── parser512097.ts │ │ │ │ │ ├── parser512325.ts │ │ │ │ │ ├── parser519458.ts │ │ │ │ │ ├── parser521128.ts │ │ │ │ │ ├── parser536727.ts │ │ │ │ │ ├── parser553699.ts │ │ │ │ │ ├── parser566700.ts │ │ │ │ │ ├── parser579071.ts │ │ │ │ │ ├── parser585151.ts │ │ │ │ │ ├── parser596700.ts │ │ │ │ │ ├── parser618973.ts │ │ │ │ │ ├── parser630933.ts │ │ │ │ │ ├── parser642331.ts │ │ │ │ │ ├── parser642331_1.ts │ │ │ │ │ ├── parser643728.ts │ │ │ │ │ ├── parser645086_1.ts │ │ │ │ │ ├── parser645086_2.ts │ │ │ │ │ ├── parser645086_3.ts │ │ │ │ │ ├── parser645086_4.ts │ │ │ │ │ ├── parser645484.ts │ │ │ │ │ ├── parserNotHexLiteral1.ts │ │ │ │ │ └── parserTernaryAndCommaOperators1.ts │ │ │ │ ├── RegularExpressions/ │ │ │ │ │ ├── parseRegularExpressionMixedWithComments.ts │ │ │ │ │ ├── parserRegularExpression1.ts │ │ │ │ │ ├── parserRegularExpression2.ts │ │ │ │ │ ├── parserRegularExpression3.ts │ │ │ │ │ ├── parserRegularExpression4.ts │ │ │ │ │ ├── parserRegularExpression5.ts │ │ │ │ │ ├── parserRegularExpression6.ts │ │ │ │ │ ├── parserRegularExpressionDivideAmbiguity1.ts │ │ │ │ │ ├── parserRegularExpressionDivideAmbiguity2.ts │ │ │ │ │ ├── parserRegularExpressionDivideAmbiguity3.ts │ │ │ │ │ ├── parserRegularExpressionDivideAmbiguity4.ts │ │ │ │ │ ├── parserRegularExpressionDivideAmbiguity5.ts │ │ │ │ │ ├── parserRegularExpressionDivideAmbiguity6.ts │ │ │ │ │ └── parserRegularExpressionDivideAmbiguity7.ts │ │ │ │ ├── SkippedTokens/ │ │ │ │ │ ├── parserSkippedTokens1.ts │ │ │ │ │ ├── parserSkippedTokens10.ts │ │ │ │ │ ├── parserSkippedTokens11.ts │ │ │ │ │ ├── parserSkippedTokens12.ts │ │ │ │ │ ├── parserSkippedTokens13.ts │ │ │ │ │ ├── parserSkippedTokens14.ts │ │ │ │ │ ├── parserSkippedTokens15.ts │ │ │ │ │ ├── parserSkippedTokens16.ts │ │ │ │ │ ├── parserSkippedTokens17.ts │ │ │ │ │ ├── parserSkippedTokens18.ts │ │ │ │ │ ├── parserSkippedTokens19.ts │ │ │ │ │ ├── parserSkippedTokens2.ts │ │ │ │ │ ├── parserSkippedTokens20.ts │ │ │ │ │ ├── parserSkippedTokens3.ts │ │ │ │ │ ├── parserSkippedTokens4.ts │ │ │ │ │ ├── parserSkippedTokens5.ts │ │ │ │ │ ├── parserSkippedTokens6.ts │ │ │ │ │ ├── parserSkippedTokens7.ts │ │ │ │ │ ├── parserSkippedTokens8.ts │ │ │ │ │ └── parserSkippedTokens9.ts │ │ │ │ ├── Statements/ │ │ │ │ │ ├── BreakStatements/ │ │ │ │ │ │ ├── parser_breakInIterationOrSwitchStatement1.ts │ │ │ │ │ │ ├── parser_breakInIterationOrSwitchStatement2.ts │ │ │ │ │ │ ├── parser_breakInIterationOrSwitchStatement3.ts │ │ │ │ │ │ ├── parser_breakInIterationOrSwitchStatement4.ts │ │ │ │ │ │ ├── parser_breakNotInIterationOrSwitchStatement1.ts │ │ │ │ │ │ ├── parser_breakNotInIterationOrSwitchStatement2.ts │ │ │ │ │ │ ├── parser_breakTarget1.ts │ │ │ │ │ │ ├── parser_breakTarget2.ts │ │ │ │ │ │ ├── parser_breakTarget3.ts │ │ │ │ │ │ ├── parser_breakTarget4.ts │ │ │ │ │ │ ├── parser_breakTarget5.ts │ │ │ │ │ │ └── parser_breakTarget6.ts │ │ │ │ │ ├── ContinueStatements/ │ │ │ │ │ │ ├── parser_continueInIterationStatement1.ts │ │ │ │ │ │ ├── parser_continueInIterationStatement2.ts │ │ │ │ │ │ ├── parser_continueInIterationStatement3.ts │ │ │ │ │ │ ├── parser_continueInIterationStatement4.ts │ │ │ │ │ │ ├── parser_continueLabel.ts │ │ │ │ │ │ ├── parser_continueNotInIterationStatement1.ts │ │ │ │ │ │ ├── parser_continueNotInIterationStatement2.ts │ │ │ │ │ │ ├── parser_continueNotInIterationStatement3.ts │ │ │ │ │ │ ├── parser_continueNotInIterationStatement4.ts │ │ │ │ │ │ ├── parser_continueTarget1.ts │ │ │ │ │ │ ├── parser_continueTarget2.ts │ │ │ │ │ │ ├── parser_continueTarget3.ts │ │ │ │ │ │ ├── parser_continueTarget4.ts │ │ │ │ │ │ ├── parser_continueTarget5.ts │ │ │ │ │ │ └── parser_continueTarget6.ts │ │ │ │ │ ├── LabeledStatements/ │ │ │ │ │ │ ├── parser_duplicateLabel1.ts │ │ │ │ │ │ ├── parser_duplicateLabel2.ts │ │ │ │ │ │ ├── parser_duplicateLabel3.ts │ │ │ │ │ │ └── parser_duplicateLabel4.ts │ │ │ │ │ ├── ReturnStatements/ │ │ │ │ │ │ ├── parserReturnStatement1.ts │ │ │ │ │ │ ├── parserReturnStatement2.ts │ │ │ │ │ │ ├── parserReturnStatement3.ts │ │ │ │ │ │ └── parserReturnStatement4.ts │ │ │ │ │ ├── parserBlockStatement1.d.ts │ │ │ │ │ ├── parserBreakStatement1.d.ts │ │ │ │ │ ├── parserContinueStatement1.d.ts │ │ │ │ │ ├── parserDebuggerStatement1.d.ts │ │ │ │ │ ├── parserDoStatement1.d.ts │ │ │ │ │ ├── parserDoStatement2.ts │ │ │ │ │ ├── parserES5ForOfStatement1.d.ts │ │ │ │ │ ├── parserES5ForOfStatement10.ts │ │ │ │ │ ├── parserES5ForOfStatement11.ts │ │ │ │ │ ├── parserES5ForOfStatement12.ts │ │ │ │ │ ├── parserES5ForOfStatement13.ts │ │ │ │ │ ├── parserES5ForOfStatement14.ts │ │ │ │ │ ├── parserES5ForOfStatement15.ts │ │ │ │ │ ├── parserES5ForOfStatement16.ts │ │ │ │ │ ├── parserES5ForOfStatement17.ts │ │ │ │ │ ├── parserES5ForOfStatement18.ts │ │ │ │ │ ├── parserES5ForOfStatement19.ts │ │ │ │ │ ├── parserES5ForOfStatement2.ts │ │ │ │ │ ├── parserES5ForOfStatement20.ts │ │ │ │ │ ├── parserES5ForOfStatement21.ts │ │ │ │ │ ├── parserES5ForOfStatement3.ts │ │ │ │ │ ├── parserES5ForOfStatement4.ts │ │ │ │ │ ├── parserES5ForOfStatement5.ts │ │ │ │ │ ├── parserES5ForOfStatement6.ts │ │ │ │ │ ├── parserES5ForOfStatement7.ts │ │ │ │ │ ├── parserES5ForOfStatement8.ts │ │ │ │ │ ├── parserES5ForOfStatement9.ts │ │ │ │ │ ├── parserEmptyStatement1.d.ts │ │ │ │ │ ├── parserExpressionStatement1.d.ts │ │ │ │ │ ├── parserForInStatement1.d.ts │ │ │ │ │ ├── parserForInStatement2.ts │ │ │ │ │ ├── parserForInStatement3.ts │ │ │ │ │ ├── parserForInStatement4.ts │ │ │ │ │ ├── parserForInStatement5.ts │ │ │ │ │ ├── parserForInStatement6.ts │ │ │ │ │ ├── parserForInStatement7.ts │ │ │ │ │ ├── parserForInStatement8.ts │ │ │ │ │ ├── parserForStatement1.d.ts │ │ │ │ │ ├── parserForStatement2.ts │ │ │ │ │ ├── parserForStatement3.ts │ │ │ │ │ ├── parserForStatement4.ts │ │ │ │ │ ├── parserForStatement5.ts │ │ │ │ │ ├── parserForStatement6.ts │ │ │ │ │ ├── parserForStatement7.ts │ │ │ │ │ ├── parserForStatement8.ts │ │ │ │ │ ├── parserForStatement9.ts │ │ │ │ │ ├── parserIfStatement1.d.ts │ │ │ │ │ ├── parserIfStatement2.ts │ │ │ │ │ ├── parserLabeledStatement1.d.ts │ │ │ │ │ ├── parserReturnStatement1.d.ts │ │ │ │ │ ├── parserSwitchStatement1.d.ts │ │ │ │ │ ├── parserThrowStatement1.d.ts │ │ │ │ │ ├── parserTryStatement1.d.ts │ │ │ │ │ ├── parserVariableStatement1.d.ts │ │ │ │ │ ├── parserVariableStatement2.d.ts │ │ │ │ │ ├── parserWhileStatement1.d.ts │ │ │ │ │ ├── parserWithStatement1.d.ts │ │ │ │ │ └── parserWithStatement2.ts │ │ │ │ ├── StrictMode/ │ │ │ │ │ ├── octalLiteralInStrictModeES3.ts │ │ │ │ │ ├── parserStrictMode1.ts │ │ │ │ │ ├── parserStrictMode10.ts │ │ │ │ │ ├── parserStrictMode11.ts │ │ │ │ │ ├── parserStrictMode12.ts │ │ │ │ │ ├── parserStrictMode13.ts │ │ │ │ │ ├── parserStrictMode14.ts │ │ │ │ │ ├── parserStrictMode15-negative.ts │ │ │ │ │ ├── parserStrictMode15.ts │ │ │ │ │ ├── parserStrictMode16.ts │ │ │ │ │ ├── parserStrictMode2.ts │ │ │ │ │ ├── parserStrictMode3-negative.ts │ │ │ │ │ ├── parserStrictMode3.ts │ │ │ │ │ ├── parserStrictMode4.ts │ │ │ │ │ ├── parserStrictMode5.ts │ │ │ │ │ ├── parserStrictMode6-negative.ts │ │ │ │ │ ├── parserStrictMode6.ts │ │ │ │ │ ├── parserStrictMode7.ts │ │ │ │ │ ├── parserStrictMode8.ts │ │ │ │ │ └── parserStrictMode9.ts │ │ │ │ ├── SuperExpressions/ │ │ │ │ │ ├── parserSuperExpression1.ts │ │ │ │ │ ├── parserSuperExpression2.ts │ │ │ │ │ ├── parserSuperExpression3.ts │ │ │ │ │ └── parserSuperExpression4.ts │ │ │ │ ├── Symbols/ │ │ │ │ │ ├── parserES5SymbolIndexer1.ts │ │ │ │ │ ├── parserES5SymbolIndexer2.ts │ │ │ │ │ ├── parserES5SymbolIndexer3.ts │ │ │ │ │ ├── parserES5SymbolProperty1.ts │ │ │ │ │ ├── parserES5SymbolProperty2.ts │ │ │ │ │ ├── parserES5SymbolProperty3.ts │ │ │ │ │ ├── parserES5SymbolProperty4.ts │ │ │ │ │ ├── parserES5SymbolProperty5.ts │ │ │ │ │ ├── parserES5SymbolProperty6.ts │ │ │ │ │ ├── parserES5SymbolProperty7.ts │ │ │ │ │ ├── parserES5SymbolProperty8.ts │ │ │ │ │ └── parserES5SymbolProperty9.ts │ │ │ │ ├── TupleTypes/ │ │ │ │ │ ├── TupleType1.ts │ │ │ │ │ ├── TupleType2.ts │ │ │ │ │ ├── TupleType3.ts │ │ │ │ │ ├── TupleType4.ts │ │ │ │ │ ├── TupleType5.ts │ │ │ │ │ └── TupleType6.ts │ │ │ │ ├── Types/ │ │ │ │ │ ├── parserTypeQuery1.ts │ │ │ │ │ ├── parserTypeQuery2.ts │ │ │ │ │ ├── parserTypeQuery3.ts │ │ │ │ │ ├── parserTypeQuery4.ts │ │ │ │ │ ├── parserTypeQuery5.ts │ │ │ │ │ ├── parserTypeQuery6.ts │ │ │ │ │ ├── parserTypeQuery7.ts │ │ │ │ │ ├── parserTypeQuery8.ts │ │ │ │ │ └── parserTypeQuery9.ts │ │ │ │ ├── VariableDeclarations/ │ │ │ │ │ ├── parserVariableDeclaration1.ts │ │ │ │ │ ├── parserVariableDeclaration10.ts │ │ │ │ │ ├── parserVariableDeclaration11.ts │ │ │ │ │ ├── parserVariableDeclaration2.ts │ │ │ │ │ ├── parserVariableDeclaration3.ts │ │ │ │ │ ├── parserVariableDeclaration4.d.ts │ │ │ │ │ ├── parserVariableDeclaration4.ts │ │ │ │ │ ├── parserVariableDeclaration5.ts │ │ │ │ │ ├── parserVariableDeclaration6.ts │ │ │ │ │ ├── parserVariableDeclaration7.ts │ │ │ │ │ ├── parserVariableDeclaration8.ts │ │ │ │ │ └── parserVariableDeclaration9.ts │ │ │ │ ├── parser10.1.1-8gs.ts │ │ │ │ ├── parser15.4.4.14-9-2.ts │ │ │ │ ├── parserAdditiveExpression1.ts │ │ │ │ ├── parserArgumentList1.ts │ │ │ │ ├── parserAstSpans1.ts │ │ │ │ ├── parserDebuggerStatement1.ts │ │ │ │ ├── parserDebuggerStatement2.ts │ │ │ │ ├── parserEmptyFile1.ts │ │ │ │ ├── parserEmptyStatement1.ts │ │ │ │ ├── parserExportAsFunctionIdentifier.ts │ │ │ │ ├── parserImportDeclaration1.ts │ │ │ │ ├── parserInExpression1.ts │ │ │ │ ├── parserKeywordsAsIdentifierName1.ts │ │ │ │ ├── parserKeywordsAsIdentifierName2.ts │ │ │ │ ├── parserNoASIOnCallAfterFunctionExpression1.ts │ │ │ │ ├── parserNotRegex1.ts │ │ │ │ ├── parserNotRegex2.ts │ │ │ │ ├── parserObjectCreationArrayLiteral1.ts │ │ │ │ ├── parserObjectCreationArrayLiteral2.ts │ │ │ │ ├── parserObjectCreationArrayLiteral3.ts │ │ │ │ ├── parserObjectCreationArrayLiteral4.ts │ │ │ │ ├── parserOptionalTypeMembers1.ts │ │ │ │ ├── parserOverloadOnConstants1.ts │ │ │ │ ├── parserParenthesizedVariableAndFunctionInTernary.ts │ │ │ │ ├── parserParenthesizedVariableAndParenthesizedFunctionInTernary.ts │ │ │ │ ├── parserRealSource1.ts │ │ │ │ ├── parserRealSource10.ts │ │ │ │ ├── parserRealSource11.ts │ │ │ │ ├── parserRealSource12.ts │ │ │ │ ├── parserRealSource13.ts │ │ │ │ ├── parserRealSource14.ts │ │ │ │ ├── parserRealSource2.ts │ │ │ │ ├── parserRealSource3.ts │ │ │ │ ├── parserRealSource4.ts │ │ │ │ ├── parserRealSource5.ts │ │ │ │ ├── parserRealSource6.ts │ │ │ │ ├── parserRealSource7.ts │ │ │ │ ├── parserRealSource8.ts │ │ │ │ ├── parserRealSource9.ts │ │ │ │ ├── parserS12.11_A3_T4.ts │ │ │ │ ├── parserS7.2_A1.5_T2.ts │ │ │ │ ├── parserS7.3_A1.1_T2.ts │ │ │ │ ├── parserS7.6.1.1_A1.10.ts │ │ │ │ ├── parserS7.6_A4.2_T1.ts │ │ │ │ ├── parserS7.9_A5.7_T1.ts │ │ │ │ ├── parserSbp_7.9_A9_T3.ts │ │ │ │ ├── parserSyntaxWalker.generated.ts │ │ │ │ ├── parserUnicode1.ts │ │ │ │ ├── parserUnicode2.ts │ │ │ │ ├── parserUnicode3.ts │ │ │ │ ├── parserUnicodeWhitespaceCharacter1.ts │ │ │ │ ├── parserUsingConstructorAsIdentifier.ts │ │ │ │ ├── parserVoidExpression1.ts │ │ │ │ ├── parservoidInQualifiedName0.ts │ │ │ │ ├── parservoidInQualifiedName1.ts │ │ │ │ └── parservoidInQualifiedName2.ts │ │ │ └── ecmascript6/ │ │ │ ├── ComputedPropertyNames/ │ │ │ │ ├── parserComputedPropertyName1.ts │ │ │ │ ├── parserComputedPropertyName10.ts │ │ │ │ ├── parserComputedPropertyName11.ts │ │ │ │ ├── parserComputedPropertyName12.ts │ │ │ │ ├── parserComputedPropertyName13.ts │ │ │ │ ├── parserComputedPropertyName14.ts │ │ │ │ ├── parserComputedPropertyName15.ts │ │ │ │ ├── parserComputedPropertyName16.ts │ │ │ │ ├── parserComputedPropertyName17.ts │ │ │ │ ├── parserComputedPropertyName18.ts │ │ │ │ ├── parserComputedPropertyName19.ts │ │ │ │ ├── parserComputedPropertyName2.ts │ │ │ │ ├── parserComputedPropertyName20.ts │ │ │ │ ├── parserComputedPropertyName21.ts │ │ │ │ ├── parserComputedPropertyName22.ts │ │ │ │ ├── parserComputedPropertyName23.ts │ │ │ │ ├── parserComputedPropertyName24.ts │ │ │ │ ├── parserComputedPropertyName25.ts │ │ │ │ ├── parserComputedPropertyName26.ts │ │ │ │ ├── parserComputedPropertyName27.ts │ │ │ │ ├── parserComputedPropertyName28.ts │ │ │ │ ├── parserComputedPropertyName29.ts │ │ │ │ ├── parserComputedPropertyName3.ts │ │ │ │ ├── parserComputedPropertyName30.ts │ │ │ │ ├── parserComputedPropertyName31.ts │ │ │ │ ├── parserComputedPropertyName32.ts │ │ │ │ ├── parserComputedPropertyName33.ts │ │ │ │ ├── parserComputedPropertyName34.ts │ │ │ │ ├── parserComputedPropertyName35.ts │ │ │ │ ├── parserComputedPropertyName36.ts │ │ │ │ ├── parserComputedPropertyName37.ts │ │ │ │ ├── parserComputedPropertyName38.ts │ │ │ │ ├── parserComputedPropertyName39.ts │ │ │ │ ├── parserComputedPropertyName4.ts │ │ │ │ ├── parserComputedPropertyName40.ts │ │ │ │ ├── parserComputedPropertyName41.ts │ │ │ │ ├── parserComputedPropertyName5.ts │ │ │ │ ├── parserComputedPropertyName6.ts │ │ │ │ ├── parserComputedPropertyName7.ts │ │ │ │ ├── parserComputedPropertyName8.ts │ │ │ │ └── parserComputedPropertyName9.ts │ │ │ ├── Iterators/ │ │ │ │ ├── parserForOfStatement1.d.ts │ │ │ │ ├── parserForOfStatement10.ts │ │ │ │ ├── parserForOfStatement11.ts │ │ │ │ ├── parserForOfStatement12.ts │ │ │ │ ├── parserForOfStatement13.ts │ │ │ │ ├── parserForOfStatement14.ts │ │ │ │ ├── parserForOfStatement15.ts │ │ │ │ ├── parserForOfStatement16.ts │ │ │ │ ├── parserForOfStatement17.ts │ │ │ │ ├── parserForOfStatement18.ts │ │ │ │ ├── parserForOfStatement19.ts │ │ │ │ ├── parserForOfStatement2.ts │ │ │ │ ├── parserForOfStatement20.ts │ │ │ │ ├── parserForOfStatement21.ts │ │ │ │ ├── parserForOfStatement22.ts │ │ │ │ ├── parserForOfStatement23.ts │ │ │ │ ├── parserForOfStatement24.ts │ │ │ │ ├── parserForOfStatement25.ts │ │ │ │ ├── parserForOfStatement3.ts │ │ │ │ ├── parserForOfStatement4.ts │ │ │ │ ├── parserForOfStatement5.ts │ │ │ │ ├── parserForOfStatement6.ts │ │ │ │ ├── parserForOfStatement7.ts │ │ │ │ ├── parserForOfStatement8.ts │ │ │ │ └── parserForOfStatement9.ts │ │ │ ├── ShorthandPropertyAssignment/ │ │ │ │ ├── parserShorthandPropertyAssignment1.ts │ │ │ │ ├── parserShorthandPropertyAssignment2.ts │ │ │ │ ├── parserShorthandPropertyAssignment3.ts │ │ │ │ ├── parserShorthandPropertyAssignment4.ts │ │ │ │ └── parserShorthandPropertyAssignment5.ts │ │ │ └── Symbols/ │ │ │ ├── parserSymbolIndexer1.ts │ │ │ ├── parserSymbolIndexer2.ts │ │ │ ├── parserSymbolIndexer3.ts │ │ │ ├── parserSymbolIndexer4.ts │ │ │ ├── parserSymbolIndexer5.ts │ │ │ ├── parserSymbolProperty1.ts │ │ │ ├── parserSymbolProperty2.ts │ │ │ ├── parserSymbolProperty3.ts │ │ │ ├── parserSymbolProperty4.ts │ │ │ ├── parserSymbolProperty5.ts │ │ │ ├── parserSymbolProperty6.ts │ │ │ ├── parserSymbolProperty7.ts │ │ │ ├── parserSymbolProperty8.ts │ │ │ └── parserSymbolProperty9.ts │ │ ├── pedantic/ │ │ │ ├── noUncheckedIndexedAccess.ts │ │ │ └── noUncheckedIndexedAccessDestructuring.ts │ │ ├── references/ │ │ │ ├── library-reference-1.ts │ │ │ ├── library-reference-10.ts │ │ │ ├── library-reference-11.ts │ │ │ ├── library-reference-12.ts │ │ │ ├── library-reference-13.ts │ │ │ ├── library-reference-14.ts │ │ │ ├── library-reference-15.ts │ │ │ ├── library-reference-2.ts │ │ │ ├── library-reference-3.ts │ │ │ ├── library-reference-4.ts │ │ │ ├── library-reference-5.ts │ │ │ ├── library-reference-6.ts │ │ │ ├── library-reference-7.ts │ │ │ ├── library-reference-8.ts │ │ │ └── library-reference-scoped-packages.ts │ │ ├── salsa/ │ │ │ ├── annotatedThisPropertyInitializerDoesntNarrow.ts │ │ │ ├── assignmentToVoidZero1.ts │ │ │ ├── assignmentToVoidZero2.ts │ │ │ ├── binderUninitializedModuleExportsAssignment.ts │ │ │ ├── chainedPrototypeAssignment.ts │ │ │ ├── checkSpecialPropertyAssignments.ts │ │ │ ├── circularMultipleAssignmentDeclaration.ts │ │ │ ├── classCanExtendConstructorFunction.ts │ │ │ ├── commonJSAliasedExport.ts │ │ │ ├── commonJSImportClassTypeReference.ts │ │ │ ├── commonJSImportExportedClassExpression.ts │ │ │ ├── commonJSImportNestedClassTypeReference.ts │ │ │ ├── commonJSReexport.ts │ │ │ ├── conflictingCommonJSES2015Exports.ts │ │ │ ├── constructorFunctionMergeWithClass.ts │ │ │ ├── constructorFunctionMethodTypeParameters.ts │ │ │ ├── constructorFunctions.ts │ │ │ ├── constructorFunctions2.ts │ │ │ ├── constructorFunctions3.ts │ │ │ ├── constructorFunctionsStrict.ts │ │ │ ├── constructorNameInAccessor.ts │ │ │ ├── constructorNameInGenerator.ts │ │ │ ├── constructorNameInObjectLiteralAccessor.ts │ │ │ ├── contextualTypedSpecialAssignment.ts │ │ │ ├── defaultPropertyAssignedClassWithPrototype.ts │ │ │ ├── enumMergeWithExpando.ts │ │ │ ├── expandoOnAlias.ts │ │ │ ├── exportDefaultInJsFile01.ts │ │ │ ├── exportDefaultInJsFile02.ts │ │ │ ├── exportNestedNamespaces.ts │ │ │ ├── exportNestedNamespaces2.ts │ │ │ ├── exportPropertyAssignmentNameResolution.ts │ │ │ ├── globalMergeWithCommonJSAssignmentDeclaration.ts │ │ │ ├── importAliasModuleExports.ts │ │ │ ├── importingExportingTypes.ts │ │ │ ├── inferingFromAny.ts │ │ │ ├── inferringClassMembersFromAssignments.ts │ │ │ ├── inferringClassMembersFromAssignments2.ts │ │ │ ├── inferringClassMembersFromAssignments3.ts │ │ │ ├── inferringClassMembersFromAssignments4.ts │ │ │ ├── inferringClassMembersFromAssignments5.ts │ │ │ ├── inferringClassMembersFromAssignments6.ts │ │ │ ├── inferringClassMembersFromAssignments7.ts │ │ │ ├── inferringClassMembersFromAssignments8.ts │ │ │ ├── inferringClassStaticMembersFromAssignments.ts │ │ │ ├── jsContainerMergeJsContainer.ts │ │ │ ├── jsContainerMergeTsDeclaration.ts │ │ │ ├── jsContainerMergeTsDeclaration2.ts │ │ │ ├── jsContainerMergeTsDeclaration3.ts │ │ │ ├── jsObjectsMarkedAsOpenEnded.ts │ │ │ ├── jsdocConstructorFunctionTypeReference.ts │ │ │ ├── lateBoundAssignmentDeclarationSupport1.ts │ │ │ ├── lateBoundAssignmentDeclarationSupport2.ts │ │ │ ├── lateBoundAssignmentDeclarationSupport3.ts │ │ │ ├── lateBoundAssignmentDeclarationSupport4.ts │ │ │ ├── lateBoundAssignmentDeclarationSupport5.ts │ │ │ ├── lateBoundAssignmentDeclarationSupport6.ts │ │ │ ├── lateBoundAssignmentDeclarationSupport7.ts │ │ │ ├── lateBoundClassMemberAssignmentJS.ts │ │ │ ├── lateBoundClassMemberAssignmentJS2.ts │ │ │ ├── lateBoundClassMemberAssignmentJS3.ts │ │ │ ├── malformedTags.ts │ │ │ ├── methodsReturningThis.ts │ │ │ ├── mixedPropertyElementAccessAssignmentDeclaration.ts │ │ │ ├── moduleExportAlias.ts │ │ │ ├── moduleExportAlias2.ts │ │ │ ├── moduleExportAlias3.ts │ │ │ ├── moduleExportAlias4.ts │ │ │ ├── moduleExportAlias5.ts │ │ │ ├── moduleExportAliasElementAccessExpression.ts │ │ │ ├── moduleExportAliasExports.ts │ │ │ ├── moduleExportAliasImported.ts │ │ │ ├── moduleExportAliasUnknown.ts │ │ │ ├── moduleExportAssignment.ts │ │ │ ├── moduleExportAssignment2.ts │ │ │ ├── moduleExportAssignment3.ts │ │ │ ├── moduleExportAssignment4.ts │ │ │ ├── moduleExportAssignment5.ts │ │ │ ├── moduleExportAssignment6.ts │ │ │ ├── moduleExportAssignment7.ts │ │ │ ├── moduleExportDuplicateAlias.ts │ │ │ ├── moduleExportDuplicateAlias2.ts │ │ │ ├── moduleExportDuplicateAlias3.ts │ │ │ ├── moduleExportNestedNamespaces.ts │ │ │ ├── moduleExportPropertyAssignmentDefault.ts │ │ │ ├── moduleExportWithExportPropertyAssignment.ts │ │ │ ├── moduleExportWithExportPropertyAssignment2.ts │ │ │ ├── moduleExportWithExportPropertyAssignment3.ts │ │ │ ├── moduleExportWithExportPropertyAssignment4.ts │ │ │ ├── moduleExportsAliasLoop1.ts │ │ │ ├── moduleExportsAliasLoop2.ts │ │ │ ├── multipleDeclarations.ts │ │ │ ├── namespaceAssignmentToRequireAlias.ts │ │ │ ├── nestedDestructuringOfRequire.ts │ │ │ ├── nestedPrototypeAssignment.ts │ │ │ ├── plainJSBinderErrors.ts │ │ │ ├── plainJSGrammarErrors.ts │ │ │ ├── plainJSGrammarErrors2.ts │ │ │ ├── plainJSGrammarErrors3.ts │ │ │ ├── plainJSGrammarErrors4.ts │ │ │ ├── plainJSRedeclare.ts │ │ │ ├── plainJSRedeclare2.ts │ │ │ ├── plainJSRedeclare3.ts │ │ │ ├── plainJSReservedStrict.ts │ │ │ ├── plainJSTypeErrors.ts │ │ │ ├── privateConstructorFunction.ts │ │ │ ├── privateIdentifierExpando.ts │ │ │ ├── propertiesOfGenericConstructorFunctions.ts │ │ │ ├── propertyAssignmentOnImportedSymbol.ts │ │ │ ├── propertyAssignmentOnParenthesizedNumber.ts │ │ │ ├── propertyAssignmentOnUnresolvedImportedSymbol.ts │ │ │ ├── propertyAssignmentUseParentType1.ts │ │ │ ├── propertyAssignmentUseParentType2.ts │ │ │ ├── propertyAssignmentUseParentType3.ts │ │ │ ├── prototypePropertyAssignmentMergeAcrossFiles.ts │ │ │ ├── prototypePropertyAssignmentMergeAcrossFiles2.ts │ │ │ ├── prototypePropertyAssignmentMergeWithInterfaceMethod.ts │ │ │ ├── prototypePropertyAssignmentMergedTypeReference.ts │ │ │ ├── reExportJsFromTs.ts │ │ │ ├── requireAssertsFromTypescript.ts │ │ │ ├── requireOfESWithPropertyAccess.ts │ │ │ ├── requireTwoPropertyAccesses.ts │ │ │ ├── sourceFileMergeWithFunction.ts │ │ │ ├── spellingUncheckedJS.ts │ │ │ ├── thisPropertyAssignment.ts │ │ │ ├── thisPropertyAssignmentCircular.ts │ │ │ ├── thisPropertyAssignmentComputed.ts │ │ │ ├── thisPropertyAssignmentInherited.ts │ │ │ ├── thisTypeOfConstructorFunctions.ts │ │ │ ├── topLevelThisAssignment.ts │ │ │ ├── typeFromContextualThisType.ts │ │ │ ├── typeFromJSConstructor.ts │ │ │ ├── typeFromJSInitializer.ts │ │ │ ├── typeFromJSInitializer2.ts │ │ │ ├── typeFromJSInitializer3.ts │ │ │ ├── typeFromJSInitializer4.ts │ │ │ ├── typeFromParamTagForFunction.ts │ │ │ ├── typeFromPropertyAssignment.ts │ │ │ ├── typeFromPropertyAssignment10.ts │ │ │ ├── typeFromPropertyAssignment10_1.ts │ │ │ ├── typeFromPropertyAssignment11.ts │ │ │ ├── typeFromPropertyAssignment12.ts │ │ │ ├── typeFromPropertyAssignment13.ts │ │ │ ├── typeFromPropertyAssignment14.ts │ │ │ ├── typeFromPropertyAssignment15.ts │ │ │ ├── typeFromPropertyAssignment16.ts │ │ │ ├── typeFromPropertyAssignment17.ts │ │ │ ├── typeFromPropertyAssignment18.ts │ │ │ ├── typeFromPropertyAssignment19.ts │ │ │ ├── typeFromPropertyAssignment2.ts │ │ │ ├── typeFromPropertyAssignment20.ts │ │ │ ├── typeFromPropertyAssignment21.ts │ │ │ ├── typeFromPropertyAssignment22.ts │ │ │ ├── typeFromPropertyAssignment23.ts │ │ │ ├── typeFromPropertyAssignment24.ts │ │ │ ├── typeFromPropertyAssignment25.ts │ │ │ ├── typeFromPropertyAssignment26.ts │ │ │ ├── typeFromPropertyAssignment27.ts │ │ │ ├── typeFromPropertyAssignment28.ts │ │ │ ├── typeFromPropertyAssignment29.ts │ │ │ ├── typeFromPropertyAssignment3.ts │ │ │ ├── typeFromPropertyAssignment30.ts │ │ │ ├── typeFromPropertyAssignment31.ts │ │ │ ├── typeFromPropertyAssignment32.ts │ │ │ ├── typeFromPropertyAssignment33.ts │ │ │ ├── typeFromPropertyAssignment34.ts │ │ │ ├── typeFromPropertyAssignment35.ts │ │ │ ├── typeFromPropertyAssignment36.ts │ │ │ ├── typeFromPropertyAssignment37.ts │ │ │ ├── typeFromPropertyAssignment38.ts │ │ │ ├── typeFromPropertyAssignment39.ts │ │ │ ├── typeFromPropertyAssignment4.ts │ │ │ ├── typeFromPropertyAssignment40.ts │ │ │ ├── typeFromPropertyAssignment5.ts │ │ │ ├── typeFromPropertyAssignment6.ts │ │ │ ├── typeFromPropertyAssignment7.ts │ │ │ ├── typeFromPropertyAssignment8.ts │ │ │ ├── typeFromPropertyAssignment8_1.ts │ │ │ ├── typeFromPropertyAssignment9.ts │ │ │ ├── typeFromPropertyAssignment9_1.ts │ │ │ ├── typeFromPropertyAssignmentOutOfOrder.ts │ │ │ ├── typeFromPropertyAssignmentWithExport.ts │ │ │ ├── typeFromPrototypeAssignment.ts │ │ │ ├── typeFromPrototypeAssignment2.ts │ │ │ ├── typeFromPrototypeAssignment3.ts │ │ │ ├── typeFromPrototypeAssignment4.ts │ │ │ ├── typeLookupInIIFE.ts │ │ │ ├── typeTagOnFunctionReferencesGeneric.ts │ │ │ ├── unannotatedParametersAreOptional.ts │ │ │ ├── varRequireFromJavascript.ts │ │ │ └── varRequireFromTypescript.ts │ │ ├── scanner/ │ │ │ ├── ecmascript3/ │ │ │ │ ├── scannerES3NumericLiteral1.ts │ │ │ │ ├── scannerES3NumericLiteral2.ts │ │ │ │ ├── scannerES3NumericLiteral3.ts │ │ │ │ ├── scannerES3NumericLiteral4.ts │ │ │ │ ├── scannerES3NumericLiteral5.ts │ │ │ │ ├── scannerES3NumericLiteral6.ts │ │ │ │ └── scannerES3NumericLiteral7.ts │ │ │ ├── ecmascript5/ │ │ │ │ ├── scanner10.1.1-8gs.ts │ │ │ │ ├── scannerAdditiveExpression1.ts │ │ │ │ ├── scannerClass2.ts │ │ │ │ ├── scannerEnum1.ts │ │ │ │ ├── scannerImportDeclaration1.ts │ │ │ │ ├── scannerNonAsciiHorizontalWhitespace.ts │ │ │ │ ├── scannerNumericLiteral1.ts │ │ │ │ ├── scannerNumericLiteral2.ts │ │ │ │ ├── scannerNumericLiteral3.ts │ │ │ │ ├── scannerNumericLiteral4.ts │ │ │ │ ├── scannerNumericLiteral5.ts │ │ │ │ ├── scannerNumericLiteral6.ts │ │ │ │ ├── scannerNumericLiteral7.ts │ │ │ │ ├── scannerNumericLiteral8.ts │ │ │ │ ├── scannerNumericLiteral9.ts │ │ │ │ ├── scannerS7.2_A1.5_T2.ts │ │ │ │ ├── scannerS7.3_A1.1_T2.ts │ │ │ │ ├── scannerS7.4_A2_T2.ts │ │ │ │ ├── scannerS7.6_A4.2_T1.ts │ │ │ │ ├── scannerS7.8.3_A6.1_T1.ts │ │ │ │ ├── scannerS7.8.4_A7.1_T4.ts │ │ │ │ ├── scannerStringLiteralWithContainingNullCharacter1.ts │ │ │ │ ├── scannerStringLiterals.ts │ │ │ │ ├── scannerUnexpectedNullCharacter1.ts │ │ │ │ ├── scannerUnicodeEscapeInKeyword1.ts │ │ │ │ ├── scannerUnicodeEscapeInKeyword2.ts │ │ │ │ └── scannertest1.ts │ │ │ └── jsdocInvalidTokens.ts │ │ ├── statements/ │ │ │ ├── VariableStatements/ │ │ │ │ ├── everyTypeWithAnnotationAndInitializer.ts │ │ │ │ ├── everyTypeWithAnnotationAndInvalidInitializer.ts │ │ │ │ ├── everyTypeWithInitializer.ts │ │ │ │ ├── invalidMultipleVariableDeclarations.ts │ │ │ │ ├── recursiveInitializer.ts │ │ │ │ ├── usingDeclarations/ │ │ │ │ │ ├── awaitUsingDeclarations.1.ts │ │ │ │ │ ├── awaitUsingDeclarations.10.ts │ │ │ │ │ ├── awaitUsingDeclarations.11.ts │ │ │ │ │ ├── awaitUsingDeclarations.12.ts │ │ │ │ │ ├── awaitUsingDeclarations.13.ts │ │ │ │ │ ├── awaitUsingDeclarations.14.ts │ │ │ │ │ ├── awaitUsingDeclarations.15.ts │ │ │ │ │ ├── awaitUsingDeclarations.16.ts │ │ │ │ │ ├── awaitUsingDeclarations.17.ts │ │ │ │ │ ├── awaitUsingDeclarations.2.ts │ │ │ │ │ ├── awaitUsingDeclarations.3.ts │ │ │ │ │ ├── awaitUsingDeclarations.4.ts │ │ │ │ │ ├── awaitUsingDeclarations.5.ts │ │ │ │ │ ├── awaitUsingDeclarations.6.ts │ │ │ │ │ ├── awaitUsingDeclarations.7.ts │ │ │ │ │ ├── awaitUsingDeclarations.8.ts │ │ │ │ │ ├── awaitUsingDeclarations.9.ts │ │ │ │ │ ├── awaitUsingDeclarationsInFor.ts │ │ │ │ │ ├── awaitUsingDeclarationsInForAwaitOf.2.ts │ │ │ │ │ ├── awaitUsingDeclarationsInForAwaitOf.3.ts │ │ │ │ │ ├── awaitUsingDeclarationsInForAwaitOf.ts │ │ │ │ │ ├── awaitUsingDeclarationsInForIn.ts │ │ │ │ │ ├── awaitUsingDeclarationsInForOf.1.ts │ │ │ │ │ ├── awaitUsingDeclarationsInForOf.2.ts │ │ │ │ │ ├── awaitUsingDeclarationsInForOf.3.ts │ │ │ │ │ ├── awaitUsingDeclarationsInForOf.4.ts │ │ │ │ │ ├── awaitUsingDeclarationsInForOf.5.ts │ │ │ │ │ ├── awaitUsingDeclarationsTopLevelOfModule.1.ts │ │ │ │ │ ├── awaitUsingDeclarationsWithAsyncIteratorObject.ts │ │ │ │ │ ├── awaitUsingDeclarationsWithImportHelpers.ts │ │ │ │ │ ├── awaitUsingDeclarationsWithIteratorObject.ts │ │ │ │ │ ├── usingDeclarations.1.ts │ │ │ │ │ ├── usingDeclarations.10.ts │ │ │ │ │ ├── usingDeclarations.11.ts │ │ │ │ │ ├── usingDeclarations.12.ts │ │ │ │ │ ├── usingDeclarations.13.ts │ │ │ │ │ ├── usingDeclarations.14.ts │ │ │ │ │ ├── usingDeclarations.15.ts │ │ │ │ │ ├── usingDeclarations.16.ts │ │ │ │ │ ├── usingDeclarations.17.ts │ │ │ │ │ ├── usingDeclarations.2.ts │ │ │ │ │ ├── usingDeclarations.3.ts │ │ │ │ │ ├── usingDeclarations.4.ts │ │ │ │ │ ├── usingDeclarations.5.ts │ │ │ │ │ ├── usingDeclarations.6.ts │ │ │ │ │ ├── usingDeclarations.7.ts │ │ │ │ │ ├── usingDeclarations.8.ts │ │ │ │ │ ├── usingDeclarations.9.ts │ │ │ │ │ ├── usingDeclarationsDeclarationEmit.1.ts │ │ │ │ │ ├── usingDeclarationsDeclarationEmit.2.ts │ │ │ │ │ ├── usingDeclarationsInFor.ts │ │ │ │ │ ├── usingDeclarationsInForAwaitOf.ts │ │ │ │ │ ├── usingDeclarationsInForIn.ts │ │ │ │ │ ├── usingDeclarationsInForOf.1.ts │ │ │ │ │ ├── usingDeclarationsInForOf.2.ts │ │ │ │ │ ├── usingDeclarationsInForOf.3.ts │ │ │ │ │ ├── usingDeclarationsInForOf.4.ts │ │ │ │ │ ├── usingDeclarationsNamedEvaluationDecoratorsAndClassFields.ts │ │ │ │ │ ├── usingDeclarationsTopLevelOfModule.1.ts │ │ │ │ │ ├── usingDeclarationsTopLevelOfModule.2.ts │ │ │ │ │ ├── usingDeclarationsTopLevelOfModule.3.ts │ │ │ │ │ ├── usingDeclarationsWithESClassDecorators.1.ts │ │ │ │ │ ├── usingDeclarationsWithESClassDecorators.10.ts │ │ │ │ │ ├── usingDeclarationsWithESClassDecorators.11.ts │ │ │ │ │ ├── usingDeclarationsWithESClassDecorators.12.ts │ │ │ │ │ ├── usingDeclarationsWithESClassDecorators.2.ts │ │ │ │ │ ├── usingDeclarationsWithESClassDecorators.3.ts │ │ │ │ │ ├── usingDeclarationsWithESClassDecorators.4.ts │ │ │ │ │ ├── usingDeclarationsWithESClassDecorators.5.ts │ │ │ │ │ ├── usingDeclarationsWithESClassDecorators.6.ts │ │ │ │ │ ├── usingDeclarationsWithESClassDecorators.7.ts │ │ │ │ │ ├── usingDeclarationsWithESClassDecorators.8.ts │ │ │ │ │ ├── usingDeclarationsWithESClassDecorators.9.ts │ │ │ │ │ ├── usingDeclarationsWithImportHelpers.ts │ │ │ │ │ ├── usingDeclarationsWithIteratorObject.ts │ │ │ │ │ ├── usingDeclarationsWithLegacyClassDecorators.1.ts │ │ │ │ │ ├── usingDeclarationsWithLegacyClassDecorators.10.ts │ │ │ │ │ ├── usingDeclarationsWithLegacyClassDecorators.11.ts │ │ │ │ │ ├── usingDeclarationsWithLegacyClassDecorators.12.ts │ │ │ │ │ ├── usingDeclarationsWithLegacyClassDecorators.2.ts │ │ │ │ │ ├── usingDeclarationsWithLegacyClassDecorators.3.ts │ │ │ │ │ ├── usingDeclarationsWithLegacyClassDecorators.4.ts │ │ │ │ │ ├── usingDeclarationsWithLegacyClassDecorators.5.ts │ │ │ │ │ ├── usingDeclarationsWithLegacyClassDecorators.6.ts │ │ │ │ │ ├── usingDeclarationsWithLegacyClassDecorators.7.ts │ │ │ │ │ ├── usingDeclarationsWithLegacyClassDecorators.8.ts │ │ │ │ │ ├── usingDeclarationsWithLegacyClassDecorators.9.ts │ │ │ │ │ ├── usingDeclarationsWithObjectLiterals1.ts │ │ │ │ │ └── usingDeclarationsWithObjectLiterals2.ts │ │ │ │ └── validMultipleVariableDeclarations.ts │ │ │ ├── breakStatements/ │ │ │ │ ├── doWhileBreakStatements.ts │ │ │ │ ├── forBreakStatements.ts │ │ │ │ ├── forInBreakStatements.ts │ │ │ │ ├── invalidDoWhileBreakStatements.ts │ │ │ │ ├── invalidForBreakStatements.ts │ │ │ │ ├── invalidForInBreakStatements.ts │ │ │ │ ├── invalidSwitchBreakStatement.ts │ │ │ │ ├── invalidWhileBreakStatements.ts │ │ │ │ ├── switchBreakStatements.ts │ │ │ │ └── whileBreakStatements.ts │ │ │ ├── continueStatements/ │ │ │ │ ├── doWhileContinueStatements.ts │ │ │ │ ├── forContinueStatements.ts │ │ │ │ ├── forInContinueStatements.ts │ │ │ │ ├── invalidDoWhileContinueStatements.ts │ │ │ │ ├── invalidForContinueStatements.ts │ │ │ │ ├── invalidForInContinueStatements.ts │ │ │ │ ├── invalidSwitchContinueStatement.ts │ │ │ │ ├── invalidWhileContinueStatements.ts │ │ │ │ └── whileContinueStatements.ts │ │ │ ├── for-await-ofStatements/ │ │ │ │ ├── emitter.forAwait.ts │ │ │ │ └── forAwaitPerIterationBindingDownlevel.ts │ │ │ ├── for-inStatements/ │ │ │ │ ├── for-inStatements.ts │ │ │ │ ├── for-inStatementsArray.ts │ │ │ │ ├── for-inStatementsArrayErrors.ts │ │ │ │ ├── for-inStatementsAsyncIdentifier.ts │ │ │ │ ├── for-inStatementsDestructuring.ts │ │ │ │ ├── for-inStatementsDestructuring2.ts │ │ │ │ ├── for-inStatementsDestructuring3.ts │ │ │ │ ├── for-inStatementsDestructuring4.ts │ │ │ │ └── for-inStatementsInvalid.ts │ │ │ ├── for-ofStatements/ │ │ │ │ ├── ES3For-ofTypeCheck1.ts │ │ │ │ ├── ES3For-ofTypeCheck2.ts │ │ │ │ ├── ES3For-ofTypeCheck4.ts │ │ │ │ ├── ES3For-ofTypeCheck6.ts │ │ │ │ ├── ES5For-of1.ts │ │ │ │ ├── ES5For-of10.ts │ │ │ │ ├── ES5For-of11.ts │ │ │ │ ├── ES5For-of12.ts │ │ │ │ ├── ES5For-of13.ts │ │ │ │ ├── ES5For-of14.ts │ │ │ │ ├── ES5For-of15.ts │ │ │ │ ├── ES5For-of16.ts │ │ │ │ ├── ES5For-of17.ts │ │ │ │ ├── ES5For-of18.ts │ │ │ │ ├── ES5For-of19.ts │ │ │ │ ├── ES5For-of2.ts │ │ │ │ ├── ES5For-of20.ts │ │ │ │ ├── ES5For-of21.ts │ │ │ │ ├── ES5For-of22.ts │ │ │ │ ├── ES5For-of23.ts │ │ │ │ ├── ES5For-of24.ts │ │ │ │ ├── ES5For-of25.ts │ │ │ │ ├── ES5For-of26.ts │ │ │ │ ├── ES5For-of27.ts │ │ │ │ ├── ES5For-of28.ts │ │ │ │ ├── ES5For-of29.ts │ │ │ │ ├── ES5For-of3.ts │ │ │ │ ├── ES5For-of30.ts │ │ │ │ ├── ES5For-of31.ts │ │ │ │ ├── ES5For-of33.ts │ │ │ │ ├── ES5For-of34.ts │ │ │ │ ├── ES5For-of35.ts │ │ │ │ ├── ES5For-of36.ts │ │ │ │ ├── ES5For-of37.ts │ │ │ │ ├── ES5For-of4.ts │ │ │ │ ├── ES5For-of5.ts │ │ │ │ ├── ES5For-of6.ts │ │ │ │ ├── ES5For-of7.ts │ │ │ │ ├── ES5For-of8.ts │ │ │ │ ├── ES5For-of9.ts │ │ │ │ ├── ES5For-ofTypeCheck1.ts │ │ │ │ ├── ES5For-ofTypeCheck10.ts │ │ │ │ ├── ES5For-ofTypeCheck11.ts │ │ │ │ ├── ES5For-ofTypeCheck12.ts │ │ │ │ ├── ES5For-ofTypeCheck13.ts │ │ │ │ ├── ES5For-ofTypeCheck14.ts │ │ │ │ ├── ES5For-ofTypeCheck2.ts │ │ │ │ ├── ES5For-ofTypeCheck3.ts │ │ │ │ ├── ES5For-ofTypeCheck4.ts │ │ │ │ ├── ES5For-ofTypeCheck5.ts │ │ │ │ ├── ES5For-ofTypeCheck6.ts │ │ │ │ ├── ES5For-ofTypeCheck7.ts │ │ │ │ ├── ES5For-ofTypeCheck8.ts │ │ │ │ ├── ES5For-ofTypeCheck9.ts │ │ │ │ └── ES5for-of32.ts │ │ │ ├── forStatements/ │ │ │ │ ├── forStatements.ts │ │ │ │ ├── forStatementsMultipleInvalidDecl.ts │ │ │ │ └── forStatementsMultipleValidDecl.ts │ │ │ ├── ifDoWhileStatements/ │ │ │ │ └── ifDoWhileStatements.ts │ │ │ ├── labeledStatements/ │ │ │ │ ├── labeledStatementDeclarationListInLoopNoCrash1.ts │ │ │ │ ├── labeledStatementDeclarationListInLoopNoCrash2.ts │ │ │ │ ├── labeledStatementDeclarationListInLoopNoCrash3.ts │ │ │ │ ├── labeledStatementDeclarationListInLoopNoCrash4.ts │ │ │ │ ├── labeledStatementExportDeclarationNoCrash1.ts │ │ │ │ ├── labeledStatementWithLabel.ts │ │ │ │ ├── labeledStatementWithLabel_es2015.ts │ │ │ │ └── labeledStatementWithLabel_strict.ts │ │ │ ├── returnStatements/ │ │ │ │ ├── invalidReturnStatements.ts │ │ │ │ ├── returnStatementNoAsiAfterTransform.ts │ │ │ │ └── returnStatements.ts │ │ │ ├── switchStatements/ │ │ │ │ └── switchStatements.ts │ │ │ ├── throwStatements/ │ │ │ │ ├── invalidThrowStatement.ts │ │ │ │ ├── throwInEnclosingStatements.ts │ │ │ │ └── throwStatements.ts │ │ │ ├── tryStatements/ │ │ │ │ ├── catchClauseWithTypeAnnotation.ts │ │ │ │ ├── invalidTryStatements.ts │ │ │ │ └── tryStatements.ts │ │ │ └── withStatements/ │ │ │ └── withStatements.ts │ │ ├── types/ │ │ │ ├── any/ │ │ │ │ ├── anyAsConstructor.ts │ │ │ │ ├── anyAsFunctionCall.ts │ │ │ │ ├── anyAsGenericFunctionCall.ts │ │ │ │ ├── anyPropertyAccess.ts │ │ │ │ ├── assignAnyToEveryType.ts │ │ │ │ ├── assignEveryTypeToAny.ts │ │ │ │ ├── narrowExceptionVariableInCatchClause.ts │ │ │ │ ├── narrowFromAnyWithInstanceof.ts │ │ │ │ └── narrowFromAnyWithTypePredicate.ts │ │ │ ├── asyncGenerators/ │ │ │ │ ├── types.asyncGenerators.es2018.1.ts │ │ │ │ └── types.asyncGenerators.es2018.2.ts │ │ │ ├── conditional/ │ │ │ │ ├── conditionalTypes1.ts │ │ │ │ ├── conditionalTypes2.ts │ │ │ │ ├── conditionalTypesExcessProperties.ts │ │ │ │ ├── inferTypes1.ts │ │ │ │ ├── inferTypes2.ts │ │ │ │ ├── inferTypesInvalidExtendsDeclaration.ts │ │ │ │ ├── inferTypesWithExtends1.ts │ │ │ │ ├── inferTypesWithExtends2.ts │ │ │ │ ├── inferTypesWithExtendsDependingOnTypeVariables.ts │ │ │ │ └── variance.ts │ │ │ ├── contextualTypes/ │ │ │ │ ├── asyncFunctions/ │ │ │ │ │ ├── contextuallyTypeAsyncFunctionAwaitOperand.ts │ │ │ │ │ └── contextuallyTypeAsyncFunctionReturnType.ts │ │ │ │ ├── commaOperator/ │ │ │ │ │ ├── contextuallyTypeCommaOperator01.ts │ │ │ │ │ ├── contextuallyTypeCommaOperator02.ts │ │ │ │ │ └── contextuallyTypeCommaOperator03.ts │ │ │ │ ├── jsdoc/ │ │ │ │ │ └── contextualTypeFromJSDoc.ts │ │ │ │ ├── jsxAttributes/ │ │ │ │ │ ├── contextuallyTypedStringLiteralsInJsxAttributes01.tsx │ │ │ │ │ └── contextuallyTypedStringLiteralsInJsxAttributes02.tsx │ │ │ │ ├── logicalAnd/ │ │ │ │ │ ├── contextuallyTypeLogicalAnd01.ts │ │ │ │ │ ├── contextuallyTypeLogicalAnd02.ts │ │ │ │ │ └── contextuallyTypeLogicalAnd03.ts │ │ │ │ ├── methodDeclarations/ │ │ │ │ │ ├── contextuallyTypedBindingInitializer.ts │ │ │ │ │ ├── contextuallyTypedBindingInitializerNegative.ts │ │ │ │ │ ├── contextuallyTypedClassExpressionMethodDeclaration01.ts │ │ │ │ │ ├── contextuallyTypedClassExpressionMethodDeclaration02.ts │ │ │ │ │ └── contextuallyTypedObjectLiteralMethodDeclaration01.ts │ │ │ │ └── partiallyAnnotatedFunction/ │ │ │ │ ├── partiallyAnnotatedFunctionInferenceError.ts │ │ │ │ ├── partiallyAnnotatedFunctionInferenceWithTypeParameter.ts │ │ │ │ └── partiallyAnnotatedFunctionWitoutTypeParameter.ts │ │ │ ├── forAwait/ │ │ │ │ ├── types.forAwait.es2018.1.ts │ │ │ │ ├── types.forAwait.es2018.2.ts │ │ │ │ └── types.forAwait.es2018.3.ts │ │ │ ├── import/ │ │ │ │ ├── importTypeAmbient.ts │ │ │ │ ├── importTypeAmbientMissing.ts │ │ │ │ ├── importTypeAmdBundleRewrite.ts │ │ │ │ ├── importTypeGeneric.ts │ │ │ │ ├── importTypeGenericTypes.ts │ │ │ │ ├── importTypeInJSDoc.ts │ │ │ │ ├── importTypeLocal.ts │ │ │ │ ├── importTypeLocalMissing.ts │ │ │ │ ├── importTypeNested.ts │ │ │ │ ├── importTypeNestedNoRef.ts │ │ │ │ ├── importTypeNonString.ts │ │ │ │ └── importWithTypeArguments.ts │ │ │ ├── intersection/ │ │ │ │ ├── commonTypeIntersection.ts │ │ │ │ ├── contextualIntersectionType.ts │ │ │ │ ├── intersectionAndUnionTypes.ts │ │ │ │ ├── intersectionAsWeakTypeSource.ts │ │ │ │ ├── intersectionMemberOfUnionNarrowsCorrectly.ts │ │ │ │ ├── intersectionNarrowing.ts │ │ │ │ ├── intersectionOfUnionNarrowing.ts │ │ │ │ ├── intersectionOfUnionOfUnitTypes.ts │ │ │ │ ├── intersectionReduction.ts │ │ │ │ ├── intersectionReductionStrict.ts │ │ │ │ ├── intersectionThisTypes.ts │ │ │ │ ├── intersectionTypeAssignment.ts │ │ │ │ ├── intersectionTypeEquivalence.ts │ │ │ │ ├── intersectionTypeInference.ts │ │ │ │ ├── intersectionTypeInference2.ts │ │ │ │ ├── intersectionTypeInference3.ts │ │ │ │ ├── intersectionTypeMembers.ts │ │ │ │ ├── intersectionTypeOverloading.ts │ │ │ │ ├── intersectionTypeReadonly.ts │ │ │ │ ├── intersectionWithIndexSignatures.ts │ │ │ │ ├── intersectionWithUnionConstraint.ts │ │ │ │ ├── intersectionsAndEmptyObjects.ts │ │ │ │ ├── operatorsAndIntersectionTypes.ts │ │ │ │ └── recursiveIntersectionTypes.ts │ │ │ ├── keyof/ │ │ │ │ ├── circularIndexedAccessErrors.ts │ │ │ │ ├── keyofAndForIn.ts │ │ │ │ ├── keyofAndIndexedAccess.ts │ │ │ │ ├── keyofAndIndexedAccess2.ts │ │ │ │ ├── keyofAndIndexedAccessErrors.ts │ │ │ │ └── keyofIntersection.ts │ │ │ ├── literal/ │ │ │ │ ├── booleanLiteralTypes1.ts │ │ │ │ ├── booleanLiteralTypes2.ts │ │ │ │ ├── enumLiteralTypes1.ts │ │ │ │ ├── enumLiteralTypes2.ts │ │ │ │ ├── enumLiteralTypes3.ts │ │ │ │ ├── literalTypeWidening.ts │ │ │ │ ├── literalTypes1.ts │ │ │ │ ├── literalTypes2.ts │ │ │ │ ├── literalTypes3.ts │ │ │ │ ├── literalTypesAndDestructuring.ts │ │ │ │ ├── literalTypesAndTypeAssertions.ts │ │ │ │ ├── literalTypesWidenInParameterPosition.ts │ │ │ │ ├── numericLiteralTypes1.ts │ │ │ │ ├── numericLiteralTypes2.ts │ │ │ │ ├── numericLiteralTypes3.ts │ │ │ │ ├── numericStringLiteralTypes.ts │ │ │ │ ├── stringEnumLiteralTypes1.ts │ │ │ │ ├── stringEnumLiteralTypes2.ts │ │ │ │ ├── stringEnumLiteralTypes3.ts │ │ │ │ ├── stringLiteralsAssertionsInEqualityComparisons01.ts │ │ │ │ ├── stringLiteralsAssertionsInEqualityComparisons02.ts │ │ │ │ ├── stringLiteralsAssignedToStringMappings.ts │ │ │ │ ├── stringLiteralsWithEqualityChecks01.ts │ │ │ │ ├── stringLiteralsWithEqualityChecks02.ts │ │ │ │ ├── stringLiteralsWithEqualityChecks03.ts │ │ │ │ ├── stringLiteralsWithEqualityChecks04.ts │ │ │ │ ├── stringLiteralsWithSwitchStatements01.ts │ │ │ │ ├── stringLiteralsWithSwitchStatements02.ts │ │ │ │ ├── stringLiteralsWithSwitchStatements03.ts │ │ │ │ ├── stringLiteralsWithSwitchStatements04.ts │ │ │ │ ├── stringLiteralsWithTypeAssertions01.ts │ │ │ │ ├── stringMappingDeferralInConditionalTypes.ts │ │ │ │ ├── stringMappingOverPatternLiterals.ts │ │ │ │ ├── stringMappingReduction.ts │ │ │ │ ├── templateLiteralTypes1.ts │ │ │ │ ├── templateLiteralTypes2.ts │ │ │ │ ├── templateLiteralTypes3.ts │ │ │ │ ├── templateLiteralTypes4.ts │ │ │ │ ├── templateLiteralTypes5.ts │ │ │ │ ├── templateLiteralTypes6.ts │ │ │ │ ├── templateLiteralTypes7.ts │ │ │ │ ├── templateLiteralTypes8.ts │ │ │ │ ├── templateLiteralTypesPatterns.ts │ │ │ │ └── templateLiteralTypesPatternsPrefixSuffixAssignability.ts │ │ │ ├── localTypes/ │ │ │ │ ├── localTypes1.ts │ │ │ │ ├── localTypes2.ts │ │ │ │ ├── localTypes3.ts │ │ │ │ ├── localTypes4.ts │ │ │ │ └── localTypes5.ts │ │ │ ├── mapped/ │ │ │ │ ├── isomorphicMappedTypeInference.ts │ │ │ │ ├── mappedTypeAsClauseRecursiveNoCrash1.ts │ │ │ │ ├── mappedTypeAsClauseRelationships.ts │ │ │ │ ├── mappedTypeAsClauses.ts │ │ │ │ ├── mappedTypeConstraints.ts │ │ │ │ ├── mappedTypeConstraints2.ts │ │ │ │ ├── mappedTypeErrors.ts │ │ │ │ ├── mappedTypeErrors2.ts │ │ │ │ ├── mappedTypeIndexSignatureModifiers.ts │ │ │ │ ├── mappedTypeInferenceErrors.ts │ │ │ │ ├── mappedTypeModifiers.ts │ │ │ │ ├── mappedTypeOverlappingStringEnumKeys.ts │ │ │ │ ├── mappedTypeProperties.ts │ │ │ │ ├── mappedTypeRelationships.ts │ │ │ │ ├── mappedTypeWithAny.ts │ │ │ │ ├── mappedTypes1.ts │ │ │ │ ├── mappedTypes2.ts │ │ │ │ ├── mappedTypes3.ts │ │ │ │ ├── mappedTypes4.ts │ │ │ │ ├── mappedTypes5.ts │ │ │ │ ├── mappedTypes6.ts │ │ │ │ ├── mappedTypesAndObjects.ts │ │ │ │ ├── mappedTypesArraysTuples.ts │ │ │ │ ├── mappedTypesGenericTuples.ts │ │ │ │ ├── mappedTypesGenericTuples2.ts │ │ │ │ └── recursiveMappedTypes.ts │ │ │ ├── members/ │ │ │ │ ├── augmentedTypeAssignmentCompatIndexSignature.ts │ │ │ │ ├── augmentedTypeBracketAccessIndexSignature.ts │ │ │ │ ├── classWithPrivateProperty.ts │ │ │ │ ├── classWithProtectedProperty.ts │ │ │ │ ├── classWithPublicProperty.ts │ │ │ │ ├── duplicateNumericIndexers.ts │ │ │ │ ├── duplicatePropertyNames.ts │ │ │ │ ├── duplicateStringIndexers.ts │ │ │ │ ├── indexSignatures1.ts │ │ │ │ ├── objectTypeHidingMembersOfExtendedObject.ts │ │ │ │ ├── objectTypeHidingMembersOfObject.ts │ │ │ │ ├── objectTypeHidingMembersOfObjectAssignmentCompat.ts │ │ │ │ ├── objectTypeHidingMembersOfObjectAssignmentCompat2.ts │ │ │ │ ├── objectTypePropertyAccess.ts │ │ │ │ ├── objectTypeWithCallSignatureAppearsToBeFunctionType.ts │ │ │ │ ├── objectTypeWithCallSignatureHidingMembersOfExtendedFunction.ts │ │ │ │ ├── objectTypeWithCallSignatureHidingMembersOfFunction.ts │ │ │ │ ├── objectTypeWithCallSignatureHidingMembersOfFunctionAssignmentCompat.ts │ │ │ │ ├── objectTypeWithConstructSignatureAppearsToBeFunctionType.ts │ │ │ │ ├── objectTypeWithConstructSignatureHidingMembersOfExtendedFunction.ts │ │ │ │ ├── objectTypeWithConstructSignatureHidingMembersOfFunction.ts │ │ │ │ ├── objectTypeWithConstructSignatureHidingMembersOfFunctionAssignmentCompat.ts │ │ │ │ ├── objectTypeWithDuplicateNumericProperty.ts │ │ │ │ ├── objectTypeWithNumericProperty.ts │ │ │ │ ├── objectTypeWithStringAndNumberIndexSignatureToAny.ts │ │ │ │ ├── objectTypeWithStringIndexerHidingObjectIndexer.ts │ │ │ │ ├── objectTypeWithStringNamedNumericProperty.ts │ │ │ │ ├── objectTypeWithStringNamedPropertyOfIllegalCharacters.ts │ │ │ │ ├── typesWithOptionalProperty.ts │ │ │ │ ├── typesWithPrivateConstructor.ts │ │ │ │ ├── typesWithProtectedConstructor.ts │ │ │ │ ├── typesWithPublicConstructor.ts │ │ │ │ ├── typesWithSpecializedCallSignatures.ts │ │ │ │ └── typesWithSpecializedConstructSignatures.ts │ │ │ ├── namedTypes/ │ │ │ │ ├── classWithOnlyPublicMembersEquivalentToInterface.ts │ │ │ │ ├── classWithOnlyPublicMembersEquivalentToInterface2.ts │ │ │ │ ├── classWithOptionalParameter.ts │ │ │ │ ├── genericInstantiationEquivalentToObjectLiteral.ts │ │ │ │ ├── interfaceWithPrivateMember.ts │ │ │ │ └── optionalMethods.ts │ │ │ ├── never/ │ │ │ │ ├── neverInference.ts │ │ │ │ ├── neverIntersectionNotCallable.ts │ │ │ │ ├── neverType.ts │ │ │ │ ├── neverTypeErrors1.ts │ │ │ │ ├── neverTypeErrors2.ts │ │ │ │ └── neverUnionIntersection.ts │ │ │ ├── nonPrimitive/ │ │ │ │ ├── assignObjectToNonPrimitive.ts │ │ │ │ ├── nonPrimitiveAccessProperty.ts │ │ │ │ ├── nonPrimitiveAndEmptyObject.ts │ │ │ │ ├── nonPrimitiveAndTypeVariables.ts │ │ │ │ ├── nonPrimitiveAsProperty.ts │ │ │ │ ├── nonPrimitiveAssignError.ts │ │ │ │ ├── nonPrimitiveConstraintOfIndexAccessType.ts │ │ │ │ ├── nonPrimitiveInFunction.ts │ │ │ │ ├── nonPrimitiveInGeneric.ts │ │ │ │ ├── nonPrimitiveIndexingWithForIn.ts │ │ │ │ ├── nonPrimitiveIndexingWithForInNoImplicitAny.ts │ │ │ │ ├── nonPrimitiveIndexingWithForInSupressError.ts │ │ │ │ ├── nonPrimitiveNarrow.ts │ │ │ │ ├── nonPrimitiveRhsSideOfInExpression.ts │ │ │ │ ├── nonPrimitiveStrictNull.ts │ │ │ │ └── nonPrimitiveUnionIntersection.ts │ │ │ ├── objectTypeLiteral/ │ │ │ │ ├── callSignatures/ │ │ │ │ │ ├── callSignatureWithOptionalParameterAndInitializer.ts │ │ │ │ │ ├── callSignatureWithoutAnnotationsOrBody.ts │ │ │ │ │ ├── callSignatureWithoutReturnTypeAnnotationInference.ts │ │ │ │ │ ├── callSignaturesThatDifferOnlyByReturnType.ts │ │ │ │ │ ├── callSignaturesThatDifferOnlyByReturnType2.ts │ │ │ │ │ ├── callSignaturesThatDifferOnlyByReturnType3.ts │ │ │ │ │ ├── callSignaturesWithAccessibilityModifiersOnParameters.ts │ │ │ │ │ ├── callSignaturesWithDuplicateParameters.ts │ │ │ │ │ ├── callSignaturesWithOptionalParameters.ts │ │ │ │ │ ├── callSignaturesWithOptionalParameters2.ts │ │ │ │ │ ├── callSignaturesWithParameterInitializers.ts │ │ │ │ │ ├── callSignaturesWithParameterInitializers2.ts │ │ │ │ │ ├── constructSignatureWithAccessibilityModifiersOnParameters.ts │ │ │ │ │ ├── constructSignatureWithAccessibilityModifiersOnParameters2.ts │ │ │ │ │ ├── identicalCallSignatures.ts │ │ │ │ │ ├── identicalCallSignatures2.ts │ │ │ │ │ ├── identicalCallSignatures3.ts │ │ │ │ │ ├── parametersWithNoAnnotationAreAny.ts │ │ │ │ │ ├── restParameterWithoutAnnotationIsAnyArray.ts │ │ │ │ │ ├── restParametersOfNonArrayTypes.ts │ │ │ │ │ ├── restParametersOfNonArrayTypes2.ts │ │ │ │ │ ├── restParametersWithArrayTypeAnnotations.ts │ │ │ │ │ ├── specializedSignatureIsNotSubtypeOfNonSpecializedSignature.ts │ │ │ │ │ ├── specializedSignatureIsSubtypeOfNonSpecializedSignature.ts │ │ │ │ │ ├── specializedSignatureWithOptional.ts │ │ │ │ │ ├── stringLiteralTypesInImplementationSignatures.ts │ │ │ │ │ ├── stringLiteralTypesInImplementationSignatures2.ts │ │ │ │ │ ├── typeParameterAsTypeArgument.ts │ │ │ │ │ ├── typeParameterUsedAsTypeParameterConstraint.ts │ │ │ │ │ ├── typeParameterUsedAsTypeParameterConstraint2.ts │ │ │ │ │ ├── typeParameterUsedAsTypeParameterConstraint3.ts │ │ │ │ │ └── typeParameterUsedAsTypeParameterConstraint4.ts │ │ │ │ ├── constructSignatures/ │ │ │ │ │ ├── constructSignaturesWithIdenticalOverloads.ts │ │ │ │ │ ├── constructSignaturesWithOverloads.ts │ │ │ │ │ ├── constructSignaturesWithOverloads2.ts │ │ │ │ │ └── constructSignaturesWithOverloadsThatDifferOnlyByReturnType.ts │ │ │ │ ├── indexSignatures/ │ │ │ │ │ ├── multipleNumericIndexers.ts │ │ │ │ │ ├── multipleStringIndexers.ts │ │ │ │ │ ├── numericIndexerConstrainsPropertyDeclarations.ts │ │ │ │ │ ├── numericIndexerConstrainsPropertyDeclarations2.ts │ │ │ │ │ ├── numericIndexingResults.ts │ │ │ │ │ ├── stringIndexerConstrainsPropertyDeclarations.ts │ │ │ │ │ ├── stringIndexerConstrainsPropertyDeclarations2.ts │ │ │ │ │ └── stringIndexingResults.ts │ │ │ │ ├── methodSignatures/ │ │ │ │ │ ├── functionLiterals.ts │ │ │ │ │ ├── methodSignaturesWithOverloads.ts │ │ │ │ │ ├── methodSignaturesWithOverloads2.ts │ │ │ │ │ ├── objectTypesWithOptionalProperties.ts │ │ │ │ │ └── objectTypesWithOptionalProperties2.ts │ │ │ │ ├── objectTypeLiteralSyntax.ts │ │ │ │ ├── objectTypeLiteralSyntax2.ts │ │ │ │ └── propertySignatures/ │ │ │ │ ├── numericNamedPropertyDuplicates.ts │ │ │ │ ├── numericStringNamedPropertyEquivalence.ts │ │ │ │ ├── propertyNameWithoutTypeAnnotation.ts │ │ │ │ ├── propertyNamesOfReservedWords.ts │ │ │ │ ├── stringNamedPropertyAccess.ts │ │ │ │ └── stringNamedPropertyDuplicates.ts │ │ │ ├── primitives/ │ │ │ │ ├── boolean/ │ │ │ │ │ ├── assignFromBooleanInterface.ts │ │ │ │ │ ├── assignFromBooleanInterface2.ts │ │ │ │ │ ├── boolInsteadOfBoolean.ts │ │ │ │ │ ├── booleanPropertyAccess.ts │ │ │ │ │ ├── extendBooleanInterface.ts │ │ │ │ │ ├── invalidBooleanAssignments.ts │ │ │ │ │ └── validBooleanAssignments.ts │ │ │ │ ├── enum/ │ │ │ │ │ ├── invalidEnumAssignments.ts │ │ │ │ │ └── validEnumAssignments.ts │ │ │ │ ├── null/ │ │ │ │ │ ├── directReferenceToNull.ts │ │ │ │ │ └── validNullAssignments.ts │ │ │ │ ├── number/ │ │ │ │ │ ├── assignFromNumberInterface.ts │ │ │ │ │ ├── assignFromNumberInterface2.ts │ │ │ │ │ ├── extendNumberInterface.ts │ │ │ │ │ ├── invalidNumberAssignments.ts │ │ │ │ │ ├── numberPropertyAccess.ts │ │ │ │ │ └── validNumberAssignments.ts │ │ │ │ ├── string/ │ │ │ │ │ ├── assignFromStringInterface.ts │ │ │ │ │ ├── assignFromStringInterface2.ts │ │ │ │ │ ├── extendStringInterface.ts │ │ │ │ │ ├── invalidStringAssignments.ts │ │ │ │ │ ├── stringPropertyAccess.ts │ │ │ │ │ ├── stringPropertyAccessWithError.ts │ │ │ │ │ └── validStringAssignments.ts │ │ │ │ ├── stringLiteral/ │ │ │ │ │ └── stringLiteralType.ts │ │ │ │ ├── undefined/ │ │ │ │ │ ├── directReferenceToUndefined.ts │ │ │ │ │ ├── invalidUndefinedAssignments.ts │ │ │ │ │ ├── invalidUndefinedValues.ts │ │ │ │ │ ├── validUndefinedAssignments.ts │ │ │ │ │ └── validUndefinedValues.ts │ │ │ │ └── void/ │ │ │ │ ├── invalidAssignmentsToVoid.ts │ │ │ │ ├── invalidVoidAssignments.ts │ │ │ │ ├── invalidVoidValues.ts │ │ │ │ ├── validVoidAssignments.ts │ │ │ │ └── validVoidValues.ts │ │ │ ├── rest/ │ │ │ │ ├── genericObjectRest.ts │ │ │ │ ├── genericRestArity.ts │ │ │ │ ├── genericRestArityStrict.ts │ │ │ │ ├── genericRestParameters1.ts │ │ │ │ ├── genericRestParameters2.ts │ │ │ │ ├── genericRestParameters3.ts │ │ │ │ ├── objectRest.ts │ │ │ │ ├── objectRest2.ts │ │ │ │ ├── objectRestAssignment.ts │ │ │ │ ├── objectRestCatchES5.ts │ │ │ │ ├── objectRestForOf.ts │ │ │ │ ├── objectRestNegative.ts │ │ │ │ ├── objectRestParameter.ts │ │ │ │ ├── objectRestParameterES5.ts │ │ │ │ ├── objectRestPropertyMustBeLast.ts │ │ │ │ ├── objectRestReadonly.ts │ │ │ │ ├── restElementMustBeLast.ts │ │ │ │ └── restTuplesFromContextualTypes.ts │ │ │ ├── specifyingTypes/ │ │ │ │ ├── predefinedTypes/ │ │ │ │ │ ├── objectTypesWithPredefinedTypesAsName.ts │ │ │ │ │ └── objectTypesWithPredefinedTypesAsName2.ts │ │ │ │ ├── typeLiterals/ │ │ │ │ │ ├── arrayLiteral.ts │ │ │ │ │ ├── arrayOfFunctionTypes3.ts │ │ │ │ │ ├── arrayTypeOfFunctionTypes.ts │ │ │ │ │ ├── arrayTypeOfFunctionTypes2.ts │ │ │ │ │ ├── arrayTypeOfTypeOf.ts │ │ │ │ │ ├── functionLiteral.ts │ │ │ │ │ ├── functionLiteralForOverloads.ts │ │ │ │ │ ├── functionLiteralForOverloads2.ts │ │ │ │ │ ├── parenthesizedTypes.ts │ │ │ │ │ └── unionTypeLiterals.ts │ │ │ │ ├── typeQueries/ │ │ │ │ │ ├── circularTypeofWithVarOrFunc.ts │ │ │ │ │ ├── invalidTypeOfTarget.ts │ │ │ │ │ ├── recursiveTypesWithTypeof.ts │ │ │ │ │ ├── typeQueryOnClass.ts │ │ │ │ │ ├── typeQueryWithReservedWords.ts │ │ │ │ │ ├── typeofANonExportedType.ts │ │ │ │ │ ├── typeofAnExportedType.ts │ │ │ │ │ ├── typeofClass2.ts │ │ │ │ │ ├── typeofClassWithPrivates.ts │ │ │ │ │ ├── typeofModuleWithoutExports.ts │ │ │ │ │ ├── typeofThis.ts │ │ │ │ │ ├── typeofThisWithImplicitThis.ts │ │ │ │ │ └── typeofTypeParameter.ts │ │ │ │ └── typeReferences/ │ │ │ │ ├── genericTypeReferenceWithoutTypeArgument.d.ts │ │ │ │ ├── genericTypeReferenceWithoutTypeArgument.ts │ │ │ │ ├── genericTypeReferenceWithoutTypeArgument2.ts │ │ │ │ ├── genericTypeReferenceWithoutTypeArgument3.ts │ │ │ │ └── nonGenericTypeReferenceWithTypeArguments.ts │ │ │ ├── spread/ │ │ │ │ ├── objectSpread.ts │ │ │ │ ├── objectSpreadComputedProperty.ts │ │ │ │ ├── objectSpreadIndexSignature.ts │ │ │ │ ├── objectSpreadNegative.ts │ │ │ │ ├── objectSpreadNegativeParse.ts │ │ │ │ ├── objectSpreadNoTransform.ts │ │ │ │ ├── objectSpreadRepeatedComplexity.ts │ │ │ │ ├── objectSpreadRepeatedNullCheckPerf.ts │ │ │ │ ├── objectSpreadSetonlyAccessor.ts │ │ │ │ ├── objectSpreadStrictNull.ts │ │ │ │ ├── spreadContextualTypedBindingPattern.ts │ │ │ │ ├── spreadDuplicate.ts │ │ │ │ ├── spreadDuplicateExact.ts │ │ │ │ ├── spreadExcessProperty.ts │ │ │ │ ├── spreadMethods.ts │ │ │ │ ├── spreadNonObject1.ts │ │ │ │ ├── spreadNonPrimitive.ts │ │ │ │ ├── spreadObjectOrFalsy.ts │ │ │ │ ├── spreadOverwritesProperty.ts │ │ │ │ ├── spreadOverwritesPropertyStrict.ts │ │ │ │ ├── spreadTypeVariable.ts │ │ │ │ ├── spreadUnion.ts │ │ │ │ ├── spreadUnion2.ts │ │ │ │ ├── spreadUnion3.ts │ │ │ │ └── spreadUnion4.ts │ │ │ ├── stringLiteral/ │ │ │ │ ├── stringLiteralCheckedInIf01.ts │ │ │ │ ├── stringLiteralCheckedInIf02.ts │ │ │ │ ├── stringLiteralMatchedInSwitch01.ts │ │ │ │ ├── stringLiteralTypeAssertion01.ts │ │ │ │ ├── stringLiteralTypesAndLogicalOrExpressions01.ts │ │ │ │ ├── stringLiteralTypesAndParenthesizedExpressions01.ts │ │ │ │ ├── stringLiteralTypesAndTuples01.ts │ │ │ │ ├── stringLiteralTypesAsTags01.ts │ │ │ │ ├── stringLiteralTypesAsTags02.ts │ │ │ │ ├── stringLiteralTypesAsTags03.ts │ │ │ │ ├── stringLiteralTypesAsTypeParameterConstraint01.ts │ │ │ │ ├── stringLiteralTypesAsTypeParameterConstraint02.ts │ │ │ │ ├── stringLiteralTypesInUnionTypes01.ts │ │ │ │ ├── stringLiteralTypesInUnionTypes02.ts │ │ │ │ ├── stringLiteralTypesInUnionTypes03.ts │ │ │ │ ├── stringLiteralTypesInUnionTypes04.ts │ │ │ │ ├── stringLiteralTypesInVariableDeclarations01.ts │ │ │ │ ├── stringLiteralTypesOverloadAssignability01.ts │ │ │ │ ├── stringLiteralTypesOverloadAssignability02.ts │ │ │ │ ├── stringLiteralTypesOverloadAssignability03.ts │ │ │ │ ├── stringLiteralTypesOverloadAssignability04.ts │ │ │ │ ├── stringLiteralTypesOverloadAssignability05.ts │ │ │ │ ├── stringLiteralTypesOverloads01.ts │ │ │ │ ├── stringLiteralTypesOverloads02.ts │ │ │ │ ├── stringLiteralTypesOverloads03.ts │ │ │ │ ├── stringLiteralTypesOverloads04.ts │ │ │ │ ├── stringLiteralTypesOverloads05.ts │ │ │ │ ├── stringLiteralTypesTypePredicates01.ts │ │ │ │ ├── stringLiteralTypesWithTemplateStrings01.ts │ │ │ │ ├── stringLiteralTypesWithTemplateStrings02.ts │ │ │ │ ├── stringLiteralTypesWithVariousOperators01.ts │ │ │ │ ├── stringLiteralTypesWithVariousOperators02.ts │ │ │ │ └── typeArgumentsWithStringLiteralTypes01.ts │ │ │ ├── thisType/ │ │ │ │ ├── contextualThisType.ts │ │ │ │ ├── contextualThisTypeInJavascript.ts │ │ │ │ ├── declarationFiles.ts │ │ │ │ ├── fluentClasses.ts │ │ │ │ ├── fluentInterfaces.ts │ │ │ │ ├── inferThisType.ts │ │ │ │ ├── looseThisTypeInFunctions.ts │ │ │ │ ├── thisTypeAccessibility.ts │ │ │ │ ├── thisTypeAndConstraints.ts │ │ │ │ ├── thisTypeErrors.ts │ │ │ │ ├── thisTypeErrors2.ts │ │ │ │ ├── thisTypeInAccessors.ts │ │ │ │ ├── thisTypeInAccessorsNegative.ts │ │ │ │ ├── thisTypeInBasePropertyAndDerivedContainerOfBase01.ts │ │ │ │ ├── thisTypeInClasses.ts │ │ │ │ ├── thisTypeInFunctions.ts │ │ │ │ ├── thisTypeInFunctions2.ts │ │ │ │ ├── thisTypeInFunctions3.ts │ │ │ │ ├── thisTypeInFunctions4.ts │ │ │ │ ├── thisTypeInFunctionsNegative.ts │ │ │ │ ├── thisTypeInInterfaces.ts │ │ │ │ ├── thisTypeInObjectLiterals.ts │ │ │ │ ├── thisTypeInObjectLiterals2.ts │ │ │ │ ├── thisTypeInTaggedTemplateCall.ts │ │ │ │ ├── thisTypeInTuples.ts │ │ │ │ ├── thisTypeInTypePredicate.ts │ │ │ │ ├── thisTypeOptionalCall.ts │ │ │ │ ├── thisTypeSyntacticContext.ts │ │ │ │ ├── typeRelationships.ts │ │ │ │ └── unionThisTypeInFunctions.ts │ │ │ ├── tuple/ │ │ │ │ ├── arityAndOrderCompatibility01.ts │ │ │ │ ├── castingTuple.ts │ │ │ │ ├── contextualTypeTupleEnd.ts │ │ │ │ ├── contextualTypeWithTuple.ts │ │ │ │ ├── emptyTuples/ │ │ │ │ │ ├── emptyTuplesTypeAssertion01.ts │ │ │ │ │ └── emptyTuplesTypeAssertion02.ts │ │ │ │ ├── indexerWithTuple.ts │ │ │ │ ├── named/ │ │ │ │ │ ├── namedTupleMembers.ts │ │ │ │ │ ├── namedTupleMembersErrors.ts │ │ │ │ │ ├── partiallyNamedTuples.ts │ │ │ │ │ ├── partiallyNamedTuples2.ts │ │ │ │ │ └── partiallyNamedTuples3.ts │ │ │ │ ├── optionalTupleElements1.ts │ │ │ │ ├── readonlyArraysAndTuples.ts │ │ │ │ ├── readonlyArraysAndTuples2.ts │ │ │ │ ├── restTupleElements1.ts │ │ │ │ ├── strictTupleLength.ts │ │ │ │ ├── tupleElementTypes1.ts │ │ │ │ ├── tupleElementTypes2.ts │ │ │ │ ├── tupleElementTypes3.ts │ │ │ │ ├── tupleElementTypes4.ts │ │ │ │ ├── tupleLengthCheck.ts │ │ │ │ ├── typeInferenceWithTupleType.ts │ │ │ │ ├── unionsOfTupleTypes1.ts │ │ │ │ ├── variadicTuples1.ts │ │ │ │ ├── variadicTuples2.ts │ │ │ │ ├── variadicTuples3.ts │ │ │ │ ├── wideningTuples1.ts │ │ │ │ ├── wideningTuples2.ts │ │ │ │ ├── wideningTuples3.ts │ │ │ │ ├── wideningTuples4.ts │ │ │ │ ├── wideningTuples5.ts │ │ │ │ ├── wideningTuples6.ts │ │ │ │ └── wideningTuples7.ts │ │ │ ├── typeAliases/ │ │ │ │ ├── asiPreventsParsingAsTypeAlias01.ts │ │ │ │ ├── asiPreventsParsingAsTypeAlias02.ts │ │ │ │ ├── builtinIteratorReturn.ts │ │ │ │ ├── circularTypeAliasForUnionWithClass.ts │ │ │ │ ├── circularTypeAliasForUnionWithInterface.ts │ │ │ │ ├── classDoesNotDependOnBaseTypes.ts │ │ │ │ ├── directDependenceBetweenTypeAliases.ts │ │ │ │ ├── genericTypeAliases.ts │ │ │ │ ├── interfaceDoesNotDependOnBaseTypes.ts │ │ │ │ ├── intrinsicKeyword.ts │ │ │ │ ├── intrinsicTypes.ts │ │ │ │ ├── reservedNamesInAliases.ts │ │ │ │ ├── typeAliases.ts │ │ │ │ ├── typeAliasesDoNotMerge.ts │ │ │ │ └── typeAliasesForObjectTypes.ts │ │ │ ├── typeParameters/ │ │ │ │ ├── recurringTypeParamForContainerOfBase01.ts │ │ │ │ ├── typeArgumentLists/ │ │ │ │ │ ├── callGenericFunctionWithIncorrectNumberOfTypeArguments.ts │ │ │ │ │ ├── callGenericFunctionWithZeroTypeArguments.ts │ │ │ │ │ ├── callNonGenericFunctionWithTypeArguments.ts │ │ │ │ │ ├── constraintSatisfactionWithAny.ts │ │ │ │ │ ├── constraintSatisfactionWithAny2.ts │ │ │ │ │ ├── constraintSatisfactionWithEmptyObject.ts │ │ │ │ │ ├── functionConstraintSatisfaction.ts │ │ │ │ │ ├── functionConstraintSatisfaction2.ts │ │ │ │ │ ├── functionConstraintSatisfaction3.ts │ │ │ │ │ ├── instantiateGenericClassWithWrongNumberOfTypeArguments.ts │ │ │ │ │ ├── instantiateGenericClassWithZeroTypeArguments.ts │ │ │ │ │ ├── instantiateNonGenericTypeWithTypeArguments.ts │ │ │ │ │ ├── instantiationExpressionErrors.ts │ │ │ │ │ ├── instantiationExpressions.ts │ │ │ │ │ ├── typeParameterAsTypeParameterConstraint.ts │ │ │ │ │ ├── typeParameterAsTypeParameterConstraint2.ts │ │ │ │ │ ├── typeParameterAsTypeParameterConstraintTransitively.ts │ │ │ │ │ ├── typeParameterAsTypeParameterConstraintTransitively2.ts │ │ │ │ │ ├── wrappedAndRecursiveConstraints.ts │ │ │ │ │ ├── wrappedAndRecursiveConstraints2.ts │ │ │ │ │ ├── wrappedAndRecursiveConstraints3.ts │ │ │ │ │ └── wrappedAndRecursiveConstraints4.ts │ │ │ │ ├── typeParameterAsBaseType.ts │ │ │ │ └── typeParameterLists/ │ │ │ │ ├── innerTypeParameterShadowingOuterOne.ts │ │ │ │ ├── innerTypeParameterShadowingOuterOne2.ts │ │ │ │ ├── propertyAccessOnTypeParameterWithConstraints.ts │ │ │ │ ├── propertyAccessOnTypeParameterWithConstraints2.ts │ │ │ │ ├── propertyAccessOnTypeParameterWithConstraints3.ts │ │ │ │ ├── propertyAccessOnTypeParameterWithConstraints4.ts │ │ │ │ ├── propertyAccessOnTypeParameterWithConstraints5.ts │ │ │ │ ├── propertyAccessOnTypeParameterWithoutConstraints.ts │ │ │ │ ├── staticMembersUsingClassTypeParameter.ts │ │ │ │ ├── typeParameterConstModifiers.ts │ │ │ │ ├── typeParameterConstModifiersReturnsAndYields.ts │ │ │ │ ├── typeParameterConstModifiersReverseMappedTypes.ts │ │ │ │ ├── typeParameterConstModifiersWithIntersection.ts │ │ │ │ ├── typeParameterDirectlyConstrainedToItself.ts │ │ │ │ ├── typeParameterIndirectlyConstrainedToItself.ts │ │ │ │ ├── typeParameterUsedAsConstraint.ts │ │ │ │ ├── typeParametersAvailableInNestedScope.ts │ │ │ │ ├── typeParametersAvailableInNestedScope2.ts │ │ │ │ ├── typeParametersAvailableInNestedScope3.ts │ │ │ │ ├── typesWithDuplicateTypeParameters.ts │ │ │ │ ├── varianceAnnotations.ts │ │ │ │ └── varianceAnnotationsWithCircularlyReferencesError.ts │ │ │ ├── typeRelationships/ │ │ │ │ ├── apparentType/ │ │ │ │ │ ├── apparentTypeSubtyping.ts │ │ │ │ │ └── apparentTypeSupertype.ts │ │ │ │ ├── assignmentCompatibility/ │ │ │ │ │ ├── anyAssignabilityInInheritance.ts │ │ │ │ │ ├── anyAssignableToEveryType.ts │ │ │ │ │ ├── anyAssignableToEveryType2.ts │ │ │ │ │ ├── assignmentCompatBetweenTupleAndArray.ts │ │ │ │ │ ├── assignmentCompatWithCallSignatures.ts │ │ │ │ │ ├── assignmentCompatWithCallSignatures2.ts │ │ │ │ │ ├── assignmentCompatWithCallSignatures3.ts │ │ │ │ │ ├── assignmentCompatWithCallSignatures4.ts │ │ │ │ │ ├── assignmentCompatWithCallSignatures5.ts │ │ │ │ │ ├── assignmentCompatWithCallSignatures6.ts │ │ │ │ │ ├── assignmentCompatWithCallSignaturesWithOptionalParameters.ts │ │ │ │ │ ├── assignmentCompatWithCallSignaturesWithRestParameters.ts │ │ │ │ │ ├── assignmentCompatWithConstructSignatures.ts │ │ │ │ │ ├── assignmentCompatWithConstructSignatures2.ts │ │ │ │ │ ├── assignmentCompatWithConstructSignatures3.ts │ │ │ │ │ ├── assignmentCompatWithConstructSignatures4.ts │ │ │ │ │ ├── assignmentCompatWithConstructSignatures5.ts │ │ │ │ │ ├── assignmentCompatWithConstructSignatures6.ts │ │ │ │ │ ├── assignmentCompatWithConstructSignaturesWithOptionalParameters.ts │ │ │ │ │ ├── assignmentCompatWithDiscriminatedUnion.ts │ │ │ │ │ ├── assignmentCompatWithEnumIndexer.ts │ │ │ │ │ ├── assignmentCompatWithGenericCallSignatures.ts │ │ │ │ │ ├── assignmentCompatWithGenericCallSignatures2.ts │ │ │ │ │ ├── assignmentCompatWithGenericCallSignatures3.ts │ │ │ │ │ ├── assignmentCompatWithGenericCallSignatures4.ts │ │ │ │ │ ├── assignmentCompatWithGenericCallSignaturesWithOptionalParameters.ts │ │ │ │ │ ├── assignmentCompatWithNumericIndexer.ts │ │ │ │ │ ├── assignmentCompatWithNumericIndexer2.ts │ │ │ │ │ ├── assignmentCompatWithNumericIndexer3.ts │ │ │ │ │ ├── assignmentCompatWithObjectMembers.ts │ │ │ │ │ ├── assignmentCompatWithObjectMembers2.ts │ │ │ │ │ ├── assignmentCompatWithObjectMembers3.ts │ │ │ │ │ ├── assignmentCompatWithObjectMembers4.ts │ │ │ │ │ ├── assignmentCompatWithObjectMembers5.ts │ │ │ │ │ ├── assignmentCompatWithObjectMembersAccessibility.ts │ │ │ │ │ ├── assignmentCompatWithObjectMembersNumericNames.ts │ │ │ │ │ ├── assignmentCompatWithObjectMembersOptionality.ts │ │ │ │ │ ├── assignmentCompatWithObjectMembersOptionality2.ts │ │ │ │ │ ├── assignmentCompatWithObjectMembersStringNumericNames.ts │ │ │ │ │ ├── assignmentCompatWithStringIndexer.ts │ │ │ │ │ ├── assignmentCompatWithStringIndexer2.ts │ │ │ │ │ ├── assignmentCompatWithStringIndexer3.ts │ │ │ │ │ ├── assignmentCompatWithWithGenericConstructSignatures.ts │ │ │ │ │ ├── callSignatureAssignabilityInInheritance.ts │ │ │ │ │ ├── callSignatureAssignabilityInInheritance2.ts │ │ │ │ │ ├── callSignatureAssignabilityInInheritance3.ts │ │ │ │ │ ├── callSignatureAssignabilityInInheritance4.ts │ │ │ │ │ ├── callSignatureAssignabilityInInheritance5.ts │ │ │ │ │ ├── callSignatureAssignabilityInInheritance6.ts │ │ │ │ │ ├── constructSignatureAssignabilityInInheritance.ts │ │ │ │ │ ├── constructSignatureAssignabilityInInheritance2.ts │ │ │ │ │ ├── constructSignatureAssignabilityInInheritance3.ts │ │ │ │ │ ├── constructSignatureAssignabilityInInheritance4.ts │ │ │ │ │ ├── constructSignatureAssignabilityInInheritance5.ts │ │ │ │ │ ├── constructSignatureAssignabilityInInheritance6.ts │ │ │ │ │ ├── covariantCallbacks.ts │ │ │ │ │ ├── enumAssignability.ts │ │ │ │ │ ├── enumAssignabilityInInheritance.ts │ │ │ │ │ ├── everyTypeAssignableToAny.ts │ │ │ │ │ ├── genericCallWithObjectTypeArgsAndInitializers.ts │ │ │ │ │ ├── intersectionIncludingPropFromGlobalAugmentation.ts │ │ │ │ │ ├── nullAssignableToEveryType.ts │ │ │ │ │ ├── nullAssignedToUndefined.ts │ │ │ │ │ ├── numberAssignableToEnum.ts │ │ │ │ │ ├── optionalPropertyAssignableToStringIndexSignature.ts │ │ │ │ │ ├── typeParameterAssignability.ts │ │ │ │ │ ├── typeParameterAssignability2.ts │ │ │ │ │ ├── typeParameterAssignability3.ts │ │ │ │ │ ├── undefinedAssignableToEveryType.ts │ │ │ │ │ └── unionTypesAssignability.ts │ │ │ │ ├── bestCommonType/ │ │ │ │ │ ├── arrayLiteralWithMultipleBestCommonTypes.ts │ │ │ │ │ ├── bestCommonTypeOfConditionalExpressions.ts │ │ │ │ │ ├── bestCommonTypeOfConditionalExpressions2.ts │ │ │ │ │ ├── bestCommonTypeOfTuple.ts │ │ │ │ │ ├── bestCommonTypeOfTuple2.ts │ │ │ │ │ ├── functionWithMultipleReturnStatements.ts │ │ │ │ │ ├── functionWithMultipleReturnStatements2.ts │ │ │ │ │ └── heterogeneousArrayLiterals.ts │ │ │ │ ├── comparable/ │ │ │ │ │ ├── equalityStrictNulls.ts │ │ │ │ │ ├── equalityWithEnumTypes.ts │ │ │ │ │ ├── equalityWithIntersectionTypes01.ts │ │ │ │ │ ├── equalityWithUnionTypes01.ts │ │ │ │ │ ├── equalityWithtNullishCoalescingAssignment.ts │ │ │ │ │ ├── independentPropertyVariance.ts │ │ │ │ │ ├── optionalProperties01.ts │ │ │ │ │ ├── optionalProperties02.ts │ │ │ │ │ ├── switchCaseWithIntersectionTypes01.ts │ │ │ │ │ ├── switchCaseWithUnionTypes01.ts │ │ │ │ │ ├── typeAssertionsWithIntersectionTypes01.ts │ │ │ │ │ ├── typeAssertionsWithUnionTypes01.ts │ │ │ │ │ └── weakTypesAndLiterals01.ts │ │ │ │ ├── instanceOf/ │ │ │ │ │ ├── narrowingConstrainedTypeVariable.ts │ │ │ │ │ └── narrowingGenericTypeFromInstanceof01.ts │ │ │ │ ├── recursiveTypes/ │ │ │ │ │ ├── arrayLiteralsWithRecursiveGenerics.ts │ │ │ │ │ ├── infiniteExpansionThroughInstantiation.ts │ │ │ │ │ ├── infiniteExpansionThroughInstantiation2.ts │ │ │ │ │ ├── infiniteExpansionThroughTypeInference.ts │ │ │ │ │ ├── nominalSubtypeCheckOfTypeParameter.ts │ │ │ │ │ ├── nominalSubtypeCheckOfTypeParameter2.ts │ │ │ │ │ ├── objectTypeWithRecursiveWrappedProperty.ts │ │ │ │ │ ├── objectTypeWithRecursiveWrappedProperty2.ts │ │ │ │ │ ├── objectTypeWithRecursiveWrappedPropertyCheckedNominally.ts │ │ │ │ │ ├── recursiveTypeInGenericConstraint.ts │ │ │ │ │ ├── recursiveTypeReferences1.ts │ │ │ │ │ ├── recursiveTypeReferences2.ts │ │ │ │ │ └── recursiveTypesUsedAsFunctionParameters.ts │ │ │ │ ├── subtypesAndSuperTypes/ │ │ │ │ │ ├── enumIsNotASubtypeOfAnythingButNumber.ts │ │ │ │ │ ├── nullIsSubtypeOfEverythingButUndefined.ts │ │ │ │ │ ├── stringLiteralTypeIsSubtypeOfString.ts │ │ │ │ │ ├── subtypesOfAny.ts │ │ │ │ │ ├── subtypesOfTypeParameter.ts │ │ │ │ │ ├── subtypesOfTypeParameterWithConstraints.ts │ │ │ │ │ ├── subtypesOfTypeParameterWithConstraints2.ts │ │ │ │ │ ├── subtypesOfTypeParameterWithConstraints3.ts │ │ │ │ │ ├── subtypesOfTypeParameterWithConstraints4.ts │ │ │ │ │ ├── subtypesOfTypeParameterWithRecursiveConstraints.ts │ │ │ │ │ ├── subtypesOfUnion.ts │ │ │ │ │ ├── subtypingWithCallSignatures.ts │ │ │ │ │ ├── subtypingWithCallSignatures2.ts │ │ │ │ │ ├── subtypingWithCallSignatures3.ts │ │ │ │ │ ├── subtypingWithCallSignatures4.ts │ │ │ │ │ ├── subtypingWithCallSignaturesA.ts │ │ │ │ │ ├── subtypingWithCallSignaturesWithOptionalParameters.ts │ │ │ │ │ ├── subtypingWithCallSignaturesWithRestParameters.ts │ │ │ │ │ ├── subtypingWithCallSignaturesWithSpecializedSignatures.ts │ │ │ │ │ ├── subtypingWithConstructSignatures.ts │ │ │ │ │ ├── subtypingWithConstructSignatures2.ts │ │ │ │ │ ├── subtypingWithConstructSignatures3.ts │ │ │ │ │ ├── subtypingWithConstructSignatures4.ts │ │ │ │ │ ├── subtypingWithConstructSignatures5.ts │ │ │ │ │ ├── subtypingWithConstructSignatures6.ts │ │ │ │ │ ├── subtypingWithConstructSignaturesWithOptionalParameters.ts │ │ │ │ │ ├── subtypingWithConstructSignaturesWithSpecializedSignatures.ts │ │ │ │ │ ├── subtypingWithGenericCallSignaturesWithOptionalParameters.ts │ │ │ │ │ ├── subtypingWithGenericConstructSignaturesWithOptionalParameters.ts │ │ │ │ │ ├── subtypingWithNumericIndexer.ts │ │ │ │ │ ├── subtypingWithNumericIndexer2.ts │ │ │ │ │ ├── subtypingWithNumericIndexer3.ts │ │ │ │ │ ├── subtypingWithNumericIndexer4.ts │ │ │ │ │ ├── subtypingWithNumericIndexer5.ts │ │ │ │ │ ├── subtypingWithObjectMembers.ts │ │ │ │ │ ├── subtypingWithObjectMembers2.ts │ │ │ │ │ ├── subtypingWithObjectMembers3.ts │ │ │ │ │ ├── subtypingWithObjectMembers4.ts │ │ │ │ │ ├── subtypingWithObjectMembers5.ts │ │ │ │ │ ├── subtypingWithObjectMembersAccessibility.ts │ │ │ │ │ ├── subtypingWithObjectMembersAccessibility2.ts │ │ │ │ │ ├── subtypingWithObjectMembersOptionality.ts │ │ │ │ │ ├── subtypingWithObjectMembersOptionality2.ts │ │ │ │ │ ├── subtypingWithObjectMembersOptionality3.ts │ │ │ │ │ ├── subtypingWithObjectMembersOptionality4.ts │ │ │ │ │ ├── subtypingWithOptionalProperties.ts │ │ │ │ │ ├── subtypingWithStringIndexer.ts │ │ │ │ │ ├── subtypingWithStringIndexer2.ts │ │ │ │ │ ├── subtypingWithStringIndexer3.ts │ │ │ │ │ ├── subtypingWithStringIndexer4.ts │ │ │ │ │ ├── undefinedIsSubtypeOfEverything.ts │ │ │ │ │ └── unionSubtypeIfEveryConstituentTypeIsSubtype.ts │ │ │ │ ├── typeAndMemberIdentity/ │ │ │ │ │ ├── objectTypesIdentity.ts │ │ │ │ │ ├── objectTypesIdentity2.ts │ │ │ │ │ ├── objectTypesIdentityWithCallSignatures.ts │ │ │ │ │ ├── objectTypesIdentityWithCallSignatures2.ts │ │ │ │ │ ├── objectTypesIdentityWithCallSignatures3.ts │ │ │ │ │ ├── objectTypesIdentityWithCallSignaturesDifferingParamCounts.ts │ │ │ │ │ ├── objectTypesIdentityWithCallSignaturesDifferingParamCounts2.ts │ │ │ │ │ ├── objectTypesIdentityWithCallSignaturesWithOverloads.ts │ │ │ │ │ ├── objectTypesIdentityWithComplexConstraints.ts │ │ │ │ │ ├── objectTypesIdentityWithConstructSignatures.ts │ │ │ │ │ ├── objectTypesIdentityWithConstructSignatures2.ts │ │ │ │ │ ├── objectTypesIdentityWithConstructSignaturesDifferingParamCounts.ts │ │ │ │ │ ├── objectTypesIdentityWithGenericCallSignatures.ts │ │ │ │ │ ├── objectTypesIdentityWithGenericCallSignatures2.ts │ │ │ │ │ ├── objectTypesIdentityWithGenericCallSignaturesDifferingByConstraints.ts │ │ │ │ │ ├── objectTypesIdentityWithGenericCallSignaturesDifferingByConstraints2.ts │ │ │ │ │ ├── objectTypesIdentityWithGenericCallSignaturesDifferingByConstraints3.ts │ │ │ │ │ ├── objectTypesIdentityWithGenericCallSignaturesDifferingByReturnType.ts │ │ │ │ │ ├── objectTypesIdentityWithGenericCallSignaturesDifferingByReturnType2.ts │ │ │ │ │ ├── objectTypesIdentityWithGenericCallSignaturesDifferingTypeParameterCounts.ts │ │ │ │ │ ├── objectTypesIdentityWithGenericCallSignaturesDifferingTypeParameterCounts2.ts │ │ │ │ │ ├── objectTypesIdentityWithGenericCallSignaturesDifferingTypeParameterNames.ts │ │ │ │ │ ├── objectTypesIdentityWithGenericCallSignaturesOptionalParams.ts │ │ │ │ │ ├── objectTypesIdentityWithGenericCallSignaturesOptionalParams2.ts │ │ │ │ │ ├── objectTypesIdentityWithGenericCallSignaturesOptionalParams3.ts │ │ │ │ │ ├── objectTypesIdentityWithGenericConstructSignaturesDifferingByConstraints.ts │ │ │ │ │ ├── objectTypesIdentityWithGenericConstructSignaturesDifferingByConstraints2.ts │ │ │ │ │ ├── objectTypesIdentityWithGenericConstructSignaturesDifferingByConstraints3.ts │ │ │ │ │ ├── objectTypesIdentityWithGenericConstructSignaturesDifferingByReturnType.ts │ │ │ │ │ ├── objectTypesIdentityWithGenericConstructSignaturesDifferingByReturnType2.ts │ │ │ │ │ ├── objectTypesIdentityWithGenericConstructSignaturesDifferingTypeParameterCounts.ts │ │ │ │ │ ├── objectTypesIdentityWithGenericConstructSignaturesDifferingTypeParameterNames.ts │ │ │ │ │ ├── objectTypesIdentityWithGenericConstructSignaturesOptionalParams.ts │ │ │ │ │ ├── objectTypesIdentityWithGenericConstructSignaturesOptionalParams2.ts │ │ │ │ │ ├── objectTypesIdentityWithGenericConstructSignaturesOptionalParams3.ts │ │ │ │ │ ├── objectTypesIdentityWithNumericIndexers1.ts │ │ │ │ │ ├── objectTypesIdentityWithNumericIndexers2.ts │ │ │ │ │ ├── objectTypesIdentityWithNumericIndexers3.ts │ │ │ │ │ ├── objectTypesIdentityWithOptionality.ts │ │ │ │ │ ├── objectTypesIdentityWithPrivates.ts │ │ │ │ │ ├── objectTypesIdentityWithPrivates2.ts │ │ │ │ │ ├── objectTypesIdentityWithPrivates3.ts │ │ │ │ │ ├── objectTypesIdentityWithPublics.ts │ │ │ │ │ ├── objectTypesIdentityWithStringIndexers.ts │ │ │ │ │ ├── objectTypesIdentityWithStringIndexers2.ts │ │ │ │ │ ├── primtiveTypesAreIdentical.ts │ │ │ │ │ ├── typeParametersAreIdenticalToThemselves.ts │ │ │ │ │ └── unionTypeIdentity.ts │ │ │ │ ├── typeInference/ │ │ │ │ │ ├── bivariantInferences.ts │ │ │ │ │ ├── contextualSignatureInstantiation.ts │ │ │ │ │ ├── discriminatedUnionInference.ts │ │ │ │ │ ├── genericCallToOverloadedMethodWithOverloadedArguments.ts │ │ │ │ │ ├── genericCallTypeArgumentInference.ts │ │ │ │ │ ├── genericCallWithArrayLiteralArgs.ts │ │ │ │ │ ├── genericCallWithConstraintsTypeArgumentInference.ts │ │ │ │ │ ├── genericCallWithConstraintsTypeArgumentInference2.ts │ │ │ │ │ ├── genericCallWithConstructorTypedArguments5.ts │ │ │ │ │ ├── genericCallWithFunctionTypedArguments.ts │ │ │ │ │ ├── genericCallWithFunctionTypedArguments2.ts │ │ │ │ │ ├── genericCallWithFunctionTypedArguments3.ts │ │ │ │ │ ├── genericCallWithFunctionTypedArguments4.ts │ │ │ │ │ ├── genericCallWithFunctionTypedArguments5.ts │ │ │ │ │ ├── genericCallWithGenericSignatureArguments.ts │ │ │ │ │ ├── genericCallWithGenericSignatureArguments2.ts │ │ │ │ │ ├── genericCallWithGenericSignatureArguments3.ts │ │ │ │ │ ├── genericCallWithNonSymmetricSubtypes.ts │ │ │ │ │ ├── genericCallWithObjectLiteralArgs.ts │ │ │ │ │ ├── genericCallWithObjectTypeArgs.ts │ │ │ │ │ ├── genericCallWithObjectTypeArgs2.ts │ │ │ │ │ ├── genericCallWithObjectTypeArgsAndConstraints.ts │ │ │ │ │ ├── genericCallWithObjectTypeArgsAndConstraints2.ts │ │ │ │ │ ├── genericCallWithObjectTypeArgsAndConstraints3.ts │ │ │ │ │ ├── genericCallWithObjectTypeArgsAndConstraints4.ts │ │ │ │ │ ├── genericCallWithObjectTypeArgsAndConstraints5.ts │ │ │ │ │ ├── genericCallWithObjectTypeArgsAndIndexers.ts │ │ │ │ │ ├── genericCallWithObjectTypeArgsAndIndexersErrors.ts │ │ │ │ │ ├── genericCallWithObjectTypeArgsAndNumericIndexer.ts │ │ │ │ │ ├── genericCallWithObjectTypeArgsAndStringIndexer.ts │ │ │ │ │ ├── genericCallWithOverloadedConstructorTypedArguments.ts │ │ │ │ │ ├── genericCallWithOverloadedConstructorTypedArguments2.ts │ │ │ │ │ ├── genericCallWithOverloadedFunctionTypedArguments.ts │ │ │ │ │ ├── genericCallWithOverloadedFunctionTypedArguments2.ts │ │ │ │ │ ├── genericCallWithTupleType.ts │ │ │ │ │ ├── genericClassWithFunctionTypedMemberArguments.ts │ │ │ │ │ ├── genericClassWithObjectTypeArgsAndConstraints.ts │ │ │ │ │ ├── genericContextualTypes1.ts │ │ │ │ │ ├── genericContextualTypes2.ts │ │ │ │ │ ├── genericContextualTypes3.ts │ │ │ │ │ ├── genericFunctionParameters.ts │ │ │ │ │ ├── indexSignatureTypeInference.ts │ │ │ │ │ ├── intraExpressionInferences.ts │ │ │ │ │ ├── intraExpressionInferencesJsx.tsx │ │ │ │ │ ├── keyofInferenceIntersectsResults.ts │ │ │ │ │ ├── keyofInferenceLowerPriorityThanReturn.ts │ │ │ │ │ ├── noInfer.ts │ │ │ │ │ ├── noInferRedeclaration.ts │ │ │ │ │ ├── unionAndIntersectionInference1.ts │ │ │ │ │ ├── unionAndIntersectionInference2.ts │ │ │ │ │ ├── unionAndIntersectionInference3.ts │ │ │ │ │ └── unionTypeInference.ts │ │ │ │ └── widenedTypes/ │ │ │ │ ├── arrayLiteralWidened.ts │ │ │ │ ├── initializersWidened.ts │ │ │ │ ├── objectLiteralWidened.ts │ │ │ │ └── strictNullChecksNoWidening.ts │ │ │ ├── union/ │ │ │ │ ├── contextualTypeWithUnionTypeCallSignatures.ts │ │ │ │ ├── contextualTypeWithUnionTypeIndexSignatures.ts │ │ │ │ ├── contextualTypeWithUnionTypeMembers.ts │ │ │ │ ├── contextualTypeWithUnionTypeObjectLiteral.ts │ │ │ │ ├── discriminatedUnionTypes1.ts │ │ │ │ ├── discriminatedUnionTypes2.ts │ │ │ │ ├── discriminatedUnionTypes3.ts │ │ │ │ ├── discriminatedUnionTypes4.ts │ │ │ │ ├── unionTypeCallSignatures.ts │ │ │ │ ├── unionTypeCallSignatures2.ts │ │ │ │ ├── unionTypeCallSignatures3.ts │ │ │ │ ├── unionTypeCallSignatures4.ts │ │ │ │ ├── unionTypeCallSignatures5.ts │ │ │ │ ├── unionTypeCallSignatures6.ts │ │ │ │ ├── unionTypeCallSignatures7.ts │ │ │ │ ├── unionTypeConstructSignatures.ts │ │ │ │ ├── unionTypeEquivalence.ts │ │ │ │ ├── unionTypeFromArrayLiteral.ts │ │ │ │ ├── unionTypeIndexSignature.ts │ │ │ │ ├── unionTypeMembers.ts │ │ │ │ ├── unionTypePropertyAccessibility.ts │ │ │ │ ├── unionTypeReadonly.ts │ │ │ │ ├── unionTypeReduction.ts │ │ │ │ ├── unionTypeReduction2.ts │ │ │ │ └── unionTypeWithIndexSignature.ts │ │ │ ├── uniqueSymbol/ │ │ │ │ ├── uniqueSymbols.ts │ │ │ │ ├── uniqueSymbolsDeclarations.ts │ │ │ │ ├── uniqueSymbolsDeclarationsErrors.ts │ │ │ │ ├── uniqueSymbolsDeclarationsInJs.ts │ │ │ │ ├── uniqueSymbolsDeclarationsInJsErrors.ts │ │ │ │ ├── uniqueSymbolsErrors.ts │ │ │ │ └── uniqueSymbolsPropertyNames.ts │ │ │ ├── unknown/ │ │ │ │ ├── unknownControlFlow.ts │ │ │ │ ├── unknownType1.ts │ │ │ │ └── unknownType2.ts │ │ │ └── witness/ │ │ │ └── witness.ts │ │ └── typings/ │ │ ├── typingsLookup1.ts │ │ ├── typingsLookup2.ts │ │ ├── typingsLookup3.ts │ │ ├── typingsLookup4.ts │ │ ├── typingsLookupAmd.ts │ │ ├── typingsSuggestion1.ts │ │ ├── typingsSuggestion2.ts │ │ ├── typingsSuggestionBun1.ts │ │ └── typingsSuggestionBun2.ts │ ├── fourslash/ │ │ ├── addAllMissingImportsNoCrash.ts │ │ ├── addAllMissingImportsNoCrash2.ts │ │ ├── addDeclareToFunction.ts │ │ ├── addDeclareToModule.ts │ │ ├── addDuplicateSetter.ts │ │ ├── addFunctionAboveMultiLineLambdaExpression.ts │ │ ├── addFunctionInDuplicatedConstructorClassBody.ts │ │ ├── addInterfaceMemberAboveClass.ts │ │ ├── addInterfaceToNotSatisfyConstraint.ts │ │ ├── addMemberInDeclarationFile.ts │ │ ├── addMemberNotInNodeModulesDeclarationFile.ts │ │ ├── addMemberToInterface.ts │ │ ├── addMemberToModule.ts │ │ ├── addMethodToInterface1.ts │ │ ├── addSignaturePartial.ts │ │ ├── addVarToConstructor1.ts │ │ ├── aliasMergingWithNamespace.ts │ │ ├── aliasToVarUsedAsType.ts │ │ ├── alignmentAfterFormattingOnMultilineExpressionAndParametersList.ts │ │ ├── allowLateBoundSymbolsOverwriteEarlyBoundSymbols.ts │ │ ├── ambientShorthandFindAllRefs.ts │ │ ├── ambientShorthandGotoDefinition.ts │ │ ├── ambientVariablesWithSameName.ts │ │ ├── annotateWithTypeFromJSDoc1.ts │ │ ├── annotateWithTypeFromJSDoc10.ts │ │ ├── annotateWithTypeFromJSDoc11.ts │ │ ├── annotateWithTypeFromJSDoc12.ts │ │ ├── annotateWithTypeFromJSDoc13.ts │ │ ├── annotateWithTypeFromJSDoc14.ts │ │ ├── annotateWithTypeFromJSDoc15.ts │ │ ├── annotateWithTypeFromJSDoc16.ts │ │ ├── annotateWithTypeFromJSDoc17.ts │ │ ├── annotateWithTypeFromJSDoc18.ts │ │ ├── annotateWithTypeFromJSDoc19.ts │ │ ├── annotateWithTypeFromJSDoc2.ts │ │ ├── annotateWithTypeFromJSDoc20.ts │ │ ├── annotateWithTypeFromJSDoc21.ts │ │ ├── annotateWithTypeFromJSDoc22.ts │ │ ├── annotateWithTypeFromJSDoc23.ts │ │ ├── annotateWithTypeFromJSDoc24.ts │ │ ├── annotateWithTypeFromJSDoc25.ts │ │ ├── annotateWithTypeFromJSDoc26.ts │ │ ├── annotateWithTypeFromJSDoc3.ts │ │ ├── annotateWithTypeFromJSDoc4.ts │ │ ├── annotateWithTypeFromJSDoc5.ts │ │ ├── annotateWithTypeFromJSDoc6.ts │ │ ├── annotateWithTypeFromJSDoc7.ts │ │ ├── annotateWithTypeFromJSDoc8.ts │ │ ├── annotateWithTypeFromJSDoc9.5.ts │ │ ├── annotateWithTypeFromJSDoc9.ts │ │ ├── annotateWithTypeFromJSDoc_all.ts │ │ ├── arbitraryModuleNamespaceIdentifiers_types.ts │ │ ├── arbitraryModuleNamespaceIdentifiers_values.ts │ │ ├── argumentsAreAvailableAfterEditsAtEndOfFunction.ts │ │ ├── argumentsIndexExpression.ts │ │ ├── arityErrorAfterSignatureHelp.ts │ │ ├── arityErrorAfterStringCompletions.ts │ │ ├── arrayCallAndConstructTypings.ts │ │ ├── arrayConcatTypeCheck0.ts │ │ ├── arrayConcatTypeCheck1.ts │ │ ├── asConstRefsNoErrors1.ts │ │ ├── asConstRefsNoErrors2.ts │ │ ├── asConstRefsNoErrors3.ts │ │ ├── asOperatorCompletion.ts │ │ ├── asOperatorCompletion2.ts │ │ ├── asOperatorCompletion3.ts │ │ ├── asOperatorFormatting.ts │ │ ├── assertContextualType.ts │ │ ├── augmentedTypesClass1.ts │ │ ├── augmentedTypesClass3Fourslash.ts │ │ ├── augmentedTypesModule1.ts │ │ ├── augmentedTypesModule2.ts │ │ ├── augmentedTypesModule3.ts │ │ ├── augmentedTypesModule4.ts │ │ ├── augmentedTypesModule5.ts │ │ ├── augmentedTypesModule6.ts │ │ ├── autoCloseFragment.ts │ │ ├── autoCloseTag.ts │ │ ├── autoFormattingOnPasting.ts │ │ ├── autoImportAllowImportingTsExtensionsPackageJsonImports1.ts │ │ ├── autoImportAllowImportingTsExtensionsPackageJsonImports2.ts │ │ ├── autoImportAllowTsExtensions1.ts │ │ ├── autoImportAllowTsExtensions2.ts │ │ ├── autoImportAllowTsExtensions3.ts │ │ ├── autoImportAllowTsExtensions4.ts │ │ ├── autoImportBundlerBlockRelativeNodeModulesPaths.ts │ │ ├── autoImportBundlerExports.ts │ │ ├── autoImportCompletionAmbientMergedModule1.ts │ │ ├── autoImportCompletionExportEqualsWithDefault1.ts │ │ ├── autoImportCompletionExportListAugmentation1.ts │ │ ├── autoImportCompletionExportListAugmentation2.ts │ │ ├── autoImportCompletionExportListAugmentation3.ts │ │ ├── autoImportCompletionExportListAugmentation4.ts │ │ ├── autoImportFileExcludePatterns1.ts │ │ ├── autoImportFileExcludePatterns10.ts │ │ ├── autoImportFileExcludePatterns11.ts │ │ ├── autoImportFileExcludePatterns12.ts │ │ ├── autoImportFileExcludePatterns13.ts │ │ ├── autoImportFileExcludePatterns2.ts │ │ ├── autoImportFileExcludePatterns3.ts │ │ ├── autoImportFileExcludePatterns4.ts │ │ ├── autoImportFileExcludePatterns5.ts │ │ ├── autoImportFileExcludePatterns6.ts │ │ ├── autoImportFileExcludePatterns7.ts │ │ ├── autoImportFileExcludePatterns8.ts │ │ ├── autoImportFileExcludePatterns9.ts │ │ ├── autoImportJsDocImport1.ts │ │ ├── autoImportModuleNone1.ts │ │ ├── autoImportModuleNone2.ts │ │ ├── autoImportNoPackageJson_commonjs.ts │ │ ├── autoImportNoPackageJson_nodenext.ts │ │ ├── autoImportNodeNextJSRequire.ts │ │ ├── autoImportPackageJsonExportsSpecifierEndsInTs.ts │ │ ├── autoImportPackageJsonImportsCaseSensitivity.ts │ │ ├── autoImportPackageJsonImportsConditions.ts │ │ ├── autoImportPackageJsonImportsLength1.ts │ │ ├── autoImportPackageJsonImportsLength2.ts │ │ ├── autoImportPackageJsonImportsPattern.ts │ │ ├── autoImportPackageJsonImportsPattern_js.ts │ │ ├── autoImportPackageJsonImportsPattern_js_ts.ts │ │ ├── autoImportPackageJsonImportsPattern_ts.ts │ │ ├── autoImportPackageJsonImportsPattern_ts_js.ts │ │ ├── autoImportPackageJsonImportsPattern_ts_ts.ts │ │ ├── autoImportPackageJsonImportsPreference1.ts │ │ ├── autoImportPackageJsonImportsPreference2.ts │ │ ├── autoImportPackageJsonImportsPreference3.ts │ │ ├── autoImportPackageJsonImports_capsInPath1.ts │ │ ├── autoImportPackageJsonImports_capsInPath2.ts │ │ ├── autoImportPackageJsonImports_js.ts │ │ ├── autoImportPackageJsonImports_ts.ts │ │ ├── autoImportPackageRootPath.ts │ │ ├── autoImportPackageRootPathExtension.ts │ │ ├── autoImportPackageRootPathTypeModule.ts │ │ ├── autoImportPaths.ts │ │ ├── autoImportPathsAliasesAndBarrels.ts │ │ ├── autoImportPathsConfigDir.ts │ │ ├── autoImportPathsNodeModules.ts │ │ ├── autoImportPnpm.ts │ │ ├── autoImportRootDirs.ts │ │ ├── autoImportSameNameDefaultExported.ts │ │ ├── autoImportSortCaseSensitivity1.ts │ │ ├── autoImportSortCaseSensitivity2.ts │ │ ├── autoImportSpecifierExcludeRegexes1.ts │ │ ├── autoImportSpecifierExcludeRegexes2.ts │ │ ├── autoImportSpecifierExcludeRegexes3.ts │ │ ├── autoImportSymlinkCaseSensitive.ts │ │ ├── autoImportTypeImport1.ts │ │ ├── autoImportTypeImport2.ts │ │ ├── autoImportTypeImport3.ts │ │ ├── autoImportTypeImport4.ts │ │ ├── autoImportTypeImport5.ts │ │ ├── autoImportTypeOnlyPreferred1.ts │ │ ├── autoImportTypeOnlyPreferred2.ts │ │ ├── autoImportTypeOnlyPreferred3.ts │ │ ├── autoImportVerbatimCJS1.ts │ │ ├── autoImportVerbatimTypeOnly1.ts │ │ ├── autoImport_node12_node_modules1.ts │ │ ├── autoImportsCustomConditions.ts │ │ ├── autoImportsNodeNext1.ts │ │ ├── autoImportsWithRootDirsAndRootedPath01.ts │ │ ├── automaticConstructorToggling.ts │ │ ├── basicClassMembers.ts │ │ ├── bestCommonTypeObjectLiterals.ts │ │ ├── bestCommonTypeObjectLiterals1.ts │ │ ├── breakpointValidationArrayLiteralExpressions.ts │ │ ├── breakpointValidationBinaryExpressions.ts │ │ ├── breakpointValidationBreakOrContinue.ts │ │ ├── breakpointValidationClass.ts │ │ ├── breakpointValidationClassAmbient.ts │ │ ├── breakpointValidationClasses.ts │ │ ├── breakpointValidationConditionalExpressions.ts │ │ ├── breakpointValidationConst.ts │ │ ├── breakpointValidationDebugger.ts │ │ ├── breakpointValidationDecorators.ts │ │ ├── breakpointValidationDestructuringAssignmentForArrayBindingPattern.ts │ │ ├── breakpointValidationDestructuringAssignmentForArrayBindingPatternDefaultValues.ts │ │ ├── breakpointValidationDestructuringAssignmentForObjectBindingPattern.ts │ │ ├── breakpointValidationDestructuringAssignmentForObjectBindingPatternDefaultValues.ts │ │ ├── breakpointValidationDestructuringAssignmentForOfArrayBindingPattern.ts │ │ ├── breakpointValidationDestructuringAssignmentForOfArrayBindingPatternDefaultValues.ts │ │ ├── breakpointValidationDestructuringAssignmentForOfObjectBindingPattern.ts │ │ ├── breakpointValidationDestructuringAssignmentForOfObjectBindingPatternDefaultValues.ts │ │ ├── breakpointValidationDestructuringAssignmentStatementArrayBindingPattern.ts │ │ ├── breakpointValidationDestructuringAssignmentStatementArrayBindingPatternDefaultValues.ts │ │ ├── breakpointValidationDestructuringForArrayBindingPattern.ts │ │ ├── breakpointValidationDestructuringForArrayBindingPatternDefaultValues.ts │ │ ├── breakpointValidationDestructuringForObjectBindingPattern.ts │ │ ├── breakpointValidationDestructuringForObjectBindingPatternDefaultValues.ts │ │ ├── breakpointValidationDestructuringForOfArrayBindingPattern.ts │ │ ├── breakpointValidationDestructuringForOfArrayBindingPatternDefaultValues.ts │ │ ├── breakpointValidationDestructuringForOfObjectBindingPattern.ts │ │ ├── breakpointValidationDestructuringForOfObjectBindingPatternDefaultValues.ts │ │ ├── breakpointValidationDestructuringParameterArrayBindingPattern.ts │ │ ├── breakpointValidationDestructuringParameterArrayBindingPattern2.ts │ │ ├── breakpointValidationDestructuringParameterArrayBindingPatternDefaultValues.ts │ │ ├── breakpointValidationDestructuringParameterArrayBindingPatternDefaultValues2.ts │ │ ├── breakpointValidationDestructuringParameterNestedObjectBindingPattern.ts │ │ ├── breakpointValidationDestructuringParameterNestedObjectBindingPatternDefaultValues.ts │ │ ├── breakpointValidationDestructuringParameterObjectBindingPattern.ts │ │ ├── breakpointValidationDestructuringParameterObjectBindingPatternDefaultValues.ts │ │ ├── breakpointValidationDestructuringVariableStatement.ts │ │ ├── breakpointValidationDestructuringVariableStatement1.ts │ │ ├── breakpointValidationDestructuringVariableStatementArrayBindingPattern.ts │ │ ├── breakpointValidationDestructuringVariableStatementArrayBindingPattern2.ts │ │ ├── breakpointValidationDestructuringVariableStatementArrayBindingPatternDefaultValues.ts │ │ ├── breakpointValidationDestructuringVariableStatementArrayBindingPatternDefaultValues2.ts │ │ ├── breakpointValidationDestructuringVariableStatementDefaultValues.ts │ │ ├── breakpointValidationDestructuringVariableStatementNestedObjectBindingPattern.ts │ │ ├── breakpointValidationDestructuringVariableStatementNestedObjectBindingPatternWithDefaultValues.ts │ │ ├── breakpointValidationDo.ts │ │ ├── breakpointValidationEnums.ts │ │ ├── breakpointValidationExportAssignment.ts │ │ ├── breakpointValidationExports.ts │ │ ├── breakpointValidationFor.ts │ │ ├── breakpointValidationForIn.ts │ │ ├── breakpointValidationFunctionExpressions.ts │ │ ├── breakpointValidationFunctions.ts │ │ ├── breakpointValidationIfElse.ts │ │ ├── breakpointValidationImport.ts │ │ ├── breakpointValidationImports.ts │ │ ├── breakpointValidationInBlankLine.ts │ │ ├── breakpointValidationInComments.ts │ │ ├── breakpointValidationInterface.ts │ │ ├── breakpointValidationLabeled.ts │ │ ├── breakpointValidationLet.ts │ │ ├── breakpointValidationModule.ts │ │ ├── breakpointValidationModuleAmbient.ts │ │ ├── breakpointValidationModuleEmpty.ts │ │ ├── breakpointValidationObjectLiteralExpressions.ts │ │ ├── breakpointValidationParenCallOrNewExpressions.ts │ │ ├── breakpointValidationStatements.ts │ │ ├── breakpointValidationSwitch.ts │ │ ├── breakpointValidationTryCatchFinally.ts │ │ ├── breakpointValidationTypeAlias.ts │ │ ├── breakpointValidationTypeAssertionExpressions.ts │ │ ├── breakpointValidationUnaryExpressions.ts │ │ ├── breakpointValidationVariables.ts │ │ ├── breakpointValidationWhile.ts │ │ ├── breakpointValidationWith.ts │ │ ├── brokenClassErrorRecovery.ts │ │ ├── callHierarchyAccessor.ts │ │ ├── callHierarchyCallExpressionByConstNamedFunctionExpression.ts │ │ ├── callHierarchyClass.ts │ │ ├── callHierarchyClassPropertyArrowFunction.ts │ │ ├── callHierarchyClassStaticBlock.ts │ │ ├── callHierarchyClassStaticBlock2.ts │ │ ├── callHierarchyConstNamedArrowFunction.ts │ │ ├── callHierarchyConstNamedClassExpression.ts │ │ ├── callHierarchyConstNamedFunctionExpression.ts │ │ ├── callHierarchyContainerName.ts │ │ ├── callHierarchyCrossFile.ts │ │ ├── callHierarchyDecorator.ts │ │ ├── callHierarchyExportDefaultClass.ts │ │ ├── callHierarchyExportDefaultFunction.ts │ │ ├── callHierarchyExportEqualsFunction.ts │ │ ├── callHierarchyFile.ts │ │ ├── callHierarchyFunction.ts │ │ ├── callHierarchyFunctionAmbiguity.1.ts │ │ ├── callHierarchyFunctionAmbiguity.2.ts │ │ ├── callHierarchyFunctionAmbiguity.3.ts │ │ ├── callHierarchyFunctionAmbiguity.4.ts │ │ ├── callHierarchyFunctionAmbiguity.5.ts │ │ ├── callHierarchyInterfaceMethod.ts │ │ ├── callHierarchyJsxElement.ts │ │ ├── callHierarchyTaggedTemplate.ts │ │ ├── callSignatureHelp.ts │ │ ├── calledUnionsOfDissimilarTyeshaveGoodDisplay.ts │ │ ├── cancellationWhenfindingAllRefsOnDefinition.ts │ │ ├── chainedFatArrowFormatting.ts │ │ ├── chainedFunctionFunctionArgIndent.ts │ │ ├── chainedFunctionLambdaArgIndex.ts │ │ ├── circularGetTypeAtLocation.ts │ │ ├── classExtendsInterfaceSigHelp1.ts │ │ ├── classInterfaceInsert.ts │ │ ├── classRenamingErrorRecovery.ts │ │ ├── classSymbolLookup.ts │ │ ├── classifyThisParameter.ts │ │ ├── cloduleAsBaseClass.ts │ │ ├── cloduleAsBaseClass2.ts │ │ ├── cloduleTypeOf1.ts │ │ ├── closedCommentsInConstructor.ts │ │ ├── codeCompletionEscaping.ts │ │ ├── codeFixAddAllParameterNames.ts │ │ ├── codeFixAddConvertToUnknownForNonOverlappingTypes1.ts │ │ ├── codeFixAddConvertToUnknownForNonOverlappingTypes2.ts │ │ ├── codeFixAddConvertToUnknownForNonOverlappingTypes3.ts │ │ ├── codeFixAddConvertToUnknownForNonOverlappingTypes4.ts │ │ ├── codeFixAddConvertToUnknownForNonOverlappingTypes5.ts │ │ ├── codeFixAddConvertToUnknownForNonOverlappingTypes6.ts │ │ ├── codeFixAddConvertToUnknownForNonOverlappingTypes7.ts │ │ ├── codeFixAddConvertToUnknownForNonOverlappingTypes8.ts │ │ ├── codeFixAddConvertToUnknownForNonOverlappingTypes9.ts │ │ ├── codeFixAddConvertToUnknownForNonOverlappingTypes_all.ts │ │ ├── codeFixAddMissingAsync.ts │ │ ├── codeFixAddMissingAsync2.ts │ │ ├── codeFixAddMissingAsync3.ts │ │ ├── codeFixAddMissingAttributes1.ts │ │ ├── codeFixAddMissingAttributes10.ts │ │ ├── codeFixAddMissingAttributes2.ts │ │ ├── codeFixAddMissingAttributes3.ts │ │ ├── codeFixAddMissingAttributes4.ts │ │ ├── codeFixAddMissingAttributes5.ts │ │ ├── codeFixAddMissingAttributes6.ts │ │ ├── codeFixAddMissingAttributes7.ts │ │ ├── codeFixAddMissingAttributes8.ts │ │ ├── codeFixAddMissingAttributes9.ts │ │ ├── codeFixAddMissingAttributes_all.ts │ │ ├── codeFixAddMissingAwait_argument.ts │ │ ├── codeFixAddMissingAwait_binaryExpressions.ts │ │ ├── codeFixAddMissingAwait_condition.ts │ │ ├── codeFixAddMissingAwait_forAwaitOf.ts │ │ ├── codeFixAddMissingAwait_initializer1.ts │ │ ├── codeFixAddMissingAwait_initializer2.ts │ │ ├── codeFixAddMissingAwait_initializer3.ts │ │ ├── codeFixAddMissingAwait_initializer4.ts │ │ ├── codeFixAddMissingAwait_iterables.ts │ │ ├── codeFixAddMissingAwait_notAvailableWithoutPromise.ts │ │ ├── codeFixAddMissingAwait_propertyAccess.ts │ │ ├── codeFixAddMissingAwait_propertyAccess2.ts │ │ ├── codeFixAddMissingAwait_signatures.ts │ │ ├── codeFixAddMissingAwait_signatures2.ts │ │ ├── codeFixAddMissingAwait_topLevel.ts │ │ ├── codeFixAddMissingConstInForInLoop1.ts │ │ ├── codeFixAddMissingConstInForInLoop2.ts │ │ ├── codeFixAddMissingConstInForLoopWithArrayDestructuring1.ts │ │ ├── codeFixAddMissingConstInForLoopWithArrayDestructuring2.ts │ │ ├── codeFixAddMissingConstInForLoopWithObjectDestructuring1.ts │ │ ├── codeFixAddMissingConstInForLoopWithObjectDestructuring2.ts │ │ ├── codeFixAddMissingConstInForOfLoop1.ts │ │ ├── codeFixAddMissingConstInForOfLoop2.ts │ │ ├── codeFixAddMissingConstPreservingIndentation1.ts │ │ ├── codeFixAddMissingConstPreservingIndentation2.ts │ │ ├── codeFixAddMissingConstToArrayDestructuring1.ts │ │ ├── codeFixAddMissingConstToArrayDestructuring2.ts │ │ ├── codeFixAddMissingConstToArrayDestructuring3.ts │ │ ├── codeFixAddMissingConstToArrayDestructuring4.ts │ │ ├── codeFixAddMissingConstToCommaSeparatedInitializer1.ts │ │ ├── codeFixAddMissingConstToCommaSeparatedInitializer2.ts │ │ ├── codeFixAddMissingConstToCommaSeparatedInitializer3.ts │ │ ├── codeFixAddMissingConstToCommaSeparatedInitializer4.ts │ │ ├── codeFixAddMissingConstToStandaloneIdentifier1.ts │ │ ├── codeFixAddMissingDeclareProperty.ts │ │ ├── codeFixAddMissingDeclareProperty2.ts │ │ ├── codeFixAddMissingEnumMember1.ts │ │ ├── codeFixAddMissingEnumMember10.ts │ │ ├── codeFixAddMissingEnumMember11.ts │ │ ├── codeFixAddMissingEnumMember12.ts │ │ ├── codeFixAddMissingEnumMember13.ts │ │ ├── codeFixAddMissingEnumMember14.ts │ │ ├── codeFixAddMissingEnumMember15.ts │ │ ├── codeFixAddMissingEnumMember2.ts │ │ ├── codeFixAddMissingEnumMember3.ts │ │ ├── codeFixAddMissingEnumMember4.ts │ │ ├── codeFixAddMissingEnumMember5.ts │ │ ├── codeFixAddMissingEnumMember6.ts │ │ ├── codeFixAddMissingEnumMember7.ts │ │ ├── codeFixAddMissingEnumMember8.ts │ │ ├── codeFixAddMissingEnumMember9.ts │ │ ├── codeFixAddMissingFunctionDeclaration1.ts │ │ ├── codeFixAddMissingFunctionDeclaration10.ts │ │ ├── codeFixAddMissingFunctionDeclaration11.ts │ │ ├── codeFixAddMissingFunctionDeclaration12.ts │ │ ├── codeFixAddMissingFunctionDeclaration13.ts │ │ ├── codeFixAddMissingFunctionDeclaration14.ts │ │ ├── codeFixAddMissingFunctionDeclaration15.ts │ │ ├── codeFixAddMissingFunctionDeclaration16.ts │ │ ├── codeFixAddMissingFunctionDeclaration17.ts │ │ ├── codeFixAddMissingFunctionDeclaration18.ts │ │ ├── codeFixAddMissingFunctionDeclaration19.ts │ │ ├── codeFixAddMissingFunctionDeclaration2.ts │ │ ├── codeFixAddMissingFunctionDeclaration20.ts │ │ ├── codeFixAddMissingFunctionDeclaration21.ts │ │ ├── codeFixAddMissingFunctionDeclaration22.ts │ │ ├── codeFixAddMissingFunctionDeclaration23.ts │ │ ├── codeFixAddMissingFunctionDeclaration24.ts │ │ ├── codeFixAddMissingFunctionDeclaration25.ts │ │ ├── codeFixAddMissingFunctionDeclaration26.ts │ │ ├── codeFixAddMissingFunctionDeclaration27.ts │ │ ├── codeFixAddMissingFunctionDeclaration28.ts │ │ ├── codeFixAddMissingFunctionDeclaration29.ts │ │ ├── codeFixAddMissingFunctionDeclaration3.ts │ │ ├── codeFixAddMissingFunctionDeclaration4.ts │ │ ├── codeFixAddMissingFunctionDeclaration5.ts │ │ ├── codeFixAddMissingFunctionDeclaration6.ts │ │ ├── codeFixAddMissingFunctionDeclaration7.ts │ │ ├── codeFixAddMissingFunctionDeclaration8.ts │ │ ├── codeFixAddMissingFunctionDeclaration9.ts │ │ ├── codeFixAddMissingFunctionDeclaration_all.ts │ │ ├── codeFixAddMissingFunctionDeclaration_jsx_all.ts │ │ ├── codeFixAddMissingImportForReactJsx1.ts │ │ ├── codeFixAddMissingImportForReactJsx2.ts │ │ ├── codeFixAddMissingInvocationForDecorator01.ts │ │ ├── codeFixAddMissingInvocationForDecorator_all.ts │ │ ├── codeFixAddMissingMember.ts │ │ ├── codeFixAddMissingMember10.ts │ │ ├── codeFixAddMissingMember11.ts │ │ ├── codeFixAddMissingMember12.ts │ │ ├── codeFixAddMissingMember13.ts │ │ ├── codeFixAddMissingMember14.ts │ │ ├── codeFixAddMissingMember15.ts │ │ ├── codeFixAddMissingMember16.ts │ │ ├── codeFixAddMissingMember17.ts │ │ ├── codeFixAddMissingMember18_declarePrivateMethod.ts │ │ ├── codeFixAddMissingMember19_declarePrivateMethod.ts │ │ ├── codeFixAddMissingMember2.ts │ │ ├── codeFixAddMissingMember20.ts │ │ ├── codeFixAddMissingMember21.ts │ │ ├── codeFixAddMissingMember22.ts │ │ ├── codeFixAddMissingMember23.ts │ │ ├── codeFixAddMissingMember24.ts │ │ ├── codeFixAddMissingMember25.ts │ │ ├── codeFixAddMissingMember26.ts │ │ ├── codeFixAddMissingMember27.ts │ │ ├── codeFixAddMissingMember28.ts │ │ ├── codeFixAddMissingMember29.ts │ │ ├── codeFixAddMissingMember3.ts │ │ ├── codeFixAddMissingMember30.ts │ │ ├── codeFixAddMissingMember31.ts │ │ ├── codeFixAddMissingMember4.ts │ │ ├── codeFixAddMissingMember5.ts │ │ ├── codeFixAddMissingMember6.ts │ │ ├── codeFixAddMissingMember7.ts │ │ ├── codeFixAddMissingMember8.ts │ │ ├── codeFixAddMissingMember9.ts │ │ ├── codeFixAddMissingMember_all.ts │ │ ├── codeFixAddMissingMember_all_js.ts │ │ ├── codeFixAddMissingMember_classIsNotFirstDeclaration.ts │ │ ├── codeFixAddMissingMember_generator_function.ts │ │ ├── codeFixAddMissingMember_non_generator_function.ts │ │ ├── codeFixAddMissingMember_typeParameter.ts │ │ ├── codeFixAddMissingNew.ts │ │ ├── codeFixAddMissingNew2.ts │ │ ├── codeFixAddMissingNew3.ts │ │ ├── codeFixAddMissingNew4.ts │ │ ├── codeFixAddMissingNew5.ts │ │ ├── codeFixAddMissingNew_all.ts │ │ ├── codeFixAddMissingNew_all_arguments.ts │ │ ├── codeFixAddMissingParam1.ts │ │ ├── codeFixAddMissingParam10.ts │ │ ├── codeFixAddMissingParam11.ts │ │ ├── codeFixAddMissingParam12.ts │ │ ├── codeFixAddMissingParam13.ts │ │ ├── codeFixAddMissingParam14.ts │ │ ├── codeFixAddMissingParam15.ts │ │ ├── codeFixAddMissingParam16.ts │ │ ├── codeFixAddMissingParam17.ts │ │ ├── codeFixAddMissingParam2.ts │ │ ├── codeFixAddMissingParam3.ts │ │ ├── codeFixAddMissingParam4.ts │ │ ├── codeFixAddMissingParam5.ts │ │ ├── codeFixAddMissingParam6.ts │ │ ├── codeFixAddMissingParam7.ts │ │ ├── codeFixAddMissingParam8.ts │ │ ├── codeFixAddMissingParam9.ts │ │ ├── codeFixAddMissingParam_all.ts │ │ ├── codeFixAddMissingProperties1.ts │ │ ├── codeFixAddMissingProperties10.ts │ │ ├── codeFixAddMissingProperties11.ts │ │ ├── codeFixAddMissingProperties12.ts │ │ ├── codeFixAddMissingProperties13.ts │ │ ├── codeFixAddMissingProperties14.ts │ │ ├── codeFixAddMissingProperties15.ts │ │ ├── codeFixAddMissingProperties16.ts │ │ ├── codeFixAddMissingProperties17.ts │ │ ├── codeFixAddMissingProperties18.ts │ │ ├── codeFixAddMissingProperties19.ts │ │ ├── codeFixAddMissingProperties2.ts │ │ ├── codeFixAddMissingProperties20.ts │ │ ├── codeFixAddMissingProperties21.ts │ │ ├── codeFixAddMissingProperties22.ts │ │ ├── codeFixAddMissingProperties23.ts │ │ ├── codeFixAddMissingProperties24.ts │ │ ├── codeFixAddMissingProperties25.ts │ │ ├── codeFixAddMissingProperties26.ts │ │ ├── codeFixAddMissingProperties27.ts │ │ ├── codeFixAddMissingProperties28.ts │ │ ├── codeFixAddMissingProperties29.ts │ │ ├── codeFixAddMissingProperties3.ts │ │ ├── codeFixAddMissingProperties30.ts │ │ ├── codeFixAddMissingProperties31.ts │ │ ├── codeFixAddMissingProperties32.ts │ │ ├── codeFixAddMissingProperties33.ts │ │ ├── codeFixAddMissingProperties34.ts │ │ ├── codeFixAddMissingProperties35.ts │ │ ├── codeFixAddMissingProperties36.ts │ │ ├── codeFixAddMissingProperties37.ts │ │ ├── codeFixAddMissingProperties38.ts │ │ ├── codeFixAddMissingProperties39.ts │ │ ├── codeFixAddMissingProperties4.ts │ │ ├── codeFixAddMissingProperties40.ts │ │ ├── codeFixAddMissingProperties41.ts │ │ ├── codeFixAddMissingProperties42.ts │ │ ├── codeFixAddMissingProperties43.ts │ │ ├── codeFixAddMissingProperties44.ts │ │ ├── codeFixAddMissingProperties45.ts │ │ ├── codeFixAddMissingProperties46.ts │ │ ├── codeFixAddMissingProperties47.ts │ │ ├── codeFixAddMissingProperties48.ts │ │ ├── codeFixAddMissingProperties5.ts │ │ ├── codeFixAddMissingProperties6.ts │ │ ├── codeFixAddMissingProperties7.ts │ │ ├── codeFixAddMissingProperties8.ts │ │ ├── codeFixAddMissingProperties9.ts │ │ ├── codeFixAddMissingProperties_PreserveIndent.ts │ │ ├── codeFixAddMissingProperties_all.ts │ │ ├── codeFixAddMissingSuperCall.ts │ │ ├── codeFixAddMissingSuperCall1.ts │ │ ├── codeFixAddMissingSuperCall2.ts │ │ ├── codeFixAddMissingTypeof1.ts │ │ ├── codeFixAddMissingTypeof2.ts │ │ ├── codeFixAddOptionalParam1.ts │ │ ├── codeFixAddOptionalParam10.ts │ │ ├── codeFixAddOptionalParam11.ts │ │ ├── codeFixAddOptionalParam12.ts │ │ ├── codeFixAddOptionalParam13.ts │ │ ├── codeFixAddOptionalParam14.ts │ │ ├── codeFixAddOptionalParam15.ts │ │ ├── codeFixAddOptionalParam16.ts │ │ ├── codeFixAddOptionalParam17.ts │ │ ├── codeFixAddOptionalParam18.ts │ │ ├── codeFixAddOptionalParam2.ts │ │ ├── codeFixAddOptionalParam3.ts │ │ ├── codeFixAddOptionalParam4.ts │ │ ├── codeFixAddOptionalParam5.ts │ │ ├── codeFixAddOptionalParam6.ts │ │ ├── codeFixAddOptionalParam7.ts │ │ ├── codeFixAddOptionalParam8.ts │ │ ├── codeFixAddOptionalParam9.ts │ │ ├── codeFixAddOptionalParam_all.ts │ │ ├── codeFixAddParameterNames1.ts │ │ ├── codeFixAddParameterNames2.ts │ │ ├── codeFixAddParameterNames3.ts │ │ ├── codeFixAddParameterNames4.ts │ │ ├── codeFixAddParameterNames5.ts │ │ ├── codeFixAddParameterNames6.ts │ │ ├── codeFixAddVoidToPromise.1.ts │ │ ├── codeFixAddVoidToPromise.2.ts │ │ ├── codeFixAddVoidToPromise.3.ts │ │ ├── codeFixAddVoidToPromise.4.ts │ │ ├── codeFixAddVoidToPromise.5.ts │ │ ├── codeFixAddVoidToPromiseJS.1.ts │ │ ├── codeFixAddVoidToPromiseJS.2.ts │ │ ├── codeFixAddVoidToPromiseJS.3.ts │ │ ├── codeFixAddVoidToPromiseJS.4.ts │ │ ├── codeFixAddVoidToPromiseJS.5.ts │ │ ├── codeFixAddVoidToPromiseJS_all.ts │ │ ├── codeFixAddVoidToPromise_all.ts │ │ ├── codeFixAmbientClassExtendAbstractMethod.ts │ │ ├── codeFixAmbientClassExtendAbstractMethod_all.ts │ │ ├── codeFixAmbientClassImplementClassAbstractGettersAndSetters.ts │ │ ├── codeFixAmbientClassImplementClassMethodViaHeritage.ts │ │ ├── codeFixAwaitInSyncFunction1.ts │ │ ├── codeFixAwaitInSyncFunction10.ts │ │ ├── codeFixAwaitInSyncFunction11.ts │ │ ├── codeFixAwaitInSyncFunction12.ts │ │ ├── codeFixAwaitInSyncFunction13.ts │ │ ├── codeFixAwaitInSyncFunction14.ts │ │ ├── codeFixAwaitInSyncFunction15.ts │ │ ├── codeFixAwaitInSyncFunction16.ts │ │ ├── codeFixAwaitInSyncFunction2.ts │ │ ├── codeFixAwaitInSyncFunction3.ts │ │ ├── codeFixAwaitInSyncFunction4.ts │ │ ├── codeFixAwaitInSyncFunction5.ts │ │ ├── codeFixAwaitInSyncFunction6.5.ts │ │ ├── codeFixAwaitInSyncFunction6.ts │ │ ├── codeFixAwaitInSyncFunction7.ts │ │ ├── codeFixAwaitInSyncFunction8.ts │ │ ├── codeFixAwaitInSyncFunction9.ts │ │ ├── codeFixAwaitInSyncFunction_all.ts │ │ ├── codeFixAwaitShouldNotCrashIfNotInFunction.ts │ │ ├── codeFixCalledES2015Import1.ts │ │ ├── codeFixCalledES2015Import10.ts │ │ ├── codeFixCalledES2015Import11.ts │ │ ├── codeFixCalledES2015Import12.ts │ │ ├── codeFixCalledES2015Import13.ts │ │ ├── codeFixCalledES2015Import2.ts │ │ ├── codeFixCalledES2015Import3.ts │ │ ├── codeFixCalledES2015Import4.ts │ │ ├── codeFixCalledES2015Import5.ts │ │ ├── codeFixCalledES2015Import6.ts │ │ ├── codeFixCalledES2015Import7.ts │ │ ├── codeFixCalledES2015Import8.ts │ │ ├── codeFixCalledES2015Import9.ts │ │ ├── codeFixCannotFindModule.ts │ │ ├── codeFixCannotFindModuleJsxRuntime01.ts │ │ ├── codeFixCannotFindModuleJsxRuntimePragma01.ts │ │ ├── codeFixCannotFindModule_all.ts │ │ ├── codeFixCannotFindModule_nodeCoreModules.ts │ │ ├── codeFixCannotFindModule_notIfMissing.ts │ │ ├── codeFixCannotFindModule_suggestion.ts │ │ ├── codeFixCannotFindModule_suggestion_falsePositive.ts │ │ ├── codeFixCannotFindModule_suggestion_js.ts │ │ ├── codeFixChangeExtendsToImplementsAbstractModifier.ts │ │ ├── codeFixChangeExtendsToImplementsTypeParams.ts │ │ ├── codeFixChangeExtendsToImplementsWithDecorator.ts │ │ ├── codeFixChangeExtendsToImplementsWithTrivia.ts │ │ ├── codeFixChangeJSDocSyntax1.ts │ │ ├── codeFixChangeJSDocSyntax10.ts │ │ ├── codeFixChangeJSDocSyntax11.ts │ │ ├── codeFixChangeJSDocSyntax12.ts │ │ ├── codeFixChangeJSDocSyntax13.ts │ │ ├── codeFixChangeJSDocSyntax14.ts │ │ ├── codeFixChangeJSDocSyntax15.ts │ │ ├── codeFixChangeJSDocSyntax16.ts │ │ ├── codeFixChangeJSDocSyntax17.ts │ │ ├── codeFixChangeJSDocSyntax18.ts │ │ ├── codeFixChangeJSDocSyntax19.ts │ │ ├── codeFixChangeJSDocSyntax2.ts │ │ ├── codeFixChangeJSDocSyntax20.ts │ │ ├── codeFixChangeJSDocSyntax21.ts │ │ ├── codeFixChangeJSDocSyntax22.ts │ │ ├── codeFixChangeJSDocSyntax23.ts │ │ ├── codeFixChangeJSDocSyntax24.ts │ │ ├── codeFixChangeJSDocSyntax25.ts │ │ ├── codeFixChangeJSDocSyntax26.ts │ │ ├── codeFixChangeJSDocSyntax27.ts │ │ ├── codeFixChangeJSDocSyntax28.ts │ │ ├── codeFixChangeJSDocSyntax4.ts │ │ ├── codeFixChangeJSDocSyntax5.ts │ │ ├── codeFixChangeJSDocSyntax6.ts │ │ ├── codeFixChangeJSDocSyntax7.ts │ │ ├── codeFixChangeJSDocSyntax8.ts │ │ ├── codeFixChangeJSDocSyntax9.ts │ │ ├── codeFixChangeJSDocSyntax_all.ts │ │ ├── codeFixChangeJSDocSyntax_all_nullable.ts │ │ ├── codeFixClassExprClassImplementClassFunctionVoidInferred.ts │ │ ├── codeFixClassExprExtendsAbstractExpressionWithTypeArgs.ts │ │ ├── codeFixClassExtendAbstractExpressionWithTypeArgs.ts │ │ ├── codeFixClassExtendAbstractGetterSetter.ts │ │ ├── codeFixClassExtendAbstractMethod.ts │ │ ├── codeFixClassExtendAbstractMethodModifiersAlreadyIncludeOverride.ts │ │ ├── codeFixClassExtendAbstractMethodThis.ts │ │ ├── codeFixClassExtendAbstractMethodTypeParamsInstantiateNumber.ts │ │ ├── codeFixClassExtendAbstractMethodTypeParamsInstantiateU.ts │ │ ├── codeFixClassExtendAbstractMethodWithLongName.ts │ │ ├── codeFixClassExtendAbstractMethod_all.ts │ │ ├── codeFixClassExtendAbstractMethod_comment.ts │ │ ├── codeFixClassExtendAbstractPrivateProperty.ts │ │ ├── codeFixClassExtendAbstractProperty.ts │ │ ├── codeFixClassExtendAbstractPropertyThis.ts │ │ ├── codeFixClassExtendAbstractProtectedProperty.ts │ │ ├── codeFixClassExtendAbstractPublicProperty.ts │ │ ├── codeFixClassExtendAbstractSomePropertiesPresent.ts │ │ ├── codeFixClassImplementClassAbstractGettersAndSetters.ts │ │ ├── codeFixClassImplementClassFunctionVoidInferred.ts │ │ ├── codeFixClassImplementClassMemberAnonymousClass.ts │ │ ├── codeFixClassImplementClassMethodViaHeritage.ts │ │ ├── codeFixClassImplementClassMultipleSignatures1.ts │ │ ├── codeFixClassImplementClassMultipleSignatures2.ts │ │ ├── codeFixClassImplementClassPropertyModifiers.ts │ │ ├── codeFixClassImplementClassPropertyTypeQuery.ts │ │ ├── codeFixClassImplementDeepInheritance.ts │ │ ├── codeFixClassImplementDefaultClass.ts │ │ ├── codeFixClassImplementInterfaceArrayTuple.ts │ │ ├── codeFixClassImplementInterfaceAutoImports.ts │ │ ├── codeFixClassImplementInterfaceAutoImportsReExports.ts │ │ ├── codeFixClassImplementInterfaceAutoImports_typeOnly.ts │ │ ├── codeFixClassImplementInterfaceCallSignature.ts │ │ ├── codeFixClassImplementInterfaceCallback.ts │ │ ├── codeFixClassImplementInterfaceClassExpression.ts │ │ ├── codeFixClassImplementInterfaceComments.ts │ │ ├── codeFixClassImplementInterfaceComputedPropertyLiterals.ts │ │ ├── codeFixClassImplementInterfaceComputedPropertyNameWellKnownSymbols.ts │ │ ├── codeFixClassImplementInterfaceConstructSignature.ts │ │ ├── codeFixClassImplementInterfaceConstructorName1.ts │ │ ├── codeFixClassImplementInterfaceConstructorName2.ts │ │ ├── codeFixClassImplementInterfaceDuplicateMember1.ts │ │ ├── codeFixClassImplementInterfaceDuplicateMember2.ts │ │ ├── codeFixClassImplementInterfaceEmptyMultilineBody.ts │ │ ├── codeFixClassImplementInterfaceEmptyTypeLiteral.ts │ │ ├── codeFixClassImplementInterfaceGlobal.ts │ │ ├── codeFixClassImplementInterfaceHeritageClauseAlreadyHaveMember.ts │ │ ├── codeFixClassImplementInterfaceInNamespace.ts │ │ ├── codeFixClassImplementInterfaceIndexSignaturesBoth.ts │ │ ├── codeFixClassImplementInterfaceIndexSignaturesNoFix.ts │ │ ├── codeFixClassImplementInterfaceIndexSignaturesNumber.ts │ │ ├── codeFixClassImplementInterfaceIndexSignaturesString.ts │ │ ├── codeFixClassImplementInterfaceIndexType.ts │ │ ├── codeFixClassImplementInterfaceInheritsAbstractMethod.ts │ │ ├── codeFixClassImplementInterfaceMappedType1.ts │ │ ├── codeFixClassImplementInterfaceMappedType2.ts │ │ ├── codeFixClassImplementInterfaceMappedTypeIndirectKeys.ts │ │ ├── codeFixClassImplementInterfaceMemberNestedTypeAlias.ts │ │ ├── codeFixClassImplementInterfaceMemberOrdering.ts │ │ ├── codeFixClassImplementInterfaceMemberTypeAlias.ts │ │ ├── codeFixClassImplementInterfaceMethodThisAndSelfReference.ts │ │ ├── codeFixClassImplementInterfaceMethodTypePredicate.ts │ │ ├── codeFixClassImplementInterfaceMultipleImplements1.ts │ │ ├── codeFixClassImplementInterfaceMultipleImplements2.ts │ │ ├── codeFixClassImplementInterfaceMultipleImplementsIntersection1.ts │ │ ├── codeFixClassImplementInterfaceMultipleImplementsIntersection2.ts │ │ ├── codeFixClassImplementInterfaceMultipleMembersAndPunctuation.ts │ │ ├── codeFixClassImplementInterfaceMultipleSignatures.ts │ │ ├── codeFixClassImplementInterfaceMultipleSignaturesRest1.ts │ │ ├── codeFixClassImplementInterfaceMultipleSignaturesRest2.ts │ │ ├── codeFixClassImplementInterfaceNamespaceConflict.ts │ │ ├── codeFixClassImplementInterfaceNoBody.ts │ │ ├── codeFixClassImplementInterfaceNoTruncation.ts │ │ ├── codeFixClassImplementInterfaceNoTruncationProperties.ts │ │ ├── codeFixClassImplementInterfaceObjectLiteral.ts │ │ ├── codeFixClassImplementInterfaceOptionalProperty.ts │ │ ├── codeFixClassImplementInterfaceProperty.ts │ │ ├── codeFixClassImplementInterfacePropertyFromParentConstructorFunction.ts │ │ ├── codeFixClassImplementInterfacePropertySignatures.ts │ │ ├── codeFixClassImplementInterfaceQualifiedName.ts │ │ ├── codeFixClassImplementInterfaceSomePropertiesPresent.ts │ │ ├── codeFixClassImplementInterfaceTypeLiterals.ts │ │ ├── codeFixClassImplementInterfaceTypeParamInstantiateDeeply.ts │ │ ├── codeFixClassImplementInterfaceTypeParamInstantiateError.ts │ │ ├── codeFixClassImplementInterfaceTypeParamInstantiateNumber.ts │ │ ├── codeFixClassImplementInterfaceTypeParamInstantiateT.ts │ │ ├── codeFixClassImplementInterfaceTypeParamInstantiateU.ts │ │ ├── codeFixClassImplementInterfaceTypeParamInstantiation.ts │ │ ├── codeFixClassImplementInterfaceTypeParamMethod.ts │ │ ├── codeFixClassImplementInterfaceUndeclaredSymbol.ts │ │ ├── codeFixClassImplementInterfaceWithAmbientSignatures1.ts │ │ ├── codeFixClassImplementInterfaceWithAmbientSignatures2.ts │ │ ├── codeFixClassImplementInterfaceWithAmbientSignatures3.ts │ │ ├── codeFixClassImplementInterfaceWithNegativeNumber.ts │ │ ├── codeFixClassImplementInterface_all.ts │ │ ├── codeFixClassImplementInterface_noUndefinedOnOptionalParameter.ts │ │ ├── codeFixClassImplementInterface_order.ts │ │ ├── codeFixClassImplementInterface_quotePreferenceAuto1.ts │ │ ├── codeFixClassImplementInterface_quotePreferenceAuto2.ts │ │ ├── codeFixClassImplementInterface_quotePreferenceDouble.ts │ │ ├── codeFixClassImplementInterface_quotePreferenceSingle.ts │ │ ├── codeFixClassImplementInterface_typeInOtherFile.ts │ │ ├── codeFixClassPropertyInitialization.ts │ │ ├── codeFixClassPropertyInitialization1.ts │ │ ├── codeFixClassPropertyInitialization10.ts │ │ ├── codeFixClassPropertyInitialization11.ts │ │ ├── codeFixClassPropertyInitialization12.ts │ │ ├── codeFixClassPropertyInitialization13.ts │ │ ├── codeFixClassPropertyInitialization14.ts │ │ ├── codeFixClassPropertyInitialization15.ts │ │ ├── codeFixClassPropertyInitialization16.ts │ │ ├── codeFixClassPropertyInitialization17.ts │ │ ├── codeFixClassPropertyInitialization18.ts │ │ ├── codeFixClassPropertyInitialization19.ts │ │ ├── codeFixClassPropertyInitialization2.ts │ │ ├── codeFixClassPropertyInitialization20.ts │ │ ├── codeFixClassPropertyInitialization3.ts │ │ ├── codeFixClassPropertyInitialization5.ts │ │ ├── codeFixClassPropertyInitialization6.ts │ │ ├── codeFixClassPropertyInitialization7.ts │ │ ├── codeFixClassPropertyInitialization8.ts │ │ ├── codeFixClassPropertyInitialization9.ts │ │ ├── codeFixClassPropertyInitialization_all_1.ts │ │ ├── codeFixClassPropertyInitialization_all_2.ts │ │ ├── codeFixClassPropertyInitialization_all_3.ts │ │ ├── codeFixClassPropertyInitialization_all_4.ts │ │ ├── codeFixClassSuperMustPrecedeThisAccess.ts │ │ ├── codeFixClassSuperMustPrecedeThisAccess_all.ts │ │ ├── codeFixClassSuperMustPrecedeThisAccess_callWithThisInside.ts │ │ ├── codeFixConstToLet1.ts │ │ ├── codeFixConstToLet2.ts │ │ ├── codeFixConstToLet3.ts │ │ ├── codeFixConstToLet4.ts │ │ ├── codeFixConstToLet_all1.ts │ │ ├── codeFixConstToLet_all2.ts │ │ ├── codeFixConstructorForDerivedNeedSuperCall.ts │ │ ├── codeFixConstructorForDerivedNeedSuperCall_all.ts │ │ ├── codeFixConvertToMappedObjectType1.ts │ │ ├── codeFixConvertToMappedObjectType10.ts │ │ ├── codeFixConvertToMappedObjectType11.ts │ │ ├── codeFixConvertToMappedObjectType12.ts │ │ ├── codeFixConvertToMappedObjectType13.ts │ │ ├── codeFixConvertToMappedObjectType2.ts │ │ ├── codeFixConvertToMappedObjectType3.ts │ │ ├── codeFixConvertToMappedObjectType4.ts │ │ ├── codeFixConvertToMappedObjectType5.ts │ │ ├── codeFixConvertToMappedObjectType6.ts │ │ ├── codeFixConvertToMappedObjectType7.ts │ │ ├── codeFixConvertToMappedObjectType8.ts │ │ ├── codeFixConvertToMappedObjectType9.ts │ │ ├── codeFixConvertToTypeOnlyExport1.ts │ │ ├── codeFixConvertToTypeOnlyExport2.ts │ │ ├── codeFixConvertToTypeOnlyExport3.ts │ │ ├── codeFixConvertToTypeOnlyImport1.ts │ │ ├── codeFixConvertToTypeOnlyImport10.ts │ │ ├── codeFixConvertToTypeOnlyImport11.ts │ │ ├── codeFixConvertToTypeOnlyImport12.ts │ │ ├── codeFixConvertToTypeOnlyImport2.ts │ │ ├── codeFixConvertToTypeOnlyImport3.ts │ │ ├── codeFixConvertToTypeOnlyImport4.ts │ │ ├── codeFixConvertToTypeOnlyImport5.ts │ │ ├── codeFixConvertToTypeOnlyImport6.ts │ │ ├── codeFixConvertToTypeOnlyImport7.ts │ │ ├── codeFixConvertToTypeOnlyImport8.ts │ │ ├── codeFixConvertToTypeOnlyImport9.ts │ │ ├── codeFixConvertTypedefToType1.ts │ │ ├── codeFixConvertTypedefToType2.ts │ │ ├── codeFixConvertTypedefToType3.ts │ │ ├── codeFixConvertTypedefToType4.ts │ │ ├── codeFixConvertTypedefToType5.ts │ │ ├── codeFixConvertTypedefToType6.ts │ │ ├── codeFixConvertTypedefToType7.ts │ │ ├── codeFixCorrectQualifiedNameToIndexedAccessType01.ts │ │ ├── codeFixCorrectQualifiedNameToIndexedAccessType_all.ts │ │ ├── codeFixCorrectReturnValue1.ts │ │ ├── codeFixCorrectReturnValue10.ts │ │ ├── codeFixCorrectReturnValue11.ts │ │ ├── codeFixCorrectReturnValue12.ts │ │ ├── codeFixCorrectReturnValue13.ts │ │ ├── codeFixCorrectReturnValue14.ts │ │ ├── codeFixCorrectReturnValue15.ts │ │ ├── codeFixCorrectReturnValue16.ts │ │ ├── codeFixCorrectReturnValue17.ts │ │ ├── codeFixCorrectReturnValue18.ts │ │ ├── codeFixCorrectReturnValue19.ts │ │ ├── codeFixCorrectReturnValue2.ts │ │ ├── codeFixCorrectReturnValue20.ts │ │ ├── codeFixCorrectReturnValue21.ts │ │ ├── codeFixCorrectReturnValue22.ts │ │ ├── codeFixCorrectReturnValue23.ts │ │ ├── codeFixCorrectReturnValue24.ts │ │ ├── codeFixCorrectReturnValue25.ts │ │ ├── codeFixCorrectReturnValue26.ts │ │ ├── codeFixCorrectReturnValue27.ts │ │ ├── codeFixCorrectReturnValue28.ts │ │ ├── codeFixCorrectReturnValue3.ts │ │ ├── codeFixCorrectReturnValue4.ts │ │ ├── codeFixCorrectReturnValue5.ts │ │ ├── codeFixCorrectReturnValue6.ts │ │ ├── codeFixCorrectReturnValue7.ts │ │ ├── codeFixCorrectReturnValue8.ts │ │ ├── codeFixCorrectReturnValue9.ts │ │ ├── codeFixCorrectReturnValue_all1.ts │ │ ├── codeFixCorrectReturnValue_all2.ts │ │ ├── codeFixCorrectReturnValue_all3.ts │ │ ├── codeFixDeleteUnmatchedParameter1.ts │ │ ├── codeFixDeleteUnmatchedParameter2.ts │ │ ├── codeFixDeleteUnmatchedParameter3.ts │ │ ├── codeFixDeleteUnmatchedParameter4.ts │ │ ├── codeFixDeleteUnmatchedParameter5.ts │ │ ├── codeFixDeleteUnmatchedParameterJS1.ts │ │ ├── codeFixDeleteUnmatchedParameterJS2.ts │ │ ├── codeFixDeleteUnmatchedParameterJS3.ts │ │ ├── codeFixDeleteUnmatchedParameterJS4.ts │ │ ├── codeFixDeleteUnmatchedParameter_all.ts │ │ ├── codeFixDeleteUnmatchedParameter_allJS.ts │ │ ├── codeFixDisableJsDiagnosticsInFile.ts │ │ ├── codeFixDisableJsDiagnosticsInFile10.ts │ │ ├── codeFixDisableJsDiagnosticsInFile2.ts │ │ ├── codeFixDisableJsDiagnosticsInFile3.ts │ │ ├── codeFixDisableJsDiagnosticsInFile4.ts │ │ ├── codeFixDisableJsDiagnosticsInFile5.ts │ │ ├── codeFixDisableJsDiagnosticsInFile6.ts │ │ ├── codeFixDisableJsDiagnosticsInFile7.ts │ │ ├── codeFixDisableJsDiagnosticsInFile8.ts │ │ ├── codeFixDisableJsDiagnosticsInFile9.ts │ │ ├── codeFixDisableJsDiagnosticsInFile_all.ts │ │ ├── codeFixDisableJsDiagnosticsInFile_tsIgnore_indent.ts │ │ ├── codeFixEnableJsxFlag_blankCompilerOptionsJsConfig.ts │ │ ├── codeFixEnableJsxFlag_blankCompilerOptionsTsConfig.ts │ │ ├── codeFixEnableJsxFlag_disabledInCompilerOptionsInJsConfig.ts │ │ ├── codeFixEnableJsxFlag_disabledInCompilerOptionsInTsConfig.ts │ │ ├── codeFixExpectedComma01.ts │ │ ├── codeFixExpectedComma02.ts │ │ ├── codeFixExpectedComma03.ts │ │ ├── codeFixExtendsInterfaceBecomesImplements.ts │ │ ├── codeFixExtendsInterfaceBecomesImplements_all.ts │ │ ├── codeFixForgottenThisPropertyAccess01.ts │ │ ├── codeFixForgottenThisPropertyAccess02.ts │ │ ├── codeFixForgottenThisPropertyAccess03.ts │ │ ├── codeFixForgottenThisPropertyAccess04.ts │ │ ├── codeFixForgottenThisPropertyAccessECMAPrivate.ts │ │ ├── codeFixForgottenThisPropertyAccess_all.ts │ │ ├── codeFixForgottenThisPropertyAccess_static.ts │ │ ├── codeFixGenerateDefinitions.ts │ │ ├── codeFixImplicitThis_js_all.ts │ │ ├── codeFixImplicitThis_ts_all.ts │ │ ├── codeFixImplicitThis_ts_cantFixNonFunction.ts │ │ ├── codeFixImplicitThis_ts_functionDeclaration.ts │ │ ├── codeFixImplicitThis_ts_functionDeclarationInGlobalScope.ts │ │ ├── codeFixImplicitThis_ts_functionExpression.ts │ │ ├── codeFixImplicitThis_ts_functionExpression_noName.ts │ │ ├── codeFixImplicitThis_ts_functionExpression_selfReferencing.ts │ │ ├── codeFixImportNonExportedMember1.ts │ │ ├── codeFixImportNonExportedMember10.ts │ │ ├── codeFixImportNonExportedMember11.ts │ │ ├── codeFixImportNonExportedMember12.ts │ │ ├── codeFixImportNonExportedMember13.ts │ │ ├── codeFixImportNonExportedMember2.ts │ │ ├── codeFixImportNonExportedMember3.ts │ │ ├── codeFixImportNonExportedMember4.ts │ │ ├── codeFixImportNonExportedMember5.ts │ │ ├── codeFixImportNonExportedMember6.ts │ │ ├── codeFixImportNonExportedMember7.ts │ │ ├── codeFixImportNonExportedMember8.ts │ │ ├── codeFixImportNonExportedMember9.ts │ │ ├── codeFixImportNonExportedMember_all1.ts │ │ ├── codeFixImportNonExportedMember_all2.ts │ │ ├── codeFixImportNonExportedMember_all3.ts │ │ ├── codeFixImportNonExportedMember_all4.ts │ │ ├── codeFixImportNonExportedMember_all5.ts │ │ ├── codeFixImportNonExportedMember_all6.ts │ │ ├── codeFixImportNonExportedMember_all7.ts │ │ ├── codeFixInPropertyAccess_js.ts │ │ ├── codeFixIncorrectNamedTupleSyntax1.ts │ │ ├── codeFixIncorrectNamedTupleSyntax2.ts │ │ ├── codeFixInferFromCallInAssignment.ts │ │ ├── codeFixInferFromExpressionStatement.ts │ │ ├── codeFixInferFromFunctionThisUsageExplicitAny.ts │ │ ├── codeFixInferFromFunctionThisUsageFunctionExpression.ts │ │ ├── codeFixInferFromFunctionThisUsageImplicitAny.ts │ │ ├── codeFixInferFromFunctionThisUsageJsDocExistingDocsClass.ts │ │ ├── codeFixInferFromFunctionThisUsageJsDocNewDocsClass.ts │ │ ├── codeFixInferFromFunctionThisUsageJsDocNewDocsInaccessible.ts │ │ ├── codeFixInferFromFunctionThisUsageJsDocNewDocsLiteral.ts │ │ ├── codeFixInferFromFunctionThisUsageLiteral.ts │ │ ├── codeFixInferFromFunctionThisUsageNoUses.ts │ │ ├── codeFixInferFromFunctionThisUsageObjectProperty.ts │ │ ├── codeFixInferFromFunctionThisUsageObjectPropertyParameter.ts │ │ ├── codeFixInferFromFunctionThisUsageObjectPropertyShorthand.ts │ │ ├── codeFixInferFromFunctionThisUsageObjectPropertyShorthandParameter.ts │ │ ├── codeFixInferFromFunctionUsage.ts │ │ ├── codeFixInferFromPrimitiveUsage.ts │ │ ├── codeFixInferFromUsage.ts │ │ ├── codeFixInferFromUsageAddition.ts │ │ ├── codeFixInferFromUsageAllAssignments.ts │ │ ├── codeFixInferFromUsageAlwaysInfer.ts │ │ ├── codeFixInferFromUsageAlwaysInferJS.ts │ │ ├── codeFixInferFromUsageArray.ts │ │ ├── codeFixInferFromUsageArrow.ts │ │ ├── codeFixInferFromUsageArrowJS.ts │ │ ├── codeFixInferFromUsageBindingElement.ts │ │ ├── codeFixInferFromUsageCall.ts │ │ ├── codeFixInferFromUsageCallBodyBoth.ts │ │ ├── codeFixInferFromUsageCallBodyPriority.ts │ │ ├── codeFixInferFromUsageCallJS.ts │ │ ├── codeFixInferFromUsageCallbackParameter1.ts │ │ ├── codeFixInferFromUsageCallbackParameter2.ts │ │ ├── codeFixInferFromUsageCallbackParameter3.ts │ │ ├── codeFixInferFromUsageCallbackParameter4.ts │ │ ├── codeFixInferFromUsageCallbackParameter5.ts │ │ ├── codeFixInferFromUsageCallbackParameter6.ts │ │ ├── codeFixInferFromUsageCallbackParameter7.ts │ │ ├── codeFixInferFromUsageCommentAfterParameter.ts │ │ ├── codeFixInferFromUsageConstructor.ts │ │ ├── codeFixInferFromUsageConstructorFunctionJS.ts │ │ ├── codeFixInferFromUsageContextualImport1.ts │ │ ├── codeFixInferFromUsageContextualImport2.ts │ │ ├── codeFixInferFromUsageContextualImport3.ts │ │ ├── codeFixInferFromUsageContextualImport4.ts │ │ ├── codeFixInferFromUsageEmptyTypePriority.ts │ │ ├── codeFixInferFromUsageExistingJSDoc.ts │ │ ├── codeFixInferFromUsageFunctionExpression.ts │ │ ├── codeFixInferFromUsageGetter.ts │ │ ├── codeFixInferFromUsageGetter2.ts │ │ ├── codeFixInferFromUsageInaccessibleTypes.ts │ │ ├── codeFixInferFromUsageJS.ts │ │ ├── codeFixInferFromUsageJSDestructuring.ts │ │ ├── codeFixInferFromUsageJSXElement.ts │ │ ├── codeFixInferFromUsageLiteralTypes.ts │ │ ├── codeFixInferFromUsageMember.ts │ │ ├── codeFixInferFromUsageMember2.ts │ │ ├── codeFixInferFromUsageMember2JS.ts │ │ ├── codeFixInferFromUsageMember3.ts │ │ ├── codeFixInferFromUsageMemberJS.ts │ │ ├── codeFixInferFromUsageMethodSignature.ts │ │ ├── codeFixInferFromUsageMultipleParameters.ts │ │ ├── codeFixInferFromUsageMultipleParametersJS.ts │ │ ├── codeFixInferFromUsageNoTruncation.ts │ │ ├── codeFixInferFromUsageNumberIndexSignature.ts │ │ ├── codeFixInferFromUsageNumberIndexSignatureJS.ts │ │ ├── codeFixInferFromUsageNumberPriority.ts │ │ ├── codeFixInferFromUsageOptionalParam.ts │ │ ├── codeFixInferFromUsageOptionalParam2.ts │ │ ├── codeFixInferFromUsageOptionalParamJS.ts │ │ ├── codeFixInferFromUsageParameterLiteral.ts │ │ ├── codeFixInferFromUsagePartialParameterListJS.ts │ │ ├── codeFixInferFromUsagePromise.ts │ │ ├── codeFixInferFromUsagePropertyAccess.ts │ │ ├── codeFixInferFromUsagePropertyAccessJS.ts │ │ ├── codeFixInferFromUsagePropertyDeclarationArrowFunction.ts │ │ ├── codeFixInferFromUsageRestParam.ts │ │ ├── codeFixInferFromUsageRestParam2.ts │ │ ├── codeFixInferFromUsageRestParam2JS.ts │ │ ├── codeFixInferFromUsageRestParam3.ts │ │ ├── codeFixInferFromUsageRestParam3JS.ts │ │ ├── codeFixInferFromUsageRestParamJS.ts │ │ ├── codeFixInferFromUsageSetter.ts │ │ ├── codeFixInferFromUsageSetterJS.ts │ │ ├── codeFixInferFromUsageSetterWithInaccessibleType.ts │ │ ├── codeFixInferFromUsageSetterWithInaccessibleTypeJS.ts │ │ ├── codeFixInferFromUsageSingleLineClassJS.ts │ │ ├── codeFixInferFromUsageString.ts │ │ ├── codeFixInferFromUsageStringIndexSignature.ts │ │ ├── codeFixInferFromUsageStringIndexSignatureJS.ts │ │ ├── codeFixInferFromUsageUnifyAnonymousType.ts │ │ ├── codeFixInferFromUsageVariable.ts │ │ ├── codeFixInferFromUsageVariable2.ts │ │ ├── codeFixInferFromUsageVariable2JS.ts │ │ ├── codeFixInferFromUsageVariable3.ts │ │ ├── codeFixInferFromUsageVariable3JS.ts │ │ ├── codeFixInferFromUsageVariable4.ts │ │ ├── codeFixInferFromUsageVariable5.ts │ │ ├── codeFixInferFromUsageVariableJS.ts │ │ ├── codeFixInferFromUsageVariableLiteral.ts │ │ ├── codeFixInferFromUsage_all.ts │ │ ├── codeFixInferFromUsage_allJS.ts │ │ ├── codeFixInferFromUsage_noCrashOnMissingParens.ts │ │ ├── codeFixInitializePrivatePropertyJS.ts │ │ ├── codeFixInvalidJsxCharacters1.ts │ │ ├── codeFixInvalidJsxCharacters10.ts │ │ ├── codeFixInvalidJsxCharacters2.ts │ │ ├── codeFixInvalidJsxCharacters3.ts │ │ ├── codeFixInvalidJsxCharacters4.ts │ │ ├── codeFixInvalidJsxCharacters5.ts │ │ ├── codeFixInvalidJsxCharacters6.ts │ │ ├── codeFixInvalidJsxCharacters7.ts │ │ ├── codeFixInvalidJsxCharacters8.ts │ │ ├── codeFixInvalidJsxCharacters9.ts │ │ ├── codeFixMissingCallParentheses1.ts │ │ ├── codeFixMissingCallParentheses10.ts │ │ ├── codeFixMissingCallParentheses11.ts │ │ ├── codeFixMissingCallParentheses12.ts │ │ ├── codeFixMissingCallParentheses13.ts │ │ ├── codeFixMissingCallParentheses14.ts │ │ ├── codeFixMissingCallParentheses15.ts │ │ ├── codeFixMissingCallParentheses16.ts │ │ ├── codeFixMissingCallParentheses17.ts │ │ ├── codeFixMissingCallParentheses2.ts │ │ ├── codeFixMissingCallParentheses3.ts │ │ ├── codeFixMissingCallParentheses4.ts │ │ ├── codeFixMissingCallParentheses5.ts │ │ ├── codeFixMissingCallParentheses6.ts │ │ ├── codeFixMissingCallParentheses7.ts │ │ ├── codeFixMissingCallParentheses8.ts │ │ ├── codeFixMissingCallParentheses9.ts │ │ ├── codeFixMissingPrivateIdentifierMethodDeclaration.ts │ │ ├── codeFixMissingResolutionModeImportAttribute.ts │ │ ├── codeFixMissingTypeAnnotationOnExports.ts │ │ ├── codeFixMissingTypeAnnotationOnExports10.ts │ │ ├── codeFixMissingTypeAnnotationOnExports11.ts │ │ ├── codeFixMissingTypeAnnotationOnExports12.ts │ │ ├── codeFixMissingTypeAnnotationOnExports13.ts │ │ ├── codeFixMissingTypeAnnotationOnExports14.ts │ │ ├── codeFixMissingTypeAnnotationOnExports15.ts │ │ ├── codeFixMissingTypeAnnotationOnExports16.ts │ │ ├── codeFixMissingTypeAnnotationOnExports17-unique-symbol.ts │ │ ├── codeFixMissingTypeAnnotationOnExports18.ts │ │ ├── codeFixMissingTypeAnnotationOnExports19.ts │ │ ├── codeFixMissingTypeAnnotationOnExports2.ts │ │ ├── codeFixMissingTypeAnnotationOnExports20.ts │ │ ├── codeFixMissingTypeAnnotationOnExports21-params-and-return.ts │ │ ├── codeFixMissingTypeAnnotationOnExports22-formatting.ts │ │ ├── codeFixMissingTypeAnnotationOnExports23-heritage-formatting.ts │ │ ├── codeFixMissingTypeAnnotationOnExports24-heritage-formatting-2.ts │ │ ├── codeFixMissingTypeAnnotationOnExports25-heritage-formatting-3.ts │ │ ├── codeFixMissingTypeAnnotationOnExports26-fn-in-object-literal.ts │ │ ├── codeFixMissingTypeAnnotationOnExports27-non-exported-bidings.ts │ │ ├── codeFixMissingTypeAnnotationOnExports28-long-types.ts │ │ ├── codeFixMissingTypeAnnotationOnExports29-inline.ts │ │ ├── codeFixMissingTypeAnnotationOnExports3.ts │ │ ├── codeFixMissingTypeAnnotationOnExports30-inline-import.ts │ │ ├── codeFixMissingTypeAnnotationOnExports31-inline-import-default.ts │ │ ├── codeFixMissingTypeAnnotationOnExports32-inline-short-hand.ts │ │ ├── codeFixMissingTypeAnnotationOnExports33-methods.ts │ │ ├── codeFixMissingTypeAnnotationOnExports34-object-spread.ts │ │ ├── codeFixMissingTypeAnnotationOnExports35-variable-releative.ts │ │ ├── codeFixMissingTypeAnnotationOnExports36-conditional-releative.ts │ │ ├── codeFixMissingTypeAnnotationOnExports37-array-spread.ts │ │ ├── codeFixMissingTypeAnnotationOnExports38-unique-symbol-return.ts │ │ ├── codeFixMissingTypeAnnotationOnExports39-extract-arr-to-variable.ts │ │ ├── codeFixMissingTypeAnnotationOnExports4.ts │ │ ├── codeFixMissingTypeAnnotationOnExports40-extract-other-to-variable.ts │ │ ├── codeFixMissingTypeAnnotationOnExports41-no-computed-enum-members.ts │ │ ├── codeFixMissingTypeAnnotationOnExports42-static-readonly-class-symbol.ts │ │ ├── codeFixMissingTypeAnnotationOnExports43-expando-functions-2.ts │ │ ├── codeFixMissingTypeAnnotationOnExports43-expando-functions-3.ts │ │ ├── codeFixMissingTypeAnnotationOnExports43-expando-functions-4.ts │ │ ├── codeFixMissingTypeAnnotationOnExports43-expando-functions-5.ts │ │ ├── codeFixMissingTypeAnnotationOnExports43-expando-functions.ts │ │ ├── codeFixMissingTypeAnnotationOnExports44-default-export.ts │ │ ├── codeFixMissingTypeAnnotationOnExports45-decorators.ts │ │ ├── codeFixMissingTypeAnnotationOnExports46-decorators-experimental.ts │ │ ├── codeFixMissingTypeAnnotationOnExports47.ts │ │ ├── codeFixMissingTypeAnnotationOnExports48.ts │ │ ├── codeFixMissingTypeAnnotationOnExports49-private-name.ts │ │ ├── codeFixMissingTypeAnnotationOnExports5.ts │ │ ├── codeFixMissingTypeAnnotationOnExports50-generics-with-default.ts │ │ ├── codeFixMissingTypeAnnotationOnExports51-slightly-more-complex-generics-with-default.ts │ │ ├── codeFixMissingTypeAnnotationOnExports52-generics-oversimplification.ts │ │ ├── codeFixMissingTypeAnnotationOnExports53-nested-generic-types.ts │ │ ├── codeFixMissingTypeAnnotationOnExports54-generator-generics.ts │ │ ├── codeFixMissingTypeAnnotationOnExports55-generator-return.ts │ │ ├── codeFixMissingTypeAnnotationOnExports56-toplevel-import.ts │ │ ├── codeFixMissingTypeAnnotationOnExports57-generics-doesnt-drop-trailing-unknown.ts │ │ ├── codeFixMissingTypeAnnotationOnExports58-genercs-doesnt-drop-trailing-unknown-2.ts │ │ ├── codeFixMissingTypeAnnotationOnExports59-drops-unneeded-after-unknown.ts │ │ ├── codeFixMissingTypeAnnotationOnExports6.ts │ │ ├── codeFixMissingTypeAnnotationOnExports60-drops-unneeded-non-trailing-unknown.ts │ │ ├── codeFixMissingTypeAnnotationOnExports7.ts │ │ ├── codeFixMissingTypeAnnotationOnExports8.ts │ │ ├── codeFixMissingTypeAnnotationOnExports9.ts │ │ ├── codeFixMissingTypeAnnotationOnExportsTypePredicate1.ts │ │ ├── codeFixNegativeReplaceQualifiedNameWithIndexedAccessType01.ts │ │ ├── codeFixNoPropertyAccessFromIndexSignature1.ts │ │ ├── codeFixNoPropertyAccessFromIndexSignature2.ts │ │ ├── codeFixNoPropertyAccessFromIndexSignature3.ts │ │ ├── codeFixNoPropertyAccessFromIndexSignature4.ts │ │ ├── codeFixNoPropertyAccessFromIndexSignature5.ts │ │ ├── codeFixNoPropertyAccessFromIndexSignature_fixAll.ts │ │ ├── codeFixOverrideModifier1.ts │ │ ├── codeFixOverrideModifier10.ts │ │ ├── codeFixOverrideModifier11.ts │ │ ├── codeFixOverrideModifier12.ts │ │ ├── codeFixOverrideModifier13.ts │ │ ├── codeFixOverrideModifier14.ts │ │ ├── codeFixOverrideModifier15.ts │ │ ├── codeFixOverrideModifier16.ts │ │ ├── codeFixOverrideModifier17.ts │ │ ├── codeFixOverrideModifier18.ts │ │ ├── codeFixOverrideModifier19.ts │ │ ├── codeFixOverrideModifier2.ts │ │ ├── codeFixOverrideModifier20.ts │ │ ├── codeFixOverrideModifier21.ts │ │ ├── codeFixOverrideModifier22.ts │ │ ├── codeFixOverrideModifier3.ts │ │ ├── codeFixOverrideModifier4.ts │ │ ├── codeFixOverrideModifier5.ts │ │ ├── codeFixOverrideModifier6.ts │ │ ├── codeFixOverrideModifier7.ts │ │ ├── codeFixOverrideModifier8.ts │ │ ├── codeFixOverrideModifier9.ts │ │ ├── codeFixOverrideModifier_fixAll1.ts │ │ ├── codeFixOverrideModifier_fixAll2.ts │ │ ├── codeFixOverrideModifier_js1.ts │ │ ├── codeFixOverrideModifier_js2.ts │ │ ├── codeFixPromoteTypeOnly1.ts │ │ ├── codeFixPropertyAssignment1.ts │ │ ├── codeFixPropertyAssignment2.ts │ │ ├── codeFixPropertyAssignment3.ts │ │ ├── codeFixPropertyAssignment_fixAll.ts │ │ ├── codeFixPropertyOverrideAccess.ts │ │ ├── codeFixPropertyOverrideAccess2.ts │ │ ├── codeFixPropertyOverrideAccess3.ts │ │ ├── codeFixPropertyOverrideAccess4.ts │ │ ├── codeFixPropertyOverrideAccess5.ts │ │ ├── codeFixPropertyOverrideAccess_all.ts │ │ ├── codeFixRemoveAccidentalCallParentheses.ts │ │ ├── codeFixRemoveUnnecessaryAwait.ts │ │ ├── codeFixRemoveUnnecessaryAwait_mixedUnion.ts │ │ ├── codeFixRemoveUnnecessaryAwait_notAvailableOnReturn.ts │ │ ├── codeFixRenameUnmatchedParameter1.ts │ │ ├── codeFixRenameUnmatchedParameter2.ts │ │ ├── codeFixRenameUnmatchedParameter3.ts │ │ ├── codeFixRenameUnmatchedParameter4.ts │ │ ├── codeFixRenameUnmatchedParameterJS1.ts │ │ ├── codeFixRenameUnmatchedParameterJS2.ts │ │ ├── codeFixRenameUnmatchedParameterJS3.ts │ │ ├── codeFixRequireInTs1.ts │ │ ├── codeFixRequireInTs2.ts │ │ ├── codeFixRequireInTs3.ts │ │ ├── codeFixRequireInTs4.ts │ │ ├── codeFixRequireInTs5.ts │ │ ├── codeFixRequireInTs_all.ts │ │ ├── codeFixRequireInTs_allowSyntheticDefaultImports.ts │ │ ├── codeFixRequireInTs_allowSyntheticDefaultImports_all.ts │ │ ├── codeFixReturnTypeInAsyncFunction1.ts │ │ ├── codeFixReturnTypeInAsyncFunction10.ts │ │ ├── codeFixReturnTypeInAsyncFunction11.ts │ │ ├── codeFixReturnTypeInAsyncFunction12.ts │ │ ├── codeFixReturnTypeInAsyncFunction13.ts │ │ ├── codeFixReturnTypeInAsyncFunction14.ts │ │ ├── codeFixReturnTypeInAsyncFunction15.ts │ │ ├── codeFixReturnTypeInAsyncFunction16.ts │ │ ├── codeFixReturnTypeInAsyncFunction17.ts │ │ ├── codeFixReturnTypeInAsyncFunction18.ts │ │ ├── codeFixReturnTypeInAsyncFunction2.ts │ │ ├── codeFixReturnTypeInAsyncFunction3.ts │ │ ├── codeFixReturnTypeInAsyncFunction4.ts │ │ ├── codeFixReturnTypeInAsyncFunction5.ts │ │ ├── codeFixReturnTypeInAsyncFunction6.ts │ │ ├── codeFixReturnTypeInAsyncFunction7.ts │ │ ├── codeFixReturnTypeInAsyncFunction8.ts │ │ ├── codeFixReturnTypeInAsyncFunction9.ts │ │ ├── codeFixReturnTypeInAsyncFunction_fixAll.ts │ │ ├── codeFixSpelling1.ts │ │ ├── codeFixSpelling10.ts │ │ ├── codeFixSpelling11.ts │ │ ├── codeFixSpelling12.ts │ │ ├── codeFixSpelling13.ts │ │ ├── codeFixSpelling14.ts │ │ ├── codeFixSpelling2.ts │ │ ├── codeFixSpelling3.ts │ │ ├── codeFixSpelling4.ts │ │ ├── codeFixSpelling5.ts │ │ ├── codeFixSpelling6.ts │ │ ├── codeFixSpelling7.ts │ │ ├── codeFixSpelling8.ts │ │ ├── codeFixSpelling9.ts │ │ ├── codeFixSpellingAddSpaces1.ts │ │ ├── codeFixSpellingAddSpaces2.ts │ │ ├── codeFixSpellingAddSpaces3.ts │ │ ├── codeFixSpellingAddSpaces4.ts │ │ ├── codeFixSpellingAddSpaces5.ts │ │ ├── codeFixSpellingCaseSensitive1.ts │ │ ├── codeFixSpellingCaseSensitive2.ts │ │ ├── codeFixSpellingCaseSensitive3.ts │ │ ├── codeFixSpellingCaseSensitive4.ts │ │ ├── codeFixSpellingCaseWeight1.ts │ │ ├── codeFixSpellingCaseWeight2.ts │ │ ├── codeFixSpellingJs1.ts │ │ ├── codeFixSpellingJs2.ts │ │ ├── codeFixSpellingJs3.ts │ │ ├── codeFixSpellingJs4.ts │ │ ├── codeFixSpellingJs5.ts │ │ ├── codeFixSpellingJs6.ts │ │ ├── codeFixSpellingJs7.ts │ │ ├── codeFixSpellingJs8.ts │ │ ├── codeFixSpellingJs9.ts │ │ ├── codeFixSpellingPrivateNameInIn.ts │ │ ├── codeFixSpellingPrivatePropertyName.ts │ │ ├── codeFixSpellingPrivatePropertyNameNotInScope.ts │ │ ├── codeFixSpellingPropertyAccess.ts │ │ ├── codeFixSpellingPropertyNameStartsWithHash.ts │ │ ├── codeFixSpellingShortName1.ts │ │ ├── codeFixSpellingShortName2.ts │ │ ├── codeFixSpellingVsImport.ts │ │ ├── codeFixSpellingVsMissingMember.ts │ │ ├── codeFixSpelling_all.ts │ │ ├── codeFixSpelling_optionalChain.ts │ │ ├── codeFixSplitTypeOnlyImport.ts │ │ ├── codeFixTopLevelAwait_module_blankCompilerOptionsInTsConfig.ts │ │ ├── codeFixTopLevelAwait_module_compatibleCompilerOptionsInTsConfig.ts │ │ ├── codeFixTopLevelAwait_module_existingCompilerOptionsInTsConfig.ts │ │ ├── codeFixTopLevelAwait_module_missingCompilerOptionsInTsConfig.ts │ │ ├── codeFixTopLevelAwait_module_noTsConfig.ts │ │ ├── codeFixTopLevelAwait_module_targetES2017CompilerOptionsInTsConfig.ts │ │ ├── codeFixTopLevelAwait_notAModule.ts │ │ ├── codeFixTopLevelAwait_target_blankCompilerOptionsInTsConfig.ts │ │ ├── codeFixTopLevelAwait_target_compatibleCompilerOptionsInTsConfig.ts │ │ ├── codeFixTopLevelAwait_target_existingCompilerOptionsInTsConfig.ts │ │ ├── codeFixTopLevelAwait_target_missingCompilerOptionsInTsConfig.ts │ │ ├── codeFixTopLevelAwait_target_noTsConfig.ts │ │ ├── codeFixTopLevelForAwait_module_blankCompilerOptionsInTsConfig.ts │ │ ├── codeFixTopLevelForAwait_module_compatibleCompilerOptionsInTsConfig.ts │ │ ├── codeFixTopLevelForAwait_module_existingCompilerOptionsInTsConfig.ts │ │ ├── codeFixTopLevelForAwait_module_missingCompilerOptionsInTsConfig.ts │ │ ├── codeFixTopLevelForAwait_module_noTsConfig.ts │ │ ├── codeFixTopLevelForAwait_module_targetES2017CompilerOptionsInTsConfig.ts │ │ ├── codeFixTopLevelForAwait_notAModule.ts │ │ ├── codeFixTopLevelForAwait_target_blankCompilerOptionsInTsConfig.ts │ │ ├── codeFixTopLevelForAwait_target_compatibleCompilerOptionsInTsConfig.ts │ │ ├── codeFixTopLevelForAwait_target_existingCompilerOptionsInTsConfig.ts │ │ ├── codeFixTopLevelForAwait_target_missingCompilerOptionsInTsConfig.ts │ │ ├── codeFixTopLevelForAwait_target_noTsConfig.ts │ │ ├── codeFixUndeclaredAcrossFiles1.ts │ │ ├── codeFixUndeclaredAcrossFiles2.ts │ │ ├── codeFixUndeclaredAcrossFiles3.ts │ │ ├── codeFixUndeclaredClassInstance.ts │ │ ├── codeFixUndeclaredClassInstanceWithTypeParams.ts │ │ ├── codeFixUndeclaredInStaticMethod.ts │ │ ├── codeFixUndeclaredIndexSignatureNumericLiteral.ts │ │ ├── codeFixUndeclaredMethod.ts │ │ ├── codeFixUndeclaredMethodFunctionArgs.ts │ │ ├── codeFixUndeclaredMethodFunctionArgs_importArgumentType.ts │ │ ├── codeFixUndeclaredMethodFunctionArgs_importArgumentType1.ts │ │ ├── codeFixUndeclaredMethodFunctionArgs_importArgumentType2.ts │ │ ├── codeFixUndeclaredMethodObjectLiteralArgs.ts │ │ ├── codeFixUndeclaredPropertyAccesses.ts │ │ ├── codeFixUndeclaredPropertyFunctionEmptyClass.ts │ │ ├── codeFixUndeclaredPropertyFunctionNonEmptyClass.ts │ │ ├── codeFixUndeclaredPropertyNumericLiteral.ts │ │ ├── codeFixUndeclaredPropertyObjectLiteral.ts │ │ ├── codeFixUndeclaredPropertyObjectLiteralStrictNullChecks.ts │ │ ├── codeFixUndeclaredPropertyThisType.ts │ │ ├── codeFixUnreachableCode.ts │ │ ├── codeFixUnreachableCode_if.ts │ │ ├── codeFixUnreachableCode_noSuggestionIfDisabled.ts │ │ ├── codeFixUnusedIdentifier_all_delete.ts │ │ ├── codeFixUnusedIdentifier_all_delete_import.ts │ │ ├── codeFixUnusedIdentifier_all_delete_js.ts │ │ ├── codeFixUnusedIdentifier_all_delete_paramInFunction.ts │ │ ├── codeFixUnusedIdentifier_all_infer.ts │ │ ├── codeFixUnusedIdentifier_all_prefix.ts │ │ ├── codeFixUnusedIdentifier_all_selfReferencingFunction.ts │ │ ├── codeFixUnusedIdentifier_deleteWrite.ts │ │ ├── codeFixUnusedIdentifier_deleteWrite2.ts │ │ ├── codeFixUnusedIdentifier_delete_templateTag.ts │ │ ├── codeFixUnusedIdentifier_destructure_allUnused.ts │ │ ├── codeFixUnusedIdentifier_destructure_allUnused_all.ts │ │ ├── codeFixUnusedIdentifier_destructure_allUnused_for.ts │ │ ├── codeFixUnusedIdentifier_destructure_allUnused_nested.ts │ │ ├── codeFixUnusedIdentifier_destructure_partlyUnused.ts │ │ ├── codeFixUnusedIdentifier_destructuring_elements1.ts │ │ ├── codeFixUnusedIdentifier_destructuring_elements2.ts │ │ ├── codeFixUnusedIdentifier_destructuring_elements3.ts │ │ ├── codeFixUnusedIdentifier_destructuring_elements4.ts │ │ ├── codeFixUnusedIdentifier_destructuring_elements5.ts │ │ ├── codeFixUnusedIdentifier_destructuring_elements6.ts │ │ ├── codeFixUnusedIdentifier_destructuring_elements7.ts │ │ ├── codeFixUnusedIdentifier_destructuring_elements8.ts │ │ ├── codeFixUnusedIdentifier_importSpecifier1.ts │ │ ├── codeFixUnusedIdentifier_importSpecifier2.ts │ │ ├── codeFixUnusedIdentifier_importSpecifier3.ts │ │ ├── codeFixUnusedIdentifier_importSpecifier4.ts │ │ ├── codeFixUnusedIdentifier_importSpecifier5.ts │ │ ├── codeFixUnusedIdentifier_infer.ts │ │ ├── codeFixUnusedIdentifier_jsdocTypeParameter.ts │ │ ├── codeFixUnusedIdentifier_overloads.ts │ │ ├── codeFixUnusedIdentifier_parameter1.ts │ │ ├── codeFixUnusedIdentifier_parameter2.ts │ │ ├── codeFixUnusedIdentifier_parameter3.ts │ │ ├── codeFixUnusedIdentifier_parameter4.ts │ │ ├── codeFixUnusedIdentifier_parameter5.ts │ │ ├── codeFixUnusedIdentifier_parameter6.ts │ │ ├── codeFixUnusedIdentifier_parameterInCallback.ts │ │ ├── codeFixUnusedIdentifier_parameterInGetAccessor.ts │ │ ├── codeFixUnusedIdentifier_parameterInOverride.ts │ │ ├── codeFixUnusedIdentifier_parameter_all.ts │ │ ├── codeFixUnusedIdentifier_parameter_callback1.ts │ │ ├── codeFixUnusedIdentifier_parameter_callback2.ts │ │ ├── codeFixUnusedIdentifier_parameter_modifier.ts │ │ ├── codeFixUnusedIdentifier_parameter_modifier_and_arg.ts │ │ ├── codeFixUnusedIdentifier_prefix.ts │ │ ├── codeFixUnusedIdentifier_removeVariableStatement.ts │ │ ├── codeFixUnusedIdentifier_set.ts │ │ ├── codeFixUnusedIdentifier_singleLineStatements1.ts │ │ ├── codeFixUnusedIdentifier_singleLineStatements2.ts │ │ ├── codeFixUnusedIdentifier_singleLineStatements3.ts │ │ ├── codeFixUnusedIdentifier_suggestion.ts │ │ ├── codeFixUnusedIdentifier_super.ts │ │ ├── codeFixUnusedIdentifier_super1.ts │ │ ├── codeFixUnusedIdentifier_super2.ts │ │ ├── codeFixUnusedIdentifier_typeParameter1.ts │ │ ├── codeFixUnusedIdentifier_typeParameter2.ts │ │ ├── codeFixUnusedIdentifier_typeParameter3.ts │ │ ├── codeFixUnusedIdentifier_typeParameter4.ts │ │ ├── codeFixUnusedIdentifier_typeParameter5.ts │ │ ├── codeFixUnusedInterfaceInNamespace1.ts │ │ ├── codeFixUnusedInterfaceInNamespace2.ts │ │ ├── codeFixUnusedLabel.ts │ │ ├── codeFixUnusedLabel_all.ts │ │ ├── codeFixUnusedLabel_noSuggestionIfDisabled.ts │ │ ├── codeFixUnusedNamespaceInNamespace.ts │ │ ├── codeFixUseBigIntLiteral.ts │ │ ├── codeFixUseBigIntLiteral2.ts │ │ ├── codeFixUseBigIntLiteralWithNumericSeparators.ts │ │ ├── codeFixUseDefaultImport.ts │ │ ├── codeFixUseDefaultImport_all.ts │ │ ├── codeFixWrapDecoratorInParentheses01.ts │ │ ├── codeFixWrapDecoratorInParentheses_all.ts │ │ ├── codeFixWrapJsxInFragment.ts │ │ ├── codeFixWrapJsxInFragment2.ts │ │ ├── codeFixWrapJsxInFragment3.ts │ │ ├── codeFixWrapJsxInFragment4.ts │ │ ├── codeFixWrapJsxInFragmentWithGrammarError1.ts │ │ ├── codefixClassImplementInterface_omit.ts │ │ ├── codefixCrashExportGlobal.ts │ │ ├── codefixEnableJsxFlag_missingCompilerOptionsInJsconfig.ts │ │ ├── codefixEnableJsxFlag_missingCompilerOptionsInTsconfig.ts │ │ ├── codefixEnableJsxFlag_noTsconfig.ts │ │ ├── codefixInferFromUsageNullish.ts │ │ ├── codefixUnreferenceableDecoratorMetadata1.ts │ │ ├── codefixUnreferenceableDecoratorMetadata2.ts │ │ ├── codefixUnreferenceableDecoratorMetadata3.ts │ │ ├── commentBraceCompletionPosition.ts │ │ ├── commentSelection1.ts │ │ ├── commentSelection2.ts │ │ ├── commentsBlocks.ts │ │ ├── commentsEnumsFourslash.ts │ │ ├── commentsExternalModulesFourslash.ts │ │ ├── commentsImportDeclaration.ts │ │ ├── commentsInheritanceFourslash.ts │ │ ├── commentsInterfaceFourslash.ts │ │ ├── commentsLinePreservation.ts │ │ ├── commentsModulesFourslash.ts │ │ ├── commentsMultiModuleMultiFileFourslash.ts │ │ ├── commentsMultiModuleSingleFileFourslash.ts │ │ ├── commentsOverloadsFourslash.ts │ │ ├── commentsUnion.ts │ │ ├── commentsVariables.ts │ │ ├── compileOnSaveWorksWhenEmitBlockingErrorOnOtherFile.ts │ │ ├── completionAfterAtChar.ts │ │ ├── completionAfterBackslashFollowingString.ts │ │ ├── completionAfterBrace.ts │ │ ├── completionAfterDotDotDot.ts │ │ ├── completionAfterGlobalThis.ts │ │ ├── completionAfterNewline.ts │ │ ├── completionAfterNewline2.ts │ │ ├── completionAfterQuestionDot.ts │ │ ├── completionAmbientPropertyDeclaration.ts │ │ ├── completionAsKeyword.ts │ │ ├── completionAtCaseClause.ts │ │ ├── completionAtDottedNamespace.ts │ │ ├── completionAutoInsertQuestionDot.ts │ │ ├── completionBeforeSemanticDiagnosticsInArrowFunction1.ts │ │ ├── completionClassMemberSnippetCrossFileNodeReuse1.ts │ │ ├── completionCloneQuestionToken.ts │ │ ├── completionConstructorKeywordAfterPropertyDeclaration.ts │ │ ├── completionDetailsOfContextSensitiveParameterNoCrash.ts │ │ ├── completionEntryAfterASIExpressionInClass.ts │ │ ├── completionEntryClassMembersWithInferredFunctionReturnType1.ts │ │ ├── completionEntryForArgumentConstrainedToString.ts │ │ ├── completionEntryForArrayElementConstrainedToString.ts │ │ ├── completionEntryForArrayElementConstrainedToString2.ts │ │ ├── completionEntryForClassMembers.ts │ │ ├── completionEntryForClassMembers2.ts │ │ ├── completionEntryForClassMembers3.ts │ │ ├── completionEntryForClassMembers_StaticWhenBaseTypeIsNotResolved.ts │ │ ├── completionEntryForConst.ts │ │ ├── completionEntryForDeferredMappedTypeMembers.ts │ │ ├── completionEntryForPropertyConstrainedToString.ts │ │ ├── completionEntryForPropertyFromUnionOfModuleType.ts │ │ ├── completionEntryForShorthandPropertyAssignment.ts │ │ ├── completionEntryForUnionMethod.ts │ │ ├── completionEntryForUnionProperty.ts │ │ ├── completionEntryForUnionProperty2.ts │ │ ├── completionEntryInJsFile.ts │ │ ├── completionEntryOnNarrowedType.ts │ │ ├── completionExportFrom.ts │ │ ├── completionForComputedStringProperties.ts │ │ ├── completionForMetaProperty.ts │ │ ├── completionForObjectProperty.ts │ │ ├── completionForQuotedPropertyInPropertyAssignment1.ts │ │ ├── completionForQuotedPropertyInPropertyAssignment2.ts │ │ ├── completionForQuotedPropertyInPropertyAssignment3.ts │ │ ├── completionForQuotedPropertyInPropertyAssignment4.ts │ │ ├── completionForStringLiteral.ts │ │ ├── completionForStringLiteral10.ts │ │ ├── completionForStringLiteral11.ts │ │ ├── completionForStringLiteral12.ts │ │ ├── completionForStringLiteral13.ts │ │ ├── completionForStringLiteral14.ts │ │ ├── completionForStringLiteral15.ts │ │ ├── completionForStringLiteral16.ts │ │ ├── completionForStringLiteral2.ts │ │ ├── completionForStringLiteral3.ts │ │ ├── completionForStringLiteral4.ts │ │ ├── completionForStringLiteral5.ts │ │ ├── completionForStringLiteral6.ts │ │ ├── completionForStringLiteral7.ts │ │ ├── completionForStringLiteral8.ts │ │ ├── completionForStringLiteralExport.ts │ │ ├── completionForStringLiteralFromSignature.ts │ │ ├── completionForStringLiteralFromSignature2.ts │ │ ├── completionForStringLiteralImport1.ts │ │ ├── completionForStringLiteralImport2.ts │ │ ├── completionForStringLiteralImport3.ts │ │ ├── completionForStringLiteralInIndexedAccess01.ts │ │ ├── completionForStringLiteralNonrelativeImport1.ts │ │ ├── completionForStringLiteralNonrelativeImport10.ts │ │ ├── completionForStringLiteralNonrelativeImport11.ts │ │ ├── completionForStringLiteralNonrelativeImport12.ts │ │ ├── completionForStringLiteralNonrelativeImport13.ts │ │ ├── completionForStringLiteralNonrelativeImport14.ts │ │ ├── completionForStringLiteralNonrelativeImport15.ts │ │ ├── completionForStringLiteralNonrelativeImport16.ts │ │ ├── completionForStringLiteralNonrelativeImport17.ts │ │ ├── completionForStringLiteralNonrelativeImport18.ts │ │ ├── completionForStringLiteralNonrelativeImport2.ts │ │ ├── completionForStringLiteralNonrelativeImport3.ts │ │ ├── completionForStringLiteralNonrelativeImport4.ts │ │ ├── completionForStringLiteralNonrelativeImport5.ts │ │ ├── completionForStringLiteralNonrelativeImport7.ts │ │ ├── completionForStringLiteralNonrelativeImport8.ts │ │ ├── completionForStringLiteralNonrelativeImport9.ts │ │ ├── completionForStringLiteralNonrelativeImportTypings1.ts │ │ ├── completionForStringLiteralNonrelativeImportTypings2.ts │ │ ├── completionForStringLiteralNonrelativeImportTypings3.ts │ │ ├── completionForStringLiteralRelativeImport3.ts │ │ ├── completionForStringLiteralRelativeImport4.ts │ │ ├── completionForStringLiteralRelativeImport5.ts │ │ ├── completionForStringLiteralRelativeImport6.ts │ │ ├── completionForStringLiteralRelativeImportAllowJSFalse.ts │ │ ├── completionForStringLiteralRelativeImportAllowJSTrue.ts │ │ ├── completionForStringLiteralWithDynamicImport.ts │ │ ├── completionForStringLiteral_details.ts │ │ ├── completionForStringLiteral_mappedTypeMembers.ts │ │ ├── completionForStringLiteral_quotePreference.ts │ │ ├── completionForStringLiteral_quotePreference1.ts │ │ ├── completionForStringLiteral_quotePreference2.ts │ │ ├── completionForStringLiteral_quotePreference3.ts │ │ ├── completionForStringLiteral_quotePreference4.ts │ │ ├── completionForStringLiteral_quotePreference5.ts │ │ ├── completionForStringLiteral_quotePreference6.ts │ │ ├── completionForStringLiteral_quotePreference7.ts │ │ ├── completionForStringLiteral_quotePreference8.ts │ │ ├── completionImportAttributes.ts │ │ ├── completionImportCallAssertion.ts │ │ ├── completionImportMeta.ts │ │ ├── completionImportMetaWithGlobalDeclaration.ts │ │ ├── completionImportModuleSpecifierEndingDts.ts │ │ ├── completionImportModuleSpecifierEndingJs.ts │ │ ├── completionImportModuleSpecifierEndingJsx.ts │ │ ├── completionImportModuleSpecifierEndingTs.ts │ │ ├── completionImportModuleSpecifierEndingTsxPreserve.ts │ │ ├── completionImportModuleSpecifierEndingTsxReact.ts │ │ ├── completionImportModuleSpecifierEndingUnsupportedExtension.ts │ │ ├── completionInAugmentedClassModule.ts │ │ ├── completionInChecks1.ts │ │ ├── completionInFunctionLikeBody.ts │ │ ├── completionInFunctionLikeBody_includesPrimitiveTypes.ts │ │ ├── completionInIncompleteCallExpression.ts │ │ ├── completionInJSDocFunctionNew.ts │ │ ├── completionInJSDocFunctionThis.ts │ │ ├── completionInJsDoc.ts │ │ ├── completionInJsDocQualifiedNames.ts │ │ ├── completionInNamedImportLocation.ts │ │ ├── completionInTypeOf1.ts │ │ ├── completionInTypeOf2.ts │ │ ├── completionInUncheckedJSFile.ts │ │ ├── completionInfoWithExplicitTypeArguments.ts │ │ ├── completionInsideFunctionContainsArguments.ts │ │ ├── completionInsideObjectLiteralExpressionWithInstantiatedClassType.ts │ │ ├── completionJSDocNamePath.ts │ │ ├── completionListAfterAnyType.ts │ │ ├── completionListAfterClassExtends.ts │ │ ├── completionListAfterFunction.ts │ │ ├── completionListAfterFunction2.ts │ │ ├── completionListAfterFunction3.ts │ │ ├── completionListAfterInvalidCharacter.ts │ │ ├── completionListAfterNumericLiteral.ts │ │ ├── completionListAfterNumericLiteral1.ts │ │ ├── completionListAfterObjectLiteral1.ts │ │ ├── completionListAfterPropertyName.ts │ │ ├── completionListAfterRegularExpressionLiteral01.ts │ │ ├── completionListAfterRegularExpressionLiteral02.ts │ │ ├── completionListAfterRegularExpressionLiteral03.ts │ │ ├── completionListAfterRegularExpressionLiteral04.ts │ │ ├── completionListAfterRegularExpressionLiteral05.ts │ │ ├── completionListAfterRegularExpressionLiteral1.ts │ │ ├── completionListAfterSlash.ts │ │ ├── completionListAfterSpreadOperator01.ts │ │ ├── completionListAfterStringLiteral1.ts │ │ ├── completionListAfterStringLiteralTypeWithNoSubstitutionTemplateLiteral.ts │ │ ├── completionListAndMemberListOnCommentedDot.ts │ │ ├── completionListAndMemberListOnCommentedLine.ts │ │ ├── completionListAndMemberListOnCommentedWhiteSpace.ts │ │ ├── completionListAtBeginningOfFile01.ts │ │ ├── completionListAtBeginningOfIdentifierInArrowFunction01.ts │ │ ├── completionListAtDeclarationOfParameterType.ts │ │ ├── completionListAtEOF.ts │ │ ├── completionListAtEOF1.ts │ │ ├── completionListAtEOF2.ts │ │ ├── completionListAtEndOfWordInArrowFunction01.ts │ │ ├── completionListAtEndOfWordInArrowFunction02.ts │ │ ├── completionListAtEndOfWordInArrowFunction03.ts │ │ ├── completionListAtIdentifierDefinitionLocations_Generics.ts │ │ ├── completionListAtIdentifierDefinitionLocations_catch.ts │ │ ├── completionListAtIdentifierDefinitionLocations_classes.ts │ │ ├── completionListAtIdentifierDefinitionLocations_destructuring.ts │ │ ├── completionListAtIdentifierDefinitionLocations_enumMembers.ts │ │ ├── completionListAtIdentifierDefinitionLocations_enumMembers2.ts │ │ ├── completionListAtIdentifierDefinitionLocations_enums.ts │ │ ├── completionListAtIdentifierDefinitionLocations_functions.ts │ │ ├── completionListAtIdentifierDefinitionLocations_infers.ts │ │ ├── completionListAtIdentifierDefinitionLocations_interfaces.ts │ │ ├── completionListAtIdentifierDefinitionLocations_parameters.ts │ │ ├── completionListAtIdentifierDefinitionLocations_properties.ts │ │ ├── completionListAtIdentifierDefinitionLocations_varDeclarations.ts │ │ ├── completionListAtInvalidLocations.ts │ │ ├── completionListAtNodeBoundary.ts │ │ ├── completionListAtThisType.ts │ │ ├── completionListBeforeKeyword.ts │ │ ├── completionListBeforeNewScope01.ts │ │ ├── completionListBeforeNewScope02.ts │ │ ├── completionListBuilderLocations_Modules.ts │ │ ├── completionListBuilderLocations_VariableDeclarations.ts │ │ ├── completionListBuilderLocations_parameters.ts │ │ ├── completionListBuilderLocations_properties.ts │ │ ├── completionListCladule.ts │ │ ├── completionListClassMembers.ts │ │ ├── completionListClassMembersWithSuperClassFromUnknownNamespace.ts │ │ ├── completionListClassPrivateFields.ts │ │ ├── completionListClassPrivateFields_JS.ts │ │ ├── completionListClassThisJS.ts │ │ ├── completionListDefaultTypeArgumentPositionTypeOnly.ts │ │ ├── completionListEnumMembers.ts │ │ ├── completionListEnumValues.ts │ │ ├── completionListErrorRecovery.ts │ │ ├── completionListErrorRecovery2.ts │ │ ├── completionListForDerivedType1.ts │ │ ├── completionListForExportEquals.ts │ │ ├── completionListForExportEquals2.ts │ │ ├── completionListForGenericInstance1.ts │ │ ├── completionListForImportAttributes.ts │ │ ├── completionListForNonExportedMemberInAmbientModuleWithExportAssignment1.ts │ │ ├── completionListForObjectSpread.ts │ │ ├── completionListForRest.ts │ │ ├── completionListForShorthandPropertyAssignment.ts │ │ ├── completionListForShorthandPropertyAssignment2.ts │ │ ├── completionListForStringUnion.ts │ │ ├── completionListForTransitivelyExportedMembers01.ts │ │ ├── completionListForTransitivelyExportedMembers02.ts │ │ ├── completionListForTransitivelyExportedMembers03.ts │ │ ├── completionListForTransitivelyExportedMembers04.ts │ │ ├── completionListForUnicodeEscapeName.ts │ │ ├── completionListFunctionExpression.ts │ │ ├── completionListFunctionMembers.ts │ │ ├── completionListGenericConstraints.ts │ │ ├── completionListImplementingInterfaceFunctions.ts │ │ ├── completionListInArrowFunctionInUnclosedCallSite01.ts │ │ ├── completionListInClassExpressionWithTypeParameter.ts │ │ ├── completionListInClassStaticBlocks.ts │ │ ├── completionListInClosedFunction01.ts │ │ ├── completionListInClosedFunction02.ts │ │ ├── completionListInClosedFunction03.ts │ │ ├── completionListInClosedFunction04.ts │ │ ├── completionListInClosedFunction05.ts │ │ ├── completionListInClosedFunction06.ts │ │ ├── completionListInClosedFunction07.ts │ │ ├── completionListInClosedObjectTypeLiteralInSignature01.ts │ │ ├── completionListInClosedObjectTypeLiteralInSignature02.ts │ │ ├── completionListInClosedObjectTypeLiteralInSignature03.ts │ │ ├── completionListInClosedObjectTypeLiteralInSignature04.ts │ │ ├── completionListInComments.ts │ │ ├── completionListInComments2.ts │ │ ├── completionListInComments3.ts │ │ ├── completionListInContextuallyTypedArgument.ts │ │ ├── completionListInEmptyFile.ts │ │ ├── completionListInExportClause01.ts │ │ ├── completionListInExportClause02.ts │ │ ├── completionListInExportClause03.ts │ │ ├── completionListInExtendsClause.ts │ │ ├── completionListInExtendsClauseAtEOF.ts │ │ ├── completionListInFatArrow.ts │ │ ├── completionListInFunctionDeclaration.ts │ │ ├── completionListInFunctionExpression.ts │ │ ├── completionListInImportClause01.ts │ │ ├── completionListInImportClause02.ts │ │ ├── completionListInImportClause03.ts │ │ ├── completionListInImportClause04.ts │ │ ├── completionListInImportClause05.ts │ │ ├── completionListInImportClause06.ts │ │ ├── completionListInIndexSignature01.ts │ │ ├── completionListInIndexSignature02.ts │ │ ├── completionListInMiddleOfIdentifierInArrowFunction01.ts │ │ ├── completionListInNamedClassExpression.ts │ │ ├── completionListInNamedClassExpressionWithShadowing.ts │ │ ├── completionListInNamedFunctionExpression.ts │ │ ├── completionListInNamedFunctionExpression1.ts │ │ ├── completionListInNamedFunctionExpressionWithShadowing.ts │ │ ├── completionListInNamespaceImportName01.ts │ │ ├── completionListInNestedNamespaceName.ts │ │ ├── completionListInObjectBindingPattern01.ts │ │ ├── completionListInObjectBindingPattern02.ts │ │ ├── completionListInObjectBindingPattern03.ts │ │ ├── completionListInObjectBindingPattern04.ts │ │ ├── completionListInObjectBindingPattern05.ts │ │ ├── completionListInObjectBindingPattern06.ts │ │ ├── completionListInObjectBindingPattern07.ts │ │ ├── completionListInObjectBindingPattern08.ts │ │ ├── completionListInObjectBindingPattern09.ts │ │ ├── completionListInObjectBindingPattern10.ts │ │ ├── completionListInObjectBindingPattern11.ts │ │ ├── completionListInObjectBindingPattern12.ts │ │ ├── completionListInObjectBindingPattern13.ts │ │ ├── completionListInObjectBindingPattern14.ts │ │ ├── completionListInObjectBindingPattern15.ts │ │ ├── completionListInObjectBindingPattern16.ts │ │ ├── completionListInObjectLiteral.ts │ │ ├── completionListInObjectLiteral2.ts │ │ ├── completionListInObjectLiteral3.ts │ │ ├── completionListInObjectLiteral4.ts │ │ ├── completionListInObjectLiteral5.ts │ │ ├── completionListInObjectLiteral6.ts │ │ ├── completionListInObjectLiteral7.ts │ │ ├── completionListInObjectLiteral8.ts │ │ ├── completionListInObjectLiteralAssignmentPattern1.ts │ │ ├── completionListInObjectLiteralAssignmentPattern2.ts │ │ ├── completionListInObjectLiteralPropertyAssignment.ts │ │ ├── completionListInObjectLiteralThatIsParameterOfFunctionCall.ts │ │ ├── completionListInReturnWithContextualThis.ts │ │ ├── completionListInScope.ts │ │ ├── completionListInScope_doesNotIncludeAugmentations.ts │ │ ├── completionListInStringLiterals1.ts │ │ ├── completionListInStringLiterals2.ts │ │ ├── completionListInTemplateLiteralParts1.ts │ │ ├── completionListInTemplateLiteralPartsNegatives1.ts │ │ ├── completionListInTypeLiteralInTypeParameter1.ts │ │ ├── completionListInTypeLiteralInTypeParameter10.ts │ │ ├── completionListInTypeLiteralInTypeParameter11.ts │ │ ├── completionListInTypeLiteralInTypeParameter12.ts │ │ ├── completionListInTypeLiteralInTypeParameter13.ts │ │ ├── completionListInTypeLiteralInTypeParameter14.ts │ │ ├── completionListInTypeLiteralInTypeParameter15.ts │ │ ├── completionListInTypeLiteralInTypeParameter16.ts │ │ ├── completionListInTypeLiteralInTypeParameter17.ts │ │ ├── completionListInTypeLiteralInTypeParameter18.ts │ │ ├── completionListInTypeLiteralInTypeParameter19.ts │ │ ├── completionListInTypeLiteralInTypeParameter2.ts │ │ ├── completionListInTypeLiteralInTypeParameter20.ts │ │ ├── completionListInTypeLiteralInTypeParameter21.ts │ │ ├── completionListInTypeLiteralInTypeParameter3.ts │ │ ├── completionListInTypeLiteralInTypeParameter4.ts │ │ ├── completionListInTypeLiteralInTypeParameter5.ts │ │ ├── completionListInTypeLiteralInTypeParameter6.ts │ │ ├── completionListInTypeLiteralInTypeParameter7.ts │ │ ├── completionListInTypeLiteralInTypeParameter8.ts │ │ ├── completionListInTypeLiteralInTypeParameter9.ts │ │ ├── completionListInTypeParameterOfClassExpression1.ts │ │ ├── completionListInTypeParameterOfTypeAlias1.ts │ │ ├── completionListInTypeParameterOfTypeAlias2.ts │ │ ├── completionListInTypeParameterOfTypeAlias3.ts │ │ ├── completionListInTypedObjectLiterals2.ts │ │ ├── completionListInTypedObjectLiterals3.ts │ │ ├── completionListInTypedObjectLiterals4.ts │ │ ├── completionListInTypedObjectLiteralsWithPartialPropertyNames.ts │ │ ├── completionListInTypedObjectLiteralsWithPartialPropertyNames2.ts │ │ ├── completionListInUnclosedCommaExpression01.ts │ │ ├── completionListInUnclosedCommaExpression02.ts │ │ ├── completionListInUnclosedDeleteExpression01.ts │ │ ├── completionListInUnclosedDeleteExpression02.ts │ │ ├── completionListInUnclosedElementAccessExpression01.ts │ │ ├── completionListInUnclosedElementAccessExpression02.ts │ │ ├── completionListInUnclosedForLoop01.ts │ │ ├── completionListInUnclosedForLoop02.ts │ │ ├── completionListInUnclosedFunction01.ts │ │ ├── completionListInUnclosedFunction02.ts │ │ ├── completionListInUnclosedFunction03.ts │ │ ├── completionListInUnclosedFunction04.ts │ │ ├── completionListInUnclosedFunction05.ts │ │ ├── completionListInUnclosedFunction06.ts │ │ ├── completionListInUnclosedFunction07.ts │ │ ├── completionListInUnclosedFunction08.ts │ │ ├── completionListInUnclosedFunction09.ts │ │ ├── completionListInUnclosedFunction10.ts │ │ ├── completionListInUnclosedFunction11.ts │ │ ├── completionListInUnclosedFunction12.ts │ │ ├── completionListInUnclosedFunction13.ts │ │ ├── completionListInUnclosedFunction14.ts │ │ ├── completionListInUnclosedFunction15.ts │ │ ├── completionListInUnclosedFunction16.ts │ │ ├── completionListInUnclosedFunction17.ts │ │ ├── completionListInUnclosedFunction18.ts │ │ ├── completionListInUnclosedFunction19.ts │ │ ├── completionListInUnclosedIndexSignature01.ts │ │ ├── completionListInUnclosedIndexSignature02.ts │ │ ├── completionListInUnclosedIndexSignature03.ts │ │ ├── completionListInUnclosedObjectTypeLiteralInSignature01.ts │ │ ├── completionListInUnclosedObjectTypeLiteralInSignature02.ts │ │ ├── completionListInUnclosedObjectTypeLiteralInSignature03.ts │ │ ├── completionListInUnclosedObjectTypeLiteralInSignature04.ts │ │ ├── completionListInUnclosedSpreadExpression01.ts │ │ ├── completionListInUnclosedSpreadExpression02.ts │ │ ├── completionListInUnclosedTaggedTemplate01.ts │ │ ├── completionListInUnclosedTaggedTemplate02.ts │ │ ├── completionListInUnclosedTemplate01.ts │ │ ├── completionListInUnclosedTemplate02.ts │ │ ├── completionListInUnclosedTypeArguments.ts │ │ ├── completionListInUnclosedTypeOfExpression01.ts │ │ ├── completionListInUnclosedTypeOfExpression02.ts │ │ ├── completionListInUnclosedVoidExpression01.ts │ │ ├── completionListInUnclosedYieldExpression01.ts │ │ ├── completionListInferKeyword.ts │ │ ├── completionListInheritedClassMembers.ts │ │ ├── completionListInsideTargetTypedFunction.ts │ │ ├── completionListInstanceProtectedMembers.ts │ │ ├── completionListInstanceProtectedMembers2.ts │ │ ├── completionListInstanceProtectedMembers3.ts │ │ ├── completionListInstanceProtectedMembers4.ts │ │ ├── completionListInvalidMemberNames.ts │ │ ├── completionListInvalidMemberNames2.ts │ │ ├── completionListInvalidMemberNames_escapeQuote.ts │ │ ├── completionListInvalidMemberNames_startWithSpace.ts │ │ ├── completionListInvalidMemberNames_withExistingIdentifier.ts │ │ ├── completionListIsGlobalCompletion.ts │ │ ├── completionListKeywords.ts │ │ ├── completionListModuleMembers.ts │ │ ├── completionListNewIdentifierBindingElement.ts │ │ ├── completionListNewIdentifierFunctionDeclaration.ts │ │ ├── completionListNewIdentifierVariableDeclaration.ts │ │ ├── completionListObjectMembers.ts │ │ ├── completionListObjectMembersInTypeLocationWithTypeof.ts │ │ ├── completionListOfGenericSymbol.ts │ │ ├── completionListOfSplitInterface.ts │ │ ├── completionListOfUnion.ts │ │ ├── completionListOnAliasedModule.ts │ │ ├── completionListOnAliases.ts │ │ ├── completionListOnAliases2.ts │ │ ├── completionListOnAliases3.ts │ │ ├── completionListOnFunctionCallWithOptionalArgument.ts │ │ ├── completionListOnMethodParameterName.ts │ │ ├── completionListOnParam.ts │ │ ├── completionListOnParamInClass.ts │ │ ├── completionListOnParamOfGenericType1.ts │ │ ├── completionListOnPrivateVariableInModule.ts │ │ ├── completionListOnSuper.ts │ │ ├── completionListOnVarBetweenModules.ts │ │ ├── completionListOutsideOfClosedArrowFunction01.ts │ │ ├── completionListOutsideOfClosedArrowFunction02.ts │ │ ├── completionListOutsideOfClosedFunctionDeclaration01.ts │ │ ├── completionListOutsideOfForLoop01.ts │ │ ├── completionListOutsideOfForLoop02.ts │ │ ├── completionListPrivateMembers.ts │ │ ├── completionListPrivateMembers2.ts │ │ ├── completionListPrivateMembers3.ts │ │ ├── completionListPrivateNames.ts │ │ ├── completionListPrivateNamesAccessors.ts │ │ ├── completionListPrivateNamesMethods.ts │ │ ├── completionListProtectedMembers.ts │ │ ├── completionListStaticMembers.ts │ │ ├── completionListStaticProtectedMembers.ts │ │ ├── completionListStaticProtectedMembers2.ts │ │ ├── completionListStaticProtectedMembers3.ts │ │ ├── completionListStaticProtectedMembers4.ts │ │ ├── completionListStringParenthesizedExpression.ts │ │ ├── completionListStringParenthesizedType.ts │ │ ├── completionListSuperMembers.ts │ │ ├── completionListWithAmbientDeclaration.ts │ │ ├── completionListWithLabel.ts │ │ ├── completionListWithMeanings.ts │ │ ├── completionListWithModulesFromModule.ts │ │ ├── completionListWithModulesInsideModuleScope.ts │ │ ├── completionListWithModulesOutsideModuleScope.ts │ │ ├── completionListWithModulesOutsideModuleScope2.ts │ │ ├── completionListWithUnresolvedModule.ts │ │ ├── completionListWithoutVariableinitializer.ts │ │ ├── completionList_getExportsOfModule.ts │ │ ├── completionListsStringLiteralTypeAsIndexedAccessTypeObject.ts │ │ ├── completionListsThroughTransitiveBaseClasses.ts │ │ ├── completionListsThroughTransitiveBaseClasses2.ts │ │ ├── completionNoAutoInsertQuestionDotForThis.ts │ │ ├── completionNoAutoInsertQuestionDotForTypeParameter.ts │ │ ├── completionNoAutoInsertQuestionDotWithUserPreferencesOff.ts │ │ ├── completionNoParentLocation.ts │ │ ├── completionOfAwaitPromise1.ts │ │ ├── completionOfAwaitPromise2.ts │ │ ├── completionOfAwaitPromise3.ts │ │ ├── completionOfAwaitPromise4.ts │ │ ├── completionOfAwaitPromise5.ts │ │ ├── completionOfAwaitPromise6.ts │ │ ├── completionOfAwaitPromise7.ts │ │ ├── completionOfAwaitPromiseNoRedundant.ts │ │ ├── completionOfInterfaceAndVar.ts │ │ ├── completionPreferredSuggestions1.ts │ │ ├── completionPropertyFromConstraint.ts │ │ ├── completionPropertyShorthandForObjectLiteral.ts │ │ ├── completionPropertyShorthandForObjectLiteral2.ts │ │ ├── completionPropertyShorthandForObjectLiteral3.ts │ │ ├── completionPropertyShorthandForObjectLiteral4.ts │ │ ├── completionPropertyShorthandForObjectLiteral5.ts │ │ ├── completionReturnConstAssertion.ts │ │ ├── completionSatisfiesKeyword.ts │ │ ├── completionTypeAssertion.ts │ │ ├── completionTypeGuard.ts │ │ ├── completionTypeofExpressions.ts │ │ ├── completionUsingKeyword.ts │ │ ├── completionWithConditionalOperatorMissingColon.ts │ │ ├── completionWithDotFollowedByNamespaceKeyword.ts │ │ ├── completionWithNamespaceInsideFunction.ts │ │ ├── completionWritingSpreadLikeArgument.ts │ │ ├── completionsAfterAsyncInObjectLiteral.ts │ │ ├── completionsAfterJSDoc.ts │ │ ├── completionsAfterKeywordsInBlock.ts │ │ ├── completionsAfterLessThanToken.ts │ │ ├── completionsAfterPropertyNameInClass.ts │ │ ├── completionsAssertKeyword.ts │ │ ├── completionsAsserts.ts │ │ ├── completionsAsyncMethodDeclaration.ts │ │ ├── completionsAtGenericTypeArguments.ts │ │ ├── completionsAtIncompleteObjectLiteralProperty.ts │ │ ├── completionsAtTypeArguments.ts │ │ ├── completionsAugmentedTypesClass2.ts │ │ ├── completionsBeforeRestArg1.ts │ │ ├── completionsBigIntShowNoCompletions.ts │ │ ├── completionsClassMemberImportTypeNodeParameter1.ts │ │ ├── completionsClassMemberImportTypeNodeParameter2.ts │ │ ├── completionsClassMemberImportTypeNodeParameter3.ts │ │ ├── completionsClassMemberImportTypeNodeParameter4.ts │ │ ├── completionsClassMembers1.ts │ │ ├── completionsClassMembers2.ts │ │ ├── completionsClassMembers3.ts │ │ ├── completionsClassMembers4.ts │ │ ├── completionsClassMembers5.ts │ │ ├── completionsClassPropertiesAfterPrivateProperty.ts │ │ ├── completionsClassPropertiesAssignment.ts │ │ ├── completionsCombineOverloads.ts │ │ ├── completionsCombineOverloads_restParameter.ts │ │ ├── completionsCombineOverloads_returnType.ts │ │ ├── completionsCommentsClass.ts │ │ ├── completionsCommentsClassMembers.ts │ │ ├── completionsCommentsCommentParsing.ts │ │ ├── completionsCommentsFunctionDeclaration.ts │ │ ├── completionsCommentsFunctionExpression.ts │ │ ├── completionsCommitCharactersAfterDot.ts │ │ ├── completionsCommitCharactersExportImportClause.ts │ │ ├── completionsCommitCharactersGlobal.ts │ │ ├── completionsConditionalMember.ts │ │ ├── completionsDefaultExport.ts │ │ ├── completionsDefaultKeywordWhenDefaultExportAvailable.ts │ │ ├── completionsDestructuring.ts │ │ ├── completionsDiscriminatedUnion.ts │ │ ├── completionsDotDotDotInObjectLiteral1.ts │ │ ├── completionsDotInArrayLiteralInObjectLiteral.ts │ │ ├── completionsDotInObjectLiteral.ts │ │ ├── completionsECMAPrivateMember.ts │ │ ├── completionsECMAPrivateMemberTriggerCharacter.ts │ │ ├── completionsElementAccessNumeric.ts │ │ ├── completionsEnum.ts │ │ ├── completionsExportImport.ts │ │ ├── completionsExternalModuleReferenceResolutionOrderInImportDeclaration.ts │ │ ├── completionsExternalModuleRenamedExports.ts │ │ ├── completionsForLatterTypeParametersInConstraints1.ts │ │ ├── completionsForRecursiveGenericTypesMember.ts │ │ ├── completionsForSelfTypeParameterInConstraint1.ts │ │ ├── completionsForStringDependingOnContexSensitiveSignature.ts │ │ ├── completionsGeneratorFunctions.ts │ │ ├── completionsGeneratorMethodDeclaration.ts │ │ ├── completionsGenericIndexedAccess1.ts │ │ ├── completionsGenericIndexedAccess2.ts │ │ ├── completionsGenericIndexedAccess3.ts │ │ ├── completionsGenericIndexedAccess4.ts │ │ ├── completionsGenericIndexedAccess5.ts │ │ ├── completionsGenericIndexedAccess6.ts │ │ ├── completionsGenericTypeWithMultipleBases1.ts │ │ ├── completionsGenericUnconstrained.ts │ │ ├── completionsImportBaseUrl.ts │ │ ├── completionsImportDeclarationAttributesEmptyModuleSpecifier1.ts │ │ ├── completionsImportDeclarationAttributesErrorModuleSpecifier1.ts │ │ ├── completionsImportDefaultExportCrash1.ts │ │ ├── completionsImportDefaultExportCrash2.ts │ │ ├── completionsImportFromJSXTag.ts │ │ ├── completionsImportModuleAugmentationWithJS.ts │ │ ├── completionsImportOrExportSpecifier.ts │ │ ├── completionsImportPathsConflict.ts │ │ ├── completionsImportTypeKeyword.ts │ │ ├── completionsImportWithKeyword.ts │ │ ├── completionsImportYieldExpression.ts │ │ ├── completionsImport_46332.ts │ │ ├── completionsImport_ambient.ts │ │ ├── completionsImport_asKeyword.ts │ │ ├── completionsImport_augmentation.ts │ │ ├── completionsImport_compilerOptionsModule.ts │ │ ├── completionsImport_defaultAndNamedConflict.ts │ │ ├── completionsImport_defaultFalsePositive.ts │ │ ├── completionsImport_default_addToNamedImports.ts │ │ ├── completionsImport_default_addToNamespaceImport.ts │ │ ├── completionsImport_default_alreadyExistedWithRename.ts │ │ ├── completionsImport_default_anonymous.ts │ │ ├── completionsImport_default_didNotExistBefore.ts │ │ ├── completionsImport_default_exportDefaultIdentifier.ts │ │ ├── completionsImport_default_fromMergedDeclarations.ts │ │ ├── completionsImport_default_reExport.ts │ │ ├── completionsImport_default_symbolName.ts │ │ ├── completionsImport_details_withMisspelledName.ts │ │ ├── completionsImport_duplicatePackages_scoped.ts │ │ ├── completionsImport_duplicatePackages_scopedTypes.ts │ │ ├── completionsImport_duplicatePackages_scopedTypesAndNotTypes.ts │ │ ├── completionsImport_duplicatePackages_types.ts │ │ ├── completionsImport_duplicatePackages_typesAndNotTypes.ts │ │ ├── completionsImport_exportEquals.ts │ │ ├── completionsImport_exportEqualsNamespace_noDuplicate.ts │ │ ├── completionsImport_exportEquals_anonymous.ts │ │ ├── completionsImport_exportEquals_global.ts │ │ ├── completionsImport_filteredByInvalidPackageJson_direct.ts │ │ ├── completionsImport_filteredByPackageJson_@typesImplicit.ts │ │ ├── completionsImport_filteredByPackageJson_@typesOnly.ts │ │ ├── completionsImport_filteredByPackageJson_ambient.ts │ │ ├── completionsImport_filteredByPackageJson_direct.ts │ │ ├── completionsImport_filteredByPackageJson_nested.ts │ │ ├── completionsImport_filteredByPackageJson_peerDependencies.ts │ │ ├── completionsImport_filteredByPackageJson_reexport.ts │ │ ├── completionsImport_filteredByPackageJson_reexport2.ts │ │ ├── completionsImport_filteredByPackageJson_reexport3.ts │ │ ├── completionsImport_filteredByPackageJson_reexport4.ts │ │ ├── completionsImport_fromAmbientModule.ts │ │ ├── completionsImport_importType.ts │ │ ├── completionsImport_jsxOpeningTagImportDefault.ts │ │ ├── completionsImport_keywords.ts │ │ ├── completionsImport_matching.ts │ │ ├── completionsImport_multipleWithSameName.ts │ │ ├── completionsImport_named_addToNamedImports.ts │ │ ├── completionsImport_named_didNotExistBefore.ts │ │ ├── completionsImport_named_exportEqualsNamespace.ts │ │ ├── completionsImport_named_exportEqualsNamespace_merged.ts │ │ ├── completionsImport_named_fromMergedDeclarations.ts │ │ ├── completionsImport_named_namespaceImportExists.ts │ │ ├── completionsImport_noSemicolons.ts │ │ ├── completionsImport_notFromIndex.ts │ │ ├── completionsImport_notFromUnrelatedNodeModules.ts │ │ ├── completionsImport_ofAlias.ts │ │ ├── completionsImport_ofAlias_preferShortPath.ts │ │ ├── completionsImport_packageJsonImportsPreference.ts │ │ ├── completionsImport_preferUpdatingExistingImport.ts │ │ ├── completionsImport_previousTokenIsSemicolon.ts │ │ ├── completionsImport_promoteTypeOnly1.ts │ │ ├── completionsImport_promoteTypeOnly2.ts │ │ ├── completionsImport_promoteTypeOnly3.ts │ │ ├── completionsImport_promoteTypeOnly4.ts │ │ ├── completionsImport_promoteTypeOnly5.ts │ │ ├── completionsImport_promoteTypeOnly6.ts │ │ ├── completionsImport_promoteTypeOnly7.ts │ │ ├── completionsImport_quoteStyle.ts │ │ ├── completionsImport_reExportDefault.ts │ │ ├── completionsImport_reExportDefault2.ts │ │ ├── completionsImport_reExport_wrongName.ts │ │ ├── completionsImport_reexportTransient.ts │ │ ├── completionsImport_require.ts │ │ ├── completionsImport_require_addNew.ts │ │ ├── completionsImport_require_addToExisting.ts │ │ ├── completionsImport_satisfiesKeyword.ts │ │ ├── completionsImport_shadowedByLocal.ts │ │ ├── completionsImport_tsx.ts │ │ ├── completionsImport_typeOnly.ts │ │ ├── completionsImport_umdDefaultNoCrash1.ts │ │ ├── completionsImport_umdDefaultNoCrash2.ts │ │ ├── completionsImport_umdModules1_globalAccess.ts │ │ ├── completionsImport_umdModules2_moduleExports.ts │ │ ├── completionsImport_umdModules3_script.ts │ │ ├── completionsImport_uriStyleNodeCoreModules1.ts │ │ ├── completionsImport_uriStyleNodeCoreModules2.ts │ │ ├── completionsImport_uriStyleNodeCoreModules3.ts │ │ ├── completionsImport_weirdDefaultSynthesis.ts │ │ ├── completionsImport_windowsPathsProjectRelative.ts │ │ ├── completionsInExport.ts │ │ ├── completionsInExport_invalid.ts │ │ ├── completionsInExport_moduleBlock.ts │ │ ├── completionsInJsxTag.ts │ │ ├── completionsInRequire.ts │ │ ├── completionsIndexSignatureConstraint1.ts │ │ ├── completionsInitializerCommitCharacter.ts │ │ ├── completionsInterfaceElement.ts │ │ ├── completionsIsPossiblyTypeArgumentPosition.ts │ │ ├── completionsIsTypeOnlyCompletion.ts │ │ ├── completionsJSDocImportTagAttributesEmptyModuleSpecifier1.ts │ │ ├── completionsJSDocImportTagAttributesErrorModuleSpecifier1.ts │ │ ├── completionsJSDocImportTagEmptyModuleSpecifier1.ts │ │ ├── completionsJSDocNoCrash1.ts │ │ ├── completionsJSDocNoCrash2.ts │ │ ├── completionsJSDocNoCrash3.ts │ │ ├── completionsJSDocTags.ts │ │ ├── completionsJsPropertyAssignment.ts │ │ ├── completionsJsdocParamTypeBeforeName.ts │ │ ├── completionsJsdocTag.ts │ │ ├── completionsJsdocTypeTagCast.ts │ │ ├── completionsJsxAttribute.ts │ │ ├── completionsJsxAttribute2.ts │ │ ├── completionsJsxAttributeGeneric.ts │ │ ├── completionsJsxAttributeGeneric2.ts │ │ ├── completionsJsxAttributeInitializer.ts │ │ ├── completionsJsxAttributeInitializer2.ts │ │ ├── completionsJsxExpression.ts │ │ ├── completionsKeyof.ts │ │ ├── completionsKeywordsExtends.ts │ │ ├── completionsLiteralDirectlyInArgumentWithNullableConstraint.ts │ │ ├── completionsLiteralDirectlyInRestConstrainedToArrayType.ts │ │ ├── completionsLiteralDirectlyInRestConstrainedToTupleType.ts │ │ ├── completionsLiteralFromInferenceWithinInferredType1.ts │ │ ├── completionsLiteralFromInferenceWithinInferredType2.ts │ │ ├── completionsLiteralFromInferenceWithinInferredType3.ts │ │ ├── completionsLiteralMatchingGenericSignature.ts │ │ ├── completionsLiteralOnPropertyValueMatchingGeneric.ts │ │ ├── completionsLiteralOverload.ts │ │ ├── completionsLiterals.ts │ │ ├── completionsMergedDeclarations1.ts │ │ ├── completionsMergedDeclarations2.ts │ │ ├── completionsNamespaceMergedWithClass.ts │ │ ├── completionsNamespaceMergedWithObject.ts │ │ ├── completionsNamespaceName.ts │ │ ├── completionsNewTarget.ts │ │ ├── completionsNonExistentImport.ts │ │ ├── completionsObjectLiteralExpressions1.ts │ │ ├── completionsObjectLiteralExpressions10.ts │ │ ├── completionsObjectLiteralExpressions2.ts │ │ ├── completionsObjectLiteralExpressions3.ts │ │ ├── completionsObjectLiteralExpressions4.ts │ │ ├── completionsObjectLiteralExpressions5.ts │ │ ├── completionsObjectLiteralExpressions6.ts │ │ ├── completionsObjectLiteralExpressions7.ts │ │ ├── completionsObjectLiteralExpressions8.ts │ │ ├── completionsObjectLiteralExpressions9.ts │ │ ├── completionsObjectLiteralMethod1.ts │ │ ├── completionsObjectLiteralMethod2.ts │ │ ├── completionsObjectLiteralMethod3.ts │ │ ├── completionsObjectLiteralMethod4.ts │ │ ├── completionsObjectLiteralMethod5.ts │ │ ├── completionsObjectLiteralMethod6.ts │ │ ├── completionsObjectLiteralModuleExports.ts │ │ ├── completionsObjectLiteralUnionStringMappingType.ts │ │ ├── completionsObjectLiteralUnionTemplateLiteralType.ts │ │ ├── completionsObjectLiteralWithPartialConstraint.ts │ │ ├── completionsOptionalKindModifier.ts │ │ ├── completionsOptionalMethod.ts │ │ ├── completionsOptionalReplacementSpan1.ts │ │ ├── completionsOverridingMethod0.ts │ │ ├── completionsOverridingMethod1.ts │ │ ├── completionsOverridingMethod10.ts │ │ ├── completionsOverridingMethod11.ts │ │ ├── completionsOverridingMethod12.ts │ │ ├── completionsOverridingMethod13.ts │ │ ├── completionsOverridingMethod14.ts │ │ ├── completionsOverridingMethod15.ts │ │ ├── completionsOverridingMethod16.ts │ │ ├── completionsOverridingMethod17.ts │ │ ├── completionsOverridingMethod18.ts │ │ ├── completionsOverridingMethod19.ts │ │ ├── completionsOverridingMethod2.ts │ │ ├── completionsOverridingMethod20.ts │ │ ├── completionsOverridingMethod21.ts │ │ ├── completionsOverridingMethod22.ts │ │ ├── completionsOverridingMethod3.ts │ │ ├── completionsOverridingMethod4.ts │ │ ├── completionsOverridingMethod5.ts │ │ ├── completionsOverridingMethod6.ts │ │ ├── completionsOverridingMethod7.ts │ │ ├── completionsOverridingMethod8.ts │ │ ├── completionsOverridingMethod9.ts │ │ ├── completionsOverridingMethodCrash1.ts │ │ ├── completionsOverridingMethodDefaultExported.ts │ │ ├── completionsOverridingProperties1.ts │ │ ├── completionsOverridingProperties2.ts │ │ ├── completionsOverridingProperties3.ts │ │ ├── completionsPaths.ts │ │ ├── completionsPathsJsonModule.ts │ │ ├── completionsPathsJsonModuleWithAmd.ts │ │ ├── completionsPathsJsonModuleWithoutResolveJsonModule.ts │ │ ├── completionsPathsRelativeJsonModule.ts │ │ ├── completionsPaths_fromTypings.ts │ │ ├── completionsPaths_importType.ts │ │ ├── completionsPaths_kinds.ts │ │ ├── completionsPaths_pathMapping.ts │ │ ├── completionsPaths_pathMapping_nonTrailingWildcard1.ts │ │ ├── completionsPaths_pathMapping_notInNestedDirectory.ts │ │ ├── completionsPaths_pathMapping_parentDirectory.ts │ │ ├── completionsPaths_pathMapping_relativePath.ts │ │ ├── completionsPaths_pathMapping_topLevel.ts │ │ ├── completionsPrivateProperties_Js.ts │ │ ├── completionsPropertiesPriorities.ts │ │ ├── completionsPropertiesWithPromiseUnionType.ts │ │ ├── completionsQuotedObjectLiteralUnion.ts │ │ ├── completionsRecommended_contextualTypes.ts │ │ ├── completionsRecommended_equals.ts │ │ ├── completionsRecommended_import.ts │ │ ├── completionsRecommended_local.ts │ │ ├── completionsRecommended_namespace.ts │ │ ├── completionsRecommended_nonAccessibleSymbol.ts │ │ ├── completionsRecommended_switch.ts │ │ ├── completionsRecommended_union.ts │ │ ├── completionsRecursiveNamespace.ts │ │ ├── completionsRedeclareModuleAsGlobal.ts │ │ ├── completionsSalsaMethodsOnAssignedFunctionExpressions.ts │ │ ├── completionsSelfDeclaring1.ts │ │ ├── completionsSelfDeclaring2.ts │ │ ├── completionsSelfDeclaring3.ts │ │ ├── completionsSpecialAssignmentNotContextuallyTyped.ts │ │ ├── completionsStringCommitCharacter.ts │ │ ├── completionsStringLiteral_fromTypeConstraint.ts │ │ ├── completionsStringMethods.ts │ │ ├── completionsStringsWithTriggerCharacter.ts │ │ ├── completionsSymbolMembers.ts │ │ ├── completionsThisPropertiesInPropertyDeclaration1.ts │ │ ├── completionsThisPropertiesInPropertyDeclaration2.ts │ │ ├── completionsThisProperties_globalSameName.ts │ │ ├── completionsThisProperties_globalType.ts │ │ ├── completionsThisType.ts │ │ ├── completionsTriggerCharacter.ts │ │ ├── completionsTuple.ts │ │ ├── completionsTypeAssertionKeywords.ts │ │ ├── completionsTypeKeywords.ts │ │ ├── completionsTypeOnlyNamespace.ts │ │ ├── completionsUnion.ts │ │ ├── completionsUnionStringLiteralProperty.ts │ │ ├── completionsUniqueSymbol1.ts │ │ ├── completionsUniqueSymbol2.ts │ │ ├── completionsUniqueSymbol_import.ts │ │ ├── completionsWithDeprecatedTag1.ts │ │ ├── completionsWithDeprecatedTag10.ts │ │ ├── completionsWithDeprecatedTag2.ts │ │ ├── completionsWithDeprecatedTag3.ts │ │ ├── completionsWithDeprecatedTag4.ts │ │ ├── completionsWithDeprecatedTag5.ts │ │ ├── completionsWithDeprecatedTag6.ts │ │ ├── completionsWithDeprecatedTag7.ts │ │ ├── completionsWithDeprecatedTag8.ts │ │ ├── completionsWithDeprecatedTag9.ts │ │ ├── completionsWithGenericStringLiteral.ts │ │ ├── completionsWithOptionalProperties.ts │ │ ├── completionsWithOptionalPropertiesGeneric.ts │ │ ├── completionsWithOptionalPropertiesGenericConstructor.ts │ │ ├── completionsWithOptionalPropertiesGenericDeep.ts │ │ ├── completionsWithOptionalPropertiesGenericPartial.ts │ │ ├── completionsWithOptionalPropertiesGenericPartial2.ts │ │ ├── completionsWithOptionalPropertiesGenericPartial3.ts │ │ ├── completionsWithOptionalPropertiesGenericValidBoolean.ts │ │ ├── completionsWithOverride1.ts │ │ ├── completionsWithOverride2.ts │ │ ├── completionsWithStringReplacementMode.ts │ │ ├── completionsWithStringReplacementMode1.ts │ │ ├── completionsWrappedClass.ts │ │ ├── completionsWritingSpreadArgument.ts │ │ ├── consistenceOnIndentionsOfChainedFunctionCalls.ts │ │ ├── consistenceOnIndentionsOfObjectsInAListAfterFormatting.ts │ │ ├── consistentContextualTypeErrorsAfterEdits.ts │ │ ├── constEnumQuickInfoAndCompletionList.ts │ │ ├── constEnumsEmitOutputInMultipleFiles.ts │ │ ├── constQuickInfoAndCompletionList.ts │ │ ├── constraintRegionCheck.ts │ │ ├── constructorBraceFormatting.ts │ │ ├── constructorFindAllReferences1.ts │ │ ├── constructorFindAllReferences2.ts │ │ ├── constructorFindAllReferences3.ts │ │ ├── constructorFindAllReferences4.ts │ │ ├── constructorQuickInfo.ts │ │ ├── contextualTypingFromTypeAssertion1.ts │ │ ├── contextualTypingGenericFunction1.ts │ │ ├── contextualTypingOfArrayLiterals.ts │ │ ├── contextualTypingOfGenericCallSignatures1.ts │ │ ├── contextualTypingOfGenericCallSignatures2.ts │ │ ├── contextualTypingReturnExpressions.ts │ │ ├── contextuallyTypedFunctionExpressionGeneric1.ts │ │ ├── contextuallyTypedObjectLiteralMethodDeclarationParam01.ts │ │ ├── contextuallyTypedParameters.ts │ │ ├── convertFunctionToEs6Class-propertyMember.ts │ │ ├── convertFunctionToEs6Class-prototypeAccessor.ts │ │ ├── convertFunctionToEs6Class-prototypeMethod.ts │ │ ├── convertFunctionToEs6Class-removeConstructor.ts │ │ ├── convertFunctionToEs6Class-removeConstructor2.ts │ │ ├── convertFunctionToEs6Class1.ts │ │ ├── convertFunctionToEs6Class10.ts │ │ ├── convertFunctionToEs6Class11.ts │ │ ├── convertFunctionToEs6Class12.ts │ │ ├── convertFunctionToEs6Class13.ts │ │ ├── convertFunctionToEs6Class14.ts │ │ ├── convertFunctionToEs6Class2.ts │ │ ├── convertFunctionToEs6Class3.ts │ │ ├── convertFunctionToEs6Class4.ts │ │ ├── convertFunctionToEs6Class5.ts │ │ ├── convertFunctionToEs6Class6.ts │ │ ├── convertFunctionToEs6Class7.ts │ │ ├── convertFunctionToEs6Class8.ts │ │ ├── convertFunctionToEs6Class9.ts │ │ ├── convertFunctionToEs6ClassJsDoc.ts │ │ ├── convertFunctionToEs6ClassNoSemicolon.ts │ │ ├── convertFunctionToEs6Class_asyncMethods.ts │ │ ├── convertFunctionToEs6Class_commentOnVariableDeclaration.ts │ │ ├── convertFunctionToEs6Class_emptySwitchCase.ts │ │ ├── convertFunctionToEs6Class_exportModifier1.ts │ │ ├── convertFunctionToEs6Class_exportModifier2.ts │ │ ├── convertFunctionToEs6Class_falsePositive.ts │ │ ├── convertFunctionToEs6Class_noQuickInfoForIIFE.ts │ │ ├── convertFunctionToEs6Class_objectLiteralInArrowFunction.ts │ │ ├── convertLiteralTypeToMappedType1.ts │ │ ├── convertLiteralTypeToMappedType2.ts │ │ ├── convertLiteralTypeToMappedType3.ts │ │ ├── convertToEs6Class_emptyCatchClause.ts │ │ ├── correuptedTryExpressionsDontCrashGettingOutlineSpans.ts │ │ ├── crossFileQuickInfoExportedTypeDoesNotUseImportType.ts │ │ ├── debuggerStatementIndent.ts │ │ ├── declarationExpressions.ts │ │ ├── declareFunction.ts │ │ ├── deduplicateDuplicateMergedBindCheckErrors.ts │ │ ├── deduplicateErrors.ts │ │ ├── defaultParamsAndContextualTypes.ts │ │ ├── definition.ts │ │ ├── definitionNameOnEnumMember.ts │ │ ├── deleteClassWithEnumPresent.ts │ │ ├── deleteExtensionInReopenedInterface.ts │ │ ├── deleteModifierBeforeVarStatement1.ts │ │ ├── deleteReopenedModule.ts │ │ ├── deleteTypeParameter.ts │ │ ├── deprecatedInheritedJSDocOverload.ts │ │ ├── derivedClassRegionCheck.ts │ │ ├── derivedTypeIndexerWithGenericConstraints.ts │ │ ├── diagnosticsJsFileCompilationDuplicateFunctionImplementation.ts │ │ ├── distinctTypesInCallbacksWithSameNames.ts │ │ ├── docCommentTemplateClassDecl01.ts │ │ ├── docCommentTemplateClassDeclMethods01.ts │ │ ├── docCommentTemplateClassDeclMethods02.ts │ │ ├── docCommentTemplateClassDeclProperty01.ts │ │ ├── docCommentTemplateConstructor01.ts │ │ ├── docCommentTemplateEmptyFile.ts │ │ ├── docCommentTemplateExportAssignmentJS.ts │ │ ├── docCommentTemplateFunctionExpression.ts │ │ ├── docCommentTemplateFunctionWithParameters.ts │ │ ├── docCommentTemplateFunctionWithParameters_js.ts │ │ ├── docCommentTemplateInMultiLineComment.ts │ │ ├── docCommentTemplateInSingleLineComment.ts │ │ ├── docCommentTemplateIndentation.ts │ │ ├── docCommentTemplateInsideFunctionDeclaration.ts │ │ ├── docCommentTemplateInterfacePropertyFunctionType.ts │ │ ├── docCommentTemplateInterfacesEnumsAndTypeAliases.ts │ │ ├── docCommentTemplateJsSpecialPropertyAssignment.ts │ │ ├── docCommentTemplateNamespacesAndModules01.ts │ │ ├── docCommentTemplateNamespacesAndModules02.ts │ │ ├── docCommentTemplateObjectLiteralMethods01.ts │ │ ├── docCommentTemplatePrototypeMethod.ts │ │ ├── docCommentTemplateRegex.ts │ │ ├── docCommentTemplateReturnsTag1.ts │ │ ├── docCommentTemplateReturnsTag2.ts │ │ ├── docCommentTemplateVariableStatements01.ts │ │ ├── docCommentTemplateVariableStatements02.ts │ │ ├── docCommentTemplateVariableStatements03.ts │ │ ├── docCommentTemplateWithExistingJSDoc.ts │ │ ├── docCommentTemplateWithMultipleJSDoc1.ts │ │ ├── docCommentTemplateWithMultipleJSDoc2.ts │ │ ├── docCommentTemplateWithMultipleJSDoc3.ts │ │ ├── docCommentTemplateWithMultipleJSDocAndParameters.ts │ │ ├── docCommentTemplate_insideEmptyComment.ts │ │ ├── documentHighlightAtInheritedProperties1.ts │ │ ├── documentHighlightAtInheritedProperties2.ts │ │ ├── documentHighlightAtInheritedProperties3.ts │ │ ├── documentHighlightAtInheritedProperties4.ts │ │ ├── documentHighlightAtInheritedProperties5.ts │ │ ├── documentHighlightAtInheritedProperties6.ts │ │ ├── documentHighlightAtParameterPropertyDeclaration1.ts │ │ ├── documentHighlightAtParameterPropertyDeclaration2.ts │ │ ├── documentHighlightAtParameterPropertyDeclaration3.ts │ │ ├── documentHighlightDefaultInKeyword.ts │ │ ├── documentHighlightDefaultInSwitch.ts │ │ ├── documentHighlightInExport1.ts │ │ ├── documentHighlightInKeyword.ts │ │ ├── documentHighlightInTypeExport.ts │ │ ├── documentHighlightJSDocTypedef.ts │ │ ├── documentHighlightMultilineTemplateStrings.ts │ │ ├── documentHighlightTemplateStrings.ts │ │ ├── documentHighlightVarianceModifiers.ts │ │ ├── documentHighlightsInvalidGlobalThis.ts │ │ ├── documentHighlightsInvalidModifierLocations.ts │ │ ├── documentHighlights_33722.ts │ │ ├── documentHighlights_40082.ts │ │ ├── documentHighlights_filesToSearch.ts │ │ ├── documentHighlights_moduleImport_filesToSearch.ts │ │ ├── documentHighlights_moduleImport_filesToSearchWithInvalidFile.ts │ │ ├── documentHighlights_windowsPath.ts │ │ ├── doubleUnderscoreCompletions.ts │ │ ├── doubleUnderscoreRenames.ts │ │ ├── duplicateClassModuleError0.ts │ │ ├── duplicateFunctionImplementation.ts │ │ ├── duplicateIndexers.ts │ │ ├── duplicatePackageServices.ts │ │ ├── duplicatePackageServices_fileChanges.ts │ │ ├── duplicateTypeParameters.ts │ │ ├── editClearsJsDocCache.ts │ │ ├── editJsdocType.ts │ │ ├── editLambdaArgToTypeParameter1.ts │ │ ├── editTemplateConstraint.ts │ │ ├── emptyArrayInference.ts │ │ ├── emptyExportFindReferences.ts │ │ ├── enumAddition.ts │ │ ├── enumUpdate1.ts │ │ ├── errorConsistency.ts │ │ ├── errorInIncompleteMethodInObjectLiteral.ts │ │ ├── errorsAfterResolvingVariableDeclOfMergedVariableAndClassDecl.ts │ │ ├── esModuleInteropFindAllReferences.ts │ │ ├── esModuleInteropFindAllReferences2.ts │ │ ├── eval.ts │ │ ├── excessivelyLargeArrayLiteralCompletions.ts │ │ ├── exhaustiveCaseCompletions1.ts │ │ ├── exhaustiveCaseCompletions2.ts │ │ ├── exhaustiveCaseCompletions3.ts │ │ ├── exhaustiveCaseCompletions4.ts │ │ ├── exhaustiveCaseCompletions5.ts │ │ ├── exhaustiveCaseCompletions6.ts │ │ ├── exhaustiveCaseCompletions7.ts │ │ ├── exhaustiveCaseCompletions8.ts │ │ ├── exhaustiveCaseCompletions9.ts │ │ ├── explainFilesNodeNextWithTypesReference.ts │ │ ├── exportClauseErrorReporting0.ts │ │ ├── exportDefaultClass.ts │ │ ├── exportDefaultFunction.ts │ │ ├── exportEqualCallableInterface.ts │ │ ├── exportEqualNamespaceClassESModuleInterop.ts │ │ ├── exportEqualTypes.ts │ │ ├── exportEqualsInterfaceA.ts │ │ ├── exportInLabeledStatement.ts │ │ ├── exportInObjectLiteral.ts │ │ ├── extendArrayInterface.ts │ │ ├── extendArrayInterfaceMember.ts │ │ ├── extendInterfaceOverloadedMethod.ts │ │ ├── extendsKeywordCompletion1.ts │ │ ├── extendsKeywordCompletion2.ts │ │ ├── extendsTArray.ts │ │ ├── externalModuleIntellisense.ts │ │ ├── externalModuleWithExportAssignment.ts │ │ ├── extract-const-callback-function-generic.ts │ │ ├── extract-const-callback-function-no-context1.ts │ │ ├── extract-const-callback-function-no-context2.ts │ │ ├── extract-const-callback-function-no-context3.ts │ │ ├── extract-const-callback-function-rest.ts │ │ ├── extract-const-callback-function-this1.ts │ │ ├── extract-const-callback-function-this2.ts │ │ ├── extract-const-callback-function-this3.ts │ │ ├── extract-const-callback-function.ts │ │ ├── extract-const-callback.ts │ │ ├── extract-const1.ts │ │ ├── extract-const10.ts │ │ ├── extract-const2.ts │ │ ├── extract-const3.ts │ │ ├── extract-const4.ts │ │ ├── extract-const5.ts │ │ ├── extract-const6.ts │ │ ├── extract-const7.ts │ │ ├── extract-const8.ts │ │ ├── extract-const9.ts │ │ ├── extract-const_insideJsxFragment1.ts │ │ ├── extract-const_jsxAttribute1.ts │ │ ├── extract-const_jsxAttribute2.ts │ │ ├── extract-const_jsxAttribute3.ts │ │ ├── extract-const_jsxElement1.ts │ │ ├── extract-const_jsxElement2.ts │ │ ├── extract-const_jsxElement3.ts │ │ ├── extract-const_jsxElement4.ts │ │ ├── extract-const_jsxElement5.ts │ │ ├── extract-const_jsxElement6.ts │ │ ├── extract-const_jsxElement7.ts │ │ ├── extract-const_jsxFragment1.ts │ │ ├── extract-const_jsxFragment2.ts │ │ ├── extract-const_jsxFragment3.ts │ │ ├── extract-const_jsxSelfClosingElement1.ts │ │ ├── extract-const_jsxSelfClosingElement2.ts │ │ ├── extract-const_jsxSelfClosingElement3.ts │ │ ├── extract-export-assignment.ts │ │ ├── extract-jsdoc.ts │ │ ├── extract-method-empty-namespace.ts │ │ ├── extract-method-formatting-objectliteral.ts │ │ ├── extract-method-formatting.ts │ │ ├── extract-method-generics-inside-extraction1.ts │ │ ├── extract-method-generics-inside-extraction2.ts │ │ ├── extract-method-in-anonymous-function-declaration.ts │ │ ├── extract-method-not-for-empty.ts │ │ ├── extract-method-not-for-import.ts │ │ ├── extract-method-two-type-literals.ts │ │ ├── extract-method-uniqueName.ts │ │ ├── extract-method1.ts │ │ ├── extract-method10.ts │ │ ├── extract-method11.ts │ │ ├── extract-method13.ts │ │ ├── extract-method14.ts │ │ ├── extract-method15.ts │ │ ├── extract-method17.ts │ │ ├── extract-method18.ts │ │ ├── extract-method19.ts │ │ ├── extract-method2.ts │ │ ├── extract-method20.ts │ │ ├── extract-method21.ts │ │ ├── extract-method22.ts │ │ ├── extract-method23.ts │ │ ├── extract-method24.ts │ │ ├── extract-method25.ts │ │ ├── extract-method26.ts │ │ ├── extract-method27.ts │ │ ├── extract-method28.ts │ │ ├── extract-method29.ts │ │ ├── extract-method3.ts │ │ ├── extract-method30.ts │ │ ├── extract-method31.ts │ │ ├── extract-method32.ts │ │ ├── extract-method33.ts │ │ ├── extract-method34.ts │ │ ├── extract-method35.ts │ │ ├── extract-method36.ts │ │ ├── extract-method37.ts │ │ ├── extract-method38.ts │ │ ├── extract-method39.ts │ │ ├── extract-method4.ts │ │ ├── extract-method40.ts │ │ ├── extract-method41.ts │ │ ├── extract-method42.ts │ │ ├── extract-method43.ts │ │ ├── extract-method44.ts │ │ ├── extract-method45.ts │ │ ├── extract-method46.ts │ │ ├── extract-method47.ts │ │ ├── extract-method48.ts │ │ ├── extract-method5.ts │ │ ├── extract-method6.ts │ │ ├── extract-method7.ts │ │ ├── extract-method8.ts │ │ ├── extract-method9.ts │ │ ├── extract-method_jsxElement1.ts │ │ ├── extract-method_jsxElement2.ts │ │ ├── extract-method_jsxElement3.ts │ │ ├── extract-method_jsxFragment1.ts │ │ ├── extract-method_jsxFragment2.ts │ │ ├── extract-method_jsxFragment3.ts │ │ ├── extract-method_jsxIntrinsicTagSymbol.ts │ │ ├── extract-method_jsxPreceedingWhitespace.ts │ │ ├── extract-method_jsxSelfClosingElement1.ts │ │ ├── extract-method_jsxSelfClosingElement2.ts │ │ ├── extract-method_jsxSelfClosingElement3.ts │ │ ├── extract-unterminated1.ts │ │ ├── extract-unterminated2.ts │ │ ├── extract-unterminated3.ts │ │ ├── extract-unterminated4.ts │ │ ├── extract-unterminated5.ts │ │ ├── extractFunctionContainingThis1.ts │ │ ├── extractFunctionContainingThis2.ts │ │ ├── extractFunctionContainingThis3.ts │ │ ├── extractFunctionContainingThis4.ts │ │ ├── extractFunctionWithSyntheticNodes.ts │ │ ├── extractMethod_forAwait.ts │ │ ├── extractSuperOutsideClass.ts │ │ ├── extractSymbolForTriggerReason1.ts │ │ ├── extractSymbolForTriggerReason2.ts │ │ ├── extractTypeUnresolvedAlias.ts │ │ ├── failureToImplementClass.ts │ │ ├── findAllReferPropertyAccessExpressionHeritageClause.ts │ │ ├── findAllReferencesDynamicImport1.ts │ │ ├── findAllReferencesDynamicImport2.ts │ │ ├── findAllReferencesDynamicImport3.ts │ │ ├── findAllReferencesFilteringMappedTypeProperty.ts │ │ ├── findAllReferencesFromLinkTagReference1.ts │ │ ├── findAllReferencesFromLinkTagReference2.ts │ │ ├── findAllReferencesFromLinkTagReference3.ts │ │ ├── findAllReferencesFromLinkTagReference4.ts │ │ ├── findAllReferencesFromLinkTagReference5.ts │ │ ├── findAllReferencesImportMeta.ts │ │ ├── findAllReferencesJSDocFunctionNew.ts │ │ ├── findAllReferencesJSDocFunctionThis.ts │ │ ├── findAllReferencesJsDocTypeLiteral.ts │ │ ├── findAllReferencesJsOverloadedFunctionParameter.ts │ │ ├── findAllReferencesJsRequireDestructuring.ts │ │ ├── findAllReferencesJsRequireDestructuring1.ts │ │ ├── findAllReferencesLinkTag1.ts │ │ ├── findAllReferencesLinkTag2.ts │ │ ├── findAllReferencesLinkTag3.ts │ │ ├── findAllReferencesNonExistentExportBinding.ts │ │ ├── findAllReferencesOfConstructor.ts │ │ ├── findAllReferencesOfConstructor_badOverload.ts │ │ ├── findAllReferencesOfJsonModule.ts │ │ ├── findAllReferencesTripleSlash.ts │ │ ├── findAllReferencesUmdModuleAsGlobalConst.ts │ │ ├── findAllReferencesUndefined.ts │ │ ├── findAllRefsBadImport.ts │ │ ├── findAllRefsCatchClause.ts │ │ ├── findAllRefsClassExpression0.ts │ │ ├── findAllRefsClassExpression1.ts │ │ ├── findAllRefsClassExpression2.ts │ │ ├── findAllRefsClassStaticBlocks.ts │ │ ├── findAllRefsClassWithStaticThisAccess.ts │ │ ├── findAllRefsCommonJsRequire.ts │ │ ├── findAllRefsCommonJsRequire2.ts │ │ ├── findAllRefsCommonJsRequire3.ts │ │ ├── findAllRefsConstructorFunctions.ts │ │ ├── findAllRefsDeclareClass.ts │ │ ├── findAllRefsDefaultImport.ts │ │ ├── findAllRefsDefaultImportThroughNamespace.ts │ │ ├── findAllRefsDefinition.ts │ │ ├── findAllRefsDestructureGeneric.ts │ │ ├── findAllRefsDestructureGetter.ts │ │ ├── findAllRefsDestructureGetter2.ts │ │ ├── findAllRefsEnumAsNamespace.ts │ │ ├── findAllRefsEnumMember.ts │ │ ├── findAllRefsExportAsNamespace.ts │ │ ├── findAllRefsExportConstEqualToClass.ts │ │ ├── findAllRefsExportDefaultClassConstructor.ts │ │ ├── findAllRefsExportEquals.ts │ │ ├── findAllRefsExportNotAtTopLevel.ts │ │ ├── findAllRefsForComputedProperties.ts │ │ ├── findAllRefsForComputedProperties2.ts │ │ ├── findAllRefsForDefaultExport.ts │ │ ├── findAllRefsForDefaultExport01.ts │ │ ├── findAllRefsForDefaultExport02.ts │ │ ├── findAllRefsForDefaultExport03.ts │ │ ├── findAllRefsForDefaultExport04.ts │ │ ├── findAllRefsForDefaultExport08.ts │ │ ├── findAllRefsForDefaultExport09.ts │ │ ├── findAllRefsForDefaultExportAnonymous.ts │ │ ├── findAllRefsForDefaultExport_anonymous.ts │ │ ├── findAllRefsForDefaultExport_reExport.ts │ │ ├── findAllRefsForDefaultExport_reExport_allowSyntheticDefaultImports.ts │ │ ├── findAllRefsForDefaultKeyword.ts │ │ ├── findAllRefsForFunctionExpression01.ts │ │ ├── findAllRefsForImportCall.ts │ │ ├── findAllRefsForImportCallType.ts │ │ ├── findAllRefsForMappedType.ts │ │ ├── findAllRefsForModule.ts │ │ ├── findAllRefsForModuleGlobal.ts │ │ ├── findAllRefsForObjectLiteralProperties.ts │ │ ├── findAllRefsForObjectSpread.ts │ │ ├── findAllRefsForRest.ts │ │ ├── findAllRefsForStaticInstanceMethodInheritance.ts │ │ ├── findAllRefsForStaticInstancePropertyInheritance.ts │ │ ├── findAllRefsForStringLiteral.ts │ │ ├── findAllRefsForStringLiteralTypes.ts │ │ ├── findAllRefsForUMDModuleAlias1.ts │ │ ├── findAllRefsForVariableInExtendsClause01.ts │ │ ├── findAllRefsForVariableInExtendsClause02.ts │ │ ├── findAllRefsForVariableInImplementsClause01.ts │ │ ├── findAllRefsFromContextualUnionType1.ts │ │ ├── findAllRefsGlobalModuleAugmentation.ts │ │ ├── findAllRefsGlobalThisKeywordInModule.ts │ │ ├── findAllRefsImportDefault.ts │ │ ├── findAllRefsImportEquals.ts │ │ ├── findAllRefsImportEqualsJsonFile.ts │ │ ├── findAllRefsImportMeta.ts │ │ ├── findAllRefsImportNamed.ts │ │ ├── findAllRefsImportStarOfExportEquals.ts │ │ ├── findAllRefsImportType.ts │ │ ├── findAllRefsInClassExpression.ts │ │ ├── findAllRefsIndexedAccessTypes.ts │ │ ├── findAllRefsInheritedProperties1.ts │ │ ├── findAllRefsInheritedProperties2.ts │ │ ├── findAllRefsInheritedProperties3.ts │ │ ├── findAllRefsInheritedProperties4.ts │ │ ├── findAllRefsInheritedProperties5.ts │ │ ├── findAllRefsInsideTemplates1.ts │ │ ├── findAllRefsInsideTemplates2.ts │ │ ├── findAllRefsInsideWithBlock.ts │ │ ├── findAllRefsIsDefinition.ts │ │ ├── findAllRefsJsDocImportTag.ts │ │ ├── findAllRefsJsDocImportTag2.ts │ │ ├── findAllRefsJsDocImportTag3.ts │ │ ├── findAllRefsJsDocImportTag4.ts │ │ ├── findAllRefsJsDocImportTag5.ts │ │ ├── findAllRefsJsDocTemplateTag_class.ts │ │ ├── findAllRefsJsDocTemplateTag_class_js.ts │ │ ├── findAllRefsJsDocTemplateTag_function.ts │ │ ├── findAllRefsJsDocTemplateTag_function_js.ts │ │ ├── findAllRefsJsDocTypeDef.ts │ │ ├── findAllRefsJsDocTypeDef_js.ts │ │ ├── findAllRefsJsThisPropertyAssignment.ts │ │ ├── findAllRefsJsThisPropertyAssignment2.ts │ │ ├── findAllRefsMappedType.ts │ │ ├── findAllRefsMappedType_nonHomomorphic.ts │ │ ├── findAllRefsMissingModulesOverlappingSpecifiers.ts │ │ ├── findAllRefsModuleAugmentation.ts │ │ ├── findAllRefsModuleDotExports.ts │ │ ├── findAllRefsNoImportClause.ts │ │ ├── findAllRefsNoSubstitutionTemplateLiteralNoCrash1.ts │ │ ├── findAllRefsNonModule.ts │ │ ├── findAllRefsNonexistentPropertyNoCrash1.ts │ │ ├── findAllRefsObjectBindingElementPropertyName01.ts │ │ ├── findAllRefsObjectBindingElementPropertyName02.ts │ │ ├── findAllRefsObjectBindingElementPropertyName03.ts │ │ ├── findAllRefsObjectBindingElementPropertyName04.ts │ │ ├── findAllRefsObjectBindingElementPropertyName05.ts │ │ ├── findAllRefsObjectBindingElementPropertyName06.ts │ │ ├── findAllRefsObjectBindingElementPropertyName07.ts │ │ ├── findAllRefsObjectBindingElementPropertyName10.ts │ │ ├── findAllRefsOfConstructor.ts │ │ ├── findAllRefsOfConstructor2.ts │ │ ├── findAllRefsOfConstructor_multipleFiles.ts │ │ ├── findAllRefsOfConstructor_withModifier.ts │ │ ├── findAllRefsOnDecorators.ts │ │ ├── findAllRefsOnDefinition.ts │ │ ├── findAllRefsOnDefinition2.ts │ │ ├── findAllRefsOnImportAliases.ts │ │ ├── findAllRefsOnImportAliases2.ts │ │ ├── findAllRefsOnPrivateParameterProperty1.ts │ │ ├── findAllRefsParameterPropertyDeclaration1.ts │ │ ├── findAllRefsParameterPropertyDeclaration2.ts │ │ ├── findAllRefsParameterPropertyDeclaration3.ts │ │ ├── findAllRefsParameterPropertyDeclaration_inheritance.ts │ │ ├── findAllRefsPrefixSuffixPreference.ts │ │ ├── findAllRefsPrimitive.ts │ │ ├── findAllRefsPrimitiveJsDoc.ts │ │ ├── findAllRefsPrivateNameAccessors.ts │ │ ├── findAllRefsPrivateNameMethods.ts │ │ ├── findAllRefsPrivateNameProperties.ts │ │ ├── findAllRefsPropertyContextuallyTypedByTypeParam01.ts │ │ ├── findAllRefsReExportLocal.ts │ │ ├── findAllRefsReExportRightNameWrongSymbol.ts │ │ ├── findAllRefsReExportStar.ts │ │ ├── findAllRefsReExportStarAs.ts │ │ ├── findAllRefsReExport_broken.ts │ │ ├── findAllRefsReExport_broken2.ts │ │ ├── findAllRefsReExports.ts │ │ ├── findAllRefsReExports2.ts │ │ ├── findAllRefsReExportsUseInImportType.ts │ │ ├── findAllRefsRedeclaredPropertyInDerivedInterface.ts │ │ ├── findAllRefsRenameImportWithSameName.ts │ │ ├── findAllRefsRootSymbols.ts │ │ ├── findAllRefsThisKeyword.ts │ │ ├── findAllRefsThisKeywordMultipleFiles.ts │ │ ├── findAllRefsTypeParameterInMergedInterface.ts │ │ ├── findAllRefsTypedef.ts │ │ ├── findAllRefsTypedef_importType.ts │ │ ├── findAllRefsTypeofImport.ts │ │ ├── findAllRefsUnionProperty.ts │ │ ├── findAllRefsUnresolvedSymbols1.ts │ │ ├── findAllRefsUnresolvedSymbols2.ts │ │ ├── findAllRefsUnresolvedSymbols3.ts │ │ ├── findAllRefsWithLeadingUnderscoreNames1.ts │ │ ├── findAllRefsWithLeadingUnderscoreNames2.ts │ │ ├── findAllRefsWithLeadingUnderscoreNames3.ts │ │ ├── findAllRefsWithLeadingUnderscoreNames4.ts │ │ ├── findAllRefsWithLeadingUnderscoreNames5.ts │ │ ├── findAllRefsWithLeadingUnderscoreNames6.ts │ │ ├── findAllRefsWithLeadingUnderscoreNames7.ts │ │ ├── findAllRefsWithLeadingUnderscoreNames8.ts │ │ ├── findAllRefsWithLeadingUnderscoreNames9.ts │ │ ├── findAllRefsWithShorthandPropertyAssignment.ts │ │ ├── findAllRefsWithShorthandPropertyAssignment2.ts │ │ ├── findAllRefsWriteAccess.ts │ │ ├── findAllRefs_importType_exportEquals.ts │ │ ├── findAllRefs_importType_js.1.ts │ │ ├── findAllRefs_importType_js.2.ts │ │ ├── findAllRefs_importType_js.3.ts │ │ ├── findAllRefs_importType_js.4.ts │ │ ├── findAllRefs_importType_js.ts │ │ ├── findAllRefs_importType_meaningAtLocation.ts │ │ ├── findAllRefs_importType_named.ts │ │ ├── findAllRefs_importType_typeofImport.ts │ │ ├── findAllRefs_jsEnum.ts │ │ ├── findReferencesAcrossMultipleProjects.ts │ │ ├── findReferencesAfterEdit.ts │ │ ├── findReferencesBindingPatternInJsdocNoCrash1.ts │ │ ├── findReferencesBindingPatternInJsdocNoCrash2.ts │ │ ├── findReferencesDefinitionDisplayParts.ts │ │ ├── findReferencesJSXTagName.ts │ │ ├── findReferencesJSXTagName2.ts │ │ ├── findReferencesJSXTagName3.ts │ │ ├── findReferencesSeeTagInTs.ts │ │ ├── fixExactOptionalUnassignableProperties1.ts │ │ ├── fixExactOptionalUnassignableProperties10.ts │ │ ├── fixExactOptionalUnassignableProperties11.ts │ │ ├── fixExactOptionalUnassignableProperties12.ts │ │ ├── fixExactOptionalUnassignableProperties13.ts │ │ ├── fixExactOptionalUnassignableProperties14.ts │ │ ├── fixExactOptionalUnassignableProperties15.ts │ │ ├── fixExactOptionalUnassignableProperties16.ts │ │ ├── fixExactOptionalUnassignableProperties17.ts │ │ ├── fixExactOptionalUnassignableProperties18.ts │ │ ├── fixExactOptionalUnassignableProperties19.ts │ │ ├── fixExactOptionalUnassignableProperties3.ts │ │ ├── fixExactOptionalUnassignableProperties4.ts │ │ ├── fixExactOptionalUnassignableProperties5.ts │ │ ├── fixExactOptionalUnassignableProperties6.ts │ │ ├── fixExactOptionalUnassignableProperties7.ts │ │ ├── fixExactOptionalUnassignableProperties8.ts │ │ ├── fixExactOptionalUnassignableProperties9.ts │ │ ├── fixNaNEquality1.ts │ │ ├── fixNaNEquality2.ts │ │ ├── fixNaNEquality3.ts │ │ ├── fixNaNEquality4.ts │ │ ├── fixNaNEquality5.ts │ │ ├── fixNaNEquality_all.ts │ │ ├── fixingTypeParametersQuickInfo.ts │ │ ├── forceIndentAfterNewLineInsert.ts │ │ ├── formatAddSemicolons1.ts │ │ ├── formatAfterMultilineComment.ts │ │ ├── formatAfterObjectLiteral.ts │ │ ├── formatAfterPasteInString.ts │ │ ├── formatAfterWhitespace.ts │ │ ├── formatAnyTypeLiteral.ts │ │ ├── formatArrayLiteralExpression.ts │ │ ├── formatArrayOrObjectLiteralsInVariableList.ts │ │ ├── formatAsyncAwait.ts │ │ ├── formatAsyncClassMethod1.ts │ │ ├── formatAsyncClassMethod2.ts │ │ ├── formatAsyncComputedMethod.ts │ │ ├── formatAsyncKeyword.ts │ │ ├── formatCatch.ts │ │ ├── formatClassExpression.ts │ │ ├── formatColonAndQMark.ts │ │ ├── formatComments.ts │ │ ├── formatConflictDiff3Marker1.ts │ │ ├── formatConflictMarker1.ts │ │ ├── formatControlFlowConstructs.ts │ │ ├── formatDebuggerStatement.ts │ │ ├── formatDocumentPreserveTrailingWhitespace.ts │ │ ├── formatDocumentWithJSDoc.ts │ │ ├── formatDocumentWithTrivia.ts │ │ ├── formatDotAfterNumber.ts │ │ ├── formatEmptyBlock.ts │ │ ├── formatEmptyParamList.ts │ │ ├── formatExportAssignment.ts │ │ ├── formatFunctionAndConstructorType.ts │ │ ├── formatIfTryCatchBlocks.ts │ │ ├── formatIfWithEmptyCondition.ts │ │ ├── formatImplicitModule.ts │ │ ├── formatImportDeclaration.ts │ │ ├── formatInTryCatchFinally.ts │ │ ├── formatInTsxFiles.ts │ │ ├── formatInsertSpaceAfterCloseBraceBeforeCloseBracket.ts │ │ ├── formatInsertSpaceAfterTypeAssertion.ts │ │ ├── formatJsxWithKeywordInIdentifier.ts │ │ ├── formatLiteralTypeInUnionOrIntersectionType.ts │ │ ├── formatMultilineComment.ts │ │ ├── formatMultilineConditionalExpressions.ts │ │ ├── formatMultilineExtendsGeneric.ts │ │ ├── formatMultilineTypesWithMapped.ts │ │ ├── formatMultipleFunctionArguments.ts │ │ ├── formatNamedExportImport.ts │ │ ├── formatNestedClassWithOpenBraceOnNewLines.ts │ │ ├── formatNoSpaceAfterTemplateHeadAndMiddle.ts │ │ ├── formatNoSpaceBeforeCloseBrace.ts │ │ ├── formatNoSpaceBeforeCloseBrace1.ts │ │ ├── formatNoSpaceBeforeCloseBrace2.ts │ │ ├── formatNoSpaceBeforeCloseBrace3.ts │ │ ├── formatNoSpaceBeforeCloseBrace4.ts │ │ ├── formatNoSpaceBeforeCloseBrace5.ts │ │ ├── formatNoSpaceBeforeCloseBrace6.ts │ │ ├── formatNoSpaceBetweenClosingParenAndTemplateString.ts │ │ ├── formatObjectBindingPattern.ts │ │ ├── formatObjectBindingPattern_restElementWithPropertyName.ts │ │ ├── formatOnEnterFunctionDeclaration.ts │ │ ├── formatOnEnterInComment.ts │ │ ├── formatOnEnterOpenBraceAddNewLine.ts │ │ ├── formatOnOpenCurlyBraceRemoveNewLine.ts │ │ ├── formatOnSemiColonAfterBreak.ts │ │ ├── formatOnTypeOpenCurlyWithBraceCompletion.ts │ │ ├── formatParameter.ts │ │ ├── formatRangeEndingAfterCommaOfCall.ts │ │ ├── formatRemoveNewLineAfterOpenBrace.ts │ │ ├── formatRemoveSemicolons1.ts │ │ ├── formatRemoveSemicolons2.ts │ │ ├── formatRemoveSemicolons3.ts │ │ ├── formatRemoveSemicolons4.ts │ │ ├── formatRemoveSpaceBetweenDotDotDotAndTypeName.ts │ │ ├── formatSatisfiesExpression.ts │ │ ├── formatSelectionDocCommentInBlock.ts │ │ ├── formatSelectionEditAtEndOfRange.ts │ │ ├── formatSelectionJsxWithBinaryExpression.ts │ │ ├── formatSelectionPreserveTrailingWhitespace.ts │ │ ├── formatSelectionSingleProperty.ts │ │ ├── formatSelectionWithTrivia.ts │ │ ├── formatSelectionWithTrivia2.ts │ │ ├── formatSelectionWithTrivia3.ts │ │ ├── formatSelectionWithTrivia4.ts │ │ ├── formatSelectionWithTrivia5.ts │ │ ├── formatSelectionWithTrivia6.ts │ │ ├── formatSelectionWithTrivia7.ts │ │ ├── formatSelectionWithTrivia8.ts │ │ ├── formatSignatures.ts │ │ ├── formatSimulatingScriptBlocks.ts │ │ ├── formatSpaceAfterImplementsExtends.ts │ │ ├── formatSpaceAfterTemplateHeadAndMiddle.ts │ │ ├── formatTSXWithInlineComment.ts │ │ ├── formatTemplateLiteral.ts │ │ ├── formatTemplateStringOnPaste.ts │ │ ├── formatTrailingComma.ts │ │ ├── formatTryCatch.ts │ │ ├── formatTryFinally.ts │ │ ├── formatTsx.ts │ │ ├── formatTsxClosingAfterJsxText.ts │ │ ├── formatTsxMultilineAttributeString.ts │ │ ├── formatTypeAlias.ts │ │ ├── formatTypeAnnotation1.ts │ │ ├── formatTypeAnnotation2.ts │ │ ├── formatTypeArgumentOnNewLine.ts │ │ ├── formatTypeOperation.ts │ │ ├── formatTypeParameters.ts │ │ ├── formatV8Directive.ts │ │ ├── formatVariableAssignments.ts │ │ ├── formatVariableDeclarationList.ts │ │ ├── formatWithBaseIndent.ts │ │ ├── formatWithStatement.ts │ │ ├── formatWithTabs.ts │ │ ├── formatWithTabs2.ts │ │ ├── formattingAfterChainedFatArrow.ts │ │ ├── formattingAfterMultiLineIfCondition.ts │ │ ├── formattingAfterMultiLineString.ts │ │ ├── formattingArrayLiteral.ts │ │ ├── formattingArrowFunctionParenthesizedExpression.ts │ │ ├── formattingAwait.ts │ │ ├── formattingBlockInCaseClauses.ts │ │ ├── formattingChainingMethods.ts │ │ ├── formattingChangeSettings.ts │ │ ├── formattingComma.ts │ │ ├── formattingCommentsBeforeErrors.ts │ │ ├── formattingConditionalOperator.ts │ │ ├── formattingConditionalTypes.ts │ │ ├── formattingConditionals.ts │ │ ├── formattingCrash.ts │ │ ├── formattingDecorators.ts │ │ ├── formattingDoubleLessThan.ts │ │ ├── formattingElseInsideAFunction.ts │ │ ├── formattingEqualsBeforeBracketInTypeAlias.ts │ │ ├── formattingExpressionsInIfCondition.ts │ │ ├── formattingFatArrowFunctions.ts │ │ ├── formattingForIn.ts │ │ ├── formattingForLoopSemicolons.ts │ │ ├── formattingForOfKeyword.ts │ │ ├── formattingGlobalAugmentation1.ts │ │ ├── formattingGlobalAugmentation2.ts │ │ ├── formattingHexLiteral.ts │ │ ├── formattingIfInElseBlock.ts │ │ ├── formattingIllegalImportClause.ts │ │ ├── formattingInComment.ts │ │ ├── formattingInDestructuring1.ts │ │ ├── formattingInDestructuring2.ts │ │ ├── formattingInDestructuring3.ts │ │ ├── formattingInDestructuring4.ts │ │ ├── formattingInDestructuring5.ts │ │ ├── formattingInExpressionsInTsx.ts │ │ ├── formattingInMultilineComments.ts │ │ ├── formattingIndentSwitchCase.ts │ │ ├── formattingJsxElements.ts │ │ ├── formattingJsxTexts1.ts │ │ ├── formattingJsxTexts2.ts │ │ ├── formattingJsxTexts3.ts │ │ ├── formattingJsxTexts4.ts │ │ ├── formattingKeywordAsIdentifier.ts │ │ ├── formattingMappedType.ts │ │ ├── formattingMultilineCommentsWithTabs1.ts │ │ ├── formattingMultilineCommentsWithTabs2.ts │ │ ├── formattingMultilineTemplateLiterals.ts │ │ ├── formattingMultipleMappedType.ts │ │ ├── formattingNestedScopes.ts │ │ ├── formattingNonNullAssertionOperator.ts │ │ ├── formattingObjectLiteral.ts │ │ ├── formattingObjectLiteralOpenCurlyNewline.ts │ │ ├── formattingObjectLiteralOpenCurlyNewlineAssignment.ts │ │ ├── formattingObjectLiteralOpenCurlyNewlineTyping.ts │ │ ├── formattingObjectLiteralOpenCurlySingleLine.ts │ │ ├── formattingOfChainedLambda.ts │ │ ├── formattingOfExportDefault.ts │ │ ├── formattingOfModuleExport.ts │ │ ├── formattingOfMultilineBlockConstructs.ts │ │ ├── formattingOnChainedCallbacks.ts │ │ ├── formattingOnChainedCallbacksAndPropertyAccesses.ts │ │ ├── formattingOnClasses.ts │ │ ├── formattingOnCloseBrace.ts │ │ ├── formattingOnClosingBracket.ts │ │ ├── formattingOnCommaOperator.ts │ │ ├── formattingOnConstructorSignature.ts │ │ ├── formattingOnDoWhileNoSemicolon.ts │ │ ├── formattingOnDocumentReadyFunction.ts │ │ ├── formattingOnEmptyInterfaceLiteral.ts │ │ ├── formattingOnEnter.ts │ │ ├── formattingOnEnterInComments.ts │ │ ├── formattingOnEnterInStrings.ts │ │ ├── formattingOnInterfaces.ts │ │ ├── formattingOnInvalidCodes.ts │ │ ├── formattingOnModuleIndentation.ts │ │ ├── formattingOnNestedDoWhileByEnter.ts │ │ ├── formattingOnNestedStatements.ts │ │ ├── formattingOnObjectLiteral.ts │ │ ├── formattingOnOpenBraceOfFunctions.ts │ │ ├── formattingOnSemiColon.ts │ │ ├── formattingOnSingleLineBlocks.ts │ │ ├── formattingOnStatementsWithNoSemicolon.ts │ │ ├── formattingOnTabAfterCloseCurly.ts │ │ ├── formattingOnTypeLiteral.ts │ │ ├── formattingOnVariety.ts │ │ ├── formattingOptionsChange.ts │ │ ├── formattingOptionsChangeJsx.ts │ │ ├── formattingQMark.ts │ │ ├── formattingReadonly.ts │ │ ├── formattingRegexes.ts │ │ ├── formattingReplaceSpacesWithTabs.ts │ │ ├── formattingReplaceTabsWithSpaces.ts │ │ ├── formattingSingleLineWithNewLineOptionSet.ts │ │ ├── formattingSkippedTokens.ts │ │ ├── formattingSpaceAfterCommaBeforeOpenParen.ts │ │ ├── formattingSpaceBeforeCloseParen.ts │ │ ├── formattingSpaceBeforeFunctionParen.ts │ │ ├── formattingSpaceBetweenOptionalChaining.ts │ │ ├── formattingSpaceBetweenParent.ts │ │ ├── formattingSpacesAfterConstructor.ts │ │ ├── formattingTemplates.ts │ │ ├── formattingTemplatesWithNewline.ts │ │ ├── formattingTypeInfer.ts │ │ ├── formattingVoid.ts │ │ ├── formattingWithEnterAfterMultilineString.ts │ │ ├── formattingWithLimitedSpan.ts │ │ ├── formattingWithMultilineComments.ts │ │ ├── formattingofSingleLineBlockConstructs.ts │ │ ├── forwardReference.ts │ │ ├── fourslash.ts │ │ ├── fsEditMarkerPositions.ts │ │ ├── functionFormatting.ts │ │ ├── functionIndentation.ts │ │ ├── functionOverloadCount.ts │ │ ├── functionProperty.ts │ │ ├── functionRenamingErrorRecovery.ts │ │ ├── functionTypeFormatting.ts │ │ ├── functionTypePredicateFormatting.ts │ │ ├── functionTypes.ts │ │ ├── funduleWithRecursiveReference.ts │ │ ├── generated/ │ │ │ └── dummy.txt │ │ ├── generatorDeclarationFormatting.ts │ │ ├── genericArityEnforcementAfterEdit.ts │ │ ├── genericAssignmentCompat.ts │ │ ├── genericCallSignaturesInNonGenericTypes1.ts │ │ ├── genericCallSignaturesInNonGenericTypes2.ts │ │ ├── genericCallsWithOptionalParams1.ts │ │ ├── genericCloduleCompletionList.ts │ │ ├── genericCombinatorWithConstraints1.ts │ │ ├── genericCombinators1.ts │ │ ├── genericCombinators3.ts │ │ ├── genericDerivedTypeAcrossModuleBoundary1.ts │ │ ├── genericFunctionReturnType.ts │ │ ├── genericFunctionReturnType2.ts │ │ ├── genericFunctionSignatureHelp1.ts │ │ ├── genericFunctionSignatureHelp2.ts │ │ ├── genericFunctionSignatureHelp3.ts │ │ ├── genericFunctionSignatureHelp3MultiFile.ts │ │ ├── genericFunctionWithGenericParams1.ts │ │ ├── genericInterfacePropertyInference1.ts │ │ ├── genericInterfacePropertyInference2.ts │ │ ├── genericInterfaceWithInheritanceEdit1.ts │ │ ├── genericInterfacesWithConstraints1.ts │ │ ├── genericMapTyping1.ts │ │ ├── genericMethodParam.ts │ │ ├── genericObjectBaseType.ts │ │ ├── genericParameterHelp.ts │ │ ├── genericParameterHelpConstructorCalls.ts │ │ ├── genericParameterHelpTypeReferences.ts │ │ ├── genericRespecialization1.ts │ │ ├── genericSignaturesAreProperlyCleaned.ts │ │ ├── genericTypeAliasIntersectionCompletions.ts │ │ ├── genericTypeParamUnrelatedToArguments1.ts │ │ ├── genericTypeWithMultipleBases1MultiFile.ts │ │ ├── genericWithSpecializedProperties1.ts │ │ ├── genericWithSpecializedProperties2.ts │ │ ├── genericWithSpecializedProperties3.ts │ │ ├── genericsFormatting.ts │ │ ├── genericsFormattingMultiline.ts │ │ ├── getCompletionEntryDetails.ts │ │ ├── getCompletionEntryDetails2.ts │ │ ├── getDeclarationDiagnostics.ts │ │ ├── getEditsForFileRename.ts │ │ ├── getEditsForFileRename_ambientModule.ts │ │ ├── getEditsForFileRename_amd.ts │ │ ├── getEditsForFileRename_caseInsensitive.ts │ │ ├── getEditsForFileRename_casing.ts │ │ ├── getEditsForFileRename_directory.ts │ │ ├── getEditsForFileRename_directory_down.ts │ │ ├── getEditsForFileRename_directory_noUpdateNodeModulesImport.ts │ │ ├── getEditsForFileRename_directory_up.ts │ │ ├── getEditsForFileRename_jsExtension.ts │ │ ├── getEditsForFileRename_js_simple.ts │ │ ├── getEditsForFileRename_keepFileExtensions.ts │ │ ├── getEditsForFileRename_nodeModuleDirectoryCase.ts │ │ ├── getEditsForFileRename_notAffectedByJsFile.ts │ │ ├── getEditsForFileRename_preferences.ts │ │ ├── getEditsForFileRename_preservePathEnding.ts │ │ ├── getEditsForFileRename_renameFromIndex.ts │ │ ├── getEditsForFileRename_renameToIndex.ts │ │ ├── getEditsForFileRename_resolveJsonModule.ts │ │ ├── getEditsForFileRename_shortenRelativePaths.ts │ │ ├── getEditsForFileRename_subDir.ts │ │ ├── getEditsForFileRename_symlink.ts │ │ ├── getEditsForFileRename_tsconfig.ts │ │ ├── getEditsForFileRename_tsconfig_empty_include.ts │ │ ├── getEditsForFileRename_tsconfig_include_add.ts │ │ ├── getEditsForFileRename_tsconfig_include_noChange.ts │ │ ├── getEditsForFileRename_unaffectedNonRelativePath.ts │ │ ├── getEditsForFileRename_unresolvableImport.ts │ │ ├── getEditsForFileRename_unresolvableNodeModule.ts │ │ ├── getEmitOutputDeclarationMultiFiles.ts │ │ ├── getEmitOutputDeclarationSingleFile.ts │ │ ├── getEmitOutputExternalModule.ts │ │ ├── getEmitOutputExternalModule2.ts │ │ ├── getEmitOutputMapRoot.ts │ │ ├── getEmitOutputNoErrors.ts │ │ ├── getEmitOutputOnlyOneFile.ts │ │ ├── getEmitOutputOut.ts │ │ ├── getEmitOutputOutFile.ts │ │ ├── getEmitOutputSingleFile.ts │ │ ├── getEmitOutputSingleFile2.ts │ │ ├── getEmitOutputSourceMap.ts │ │ ├── getEmitOutputSourceMap2.ts │ │ ├── getEmitOutputSourceRoot.ts │ │ ├── getEmitOutputSourceRootMultiFiles.ts │ │ ├── getEmitOutputTsxFile_Preserve.ts │ │ ├── getEmitOutputTsxFile_React.ts │ │ ├── getEmitOutputWithDeclarationFile.ts │ │ ├── getEmitOutputWithDeclarationFile2.ts │ │ ├── getEmitOutputWithDeclarationFile3.ts │ │ ├── getEmitOutputWithEarlySemanticErrors.ts │ │ ├── getEmitOutputWithEmitterErrors.ts │ │ ├── getEmitOutputWithEmitterErrors2.ts │ │ ├── getEmitOutputWithSemanticErrors.ts │ │ ├── getEmitOutputWithSemanticErrors2.ts │ │ ├── getEmitOutputWithSemanticErrorsForMultipleFiles.ts │ │ ├── getEmitOutputWithSemanticErrorsForMultipleFiles2.ts │ │ ├── getEmitOutputWithSyntacticErrorsForMultipleFiles.ts │ │ ├── getEmitOutputWithSyntacticErrorsForMultipleFiles2.ts │ │ ├── getEmitOutputWithSyntaxErrors.ts │ │ ├── getFileReferences1.ts │ │ ├── getFileReferences2.ts │ │ ├── getJSXOutliningSpans.tsx │ │ ├── getJavaScriptCompletions1.ts │ │ ├── getJavaScriptCompletions10.ts │ │ ├── getJavaScriptCompletions11.ts │ │ ├── getJavaScriptCompletions12.ts │ │ ├── getJavaScriptCompletions13.ts │ │ ├── getJavaScriptCompletions14.ts │ │ ├── getJavaScriptCompletions15.ts │ │ ├── getJavaScriptCompletions16.ts │ │ ├── getJavaScriptCompletions18.ts │ │ ├── getJavaScriptCompletions19.ts │ │ ├── getJavaScriptCompletions2.ts │ │ ├── getJavaScriptCompletions20.ts │ │ ├── getJavaScriptCompletions21.ts │ │ ├── getJavaScriptCompletions22.ts │ │ ├── getJavaScriptCompletions3.ts │ │ ├── getJavaScriptCompletions4.ts │ │ ├── getJavaScriptCompletions5.ts │ │ ├── getJavaScriptCompletions8.ts │ │ ├── getJavaScriptCompletions9.ts │ │ ├── getJavaScriptCompletions_tsCheck.ts │ │ ├── getJavaScriptGlobalCompletions1.ts │ │ ├── getJavaScriptQuickInfo1.ts │ │ ├── getJavaScriptQuickInfo2.ts │ │ ├── getJavaScriptQuickInfo3.ts │ │ ├── getJavaScriptQuickInfo4.ts │ │ ├── getJavaScriptQuickInfo5.ts │ │ ├── getJavaScriptQuickInfo6.ts │ │ ├── getJavaScriptQuickInfo7.ts │ │ ├── getJavaScriptQuickInfo8.ts │ │ ├── getJavaScriptSyntacticDiagnostics1.ts │ │ ├── getJavaScriptSyntacticDiagnostics10.ts │ │ ├── getJavaScriptSyntacticDiagnostics11.ts │ │ ├── getJavaScriptSyntacticDiagnostics12.ts │ │ ├── getJavaScriptSyntacticDiagnostics13.ts │ │ ├── getJavaScriptSyntacticDiagnostics14.ts │ │ ├── getJavaScriptSyntacticDiagnostics15.ts │ │ ├── getJavaScriptSyntacticDiagnostics16.ts │ │ ├── getJavaScriptSyntacticDiagnostics17.ts │ │ ├── getJavaScriptSyntacticDiagnostics18.ts │ │ ├── getJavaScriptSyntacticDiagnostics19.ts │ │ ├── getJavaScriptSyntacticDiagnostics2.ts │ │ ├── getJavaScriptSyntacticDiagnostics21.ts │ │ ├── getJavaScriptSyntacticDiagnostics22.ts │ │ ├── getJavaScriptSyntacticDiagnostics23.ts │ │ ├── getJavaScriptSyntacticDiagnostics24.ts │ │ ├── getJavaScriptSyntacticDiagnostics3.ts │ │ ├── getJavaScriptSyntacticDiagnostics4.ts │ │ ├── getJavaScriptSyntacticDiagnostics5.ts │ │ ├── getJavaScriptSyntacticDiagnostics6.ts │ │ ├── getJavaScriptSyntacticDiagnostics7.ts │ │ ├── getJavaScriptSyntacticDiagnostics8.ts │ │ ├── getJavaScriptSyntacticDiagnostics9.ts │ │ ├── getMatchingBraces.ts │ │ ├── getMatchingBracesAdjacentBraces.ts │ │ ├── getMatchingBracesNegativeCases.ts │ │ ├── getNameOrDottedNameSpan.ts │ │ ├── getNavigationBarItems.ts │ │ ├── getOccurrencesAbstract01.ts │ │ ├── getOccurrencesAbstract02.ts │ │ ├── getOccurrencesAbstract03.ts │ │ ├── getOccurrencesAfterEdit.ts │ │ ├── getOccurrencesAsyncAwait.ts │ │ ├── getOccurrencesAsyncAwait2.ts │ │ ├── getOccurrencesAsyncAwait3.ts │ │ ├── getOccurrencesClassExpressionConstructor.ts │ │ ├── getOccurrencesClassExpressionPrivate.ts │ │ ├── getOccurrencesClassExpressionPublic.ts │ │ ├── getOccurrencesClassExpressionStatic.ts │ │ ├── getOccurrencesClassExpressionStaticThis.ts │ │ ├── getOccurrencesClassExpressionThis.ts │ │ ├── getOccurrencesConst01.ts │ │ ├── getOccurrencesConst02.ts │ │ ├── getOccurrencesConst03.ts │ │ ├── getOccurrencesConst04.ts │ │ ├── getOccurrencesConstructor.ts │ │ ├── getOccurrencesConstructor2.ts │ │ ├── getOccurrencesDeclare1.ts │ │ ├── getOccurrencesDeclare2.ts │ │ ├── getOccurrencesDeclare3.ts │ │ ├── getOccurrencesExport1.ts │ │ ├── getOccurrencesExport2.ts │ │ ├── getOccurrencesExport3.ts │ │ ├── getOccurrencesIfElse.ts │ │ ├── getOccurrencesIfElse2.ts │ │ ├── getOccurrencesIfElse3.ts │ │ ├── getOccurrencesIfElse4.ts │ │ ├── getOccurrencesIfElse5.ts │ │ ├── getOccurrencesIfElseBroken.ts │ │ ├── getOccurrencesIsDefinitionOfArrowFunction.ts │ │ ├── getOccurrencesIsDefinitionOfBindingPattern.ts │ │ ├── getOccurrencesIsDefinitionOfClass.ts │ │ ├── getOccurrencesIsDefinitionOfComputedProperty.ts │ │ ├── getOccurrencesIsDefinitionOfEnum.ts │ │ ├── getOccurrencesIsDefinitionOfExport.ts │ │ ├── getOccurrencesIsDefinitionOfFunction.ts │ │ ├── getOccurrencesIsDefinitionOfInterface.ts │ │ ├── getOccurrencesIsDefinitionOfInterfaceClassMerge.ts │ │ ├── getOccurrencesIsDefinitionOfNamespace.ts │ │ ├── getOccurrencesIsDefinitionOfNumberNamedProperty.ts │ │ ├── getOccurrencesIsDefinitionOfParameter.ts │ │ ├── getOccurrencesIsDefinitionOfStringNamedProperty.ts │ │ ├── getOccurrencesIsDefinitionOfTypeAlias.ts │ │ ├── getOccurrencesIsDefinitionOfVariable.ts │ │ ├── getOccurrencesIsWriteAccess.ts │ │ ├── getOccurrencesLoopBreakContinue.ts │ │ ├── getOccurrencesLoopBreakContinue2.ts │ │ ├── getOccurrencesLoopBreakContinue3.ts │ │ ├── getOccurrencesLoopBreakContinue4.ts │ │ ├── getOccurrencesLoopBreakContinue5.ts │ │ ├── getOccurrencesLoopBreakContinue6.ts │ │ ├── getOccurrencesLoopBreakContinueNegatives.ts │ │ ├── getOccurrencesModifiersNegatives1.ts │ │ ├── getOccurrencesNonStringImportAssertion.ts │ │ ├── getOccurrencesNonStringImportAttributes.ts │ │ ├── getOccurrencesOfAnonymousFunction.ts │ │ ├── getOccurrencesOfAnonymousFunction2.ts │ │ ├── getOccurrencesOfDecorators.ts │ │ ├── getOccurrencesOfUndefinedSymbol.ts │ │ ├── getOccurrencesPrivate1.ts │ │ ├── getOccurrencesPrivate2.ts │ │ ├── getOccurrencesPropertyInAliasedInterface.ts │ │ ├── getOccurrencesProtected1.ts │ │ ├── getOccurrencesProtected2.ts │ │ ├── getOccurrencesPublic1.ts │ │ ├── getOccurrencesPublic2.ts │ │ ├── getOccurrencesReadonly1.ts │ │ ├── getOccurrencesReadonly2.ts │ │ ├── getOccurrencesReadonly3.ts │ │ ├── getOccurrencesReturn.ts │ │ ├── getOccurrencesReturn2.ts │ │ ├── getOccurrencesReturn3.ts │ │ ├── getOccurrencesReturn4.ts │ │ ├── getOccurrencesReturnBroken.ts │ │ ├── getOccurrencesSetAndGet.ts │ │ ├── getOccurrencesSetAndGet2.ts │ │ ├── getOccurrencesSetAndGet3.ts │ │ ├── getOccurrencesStatic1.ts │ │ ├── getOccurrencesStringLiteralTypes.ts │ │ ├── getOccurrencesStringLiterals.ts │ │ ├── getOccurrencesSuper.ts │ │ ├── getOccurrencesSuper2.ts │ │ ├── getOccurrencesSuper3.ts │ │ ├── getOccurrencesSuperNegatives.ts │ │ ├── getOccurrencesSwitchCaseDefault.ts │ │ ├── getOccurrencesSwitchCaseDefault2.ts │ │ ├── getOccurrencesSwitchCaseDefault3.ts │ │ ├── getOccurrencesSwitchCaseDefault4.ts │ │ ├── getOccurrencesSwitchCaseDefault5.ts │ │ ├── getOccurrencesSwitchCaseDefaultBroken.ts │ │ ├── getOccurrencesThis.ts │ │ ├── getOccurrencesThis2.ts │ │ ├── getOccurrencesThis3.ts │ │ ├── getOccurrencesThis4.ts │ │ ├── getOccurrencesThis5.ts │ │ ├── getOccurrencesThis6.ts │ │ ├── getOccurrencesThisNegatives2.ts │ │ ├── getOccurrencesThrow.ts │ │ ├── getOccurrencesThrow2.ts │ │ ├── getOccurrencesThrow3.ts │ │ ├── getOccurrencesThrow4.ts │ │ ├── getOccurrencesThrow5.ts │ │ ├── getOccurrencesThrow6.ts │ │ ├── getOccurrencesThrow7.ts │ │ ├── getOccurrencesThrow8.ts │ │ ├── getOccurrencesTryCatchFinally.ts │ │ ├── getOccurrencesTryCatchFinally2.ts │ │ ├── getOccurrencesTryCatchFinally3.ts │ │ ├── getOccurrencesTryCatchFinally4.ts │ │ ├── getOccurrencesTryCatchFinallyBroken.ts │ │ ├── getOccurrencesYield.ts │ │ ├── getOutliningForArrayDestructuring.ts │ │ ├── getOutliningForBlockComments.ts │ │ ├── getOutliningForObjectDestructuring.ts │ │ ├── getOutliningForObjectsInArray.ts │ │ ├── getOutliningForSingleLineComments.ts │ │ ├── getOutliningForTupleType.ts │ │ ├── getOutliningForTypeLiteral.ts │ │ ├── getOutliningSpans.ts │ │ ├── getOutliningSpansDepthChainedCalls.ts │ │ ├── getOutliningSpansDepthElseIf.ts │ │ ├── getOutliningSpansForImports.ts │ │ ├── getOutliningSpansForRegions.ts │ │ ├── getOutliningSpansForTemplateLiteral.ts │ │ ├── getOutliningSpansForUnbalancedEndRegion.ts │ │ ├── getOutliningSpansForUnbalancedRegion.ts │ │ ├── getPreProcessedFile.ts │ │ ├── getPropertySymbolsFromBaseTypesDoesntCrash.ts │ │ ├── getQuickInfoForIntersectionTypes.ts │ │ ├── getRenameInfoTests1.ts │ │ ├── getRenameInfoTests2.ts │ │ ├── getSemanticDiagnosticForDeclaration.ts │ │ ├── getSemanticDiagnosticForDeclaration1.ts │ │ ├── getSemanticDiagnosticForNoDeclaration.ts │ │ ├── globalCompletionListInsideObjectLiterals.ts │ │ ├── globalThisCompletion.ts │ │ ├── goToDefinitionAcrossMultipleProjects.ts │ │ ├── goToDefinitionAlias.ts │ │ ├── goToDefinitionAmbiants.ts │ │ ├── goToDefinitionApparentTypeProperties.ts │ │ ├── goToDefinitionAwait1.ts │ │ ├── goToDefinitionAwait2.ts │ │ ├── goToDefinitionAwait3.ts │ │ ├── goToDefinitionAwait4.ts │ │ ├── goToDefinitionBuiltInTypes.ts │ │ ├── goToDefinitionBuiltInValues.ts │ │ ├── goToDefinitionCSSPatternAmbientModule.ts │ │ ├── goToDefinitionClassConstructors.ts │ │ ├── goToDefinitionClassStaticBlocks.ts │ │ ├── goToDefinitionConstructorOfClassExpression01.ts │ │ ├── goToDefinitionConstructorOfClassWhenClassIsPrecededByNamespace01.ts │ │ ├── goToDefinitionConstructorOverloads.ts │ │ ├── goToDefinitionDecorator.ts │ │ ├── goToDefinitionDecoratorOverloads.ts │ │ ├── goToDefinitionDestructuredRequire1.ts │ │ ├── goToDefinitionDestructuredRequire2.ts │ │ ├── goToDefinitionDifferentFile.ts │ │ ├── goToDefinitionDifferentFileIndirectly.ts │ │ ├── goToDefinitionDynamicImport1.ts │ │ ├── goToDefinitionDynamicImport2.ts │ │ ├── goToDefinitionDynamicImport3.ts │ │ ├── goToDefinitionDynamicImport4.ts │ │ ├── goToDefinitionExpandoClass1.ts │ │ ├── goToDefinitionExpandoClass2.ts │ │ ├── goToDefinitionExpandoElementAccess.ts │ │ ├── goToDefinitionExternalModuleName.ts │ │ ├── goToDefinitionExternalModuleName2.ts │ │ ├── goToDefinitionExternalModuleName3.ts │ │ ├── goToDefinitionExternalModuleName4.ts │ │ ├── goToDefinitionExternalModuleName5.ts │ │ ├── goToDefinitionExternalModuleName6.ts │ │ ├── goToDefinitionExternalModuleName7.ts │ │ ├── goToDefinitionExternalModuleName8.ts │ │ ├── goToDefinitionExternalModuleName9.ts │ │ ├── goToDefinitionFunctionOverloads.ts │ │ ├── goToDefinitionFunctionOverloadsInClass.ts │ │ ├── goToDefinitionFunctionType.ts │ │ ├── goToDefinitionImplicitConstructor.ts │ │ ├── goToDefinitionImport1.ts │ │ ├── goToDefinitionImport2.ts │ │ ├── goToDefinitionImport3.ts │ │ ├── goToDefinitionImportMeta.ts │ │ ├── goToDefinitionImportedNames.ts │ │ ├── goToDefinitionImportedNames10.ts │ │ ├── goToDefinitionImportedNames11.ts │ │ ├── goToDefinitionImportedNames2.ts │ │ ├── goToDefinitionImportedNames3.ts │ │ ├── goToDefinitionImportedNames4.ts │ │ ├── goToDefinitionImportedNames5.ts │ │ ├── goToDefinitionImportedNames6.ts │ │ ├── goToDefinitionImportedNames7.ts │ │ ├── goToDefinitionImportedNames8.ts │ │ ├── goToDefinitionImportedNames9.ts │ │ ├── goToDefinitionImports.ts │ │ ├── goToDefinitionInMemberDeclaration.ts │ │ ├── goToDefinitionInTypeArgument.ts │ │ ├── goToDefinitionIndexSignature.ts │ │ ├── goToDefinitionIndexSignature2.ts │ │ ├── goToDefinitionInstanceof1.ts │ │ ├── goToDefinitionInstanceof2.ts │ │ ├── goToDefinitionInterfaceAfterImplement.ts │ │ ├── goToDefinitionJsDocImportTag1.ts │ │ ├── goToDefinitionJsDocImportTag2.ts │ │ ├── goToDefinitionJsDocImportTag3.ts │ │ ├── goToDefinitionJsDocImportTag4.ts │ │ ├── goToDefinitionJsDocImportTag5.ts │ │ ├── goToDefinitionJsModuleExports.ts │ │ ├── goToDefinitionJsModuleName.ts │ │ ├── goToDefinitionJsModuleNameAtImportName.ts │ │ ├── goToDefinitionJsxCall.ts │ │ ├── goToDefinitionJsxNotSet.ts │ │ ├── goToDefinitionLabels.ts │ │ ├── goToDefinitionMember.ts │ │ ├── goToDefinitionMetaProperty.ts │ │ ├── goToDefinitionMethodOverloads.ts │ │ ├── goToDefinitionModifiers.ts │ │ ├── goToDefinitionMultipleDefinitions.ts │ │ ├── goToDefinitionNewExpressionTargetNotClass.ts │ │ ├── goToDefinitionObjectBindingElementPropertyName01.ts │ │ ├── goToDefinitionObjectLiteralProperties.ts │ │ ├── goToDefinitionObjectLiteralProperties1.ts │ │ ├── goToDefinitionObjectLiteralProperties2.ts │ │ ├── goToDefinitionObjectLiteralProperties3.ts │ │ ├── goToDefinitionObjectSpread.ts │ │ ├── goToDefinitionOverloadsInMultiplePropertyAccesses.ts │ │ ├── goToDefinitionOverriddenMember1.ts │ │ ├── goToDefinitionOverriddenMember10.ts │ │ ├── goToDefinitionOverriddenMember11.ts │ │ ├── goToDefinitionOverriddenMember12.ts │ │ ├── goToDefinitionOverriddenMember13.ts │ │ ├── goToDefinitionOverriddenMember14.ts │ │ ├── goToDefinitionOverriddenMember15.ts │ │ ├── goToDefinitionOverriddenMember16.ts │ │ ├── goToDefinitionOverriddenMember17.ts │ │ ├── goToDefinitionOverriddenMember18.ts │ │ ├── goToDefinitionOverriddenMember19.ts │ │ ├── goToDefinitionOverriddenMember2.ts │ │ ├── goToDefinitionOverriddenMember20.ts │ │ ├── goToDefinitionOverriddenMember21.ts │ │ ├── goToDefinitionOverriddenMember22.ts │ │ ├── goToDefinitionOverriddenMember23.ts │ │ ├── goToDefinitionOverriddenMember24.ts │ │ ├── goToDefinitionOverriddenMember25.ts │ │ ├── goToDefinitionOverriddenMember26.ts │ │ ├── goToDefinitionOverriddenMember3.ts │ │ ├── goToDefinitionOverriddenMember4.ts │ │ ├── goToDefinitionOverriddenMember5.ts │ │ ├── goToDefinitionOverriddenMember6.ts │ │ ├── goToDefinitionOverriddenMember7.ts │ │ ├── goToDefinitionOverriddenMember8.ts │ │ ├── goToDefinitionOverriddenMember9.ts │ │ ├── goToDefinitionPartialImplementation.ts │ │ ├── goToDefinitionPrimitives.ts │ │ ├── goToDefinitionPrivateName.ts │ │ ├── goToDefinitionPropertyAssignment.ts │ │ ├── goToDefinitionRest.ts │ │ ├── goToDefinitionReturn1.ts │ │ ├── goToDefinitionReturn2.ts │ │ ├── goToDefinitionReturn3.ts │ │ ├── goToDefinitionReturn4.ts │ │ ├── goToDefinitionReturn5.ts │ │ ├── goToDefinitionReturn6.ts │ │ ├── goToDefinitionReturn7.ts │ │ ├── goToDefinitionSameFile.ts │ │ ├── goToDefinitionSatisfiesExpression1.ts │ │ ├── goToDefinitionScriptImport.ts │ │ ├── goToDefinitionShadowVariable.ts │ │ ├── goToDefinitionShadowVariableInsideModule.ts │ │ ├── goToDefinitionShorthandProperty01.ts │ │ ├── goToDefinitionShorthandProperty02.ts │ │ ├── goToDefinitionShorthandProperty03.ts │ │ ├── goToDefinitionShorthandProperty04.ts │ │ ├── goToDefinitionShorthandProperty05.ts │ │ ├── goToDefinitionShorthandProperty06.ts │ │ ├── goToDefinitionSignatureAlias.ts │ │ ├── goToDefinitionSignatureAlias_require.ts │ │ ├── goToDefinitionSimple.ts │ │ ├── goToDefinitionSourceUnit.ts │ │ ├── goToDefinitionSwitchCase1.ts │ │ ├── goToDefinitionSwitchCase2.ts │ │ ├── goToDefinitionSwitchCase3.ts │ │ ├── goToDefinitionSwitchCase4.ts │ │ ├── goToDefinitionSwitchCase5.ts │ │ ├── goToDefinitionSwitchCase6.ts │ │ ├── goToDefinitionSwitchCase7.ts │ │ ├── goToDefinitionTaggedTemplateOverloads.ts │ │ ├── goToDefinitionThis.ts │ │ ├── goToDefinitionTypeOnlyImport.ts │ │ ├── goToDefinitionTypePredicate.ts │ │ ├── goToDefinitionTypeReferenceDirective.ts │ │ ├── goToDefinitionTypeofThis.ts │ │ ├── goToDefinitionUndefinedSymbols.ts │ │ ├── goToDefinitionUnionTypeProperty1.ts │ │ ├── goToDefinitionUnionTypeProperty2.ts │ │ ├── goToDefinitionUnionTypeProperty3.ts │ │ ├── goToDefinitionUnionTypeProperty4.ts │ │ ├── goToDefinitionUnionTypeProperty_discriminated.ts │ │ ├── goToDefinitionVariableAssignment.ts │ │ ├── goToDefinitionVariableAssignment1.ts │ │ ├── goToDefinitionVariableAssignment2.ts │ │ ├── goToDefinitionVariableAssignment3.ts │ │ ├── goToDefinitionYield1.ts │ │ ├── goToDefinitionYield2.ts │ │ ├── goToDefinitionYield3.ts │ │ ├── goToDefinitionYield4.ts │ │ ├── goToDefinition_filteringGenericMappedType.ts │ │ ├── goToDefinition_filteringMappedType.ts │ │ ├── goToDefinition_mappedType.ts │ │ ├── goToDefinition_super.ts │ │ ├── goToDefinition_untypedModule.ts │ │ ├── goToImplementationClassMethod_00.ts │ │ ├── goToImplementationClassMethod_01.ts │ │ ├── goToImplementationEnum_00.ts │ │ ├── goToImplementationEnum_01.ts │ │ ├── goToImplementationInterfaceMethod_00.ts │ │ ├── goToImplementationInterfaceMethod_01.ts │ │ ├── goToImplementationInterfaceMethod_02.ts │ │ ├── goToImplementationInterfaceMethod_03.ts │ │ ├── goToImplementationInterfaceMethod_04.ts │ │ ├── goToImplementationInterfaceMethod_05.ts │ │ ├── goToImplementationInterfaceMethod_06.ts │ │ ├── goToImplementationInterfaceMethod_08.ts │ │ ├── goToImplementationInterfaceMethod_09.ts │ │ ├── goToImplementationInterfaceMethod_10.ts │ │ ├── goToImplementationInterfaceMethod_11.ts │ │ ├── goToImplementationInterfaceProperty_00.ts │ │ ├── goToImplementationInterfaceProperty_01.ts │ │ ├── goToImplementationInterface_00.ts │ │ ├── goToImplementationInterface_01.ts │ │ ├── goToImplementationInterface_02.ts │ │ ├── goToImplementationInterface_03.ts │ │ ├── goToImplementationInterface_04.ts │ │ ├── goToImplementationInterface_05.ts │ │ ├── goToImplementationInterface_06.ts │ │ ├── goToImplementationInterface_07.ts │ │ ├── goToImplementationInterface_08.ts │ │ ├── goToImplementationInterface_09.ts │ │ ├── goToImplementationInterface_10.ts │ │ ├── goToImplementationInvalid.ts │ │ ├── goToImplementationLocal_00.ts │ │ ├── goToImplementationLocal_01.ts │ │ ├── goToImplementationLocal_02.ts │ │ ├── goToImplementationLocal_03.ts │ │ ├── goToImplementationLocal_04.ts │ │ ├── goToImplementationLocal_05.ts │ │ ├── goToImplementationLocal_06.ts │ │ ├── goToImplementationLocal_07.ts │ │ ├── goToImplementationLocal_08.ts │ │ ├── goToImplementationNamespace_00.ts │ │ ├── goToImplementationNamespace_01.ts │ │ ├── goToImplementationNamespace_02.ts │ │ ├── goToImplementationNamespace_03.ts │ │ ├── goToImplementationNamespace_04.ts │ │ ├── goToImplementationNamespace_05.ts │ │ ├── goToImplementationNamespace_06.ts │ │ ├── goToImplementationShorthandPropertyAssignment_00.ts │ │ ├── goToImplementationShorthandPropertyAssignment_01.ts │ │ ├── goToImplementationShorthandPropertyAssignment_02.ts │ │ ├── goToImplementationSuper_00.ts │ │ ├── goToImplementationSuper_01.ts │ │ ├── goToImplementationThis_00.ts │ │ ├── goToImplementationThis_01.ts │ │ ├── goToImplementationTypeAlias_00.ts │ │ ├── goToImplementation_satisfies.ts │ │ ├── goToModuleAliasDefinition.ts │ │ ├── goToTypeDefinition.ts │ │ ├── goToTypeDefinition2.ts │ │ ├── goToTypeDefinition3.ts │ │ ├── goToTypeDefinition4.ts │ │ ├── goToTypeDefinition5.ts │ │ ├── goToTypeDefinitionAliases.ts │ │ ├── goToTypeDefinitionEnumMembers.ts │ │ ├── goToTypeDefinitionImportMeta.ts │ │ ├── goToTypeDefinitionModifiers.ts │ │ ├── goToTypeDefinitionModule.ts │ │ ├── goToTypeDefinitionPrimitives.ts │ │ ├── goToTypeDefinitionUnionType.ts │ │ ├── goToTypeDefinition_Pick.ts │ │ ├── goToTypeDefinition_arrayType.ts │ │ ├── goToTypeDefinition_promiseType.ts │ │ ├── goToTypeDefinition_returnType.ts │ │ ├── goToTypeDefinition_typeReference.ts │ │ ├── goToTypeDefinition_typedef.ts │ │ ├── gotoDefinitionConstructorFunction.ts │ │ ├── gotoDefinitionInObjectBindingPattern1.ts │ │ ├── gotoDefinitionInObjectBindingPattern2.ts │ │ ├── gotoDefinitionLinkTag1.ts │ │ ├── gotoDefinitionLinkTag2.ts │ │ ├── gotoDefinitionLinkTag3.ts │ │ ├── gotoDefinitionLinkTag4.ts │ │ ├── gotoDefinitionLinkTag5.ts │ │ ├── gotoDefinitionLinkTag6.ts │ │ ├── gotoDefinitionPropertyAccessExpressionHeritageClause.ts │ │ ├── gotoDefinitionSatisfiesTag.ts │ │ ├── gotoDefinitionThrowsTag.ts │ │ ├── highlightsForExportFromUnfoundModule.ts │ │ ├── hoverOverComment.ts │ │ ├── hoverOverPrivateName.ts │ │ ├── identationAfterInterfaceCall.ts │ │ ├── identifierErrorRecovery.ts │ │ ├── importCompletionsPackageJsonExportsSpecifierEndsInTs.ts │ │ ├── importCompletionsPackageJsonExportsTrailingSlash1.ts │ │ ├── importCompletionsPackageJsonImportsConditions1.ts │ │ ├── importCompletionsPackageJsonImportsLength1.ts │ │ ├── importCompletionsPackageJsonImportsLength2.ts │ │ ├── importCompletionsPackageJsonImportsPattern.ts │ │ ├── importCompletionsPackageJsonImportsPattern2.ts │ │ ├── importCompletionsPackageJsonImportsPatternRootWildcard.ts │ │ ├── importCompletionsPackageJsonImportsPattern_capsInPath1.ts │ │ ├── importCompletionsPackageJsonImportsPattern_capsInPath2.ts │ │ ├── importCompletionsPackageJsonImportsPattern_js.ts │ │ ├── importCompletionsPackageJsonImportsPattern_js_ts.ts │ │ ├── importCompletionsPackageJsonImportsPattern_ts.ts │ │ ├── importCompletionsPackageJsonImportsPattern_ts_js.ts │ │ ├── importCompletionsPackageJsonImportsPattern_ts_ts.ts │ │ ├── importCompletionsPackageJsonImports_js.ts │ │ ├── importCompletionsPackageJsonImports_ts.ts │ │ ├── importDeclPaste0.ts │ │ ├── importFixWithMultipleModuleExportAssignment.ts │ │ ├── importFixesGlobalTypingsCache.ts │ │ ├── importFixesWithExistingDottedRequire.ts │ │ ├── importFixesWithPackageJsonInSideAnotherPackage.ts │ │ ├── importFixesWithSymlinkInSiblingRushPnpm.ts │ │ ├── importFixesWithSymlinkInSiblingRushYarn.ts │ │ ├── importFixes_quotePreferenceDouble_importHelpers.ts │ │ ├── importFixes_quotePreferenceSingle_importHelpers.ts │ │ ├── importJsNodeModule1.ts │ │ ├── importJsNodeModule2.ts │ │ ├── importJsNodeModule3.ts │ │ ├── importJsNodeModule4.ts │ │ ├── importMetaCompletionDetails.ts │ │ ├── importNameCodeFixConvertTypeOnly1.ts │ │ ├── importNameCodeFixDefaultExport.ts │ │ ├── importNameCodeFixDefaultExport1.ts │ │ ├── importNameCodeFixDefaultExport2.ts │ │ ├── importNameCodeFixDefaultExport3.ts │ │ ├── importNameCodeFixDefaultExport4.ts │ │ ├── importNameCodeFixDefaultExport5.ts │ │ ├── importNameCodeFixDefaultExport6.ts │ │ ├── importNameCodeFixDefaultExport7.ts │ │ ├── importNameCodeFixExistingImport0.ts │ │ ├── importNameCodeFixExistingImport1.ts │ │ ├── importNameCodeFixExistingImport10.ts │ │ ├── importNameCodeFixExistingImport11.ts │ │ ├── importNameCodeFixExistingImport12.ts │ │ ├── importNameCodeFixExistingImport2.ts │ │ ├── importNameCodeFixExistingImport3.ts │ │ ├── importNameCodeFixExistingImport4.ts │ │ ├── importNameCodeFixExistingImport5.ts │ │ ├── importNameCodeFixExistingImport6.ts │ │ ├── importNameCodeFixExistingImport7.ts │ │ ├── importNameCodeFixExistingImport8.ts │ │ ├── importNameCodeFixExistingImport9.ts │ │ ├── importNameCodeFixExistingImportEquals0.ts │ │ ├── importNameCodeFixExportAsDefault.ts │ │ ├── importNameCodeFixExportAsDefaultExistingImport.ts │ │ ├── importNameCodeFixIndentedIdentifier.ts │ │ ├── importNameCodeFixInferEndingPreference.ts │ │ ├── importNameCodeFixInferEndingPreference_classic.ts │ │ ├── importNameCodeFixJsEnding.ts │ │ ├── importNameCodeFixNewImportAllowSyntheticDefaultImports0.ts │ │ ├── importNameCodeFixNewImportAllowSyntheticDefaultImports1.ts │ │ ├── importNameCodeFixNewImportAllowSyntheticDefaultImports2.ts │ │ ├── importNameCodeFixNewImportAllowSyntheticDefaultImports3.ts │ │ ├── importNameCodeFixNewImportAllowSyntheticDefaultImports4.ts │ │ ├── importNameCodeFixNewImportAllowSyntheticDefaultImports5.ts │ │ ├── importNameCodeFixNewImportAmbient0.ts │ │ ├── importNameCodeFixNewImportAmbient1.ts │ │ ├── importNameCodeFixNewImportAmbient2.ts │ │ ├── importNameCodeFixNewImportAmbient3.ts │ │ ├── importNameCodeFixNewImportBaseUrl0.ts │ │ ├── importNameCodeFixNewImportBaseUrl1.ts │ │ ├── importNameCodeFixNewImportBaseUrl2.ts │ │ ├── importNameCodeFixNewImportDefault0.ts │ │ ├── importNameCodeFixNewImportExportEqualsCommonJSInteropOn.ts │ │ ├── importNameCodeFixNewImportExportEqualsESNextInteropOff.ts │ │ ├── importNameCodeFixNewImportExportEqualsESNextInteropOn.ts │ │ ├── importNameCodeFixNewImportExportEqualsPrimitive.ts │ │ ├── importNameCodeFixNewImportFile0.ts │ │ ├── importNameCodeFixNewImportFile1.ts │ │ ├── importNameCodeFixNewImportFile2.ts │ │ ├── importNameCodeFixNewImportFile3.ts │ │ ├── importNameCodeFixNewImportFile4.ts │ │ ├── importNameCodeFixNewImportFile5.ts │ │ ├── importNameCodeFixNewImportFileAllComments.ts │ │ ├── importNameCodeFixNewImportFileDetachedComments.ts │ │ ├── importNameCodeFixNewImportFileQuoteStyle0.ts │ │ ├── importNameCodeFixNewImportFileQuoteStyle1.ts │ │ ├── importNameCodeFixNewImportFileQuoteStyle2.ts │ │ ├── importNameCodeFixNewImportFileQuoteStyle3.ts │ │ ├── importNameCodeFixNewImportFileQuoteStyleMixed0.ts │ │ ├── importNameCodeFixNewImportFileQuoteStyleMixed1.ts │ │ ├── importNameCodeFixNewImportFromAtTypes.ts │ │ ├── importNameCodeFixNewImportFromAtTypesScopedPackage.ts │ │ ├── importNameCodeFixNewImportIndex.ts │ │ ├── importNameCodeFixNewImportIndex_notForClassicResolution.ts │ │ ├── importNameCodeFixNewImportNodeModules0.ts │ │ ├── importNameCodeFixNewImportNodeModules1.ts │ │ ├── importNameCodeFixNewImportNodeModules2.ts │ │ ├── importNameCodeFixNewImportNodeModules3.ts │ │ ├── importNameCodeFixNewImportNodeModules4.ts │ │ ├── importNameCodeFixNewImportNodeModules5.ts │ │ ├── importNameCodeFixNewImportNodeModules6.ts │ │ ├── importNameCodeFixNewImportNodeModules7.ts │ │ ├── importNameCodeFixNewImportNodeModules8.ts │ │ ├── importNameCodeFixNewImportPaths0.ts │ │ ├── importNameCodeFixNewImportPaths1.ts │ │ ├── importNameCodeFixNewImportPaths2.ts │ │ ├── importNameCodeFixNewImportPaths_withExtension.ts │ │ ├── importNameCodeFixNewImportPaths_withLeadingDotSlash.ts │ │ ├── importNameCodeFixNewImportPaths_withParentRelativePath.ts │ │ ├── importNameCodeFixNewImportRootDirs0.ts │ │ ├── importNameCodeFixNewImportRootDirs1.ts │ │ ├── importNameCodeFixNewImportTypeRoots0.ts │ │ ├── importNameCodeFixNewImportTypeRoots1.ts │ │ ├── importNameCodeFixOptionalImport0.ts │ │ ├── importNameCodeFixOptionalImport1.ts │ │ ├── importNameCodeFixReExport.ts │ │ ├── importNameCodeFixShebang.ts │ │ ├── importNameCodeFixUMDGlobal0.ts │ │ ├── importNameCodeFixUMDGlobal1.ts │ │ ├── importNameCodeFixUMDGlobalJavaScript.ts │ │ ├── importNameCodeFixUMDGlobalReact0.ts │ │ ├── importNameCodeFixUMDGlobalReact1.ts │ │ ├── importNameCodeFixUMDGlobalReact2.ts │ │ ├── importNameCodeFixWithCopyright.ts │ │ ├── importNameCodeFixWithPrologue.ts │ │ ├── importNameCodeFix_HeaderComment1.ts │ │ ├── importNameCodeFix_HeaderComment2.ts │ │ ├── importNameCodeFix_add_all_missing_imports.ts │ │ ├── importNameCodeFix_all.ts │ │ ├── importNameCodeFix_all2.ts │ │ ├── importNameCodeFix_all_js.ts │ │ ├── importNameCodeFix_all_promoteType.ts │ │ ├── importNameCodeFix_avoidRelativeNodeModules.ts │ │ ├── importNameCodeFix_barrelExport.ts │ │ ├── importNameCodeFix_barrelExport2.ts │ │ ├── importNameCodeFix_barrelExport3.ts │ │ ├── importNameCodeFix_barrelExport4.ts │ │ ├── importNameCodeFix_barrelExport5.ts │ │ ├── importNameCodeFix_commonjs_allowSynthetic.ts │ │ ├── importNameCodeFix_defaultExport.ts │ │ ├── importNameCodeFix_dollar.ts │ │ ├── importNameCodeFix_endingPreference.ts │ │ ├── importNameCodeFix_exportEquals.ts │ │ ├── importNameCodeFix_fileWithNoTrailingNewline.ts │ │ ├── importNameCodeFix_fromPathMapping.ts │ │ ├── importNameCodeFix_getCanonicalFileName.ts │ │ ├── importNameCodeFix_importType.ts │ │ ├── importNameCodeFix_importType1.ts │ │ ├── importNameCodeFix_importType2.ts │ │ ├── importNameCodeFix_importType3.ts │ │ ├── importNameCodeFix_importType4.ts │ │ ├── importNameCodeFix_importType5.ts │ │ ├── importNameCodeFix_importType6.ts │ │ ├── importNameCodeFix_importType7.ts │ │ ├── importNameCodeFix_importType8.ts │ │ ├── importNameCodeFix_importType9.ts │ │ ├── importNameCodeFix_jsCJSvsESM1.ts │ │ ├── importNameCodeFix_jsCJSvsESM2.ts │ │ ├── importNameCodeFix_jsCJSvsESM3.ts │ │ ├── importNameCodeFix_jsExtension.ts │ │ ├── importNameCodeFix_jsx1.ts │ │ ├── importNameCodeFix_jsx2.ts │ │ ├── importNameCodeFix_jsx3.ts │ │ ├── importNameCodeFix_jsx4.ts │ │ ├── importNameCodeFix_jsx5.ts │ │ ├── importNameCodeFix_jsx6.ts │ │ ├── importNameCodeFix_jsx7.ts │ │ ├── importNameCodeFix_jsxOpeningTagImportDefault.ts │ │ ├── importNameCodeFix_jsxReact17.ts │ │ ├── importNameCodeFix_noDestructureNonObjectLiteral.ts │ │ ├── importNameCodeFix_order.ts │ │ ├── importNameCodeFix_order2.ts │ │ ├── importNameCodeFix_pathsWithExtension.ts │ │ ├── importNameCodeFix_pathsWithoutBaseUrl1.ts │ │ ├── importNameCodeFix_pathsWithoutBaseUrl2.ts │ │ ├── importNameCodeFix_preferBaseUrl.ts │ │ ├── importNameCodeFix_quoteStyle.ts │ │ ├── importNameCodeFix_reExport.ts │ │ ├── importNameCodeFix_reExportDefault.ts │ │ ├── importNameCodeFix_require.ts │ │ ├── importNameCodeFix_require_UMD.ts │ │ ├── importNameCodeFix_require_addToExisting.ts │ │ ├── importNameCodeFix_require_importVsRequire_addToExistingWins.ts │ │ ├── importNameCodeFix_require_importVsRequire_importWins.ts │ │ ├── importNameCodeFix_require_importVsRequire_moduleTarget.ts │ │ ├── importNameCodeFix_require_namedAndDefault.ts │ │ ├── importNameCodeFix_rootDirs.ts │ │ ├── importNameCodeFix_shorthandPropertyAssignment1.ts │ │ ├── importNameCodeFix_shorthandPropertyAssignment2.ts │ │ ├── importNameCodeFix_sortByDistance.ts │ │ ├── importNameCodeFix_symlink.ts │ │ ├── importNameCodeFix_symlink_own_package.ts │ │ ├── importNameCodeFix_symlink_own_package_2.ts │ │ ├── importNameCodeFix_trailingComma.ts │ │ ├── importNameCodeFix_tripleSlashOrdering.ts │ │ ├── importNameCodeFix_typeOnly.ts │ │ ├── importNameCodeFix_typeOnly2.ts │ │ ├── importNameCodeFix_typeOnly3.ts │ │ ├── importNameCodeFix_typeUsedAsValue.ts │ │ ├── importNameCodeFix_typesVersions.ts │ │ ├── importNameCodeFix_types_classic.ts │ │ ├── importNameCodeFix_uriStyleNodeCoreModules1.ts │ │ ├── importNameCodeFix_uriStyleNodeCoreModules2.ts │ │ ├── importNameCodeFix_uriStyleNodeCoreModules3.ts │ │ ├── importNameCodeFix_withJson.ts │ │ ├── importStatementCompletions1.ts │ │ ├── importStatementCompletions2.ts │ │ ├── importStatementCompletions3.ts │ │ ├── importStatementCompletions4.ts │ │ ├── importStatementCompletions_esModuleInterop1.ts │ │ ├── importStatementCompletions_esModuleInterop2.ts │ │ ├── importStatementCompletions_js.ts │ │ ├── importStatementCompletions_js2.ts │ │ ├── importStatementCompletions_noPatternAmbient.ts │ │ ├── importStatementCompletions_noSnippet.ts │ │ ├── importStatementCompletions_quotes.ts │ │ ├── importStatementCompletions_semicolons.ts │ │ ├── importTypeCompletions1.ts │ │ ├── importTypeCompletions2.ts │ │ ├── importTypeCompletions3.ts │ │ ├── importTypeCompletions4.ts │ │ ├── importTypeCompletions5.ts │ │ ├── importTypeCompletions6.ts │ │ ├── importTypeCompletions7.ts │ │ ├── importTypeCompletions8.ts │ │ ├── importTypeCompletions9.ts │ │ ├── importTypeFormatting.ts │ │ ├── importTypeMemberCompletions.ts │ │ ├── importTypeNodeGoToDefinition.ts │ │ ├── importTypesDeclarationDiagnosticsNoServerError.ts │ │ ├── importValueUsedAsType.ts │ │ ├── incompatibleOverride.ts │ │ ├── incompleteFunctionCallCodefix.ts │ │ ├── incompleteFunctionCallCodefix2.ts │ │ ├── incompleteFunctionCallCodefix3.ts │ │ ├── incompleteFunctionCallCodefixTypeKeyof.ts │ │ ├── incompleteFunctionCallCodefixTypeParameter.ts │ │ ├── incompleteFunctionCallCodefixTypeParameterArgumentDifferent.ts │ │ ├── incompleteFunctionCallCodefixTypeParameterArgumentSame.ts │ │ ├── incompleteFunctionCallCodefixTypeParameterConstrained.ts │ │ ├── incompleteFunctionCallCodefixTypeParameterNarrowed.ts │ │ ├── incompleteFunctionCallCodefixTypeParameterVariable.ts │ │ ├── incompleteFunctionCallCodefixTypeParameters.ts │ │ ├── incompleteFunctionCallCodefixTypeParametersConstrained.ts │ │ ├── incompleteFunctionCallCodefixTypeParametersNested2D.ts │ │ ├── incompleteFunctionCallCodefixTypeParametersNested3D.ts │ │ ├── incompleteFunctionCallCodefixTypeUnion.ts │ │ ├── incompleteFunctionCallCodefixTypeUnions.ts │ │ ├── incorrectJsDocObjectLiteralType.ts │ │ ├── incrementalEditInvocationExpressionAboveInterfaceDeclaration.ts │ │ ├── incrementalJsDocAdjustsLengthsRight.ts │ │ ├── incrementalParsing1.ts │ │ ├── incrementalParsingDynamicImport1.ts │ │ ├── incrementalParsingDynamicImport2.ts │ │ ├── incrementalParsingDynamicImport3.ts │ │ ├── incrementalParsingDynamicImport4.ts │ │ ├── incrementalParsingInsertIntoMethod1.ts │ │ ├── incrementalParsingTopLevelAwait.1.ts │ │ ├── incrementalParsingTopLevelAwait.2.ts │ │ ├── incrementalParsingWithJsDoc.ts │ │ ├── incrementalResolveAccessor.ts │ │ ├── incrementalResolveConstructorDeclaration.ts │ │ ├── incrementalResolveFunctionPropertyAssignment.ts │ │ ├── incrementalUpdateToClassImplementingGenericClass.ts │ │ ├── indentAfterFunctionClosingBraces.ts │ │ ├── indentAfterImport.ts │ │ ├── indentNewExpressionNoBraces.ts │ │ ├── indentation.ts │ │ ├── indentationAfterModuleImport.ts │ │ ├── indentationBlock.ts │ │ ├── indentationInAmdIife.ts │ │ ├── indentationInArrays.ts │ │ ├── indentationInAssignment.ts │ │ ├── indentationInAsyncExpressions.ts │ │ ├── indentationInAugmentations1.ts │ │ ├── indentationInAugmentations2.ts │ │ ├── indentationInBlockCommentAfterFormatting.ts │ │ ├── indentationInClassExpression.ts │ │ ├── indentationInComments.ts │ │ ├── indentationInJsx1.ts │ │ ├── indentationInJsx2.ts │ │ ├── indentationInJsx3.ts │ │ ├── indentationInObject.ts │ │ ├── indentationNone.ts │ │ ├── indentationWithBaseIndent.ts │ │ ├── indexSignatureWithoutAnnotation.ts │ │ ├── indexerReturnTypes1.ts │ │ ├── indirectClassInstantiation.ts │ │ ├── indirectJsRequireRename.ts │ │ ├── inheritedModuleMembersForClodule2.ts │ │ ├── inlayHintsCrash1.ts │ │ ├── inlayHintsEnumMemberValue.ts │ │ ├── inlayHintsFunctionParameterTypes1.ts │ │ ├── inlayHintsFunctionParameterTypes2.ts │ │ ├── inlayHintsFunctionParameterTypes3.ts │ │ ├── inlayHintsFunctionParameterTypes4.ts │ │ ├── inlayHintsFunctionParameterTypes5.ts │ │ ├── inlayHintsImportType1.ts │ │ ├── inlayHintsImportType2.ts │ │ ├── inlayHintsInferredTypePredicate1.ts │ │ ├── inlayHintsInteractiveAnyParameter1.ts │ │ ├── inlayHintsInteractiveAnyParameter2.ts │ │ ├── inlayHintsInteractiveFunctionParameterTypes1.ts │ │ ├── inlayHintsInteractiveFunctionParameterTypes2.ts │ │ ├── inlayHintsInteractiveFunctionParameterTypes3.ts │ │ ├── inlayHintsInteractiveFunctionParameterTypes4.ts │ │ ├── inlayHintsInteractiveFunctionParameterTypes5.ts │ │ ├── inlayHintsInteractiveImportType1.ts │ │ ├── inlayHintsInteractiveImportType2.ts │ │ ├── inlayHintsInteractiveInferredTypePredicate1.ts │ │ ├── inlayHintsInteractiveJsDocParameterNames.ts │ │ ├── inlayHintsInteractiveMultifile1.ts │ │ ├── inlayHintsInteractiveMultifileFunctionCalls.ts │ │ ├── inlayHintsInteractiveOverloadCall.ts │ │ ├── inlayHintsInteractiveParameterNames.ts │ │ ├── inlayHintsInteractiveParameterNamesInSpan1.ts │ │ ├── inlayHintsInteractiveParameterNamesInSpan2.ts │ │ ├── inlayHintsInteractiveParameterNamesWithComments.ts │ │ ├── inlayHintsInteractiveRestParameters1.ts │ │ ├── inlayHintsInteractiveRestParameters2.ts │ │ ├── inlayHintsInteractiveRestParameters3.ts │ │ ├── inlayHintsInteractiveReturnType.ts │ │ ├── inlayHintsInteractiveTemplateLiteralTypes.ts │ │ ├── inlayHintsInteractiveVariableTypes1.ts │ │ ├── inlayHintsInteractiveVariableTypes2.ts │ │ ├── inlayHintsInteractiveWithClosures.ts │ │ ├── inlayHintsJsDocParameterNames.ts │ │ ├── inlayHintsMultifile1.ts │ │ ├── inlayHintsNoHintWhenArgumentMatchesName.ts │ │ ├── inlayHintsNoParameterHints.ts │ │ ├── inlayHintsNoVariableTypeHints.ts │ │ ├── inlayHintsOverloadCall1.ts │ │ ├── inlayHintsOverloadCall2.ts │ │ ├── inlayHintsParameterNames.ts │ │ ├── inlayHintsParameterNamesInSpan1.ts │ │ ├── inlayHintsParameterNamesInSpan2.ts │ │ ├── inlayHintsPropertyDeclarations.ts │ │ ├── inlayHintsPropertyDeclarations2.ts │ │ ├── inlayHintsQuotePreference1.ts │ │ ├── inlayHintsQuotePreference2.ts │ │ ├── inlayHintsRestParameters1.ts │ │ ├── inlayHintsRestParameters2.ts │ │ ├── inlayHintsReturnType.ts │ │ ├── inlayHintsThisParameter.ts │ │ ├── inlayHintsTypeMatchesName.ts │ │ ├── inlayHintsTypeParameterModifiers1.ts │ │ ├── inlayHintsVariableTypes1.ts │ │ ├── inlayHintsVariableTypes2.ts │ │ ├── inlayHintsVariableTypes3.ts │ │ ├── inlayHintsWithClosures.ts │ │ ├── inlineVariableDestructuredVariableDeclaration1.ts │ │ ├── inlineVariableDestructuredVariableDeclaration2.ts │ │ ├── inlineVariableDestructuredVariableDeclaration3.ts │ │ ├── inlineVariableDestructuredVariableDeclaration4.ts │ │ ├── inlineVariableExportedVariable.ts │ │ ├── inlineVariableFunctionResult.ts │ │ ├── inlineVariableJsxCallback.ts │ │ ├── inlineVariableMultipleDeclarations.ts │ │ ├── inlineVariableMultipleScopes.ts │ │ ├── inlineVariableNoParensPropertyAccess.ts │ │ ├── inlineVariableNoReplacementValue.ts │ │ ├── inlineVariableNotAVariableStatement.ts │ │ ├── inlineVariableNullCoalescing.ts │ │ ├── inlineVariableOnlyDeclaration.ts │ │ ├── inlineVariableParensBinExpression.ts │ │ ├── inlineVariableParensFunctions.ts │ │ ├── inlineVariableParensNewExpression.ts │ │ ├── inlineVariableParensPropertyAccess.ts │ │ ├── inlineVariableRecursiveInitializer.ts │ │ ├── inlineVariableRefactorAvailability.ts │ │ ├── inlineVariableShorthandPropertyAssignment.ts │ │ ├── inlineVariableSingleReference.ts │ │ ├── inlineVariableTemplateString1.ts │ │ ├── inlineVariableTemplateString10.ts │ │ ├── inlineVariableTemplateString11.ts │ │ ├── inlineVariableTemplateString2.ts │ │ ├── inlineVariableTemplateString3.ts │ │ ├── inlineVariableTemplateString4.ts │ │ ├── inlineVariableTemplateString5.ts │ │ ├── inlineVariableTemplateString6.ts │ │ ├── inlineVariableTemplateString7.ts │ │ ├── inlineVariableTemplateString8.ts │ │ ├── inlineVariableTemplateString9.ts │ │ ├── inlineVariableTriggerInReference.ts │ │ ├── inlineVariableTypeof.ts │ │ ├── inlineVariableWriteReference.ts │ │ ├── insertArgumentBeforeOverloadedConstructor.ts │ │ ├── insertInterfaceAndCheckTypeLiteralField.ts │ │ ├── insertMethodCallAboveOthers.ts │ │ ├── insertPublicBeforeSetter.ts │ │ ├── insertReturnStatementInDuplicateIdentifierFunction.ts │ │ ├── insertSecondTryCatchBlock.ts │ │ ├── insertVarAfterEmptyTypeParamList.ts │ │ ├── instanceTypesForGenericType1.ts │ │ ├── intellisenseInObjectLiteral.ts │ │ ├── interfaceExtendsPrimitive.ts │ │ ├── interfaceIndent.ts │ │ ├── interfaceRecursiveInheritanceErrors0.ts │ │ ├── interfaceRecursiveInheritanceErrors1.ts │ │ ├── invalidRestArgError.ts │ │ ├── invertedCloduleAfterQuickInfo.ts │ │ ├── invertedFunduleAfterQuickInfo.ts │ │ ├── isDefinitionInterfaceImplementation.ts │ │ ├── isDefinitionOverloads.ts │ │ ├── isDefinitionShorthandProperty.ts │ │ ├── isDefinitionSingleImport.ts │ │ ├── isDefinitionSingleReference.ts │ │ ├── isInMultiLineComment.ts │ │ ├── isInMultiLineCommentInJsxText.ts │ │ ├── isInMultiLineCommentInTemplateLiteral.ts │ │ ├── isInMultiLineCommentOnlyTrivia.ts │ │ ├── issue57429.ts │ │ ├── issue57585-2.ts │ │ ├── issue57585.ts │ │ ├── javaScriptClass1.ts │ │ ├── javaScriptClass2.ts │ │ ├── javaScriptClass3.ts │ │ ├── javaScriptClass4.ts │ │ ├── javaScriptModules12.ts │ │ ├── javaScriptModules13.ts │ │ ├── javaScriptModules14.ts │ │ ├── javaScriptModules15.ts │ │ ├── javaScriptModules16.ts │ │ ├── javaScriptModules17.ts │ │ ├── javaScriptModules18.ts │ │ ├── javaScriptModules19.ts │ │ ├── javaScriptModulesError1.ts │ │ ├── javaScriptModulesWithBackticks.ts │ │ ├── javaScriptPrototype1.ts │ │ ├── javaScriptPrototype2.ts │ │ ├── javaScriptPrototype3.ts │ │ ├── javaScriptPrototype4.ts │ │ ├── javaScriptPrototype5.ts │ │ ├── javascriptModules20.ts │ │ ├── javascriptModules21.ts │ │ ├── javascriptModules22.ts │ │ ├── javascriptModules23.ts │ │ ├── javascriptModules24.ts │ │ ├── javascriptModules25.ts │ │ ├── javascriptModulesTypeImport.ts │ │ ├── javascriptModulesTypeImportAsValue.ts │ │ ├── jsDocAliasQuickInfo.ts │ │ ├── jsDocAugments.ts │ │ ├── jsDocAugmentsAndExtends.ts │ │ ├── jsDocContextualTagsInJsDoc1.ts │ │ ├── jsDocDontBreakWithNamespaces.ts │ │ ├── jsDocExtends.ts │ │ ├── jsDocForTypeAlias.ts │ │ ├── jsDocFunctionSignatures10.ts │ │ ├── jsDocFunctionSignatures11.ts │ │ ├── jsDocFunctionSignatures12.ts │ │ ├── jsDocFunctionSignatures13.ts │ │ ├── jsDocFunctionSignatures2.ts │ │ ├── jsDocFunctionSignatures3.ts │ │ ├── jsDocFunctionSignatures4.ts │ │ ├── jsDocFunctionSignatures5.ts │ │ ├── jsDocFunctionSignatures6.ts │ │ ├── jsDocFunctionSignatures7.ts │ │ ├── jsDocFunctionSignatures8.ts │ │ ├── jsDocFunctionSignatures9.ts │ │ ├── jsDocFunctionTypeCompletionsNoCrash.ts │ │ ├── jsDocGenerics1.ts │ │ ├── jsDocGenerics2.ts │ │ ├── jsDocIndentationPreservation1.ts │ │ ├── jsDocIndentationPreservation2.ts │ │ ├── jsDocIndentationPreservation3.ts │ │ ├── jsDocInheritDoc.ts │ │ ├── jsDocPropertyDescription1.ts │ │ ├── jsDocPropertyDescription10.ts │ │ ├── jsDocPropertyDescription11.ts │ │ ├── jsDocPropertyDescription12.ts │ │ ├── jsDocPropertyDescription2.ts │ │ ├── jsDocPropertyDescription3.ts │ │ ├── jsDocPropertyDescription4.ts │ │ ├── jsDocPropertyDescription5.ts │ │ ├── jsDocPropertyDescription6.ts │ │ ├── jsDocPropertyDescription7.ts │ │ ├── jsDocPropertyDescription8.ts │ │ ├── jsDocPropertyDescription9.ts │ │ ├── jsDocSee1.ts │ │ ├── jsDocSee2.ts │ │ ├── jsDocSee3.ts │ │ ├── jsDocSee4.ts │ │ ├── jsDocSee_rename1.ts │ │ ├── jsDocServices.ts │ │ ├── jsDocSignature-43394.ts │ │ ├── jsDocTagsWithHyphen.ts │ │ ├── jsDocTypeTagQuickInfo1.ts │ │ ├── jsDocTypeTagQuickInfo2.ts │ │ ├── jsDocTypedefQuickInfo1.ts │ │ ├── jsFileImportNoTypes.ts │ │ ├── jsFileImportNoTypes2.ts │ │ ├── jsFileJsdocTypedefTagTypeExpressionCompletion.ts │ │ ├── jsFileJsdocTypedefTagTypeExpressionCompletion2.ts │ │ ├── jsFileJsdocTypedefTagTypeExpressionCompletion3.ts │ │ ├── jsFileJsdocTypedefTagTypeExpressionCompletion4.ts │ │ ├── jsObjectDefinePropertyRenameLocations.ts │ │ ├── jsQuickInfoGenerallyAcceptableSize.ts │ │ ├── jsRequireQuickInfo.ts │ │ ├── jsSignature-41059.ts │ │ ├── jsSpecialAssignmentMerging.ts │ │ ├── jsSpecialAssignmentMerging2.ts │ │ ├── jsTagAfterCallback1.ts │ │ ├── jsTagAfterCallback2.ts │ │ ├── jsTagAfterTypedef1.ts │ │ ├── jsconfig.ts │ │ ├── jsdocDeprecated_suggestion1.ts │ │ ├── jsdocDeprecated_suggestion10.ts │ │ ├── jsdocDeprecated_suggestion11.ts │ │ ├── jsdocDeprecated_suggestion12.ts │ │ ├── jsdocDeprecated_suggestion13.ts │ │ ├── jsdocDeprecated_suggestion14.ts │ │ ├── jsdocDeprecated_suggestion15.ts │ │ ├── jsdocDeprecated_suggestion16.ts │ │ ├── jsdocDeprecated_suggestion17.ts │ │ ├── jsdocDeprecated_suggestion18.ts │ │ ├── jsdocDeprecated_suggestion19.ts │ │ ├── jsdocDeprecated_suggestion2.ts │ │ ├── jsdocDeprecated_suggestion20.ts │ │ ├── jsdocDeprecated_suggestion21.ts │ │ ├── jsdocDeprecated_suggestion22.ts │ │ ├── jsdocDeprecated_suggestion3.ts │ │ ├── jsdocDeprecated_suggestion4.ts │ │ ├── jsdocDeprecated_suggestion5.ts │ │ ├── jsdocDeprecated_suggestion6.ts │ │ ├── jsdocDeprecated_suggestion7.ts │ │ ├── jsdocDeprecated_suggestion8.ts │ │ ├── jsdocDeprecated_suggestion9.ts │ │ ├── jsdocExtendsTagCompletion.ts │ │ ├── jsdocImplementsTagCompletion.ts │ │ ├── jsdocImportTagCompletion1.ts │ │ ├── jsdocImportTagCompletion2.ts │ │ ├── jsdocImportTagCompletion3.ts │ │ ├── jsdocLink1.ts │ │ ├── jsdocLink2.ts │ │ ├── jsdocLink3.ts │ │ ├── jsdocLink4.ts │ │ ├── jsdocLink5.ts │ │ ├── jsdocLink6.ts │ │ ├── jsdocLink_findAllReferences1.ts │ │ ├── jsdocLink_rename1.ts │ │ ├── jsdocNullableUnion.ts │ │ ├── jsdocOnInheritedMembers1.ts │ │ ├── jsdocOnInheritedMembers2.ts │ │ ├── jsdocOverloadTagCompletion.ts │ │ ├── jsdocParam_suggestion1.ts │ │ ├── jsdocParameterNameCompletion.ts │ │ ├── jsdocParameterTagSnippetCompletion1.ts │ │ ├── jsdocParameterTagSnippetCompletion2.ts │ │ ├── jsdocParameterTagSnippetCompletion3.ts │ │ ├── jsdocPropTagCompletion.ts │ │ ├── jsdocPropertyTagCompletion.ts │ │ ├── jsdocReturnsTag.ts │ │ ├── jsdocSatisfiesTagCompletion1.ts │ │ ├── jsdocSatisfiesTagCompletion2.ts │ │ ├── jsdocSatisfiesTagFindAllReferences.ts │ │ ├── jsdocSatisfiesTagRename.ts │ │ ├── jsdocTemplatePrototypeCompletions.ts │ │ ├── jsdocTemplateTagCompletion.ts │ │ ├── jsdocThrowsTagCompletion.ts │ │ ├── jsdocThrowsTag_findAllReferences.ts │ │ ├── jsdocThrowsTag_rename.ts │ │ ├── jsdocTypedefTagSemanticMeaning0.ts │ │ ├── jsdocTypedefTagSemanticMeaning1.ts │ │ ├── jsdocTypedefTagServices.ts │ │ ├── jsdocTypedefTagTypeExpressionCompletion.ts │ │ ├── jsdocWithBarInTypeLiteral.ts │ │ ├── jsxAriaLikeCompletions.ts │ │ ├── jsxAttributeCompletionStyleAuto.ts │ │ ├── jsxAttributeCompletionStyleBraces.ts │ │ ├── jsxAttributeCompletionStyleDefault.ts │ │ ├── jsxAttributeCompletionStyleNoSnippet.ts │ │ ├── jsxAttributeCompletionStyleNone.ts │ │ ├── jsxAttributeSnippetCompletionAfterTypeArgs.ts │ │ ├── jsxAttributeSnippetCompletionClosed.ts │ │ ├── jsxAttributeSnippetCompletionUnclosed.ts │ │ ├── jsxBraceCompletionPosition.ts │ │ ├── jsxElementExtendsNoCrash1.ts │ │ ├── jsxElementExtendsNoCrash2.ts │ │ ├── jsxElementExtendsNoCrash3.ts │ │ ├── jsxElementMissingOpeningTagNoCrash.ts │ │ ├── jsxExpressionFollowedByIdentifier.ts │ │ ├── jsxExpressionWithCommaExpression.ts │ │ ├── jsxFindAllReferencesOnRuntimeImportWithPaths1.ts │ │ ├── jsxGenericQuickInfo.tsx │ │ ├── jsxQualifiedTagCompletion.ts │ │ ├── jsxSpreadReference.ts │ │ ├── jsxTagNameCompletionClosed.ts │ │ ├── jsxTagNameCompletionUnclosed.ts │ │ ├── jsxTagNameCompletionUnderElementClosed.ts │ │ ├── jsxTagNameCompletionUnderElementUnclosed.ts │ │ ├── jsxTagNameCompletionWithExistingJsxInitializer.ts │ │ ├── jsxTsIgnoreOnJSXExpressionsAndChildren.ts │ │ ├── jsxWithTypeParametershasInstantiatedSignatureHelp.tsx │ │ ├── lambdaThisMembers.ts │ │ ├── letQuickInfoAndCompletionList.ts │ │ ├── linkedEditingJsxTag1.ts │ │ ├── linkedEditingJsxTag10.ts │ │ ├── linkedEditingJsxTag11.ts │ │ ├── linkedEditingJsxTag12.ts │ │ ├── linkedEditingJsxTag2.ts │ │ ├── linkedEditingJsxTag3.ts │ │ ├── linkedEditingJsxTag4.ts │ │ ├── linkedEditingJsxTag5.ts │ │ ├── linkedEditingJsxTag6.ts │ │ ├── linkedEditingJsxTag7.ts │ │ ├── linkedEditingJsxTag8.ts │ │ ├── linkedEditingJsxTag9.ts │ │ ├── localFunction.ts │ │ ├── localGetReferences.ts │ │ ├── malformedObjectLiteral.ts │ │ ├── mapCodeClassInvalidClassMember.ts │ │ ├── mapCodeFocusLocationReplacement.ts │ │ ├── mapCodeMethodInsertion.ts │ │ ├── mapCodeMethodReplacement.ts │ │ ├── mapCodeMixedClassDeclaration.ts │ │ ├── mapCodeMultipleChangesAndRanges.ts │ │ ├── mapCodeNestedClassIfInsertion.ts │ │ ├── mapCodeNestedClassIfReplacement.ts │ │ ├── mapCodeNestedForInsertion.ts │ │ ├── mapCodeNestedForOfInsertion.ts │ │ ├── mapCodeNestedForOfReplacement.ts │ │ ├── mapCodeNestedForReplacement.ts │ │ ├── mapCodeNestedIfInsertion.ts │ │ ├── mapCodeNestedIfReplace.ts │ │ ├── mapCodeNestedLabeledInsertion.ts │ │ ├── mapCodeNestedLabeledReplace.ts │ │ ├── mapCodeNestedWhileInsertion.ts │ │ ├── mapCodeNestedWhileReplace.ts │ │ ├── mapCodeNoChanges.ts │ │ ├── mapCodeNoRanges.ts │ │ ├── mapCodePlainJsInsertion.ts │ │ ├── mapCodeRangeReplacement.ts │ │ ├── mapCodeReplaceUsingRange.ts │ │ ├── mapCodeToplevelInsert.ts │ │ ├── mapCodeToplevelInsertNoClass.ts │ │ ├── mapCodeToplevelReplace.ts │ │ ├── memberCompletionFromFunctionCall.ts │ │ ├── memberCompletionInForEach1.ts │ │ ├── memberCompletionOnRightSideOfImport.ts │ │ ├── memberCompletionOnTypeParameters.ts │ │ ├── memberCompletionOnTypeParameters2.ts │ │ ├── memberConstructorEdits.ts │ │ ├── memberListAfterDoubleDot.ts │ │ ├── memberListAfterSingleDot.ts │ │ ├── memberListErrorRecovery.ts │ │ ├── memberListInFunctionCall.ts │ │ ├── memberListInFunctionCall2.ts │ │ ├── memberListInReopenedEnum.ts │ │ ├── memberListInWithBlock.ts │ │ ├── memberListInWithBlock2.ts │ │ ├── memberListInWithBlock3.ts │ │ ├── memberListInsideObjectLiterals.ts │ │ ├── memberListOfClass.ts │ │ ├── memberListOfEnumFromExternalModule.ts │ │ ├── memberListOfEnumInModule.ts │ │ ├── memberListOfExportedClass.ts │ │ ├── memberListOfModule.ts │ │ ├── memberListOfModuleAfterInvalidCharater.ts │ │ ├── memberListOfModuleBeforeKeyword.ts │ │ ├── memberListOfModuleInAnotherModule.ts │ │ ├── memberListOfVarInArrowExpression.ts │ │ ├── memberListOnConstructorType.ts │ │ ├── memberListOnContextualThis.ts │ │ ├── memberListOnExplicitThis.ts │ │ ├── memberListOnFunctionParameter.ts │ │ ├── memberListOnThisInClassWithPrivates.ts │ │ ├── memberOverloadEdits.ts │ │ ├── memberlistOnDDot.ts │ │ ├── mergedDeclarationsWithExportAssignment1.ts │ │ ├── mispeltVariableForInLoopErrorRecovery.ts │ │ ├── missingMethodAfterEditAfterImport.ts │ │ ├── moduleEnumModule.ts │ │ ├── moduleIndent.ts │ │ ├── moduleMembersOfGenericType.ts │ │ ├── moduleNodeNextAutoImport1.ts │ │ ├── moduleNodeNextAutoImport2.ts │ │ ├── moduleNodeNextAutoImport3.ts │ │ ├── moduleNodeNextImportFix.ts │ │ ├── moduleReexportedIntoGlobalQuickInfo.ts │ │ ├── moduleReferenceValue.ts │ │ ├── moduleRenamingErrorRecovery.ts │ │ ├── moveToFile_addImportFromTargetFile.ts │ │ ├── moveToFile_alias.ts │ │ ├── moveToFile_alias2.ts │ │ ├── moveToFile_alias3.ts │ │ ├── moveToFile_blankExistingFile.ts │ │ ├── moveToFile_consistentQuoteStyle.ts │ │ ├── moveToFile_ctsTomts.ts │ │ ├── moveToFile_differentDirectories.ts │ │ ├── moveToFile_differentDirectories2.ts │ │ ├── moveToFile_existingImports1.ts │ │ ├── moveToFile_existingImports2.ts │ │ ├── moveToFile_existingImports3.ts │ │ ├── moveToFile_existingImports4.ts │ │ ├── moveToFile_existingImports5.ts │ │ ├── moveToFile_expandSelectionRange1.ts │ │ ├── moveToFile_expandSelectionRange10.ts │ │ ├── moveToFile_expandSelectionRange11.ts │ │ ├── moveToFile_expandSelectionRange12.ts │ │ ├── moveToFile_expandSelectionRange13.ts │ │ ├── moveToFile_expandSelectionRange14.ts │ │ ├── moveToFile_expandSelectionRange15.ts │ │ ├── moveToFile_expandSelectionRange2.ts │ │ ├── moveToFile_expandSelectionRange3.ts │ │ ├── moveToFile_expandSelectionRange4.ts │ │ ├── moveToFile_expandSelectionRange5.ts │ │ ├── moveToFile_expandSelectionRange6.ts │ │ ├── moveToFile_expandSelectionRange7.ts │ │ ├── moveToFile_expandSelectionRange8.ts │ │ ├── moveToFile_expandSelectionRange9.ts │ │ ├── moveToFile_impossibleImport.ts │ │ ├── moveToFile_multipleStatements.ts │ │ ├── moveToFile_multipleStatements2.ts │ │ ├── moveToFile_namedImports.ts │ │ ├── moveToFile_namespaceImport.ts │ │ ├── moveToFile_newFile.ts │ │ ├── moveToFile_noImportExport.ts │ │ ├── moveToFile_noSelfImports1.ts │ │ ├── moveToFile_noSelfImports2.ts │ │ ├── moveToFile_nonExportedImports.ts │ │ ├── moveToFile_overloads1.ts │ │ ├── moveToFile_overloads2.ts │ │ ├── moveToFile_overloads3.ts │ │ ├── moveToFile_overloads4.ts │ │ ├── moveToFile_overloads5.ts │ │ ├── moveToFile_reExports1.ts │ │ ├── moveToFile_reExports2.ts │ │ ├── moveToFile_reExports3.ts │ │ ├── moveToFile_reExports4.ts │ │ ├── moveToFile_reExports5.ts │ │ ├── moveToFile_refactorAvailable1.ts │ │ ├── moveToFile_refactorAvailable2.ts │ │ ├── moveToFile_requireImport.ts │ │ ├── moveToFile_requireImport2.ts │ │ ├── moveToFile_typeImport.ts │ │ ├── moveToFile_undefined.ts │ │ ├── moveToFile_unresolvedImport.ts │ │ ├── moveToNewFile.ts │ │ ├── moveToNewFile_alias.ts │ │ ├── moveToNewFile_aliasDefaultExportNamedImport.ts │ │ ├── moveToNewFile_bindingPatterns.ts │ │ ├── moveToNewFile_cleanUpLastNamedImport.ts │ │ ├── moveToNewFile_declarationKinds.ts │ │ ├── moveToNewFile_decorators.ts │ │ ├── moveToNewFile_decorators1.ts │ │ ├── moveToNewFile_decorators2.ts │ │ ├── moveToNewFile_decorators3.ts │ │ ├── moveToNewFile_defaultExport.ts │ │ ├── moveToNewFile_defaultImport.ts │ │ ├── moveToNewFile_exportImport.ts │ │ ├── moveToNewFile_fileNameBasedOnExportedName.ts │ │ ├── moveToNewFile_format.ts │ │ ├── moveToNewFile_getter.ts │ │ ├── moveToNewFile_global1.ts │ │ ├── moveToNewFile_global2.ts │ │ ├── moveToNewFile_global3.ts │ │ ├── moveToNewFile_globalAndLocal1.ts │ │ ├── moveToNewFile_globalAndLocal2.ts │ │ ├── moveToNewFile_globalAndLocal3.ts │ │ ├── moveToNewFile_globalAndLocal4.ts │ │ ├── moveToNewFile_globalAndLocal5.ts │ │ ├── moveToNewFile_globalAndLocal6.ts │ │ ├── moveToNewFile_importEquals.ts │ │ ├── moveToNewFile_importFileExtensions.ts │ │ ├── moveToNewFile_importNameLikeGlobal1.ts │ │ ├── moveToNewFile_inferQuoteStyle1.ts │ │ ├── moveToNewFile_inferQuoteStyle2.ts │ │ ├── moveToNewFile_js.ts │ │ ├── moveToNewFile_jsx.ts │ │ ├── moveToNewFile_moveImport.ts │ │ ├── moveToNewFile_moveJsxImport1.ts │ │ ├── moveToNewFile_moveJsxImport2.ts │ │ ├── moveToNewFile_moveJsxImport3.ts │ │ ├── moveToNewFile_moveJsxImport4.ts │ │ ├── moveToNewFile_moveNamedImport1.ts │ │ ├── moveToNewFile_moveNamedImport2.ts │ │ ├── moveToNewFile_moveNamespaceImport.ts │ │ ├── moveToNewFile_multiple.ts │ │ ├── moveToNewFile_namedExport1.ts │ │ ├── moveToNewFile_namedExport2.ts │ │ ├── moveToNewFile_namedExport3.ts │ │ ├── moveToNewFile_namespaceExport.ts │ │ ├── moveToNewFile_namespaceImport.ts │ │ ├── moveToNewFile_namespaceTypeImport.ts │ │ ├── moveToNewFile_newModuleNameUnique.ts │ │ ├── moveToNewFile_nonRelativePaths.ts │ │ ├── moveToNewFile_onlyStatements.ts │ │ ├── moveToNewFile_overloads1.ts │ │ ├── moveToNewFile_overloads2.ts │ │ ├── moveToNewFile_overloads3.ts │ │ ├── moveToNewFile_overloads4.ts │ │ ├── moveToNewFile_prologueDirectives1.ts │ │ ├── moveToNewFile_prologueDirectives2.ts │ │ ├── moveToNewFile_prologueDirectives3.ts │ │ ├── moveToNewFile_prologueDirectives4.ts │ │ ├── moveToNewFile_prologueDirectives5.ts │ │ ├── moveToNewFile_prologueDirectives6.ts │ │ ├── moveToNewFile_prologueDirectives7.ts │ │ ├── moveToNewFile_reactDefaultImport.ts │ │ ├── moveToNewFile_reactNamespaceImport.ts │ │ ├── moveToNewFile_refactorAvailable1.ts │ │ ├── moveToNewFile_refactorAvailable2.ts │ │ ├── moveToNewFile_refactorAvailableImplicit1.ts │ │ ├── moveToNewFile_refactorAvailableImplicit2.ts │ │ ├── moveToNewFile_refactorAvailableImplicit3.ts │ │ ├── moveToNewFile_refactorAvailableInvoked1.ts │ │ ├── moveToNewFile_refactorAvailableInvoked2.ts │ │ ├── moveToNewFile_refactorAvailableInvoked3.ts │ │ ├── moveToNewFile_requireImport1.ts │ │ ├── moveToNewFile_requireImport2.ts │ │ ├── moveToNewFile_selectionOnImports.ts │ │ ├── moveToNewFile_selectionOnName.ts │ │ ├── moveToNewFile_tsconfig.ts │ │ ├── moveToNewFile_typeImport1.ts │ │ ├── moveToNewFile_typeImport2.ts │ │ ├── moveToNewFile_updateNamespaceImport.ts │ │ ├── moveToNewFile_updateUses.ts │ │ ├── moveToNewFile_updateUses_js.ts │ │ ├── moveToNewFile_variableDeclarationWithNoInitializer.ts │ │ ├── multiModuleClodule.ts │ │ ├── multiModuleFundule.ts │ │ ├── multilineCommentBeforeOpenBrace.ts │ │ ├── multipleExportAssignmentsErrorList0.ts │ │ ├── nameOfRetypedClassInModule.ts │ │ ├── nameOrDottedNameClasses.ts │ │ ├── nameOrDottedNameStatements.ts │ │ ├── navbarForDoubleAmbientModules01.ts │ │ ├── navbarNestedCommonJsExports.ts │ │ ├── navbar_const.ts │ │ ├── navbar_contains-no-duplicates.ts │ │ ├── navbar_exportDefault.ts │ │ ├── navbar_let.ts │ │ ├── navigateItemsConst.ts │ │ ├── navigateItemsExports.ts │ │ ├── navigateItemsImports.ts │ │ ├── navigateItemsLet.ts │ │ ├── navigateToIIFE.ts │ │ ├── navigateToImport.ts │ │ ├── navigateToQuoted.ts │ │ ├── navigateToSingleFileResults.ts │ │ ├── navigateToSymbolIterator.ts │ │ ├── navigationBarAnonymousClassAndFunctionExpressions.ts │ │ ├── navigationBarAnonymousClassAndFunctionExpressions2.ts │ │ ├── navigationBarAnonymousClassAndFunctionExpressions3.ts │ │ ├── navigationBarAssignmentTypes.ts │ │ ├── navigationBarClassStaticBlock.ts │ │ ├── navigationBarComputedPropertyName.ts │ │ ├── navigationBarFunctionIndirectlyInVariableDeclaration.ts │ │ ├── navigationBarFunctionLikePropertyAssignments.ts │ │ ├── navigationBarFunctionPrototype.ts │ │ ├── navigationBarFunctionPrototype2.ts │ │ ├── navigationBarFunctionPrototype3.ts │ │ ├── navigationBarFunctionPrototype4.ts │ │ ├── navigationBarFunctionPrototypeBroken.ts │ │ ├── navigationBarFunctionPrototypeInterlaced.ts │ │ ├── navigationBarFunctionPrototypeNested.ts │ │ ├── navigationBarGetterAndSetter.ts │ │ ├── navigationBarImports.ts │ │ ├── navigationBarInitializerSpans.ts │ │ ├── navigationBarItemsBindingPatterns.ts │ │ ├── navigationBarItemsBindingPatternsInConstructor.ts │ │ ├── navigationBarItemsClass1.ts │ │ ├── navigationBarItemsClass2.ts │ │ ├── navigationBarItemsClass3.ts │ │ ├── navigationBarItemsClass4.ts │ │ ├── navigationBarItemsClass5.ts │ │ ├── navigationBarItemsClass6.ts │ │ ├── navigationBarItemsComputedNames.ts │ │ ├── navigationBarItemsEmptyConstructors.ts │ │ ├── navigationBarItemsExports.ts │ │ ├── navigationBarItemsFunctionProperties.ts │ │ ├── navigationBarItemsFunctions.ts │ │ ├── navigationBarItemsFunctionsBroken.ts │ │ ├── navigationBarItemsFunctionsBroken2.ts │ │ ├── navigationBarItemsImports.ts │ │ ├── navigationBarItemsInsideMethodsAndConstructors.ts │ │ ├── navigationBarItemsItems.ts │ │ ├── navigationBarItemsItems2.ts │ │ ├── navigationBarItemsItemsExternalModules.ts │ │ ├── navigationBarItemsItemsExternalModules2.ts │ │ ├── navigationBarItemsItemsExternalModules3.ts │ │ ├── navigationBarItemsItemsModuleVariables.ts │ │ ├── navigationBarItemsMissingName1.ts │ │ ├── navigationBarItemsMissingName2.ts │ │ ├── navigationBarItemsModules1.ts │ │ ├── navigationBarItemsModules2.ts │ │ ├── navigationBarItemsMultilineStringIdentifiers1.ts │ │ ├── navigationBarItemsMultilineStringIdentifiers2.ts │ │ ├── navigationBarItemsMultilineStringIdentifiers3.ts │ │ ├── navigationBarItemsNamedArrowFunctions.ts │ │ ├── navigationBarItemsPropertiesDefinedInConstructors.ts │ │ ├── navigationBarItemsStaticAndNonStaticNoMerge.ts │ │ ├── navigationBarItemsSymbols1.ts │ │ ├── navigationBarItemsSymbols2.ts │ │ ├── navigationBarItemsSymbols3.ts │ │ ├── navigationBarItemsSymbols4.ts │ │ ├── navigationBarItemsTypeAlias.ts │ │ ├── navigationBarJsDoc.ts │ │ ├── navigationBarJsDocCommentWithNoTags.ts │ │ ├── navigationBarMerging.ts │ │ ├── navigationBarMerging_grandchildren.ts │ │ ├── navigationBarNamespaceImportWithNoName.ts │ │ ├── navigationBarNestedObjectLiterals.ts │ │ ├── navigationBarPrivateName.ts │ │ ├── navigationBarPrivateNameMethod.ts │ │ ├── navigationBarPropertyDeclarations.ts │ │ ├── navigationBarVariables.ts │ │ ├── navigationBarWellKnownSymbolExpando.ts │ │ ├── navigationBarWithLocalVariables.ts │ │ ├── navigationItemsComputedProperties.ts │ │ ├── navigationItemsExactMatch.ts │ │ ├── navigationItemsExactMatch2.ts │ │ ├── navigationItemsExportDefaultExpression.ts │ │ ├── navigationItemsExportDefaultExpression2.ts │ │ ├── navigationItemsExportEqualsExpression.ts │ │ ├── navigationItemsExportEqualsExpression2.ts │ │ ├── navigationItemsInConstructorsExactMatch.ts │ │ ├── navigationItemsOverloads1.ts │ │ ├── navigationItemsOverloads2.ts │ │ ├── navigationItemsOverloadsBroken1.ts │ │ ├── navigationItemsOverloadsBroken2.ts │ │ ├── navigationItemsPrefixMatch.ts │ │ ├── navigationItemsPrefixMatch2.ts │ │ ├── navigationItemsSpecialPropertyAssignment.ts │ │ ├── navigationItemsSubStringMatch.ts │ │ ├── navigationItemsSubStringMatch2.ts │ │ ├── navto_emptyPattern.ts │ │ ├── navto_excludeLib1.ts │ │ ├── navto_excludeLib2.ts │ │ ├── navto_excludeLib3.ts │ │ ├── navto_excludeLib4.ts │ │ ├── noCompletionListOnCommentsInsideObjectLiterals.ts │ │ ├── noCompletionsForCurrentOrLaterParametersInDefaults.ts │ │ ├── noErrorsAfterCompletionsRequestWithinGenericFunction1.ts │ │ ├── noErrorsAfterCompletionsRequestWithinGenericFunction2.ts │ │ ├── noErrorsAfterCompletionsRequestWithinGenericFunction3.ts │ │ ├── noImportCompletionsInOtherJavaScriptFile.ts │ │ ├── noQuickInfoForLabel.ts │ │ ├── noQuickInfoInWhitespace.ts │ │ ├── noSignatureHelpOnNewKeyword.ts │ │ ├── noSmartIndentInsideMultilineString.ts │ │ ├── noSuggestionDiagnosticsOnParseError.ts │ │ ├── noTypeParameterInLHS.ts │ │ ├── nodeArrayCloneCrash.ts │ │ ├── nodeModulesFileEditStillAllowsResolutionsToWork.ts │ │ ├── nodeModulesImportCompletions1.ts │ │ ├── nonExistingImport.ts │ │ ├── numericPropertyNames.ts │ │ ├── objectAssignabilityRegionCheck.ts │ │ ├── objectLiteralBindingInParameter.ts │ │ ├── objectLiteralCallSignatures.ts │ │ ├── optionalPropertyFormatting.ts │ │ ├── organizeImports1.ts │ │ ├── organizeImports10.ts │ │ ├── organizeImports11.ts │ │ ├── organizeImports12.ts │ │ ├── organizeImports13.ts │ │ ├── organizeImports14.ts │ │ ├── organizeImports15.ts │ │ ├── organizeImports16.ts │ │ ├── organizeImports17.ts │ │ ├── organizeImports18.ts │ │ ├── organizeImports19.ts │ │ ├── organizeImports2.ts │ │ ├── organizeImports20.ts │ │ ├── organizeImports21.ts │ │ ├── organizeImports22.ts │ │ ├── organizeImports23.ts │ │ ├── organizeImports3.ts │ │ ├── organizeImports4.ts │ │ ├── organizeImports5.ts │ │ ├── organizeImports6.ts │ │ ├── organizeImports7.ts │ │ ├── organizeImports8.ts │ │ ├── organizeImports9.ts │ │ ├── organizeImportsAttributes.ts │ │ ├── organizeImportsAttributes2.ts │ │ ├── organizeImportsAttributes3.ts │ │ ├── organizeImportsAttributes4.ts │ │ ├── organizeImportsGroup_CommentInNewline.ts │ │ ├── organizeImportsGroup_MultiNewlines.ts │ │ ├── organizeImportsGroup_MultilineCommentInNewline.ts │ │ ├── organizeImportsGroup_Newline.ts │ │ ├── organizeImportsNoFormatOptions.ts │ │ ├── organizeImportsPathsUnicode1.ts │ │ ├── organizeImportsPathsUnicode2.ts │ │ ├── organizeImportsPathsUnicode3.ts │ │ ├── organizeImportsPathsUnicode4.ts │ │ ├── organizeImportsReactJsx.ts │ │ ├── organizeImportsReactJsxDev.ts │ │ ├── organizeImportsType1.ts │ │ ├── organizeImportsType10.ts │ │ ├── organizeImportsType11.ts │ │ ├── organizeImportsType2.ts │ │ ├── organizeImportsType3.ts │ │ ├── organizeImportsType4.ts │ │ ├── organizeImportsType5.ts │ │ ├── organizeImportsType6.ts │ │ ├── organizeImportsType7.ts │ │ ├── organizeImportsType8.ts │ │ ├── organizeImportsType9.ts │ │ ├── organizeImportsUnicode1.ts │ │ ├── organizeImportsUnicode2.ts │ │ ├── organizeImportsUnicode3.ts │ │ ├── organizeImportsUnicode4.ts │ │ ├── organizeImports_removeOnly.ts │ │ ├── outlineSpansBlockCommentsWithoutStatements.ts │ │ ├── outlineSpansTrailingBlockCommentsAfterStatements.ts │ │ ├── outliningForNonCompleteInterfaceDeclaration.ts │ │ ├── outliningHintSpansForFunction.ts │ │ ├── outliningSpansForArguments.ts │ │ ├── outliningSpansForArrowFunctionBody.ts │ │ ├── outliningSpansForFunction.ts │ │ ├── outliningSpansForImportAndExportAttributes.ts │ │ ├── outliningSpansForImportsAndExports.ts │ │ ├── outliningSpansForParenthesizedExpression.ts │ │ ├── outliningSpansSwitchCases.ts │ │ ├── overloadObjectLiteralCrash.ts │ │ ├── overloadOnConstCallSignature.ts │ │ ├── overloadQuickInfo.ts │ │ ├── paramHelpOnCommaInString.ts │ │ ├── parameterInfoOnParameterType.ts │ │ ├── parameterWithDestructuring.ts │ │ ├── parameterWithNestedDestructuring.ts │ │ ├── parameterlessSetter.ts │ │ ├── parenthesisFatArrows.ts │ │ ├── parserCorruptionAfterMapInClass.ts │ │ ├── partialUnionPropertyCacheInconsistentErrors.ts │ │ ├── paste.ts │ │ ├── pasteLambdaOverModule.ts │ │ ├── pathCompletionsAllowModuleAugmentationExtensions.ts │ │ ├── pathCompletionsAllowTsExtensions.ts │ │ ├── pathCompletionsPackageJsonExportsBundlerNoNodeCondition.ts │ │ ├── pathCompletionsPackageJsonExportsCustomConditions.ts │ │ ├── pathCompletionsPackageJsonExportsWildcard1.ts │ │ ├── pathCompletionsPackageJsonExportsWildcard10.ts │ │ ├── pathCompletionsPackageJsonExportsWildcard11.ts │ │ ├── pathCompletionsPackageJsonExportsWildcard12.ts │ │ ├── pathCompletionsPackageJsonExportsWildcard2.ts │ │ ├── pathCompletionsPackageJsonExportsWildcard3.ts │ │ ├── pathCompletionsPackageJsonExportsWildcard4.ts │ │ ├── pathCompletionsPackageJsonExportsWildcard5.ts │ │ ├── pathCompletionsPackageJsonExportsWildcard6.ts │ │ ├── pathCompletionsPackageJsonExportsWildcard7.ts │ │ ├── pathCompletionsPackageJsonExportsWildcard8.ts │ │ ├── pathCompletionsPackageJsonExportsWildcard9.ts │ │ ├── pathCompletionsPackageJsonImportsBundlerNoNodeCondition.ts │ │ ├── pathCompletionsPackageJsonImportsCustomConditions.ts │ │ ├── pathCompletionsPackageJsonImportsIgnoreMatchingNodeModule1.ts │ │ ├── pathCompletionsPackageJsonImportsIgnoreMatchingNodeModule2.ts │ │ ├── pathCompletionsPackageJsonImportsOnlyFromClosestScope1.ts │ │ ├── pathCompletionsPackageJsonImportsWildcard1.ts │ │ ├── pathCompletionsPackageJsonImportsWildcard10.ts │ │ ├── pathCompletionsPackageJsonImportsWildcard11.ts │ │ ├── pathCompletionsPackageJsonImportsWildcard12.ts │ │ ├── pathCompletionsPackageJsonImportsWildcard2.ts │ │ ├── pathCompletionsPackageJsonImportsWildcard3.ts │ │ ├── pathCompletionsPackageJsonImportsWildcard4.ts │ │ ├── pathCompletionsPackageJsonImportsWildcard5.ts │ │ ├── pathCompletionsPackageJsonImportsWildcard6.ts │ │ ├── pathCompletionsPackageJsonImportsWildcard7.ts │ │ ├── pathCompletionsPackageJsonImportsWildcard8.ts │ │ ├── pathCompletionsPackageJsonImportsWildcard9.ts │ │ ├── pathCompletionsTypesVersionsLocal.ts │ │ ├── pathCompletionsTypesVersionsWildcard1.ts │ │ ├── pathCompletionsTypesVersionsWildcard2.ts │ │ ├── pathCompletionsTypesVersionsWildcard3.ts │ │ ├── pathCompletionsTypesVersionsWildcard4.ts │ │ ├── pathCompletionsTypesVersionsWildcard5.ts │ │ ├── pathCompletionsTypesVersionsWildcard6.ts │ │ ├── preparePasteEdits_multipleLocations.ts │ │ ├── preparePasteEdits_resolvedIdentifiers.ts │ │ ├── preparePasteEdits_resolvedTypeParameters.ts │ │ ├── preparePasteEdits_returnFalse.ts │ │ ├── preserveSpace.ts │ │ ├── processInvalidSyntax1.ts │ │ ├── promiseTyping1.ts │ │ ├── promiseTyping2.ts │ │ ├── propertyDuplicateIdentifierError.ts │ │ ├── proto.ts │ │ ├── protoPropertyInObjectLiteral.ts │ │ ├── protoVarInContextualObjectLiteral.ts │ │ ├── protoVarVisibleWithOuterScopeUnderscoreProto.ts │ │ ├── prototypeProperty.ts │ │ ├── publicBreak.ts │ │ ├── qualifiedName_import-declaration-with-variable-entity-names.ts │ │ ├── qualifyModuleTypeNames.ts │ │ ├── quickInfoAlias.ts │ │ ├── quickInfoAssertionNodeNotReusedWhenTypeNotEquivalent1.ts │ │ ├── quickInfoAssignToExistingClass.ts │ │ ├── quickInfoAtPropWithAmbientDeclarationInJs.ts │ │ ├── quickInfoBindingPatternInJsdocNoCrash1.ts │ │ ├── quickInfoCallProperty.ts │ │ ├── quickInfoCanBeTruncated.ts │ │ ├── quickInfoCircularInstantiationExpression.ts │ │ ├── quickInfoClassKeyword.ts │ │ ├── quickInfoCloduleWithRecursiveReference.ts │ │ ├── quickInfoCommentsClass.ts │ │ ├── quickInfoCommentsClassMembers.ts │ │ ├── quickInfoCommentsCommentParsing.ts │ │ ├── quickInfoCommentsFunctionDeclaration.ts │ │ ├── quickInfoCommentsFunctionExpression.ts │ │ ├── quickInfoContextualTyping.ts │ │ ├── quickInfoContextuallyTypedSignatureOptionalParameterFromIntersection1.ts │ │ ├── quickInfoDisplayPartsArrowFunctionExpression.ts │ │ ├── quickInfoDisplayPartsClass.ts │ │ ├── quickInfoDisplayPartsClassAccessors.ts │ │ ├── quickInfoDisplayPartsClassAutoAccessors.ts │ │ ├── quickInfoDisplayPartsClassConstructor.ts │ │ ├── quickInfoDisplayPartsClassDefaultAnonymous.ts │ │ ├── quickInfoDisplayPartsClassDefaultNamed.ts │ │ ├── quickInfoDisplayPartsClassIncomplete.ts │ │ ├── quickInfoDisplayPartsClassMethod.ts │ │ ├── quickInfoDisplayPartsClassProperty.ts │ │ ├── quickInfoDisplayPartsConst.ts │ │ ├── quickInfoDisplayPartsEnum1.ts │ │ ├── quickInfoDisplayPartsEnum2.ts │ │ ├── quickInfoDisplayPartsEnum3.ts │ │ ├── quickInfoDisplayPartsEnum4.ts │ │ ├── quickInfoDisplayPartsExternalModuleAlias.ts │ │ ├── quickInfoDisplayPartsExternalModules.ts │ │ ├── quickInfoDisplayPartsFunction.ts │ │ ├── quickInfoDisplayPartsFunctionExpression.ts │ │ ├── quickInfoDisplayPartsFunctionIncomplete.ts │ │ ├── quickInfoDisplayPartsIife.ts │ │ ├── quickInfoDisplayPartsInterface.ts │ │ ├── quickInfoDisplayPartsInterfaceMembers.ts │ │ ├── quickInfoDisplayPartsInternalModuleAlias.ts │ │ ├── quickInfoDisplayPartsLet.ts │ │ ├── quickInfoDisplayPartsLiteralLikeNames01.ts │ │ ├── quickInfoDisplayPartsLocalFunction.ts │ │ ├── quickInfoDisplayPartsModules.ts │ │ ├── quickInfoDisplayPartsParameters.ts │ │ ├── quickInfoDisplayPartsTypeAlias.ts │ │ ├── quickInfoDisplayPartsTypeParameterInClass.ts │ │ ├── quickInfoDisplayPartsTypeParameterInFunction.ts │ │ ├── quickInfoDisplayPartsTypeParameterInFunctionLikeInTypeAlias.ts │ │ ├── quickInfoDisplayPartsTypeParameterInInterface.ts │ │ ├── quickInfoDisplayPartsTypeParameterInTypeAlias.ts │ │ ├── quickInfoDisplayPartsUsing.ts │ │ ├── quickInfoDisplayPartsVar.ts │ │ ├── quickInfoDisplayPartsVarWithStringTypes01.ts │ │ ├── quickInfoElementAccessDeclaration.ts │ │ ├── quickInfoEnumMembersAcceptNonAsciiStrings.ts │ │ ├── quickInfoExportAssignmentOfGenericInterface.ts │ │ ├── quickInfoExtendArray.ts │ │ ├── quickInfoForAliasedGeneric.ts │ │ ├── quickInfoForArgumentsPropertyNameInJsMode1.ts │ │ ├── quickInfoForArgumentsPropertyNameInJsMode2.ts │ │ ├── quickInfoForConstAssertions.ts │ │ ├── quickInfoForConstDeclaration.ts │ │ ├── quickInfoForConstTypeReference.ts │ │ ├── quickInfoForContextuallyTypedArrowFunctionInSuperCall.ts │ │ ├── quickInfoForContextuallyTypedFunctionInReturnStatement.ts │ │ ├── quickInfoForContextuallyTypedFunctionInTaggedTemplateExpression1.ts │ │ ├── quickInfoForContextuallyTypedFunctionInTaggedTemplateExpression2.ts │ │ ├── quickInfoForContextuallyTypedIife.ts │ │ ├── quickInfoForContextuallyTypedParameters.ts │ │ ├── quickInfoForDecorators.ts │ │ ├── quickInfoForDerivedGenericTypeWithConstructor.ts │ │ ├── quickInfoForDestructuringShorthandInitializer.ts │ │ ├── quickInfoForFunctionDeclaration.ts │ │ ├── quickInfoForGenericConstraints1.ts │ │ ├── quickInfoForGenericPrototypeMember.ts │ │ ├── quickInfoForGenericTaggedTemplateExpression.ts │ │ ├── quickInfoForGetterAndSetter.ts │ │ ├── quickInfoForIn.ts │ │ ├── quickInfoForIndexerResultWithConstraint.ts │ │ ├── quickInfoForJSDocCodefence.ts │ │ ├── quickInfoForJSDocUnknownTag.ts │ │ ├── quickInfoForJSDocWithHttpLinks.ts │ │ ├── quickInfoForJSDocWithUnresolvedHttpLinks.ts │ │ ├── quickInfoForNamedTupleMember.ts │ │ ├── quickInfoForObjectBindingElementName01.ts │ │ ├── quickInfoForObjectBindingElementName02.ts │ │ ├── quickInfoForObjectBindingElementName03.ts │ │ ├── quickInfoForObjectBindingElementName04.ts │ │ ├── quickInfoForObjectBindingElementName05.ts │ │ ├── quickInfoForObjectBindingElementName06.ts │ │ ├── quickInfoForObjectBindingElementPropertyName01.ts │ │ ├── quickInfoForObjectBindingElementPropertyName02.ts │ │ ├── quickInfoForObjectBindingElementPropertyName03.ts │ │ ├── quickInfoForObjectBindingElementPropertyName04.ts │ │ ├── quickInfoForOverloadOnConst1.ts │ │ ├── quickInfoForRequire.ts │ │ ├── quickInfoForShorthandProperty.ts │ │ ├── quickInfoForSyntaxErrorNoError.ts │ │ ├── quickInfoForTypeParameterInTypeAlias1.ts │ │ ├── quickInfoForTypeParameterInTypeAlias2.ts │ │ ├── quickInfoForTypeofParameter.ts │ │ ├── quickInfoForUMDModuleAlias.ts │ │ ├── quickInfoFromContextualType.ts │ │ ├── quickInfoFromContextualUnionType1.ts │ │ ├── quickInfoFromContextualUnionType2.ts │ │ ├── quickInfoFromContextualUnionType3.ts │ │ ├── quickInfoFromEmptyBlockComment.ts │ │ ├── quickInfoFunctionCheckType.ts │ │ ├── quickInfoFunctionKeyword.ts │ │ ├── quickInfoGenericCombinators2.ts │ │ ├── quickInfoGenericTypeArgumentInference1.ts │ │ ├── quickInfoGenerics.ts │ │ ├── quickInfoGetterSetter.ts │ │ ├── quickInfoImportMeta.ts │ │ ├── quickInfoImportNonunicodePath.ts │ │ ├── quickInfoImportedTypes.ts │ │ ├── quickInfoImportedTypesWithMergedMeanings.ts │ │ ├── quickInfoInFunctionTypeReference.ts │ │ ├── quickInfoInFunctionTypeReference2.ts │ │ ├── quickInfoInInvalidIndexSignature.ts │ │ ├── quickInfoInJsdocInTsFile1.ts │ │ ├── quickInfoInObjectLiteral.ts │ │ ├── quickInfoInOptionalChain.ts │ │ ├── quickInfoInWithBlock.ts │ │ ├── quickInfoInheritDoc.ts │ │ ├── quickInfoInheritDoc2.ts │ │ ├── quickInfoInheritDoc3.ts │ │ ├── quickInfoInheritDoc4.ts │ │ ├── quickInfoInheritDoc5.ts │ │ ├── quickInfoInheritDoc6.ts │ │ ├── quickInfoInheritedLinkTag.ts │ │ ├── quickInfoInvalidLocations.ts │ │ ├── quickInfoJSDocAtBeforeSpace.ts │ │ ├── quickInfoJSDocBackticks.ts │ │ ├── quickInfoJSDocFunctionNew.ts │ │ ├── quickInfoJSDocFunctionThis.ts │ │ ├── quickInfoJSDocTags.ts │ │ ├── quickInfoJSExport.ts │ │ ├── quickInfoJsDoc.ts │ │ ├── quickInfoJsDocAlias.ts │ │ ├── quickInfoJsDocGetterSetter.ts │ │ ├── quickInfoJsDocGetterSetterNoCrash1.ts │ │ ├── quickInfoJsDocInheritage.ts │ │ ├── quickInfoJsDocNonDiscriminatedUnionSharedProp.ts │ │ ├── quickInfoJsDocTags1.ts │ │ ├── quickInfoJsDocTags10.ts │ │ ├── quickInfoJsDocTags11.ts │ │ ├── quickInfoJsDocTags12.ts │ │ ├── quickInfoJsDocTags13.ts │ │ ├── quickInfoJsDocTags14.ts │ │ ├── quickInfoJsDocTags15.ts │ │ ├── quickInfoJsDocTags16.ts │ │ ├── quickInfoJsDocTags2.ts │ │ ├── quickInfoJsDocTags3.ts │ │ ├── quickInfoJsDocTags4.ts │ │ ├── quickInfoJsDocTags5.ts │ │ ├── quickInfoJsDocTags6.ts │ │ ├── quickInfoJsDocTags7.ts │ │ ├── quickInfoJsDocTags8.ts │ │ ├── quickInfoJsDocTags9.ts │ │ ├── quickInfoJsDocTagsCallback.ts │ │ ├── quickInfoJsDocTagsFunctionOverload01.ts │ │ ├── quickInfoJsDocTagsFunctionOverload02.ts │ │ ├── quickInfoJsDocTagsFunctionOverload03.ts │ │ ├── quickInfoJsDocTagsFunctionOverload04.ts │ │ ├── quickInfoJsDocTagsFunctionOverload05.ts │ │ ├── quickInfoJsDocTagsFunctionOverload06.ts │ │ ├── quickInfoJsDocTagsTypedef.ts │ │ ├── quickInfoJsDocTextFormatting1.ts │ │ ├── quickInfoJsDocThisTag.ts │ │ ├── quickInfoJsPropertyAssignedAfterMethodDeclaration.ts │ │ ├── quickInfoJsdocEnum.ts │ │ ├── quickInfoJsdocTypedefMissingType.ts │ │ ├── quickInfoLink10.ts │ │ ├── quickInfoLink11.ts │ │ ├── quickInfoLink2.ts │ │ ├── quickInfoLink3.ts │ │ ├── quickInfoLink4.ts │ │ ├── quickInfoLink5.ts │ │ ├── quickInfoLink6.ts │ │ ├── quickInfoLink7.ts │ │ ├── quickInfoLink8.ts │ │ ├── quickInfoLink9.ts │ │ ├── quickInfoLinkCodePlain.ts │ │ ├── quickInfoMappedSpreadTypes.ts │ │ ├── quickInfoMappedType.ts │ │ ├── quickInfoMappedTypeMethods.ts │ │ ├── quickInfoMappedTypeRecursiveInference.ts │ │ ├── quickInfoMeaning.ts │ │ ├── quickInfoModuleVariables.ts │ │ ├── quickInfoNamedTupleMembers.ts │ │ ├── quickInfoNarrowedTypeOfAliasSymbol.ts │ │ ├── quickInfoNestedExportEqualExportDefault.ts │ │ ├── quickInfoNestedGenericCalls.ts │ │ ├── quickInfoOfGenericTypeAssertions1.ts │ │ ├── quickInfoOfLablledForStatementIterator.ts │ │ ├── quickInfoOfStringPropertyNames1.ts │ │ ├── quickInfoOnArgumentsInsideFunction.ts │ │ ├── quickInfoOnCatchVariable.ts │ │ ├── quickInfoOnCircularTypes.ts │ │ ├── quickInfoOnClassMergedWithFunction.ts │ │ ├── quickInfoOnClosingJsx.ts │ │ ├── quickInfoOnConstructorWithGenericParameter.ts │ │ ├── quickInfoOnElementAccessInWriteLocation1.ts │ │ ├── quickInfoOnElementAccessInWriteLocation2.ts │ │ ├── quickInfoOnElementAccessInWriteLocation3.ts │ │ ├── quickInfoOnElementAccessInWriteLocation4.ts │ │ ├── quickInfoOnElementAccessInWriteLocation5.ts │ │ ├── quickInfoOnErrorTypes1.ts │ │ ├── quickInfoOnExpandoLikePropertyWithSetterDeclarationJs1.ts │ │ ├── quickInfoOnExpandoLikePropertyWithSetterDeclarationJs2.ts │ │ ├── quickInfoOnFunctionPropertyReturnedFromGenericFunction1.ts │ │ ├── quickInfoOnFunctionPropertyReturnedFromGenericFunction2.ts │ │ ├── quickInfoOnFunctionPropertyReturnedFromGenericFunction3.ts │ │ ├── quickInfoOnGenericClass.ts │ │ ├── quickInfoOnGenericWithConstraints1.ts │ │ ├── quickInfoOnInternalAliases.ts │ │ ├── quickInfoOnJsxIntrinsicDeclaredUsingCatchCallIndexSignature.ts │ │ ├── quickInfoOnJsxIntrinsicDeclaredUsingTemplateLiteralTypeSignatures.ts │ │ ├── quickInfoOnJsxNamespacedName.ts │ │ ├── quickInfoOnJsxNamespacedNameWithDoc1.ts │ │ ├── quickInfoOnMergedInterfaces.ts │ │ ├── quickInfoOnMergedInterfacesWithIncrementalEdits.ts │ │ ├── quickInfoOnMergedModule.ts │ │ ├── quickInfoOnMethodOfImportEquals.ts │ │ ├── quickInfoOnNarrowedType.ts │ │ ├── quickInfoOnNarrowedTypeInModule.ts │ │ ├── quickInfoOnNewKeyword01.ts │ │ ├── quickInfoOnObjectLiteralWithAccessors.ts │ │ ├── quickInfoOnObjectLiteralWithOnlyGetter.ts │ │ ├── quickInfoOnObjectLiteralWithOnlySetter.ts │ │ ├── quickInfoOnParameterProperties.ts │ │ ├── quickInfoOnPrivateConstructorCall.ts │ │ ├── quickInfoOnPropDeclaredUsingIndexSignatureOnInterfaceWithBase.ts │ │ ├── quickInfoOnPropertyAccessInWriteLocation1.ts │ │ ├── quickInfoOnPropertyAccessInWriteLocation2.ts │ │ ├── quickInfoOnPropertyAccessInWriteLocation3.ts │ │ ├── quickInfoOnPropertyAccessInWriteLocation4.ts │ │ ├── quickInfoOnPropertyAccessInWriteLocation5.ts │ │ ├── quickInfoOnProtectedConstructorCall.ts │ │ ├── quickInfoOnThis.ts │ │ ├── quickInfoOnThis2.ts │ │ ├── quickInfoOnThis3.ts │ │ ├── quickInfoOnThis4.ts │ │ ├── quickInfoOnThis5.ts │ │ ├── quickInfoOnUnResolvedBaseConstructorSignature.ts │ │ ├── quickInfoOnUndefined.ts │ │ ├── quickInfoOnUnionPropertiesWithIdenticalJSDocComments01.ts │ │ ├── quickInfoOnValueSymbolWithoutExportWithSameNameExportSymbol.ts │ │ ├── quickInfoOnVarInArrowExpression.ts │ │ ├── quickInfoParameter_skipThisParameter.ts │ │ ├── quickInfoPrivateIdentifierInTypeReferenceNoCrash1.ts │ │ ├── quickInfoPropertyTag.ts │ │ ├── quickInfoRecursiveObjectLiteral.ts │ │ ├── quickInfoSalsaMethodsOnAssignedFunctionExpressions.ts │ │ ├── quickInfoSatisfiesTag.ts │ │ ├── quickInfoShowsGenericSpecialization.ts │ │ ├── quickInfoSignatureOptionalParameterFromUnion1.ts │ │ ├── quickInfoSignatureRestParameterFromUnion1.ts │ │ ├── quickInfoSignatureRestParameterFromUnion2.ts │ │ ├── quickInfoSignatureRestParameterFromUnion3.ts │ │ ├── quickInfoSignatureRestParameterFromUnion4.ts │ │ ├── quickInfoSignatureWithTrailingComma.ts │ │ ├── quickInfoSpecialPropertyAssignment.ts │ │ ├── quickInfoStaticPrototypePropertyOnClass.ts │ │ ├── quickInfoTemplateTag.ts │ │ ├── quickInfoThrowsTag.ts │ │ ├── quickInfoTypeAliasDefinedInDifferentFile.ts │ │ ├── quickInfoTypeArgumentInferenceWithMethodWithoutBody.ts │ │ ├── quickInfoTypeError.ts │ │ ├── quickInfoTypeOfThisInStatics.ts │ │ ├── quickInfoTypeOnlyEnum.ts │ │ ├── quickInfoTypeOnlyImportExport.ts │ │ ├── quickInfoTypeOnlyNamespaceAndClass.ts │ │ ├── quickInfoTypedGenericPrototypeMember.ts │ │ ├── quickInfoTypedefTag.ts │ │ ├── quickInfoUnionOfNamespaces.ts │ │ ├── quickInfoUnion_discriminated.ts │ │ ├── quickInfoUniqueSymbolJsDoc.ts │ │ ├── quickInfoUntypedModuleImport.ts │ │ ├── quickInfoWidenedTypes.ts │ │ ├── quickInfoWithNestedDestructuredParameterInLambda.ts │ │ ├── quickInfo_errorSignatureFillsInTypeParameter.ts │ │ ├── quickInfo_notInsideComment.ts │ │ ├── quickInforForSucessiveInferencesIsNotAny.ts │ │ ├── quickfixAddMissingConstraint.ts │ │ ├── quickfixAddMissingConstraint2.ts │ │ ├── quickfixAddMissingConstraint3.ts │ │ ├── quickfixAddMissingConstraint4.ts │ │ ├── quickfixAddMissingConstraint5.ts │ │ ├── quickfixAddMissingConstraint_all.ts │ │ ├── quickfixImplementInterfaceUnreachableTypeUsesRelativeImport.ts │ │ ├── quickinfoExpressionTypeNotChangedViaDeletion.ts │ │ ├── quickinfoForNamespaceMergeWithClassConstrainedToSelf.ts │ │ ├── quickinfoForUnionProperty.ts │ │ ├── quickinfoIsConsistent.ts │ │ ├── quickinfoVerbosity1.ts │ │ ├── quickinfoVerbosity2.ts │ │ ├── quickinfoVerbosity3.ts │ │ ├── quickinfoVerbosityClass1.ts │ │ ├── quickinfoVerbosityClass2.ts │ │ ├── quickinfoVerbosityConditionalType.ts │ │ ├── quickinfoVerbosityEnum.ts │ │ ├── quickinfoVerbosityFunction.ts │ │ ├── quickinfoVerbosityImport.ts │ │ ├── quickinfoVerbosityIndexSignature.ts │ │ ├── quickinfoVerbosityIndexType.ts │ │ ├── quickinfoVerbosityIndexedAccessType.ts │ │ ├── quickinfoVerbosityInterface1.ts │ │ ├── quickinfoVerbosityInterface2.ts │ │ ├── quickinfoVerbosityIntersection1.ts │ │ ├── quickinfoVerbosityJs.ts │ │ ├── quickinfoVerbosityLibType.ts │ │ ├── quickinfoVerbosityMappedType.ts │ │ ├── quickinfoVerbosityNamespace.ts │ │ ├── quickinfoVerbosityNoErrorTruncation1.ts │ │ ├── quickinfoVerbosityObjectType1.ts │ │ ├── quickinfoVerbosityRecursiveType.ts │ │ ├── quickinfoVerbosityToplevelTruncation1.ts │ │ ├── quickinfoVerbosityToplevelTruncation2.ts │ │ ├── quickinfoVerbosityTruncation1.ts │ │ ├── quickinfoVerbosityTruncation2.ts │ │ ├── quickinfoVerbosityTuple.ts │ │ ├── quickinfoVerbosityTypeParameter.ts │ │ ├── quickinfoVerbosityTypeof.ts │ │ ├── reallyLargeFile.ts │ │ ├── recursiveClassReference.ts │ │ ├── recursiveGenerics2.ts │ │ ├── recursiveInternalModuleImport.ts │ │ ├── recursiveWrappedTypeParameters1.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunction1.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunction10.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunction11.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunction12.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunction13.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunction14.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunction15.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunction16.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunction17.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunction18.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunction19.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunction2.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunction20.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunction21.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunction22.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunction23.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunction24.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunction25.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunction26.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunction27.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunction28.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunction29.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunction3.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunction30.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunction31.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunction32.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunction33.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunction34.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunction35.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunction36.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunction4.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunction5.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunction6.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunction7.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunction8.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunction9.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunctionForTriggerReason1.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunctionForTriggerReason2.ts │ │ ├── refactorAddOrRemoveBracesToArrowFunction_formatBug.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_AsyncModifiers.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_Availability_Anon.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_Availability_Anon_FnArgument.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_Availability_Anon_arguments.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_Availability_Anon_nested_this.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_Availability_Anon_this.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_Availability_Anon_unusedName.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_Availability_Anon_usedName.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_Availability_Arrow.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_Availability_Arrow_FnArgument.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_Availability_Arrow_MultiDecl.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_Availability_Arrow_arguments.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_Availability_Arrow_nested_this.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_Availability_Arrow_this.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_InnerAsyncFunction1.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_InnerAsyncFunction2.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_InnerAsyncFunction3.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_ToAnon_Comment.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_ToAnon_FnArgument.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_ToAnon_MapArgument.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_ToAnon_MultiLine.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_ToAnon_MultiParam.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_ToAnon_SingleLine.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_ToAnon_Typed.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_ToAnonymous_Comment1.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_ToAnonymous_Comment2.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_ToArrow_EmptyReturn.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_ToArrow_FnArgIndent.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_ToArrow_FnArgument.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_ToArrow_FunctionFnArgIndent.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_ToArrow_MapArgument.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_ToArrow_MultiLine.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_ToArrow_MultiLine_Comment.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_ToArrow_Param.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_ToArrow_Single_Assign.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_ToArrow_Single_Decl.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_ToArrow_Single_FnCall.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_ToArrow_Single_For.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_ToArrow_Single_If.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_ToArrow_Single_Return.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_ToArrow_Single_While.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_ToArrow_Typed.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_ToNamed_Comment.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_ToNamed_Modifier.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_ToNamed_Modifier_Comment.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_ToNamed_MultiDecl.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_ToNamed_MultiDecl_Modifier.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_ToNamed_MultiDecl_Modifier_Comment.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_ToNamed_MultiDecl_VarSelection.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_ToNamed_MultiLine.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_ToNamed_MultiParam.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_ToNamed_SingleLine.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_ToNamed_Typed.ts │ │ ├── refactorConvertArrowFunctionOrFunctionExpression_ToNamed_keywordSelection.ts │ │ ├── refactorConvertExportForTriggerReason.ts │ │ ├── refactorConvertExport_ambientModule.ts │ │ ├── refactorConvertExport_defaultToNamed.ts │ │ ├── refactorConvertExport_defaultToNamed2.ts │ │ ├── refactorConvertExport_defaultToNamed3.ts │ │ ├── refactorConvertExport_exportNodeKinds.ts │ │ ├── refactorConvertExport_namedToDefault1.ts │ │ ├── refactorConvertExport_namedToDefault2.ts │ │ ├── refactorConvertExport_namedToDefaultInModuleAugmentation1.ts │ │ ├── refactorConvertExport_namedToDefaultInModuleAugmentation2.ts │ │ ├── refactorConvertExport_namedToDefault_alreadyHasDefault.ts │ │ ├── refactorConvertExport_onlyValidIdentifiers.ts │ │ ├── refactorConvertImportForTriggerReason1.ts │ │ ├── refactorConvertImportForTriggerReason2.ts │ │ ├── refactorConvertImport_namedToDefault1.ts │ │ ├── refactorConvertImport_namedToDefault2.ts │ │ ├── refactorConvertImport_namedToNamespace.ts │ │ ├── refactorConvertImport_namedToNamespace1.ts │ │ ├── refactorConvertImport_namedToNamespace10.ts │ │ ├── refactorConvertImport_namedToNamespace11.ts │ │ ├── refactorConvertImport_namedToNamespace2.ts │ │ ├── refactorConvertImport_namedToNamespace3.ts │ │ ├── refactorConvertImport_namedToNamespace4.ts │ │ ├── refactorConvertImport_namedToNamespace5.ts │ │ ├── refactorConvertImport_namedToNamespace6.ts │ │ ├── refactorConvertImport_namedToNamespace7.ts │ │ ├── refactorConvertImport_namedToNamespace8.ts │ │ ├── refactorConvertImport_namedToNamespace9.ts │ │ ├── refactorConvertImport_namedToNamespaceStringLiteral.ts │ │ ├── refactorConvertImport_namespaceToNamed1.ts │ │ ├── refactorConvertImport_namespaceToNamed2.ts │ │ ├── refactorConvertImport_namespaceToNamedWithTypes.ts │ │ ├── refactorConvertImport_namespaceToNamed_namespaceUsed.ts │ │ ├── refactorConvertImport_notAtDefaultName.ts │ │ ├── refactorConvertImport_useDefault.ts │ │ ├── refactorConvertParamsToDestructuredObject_allParamsOptional.ts │ │ ├── refactorConvertParamsToDestructuredObject_arrowFunction.ts │ │ ├── refactorConvertParamsToDestructuredObject_arrowFunctionWithSingleParameter.ts │ │ ├── refactorConvertParamsToDestructuredObject_arrowFunctionWithType.ts │ │ ├── refactorConvertParamsToDestructuredObject_badRestParam.ts │ │ ├── refactorConvertParamsToDestructuredObject_callComments.ts │ │ ├── refactorConvertParamsToDestructuredObject_callComments2.ts │ │ ├── refactorConvertParamsToDestructuredObject_chainedCall.ts │ │ ├── refactorConvertParamsToDestructuredObject_classDeclarationAliasing.ts │ │ ├── refactorConvertParamsToDestructuredObject_classDeclarationGoodUsages.ts │ │ ├── refactorConvertParamsToDestructuredObject_classExpression.ts │ │ ├── refactorConvertParamsToDestructuredObject_classExpressionGoodUsages.ts │ │ ├── refactorConvertParamsToDestructuredObject_classExpressionHeritage.ts │ │ ├── refactorConvertParamsToDestructuredObject_classTypeParameters.ts │ │ ├── refactorConvertParamsToDestructuredObject_constructor.ts │ │ ├── refactorConvertParamsToDestructuredObject_function.ts │ │ ├── refactorConvertParamsToDestructuredObject_functionComments.ts │ │ ├── refactorConvertParamsToDestructuredObject_functionComments1.ts │ │ ├── refactorConvertParamsToDestructuredObject_functionComments2.ts │ │ ├── refactorConvertParamsToDestructuredObject_functionExpression.ts │ │ ├── refactorConvertParamsToDestructuredObject_functionJSDoc.ts │ │ ├── refactorConvertParamsToDestructuredObject_functionTypeParameters.ts │ │ ├── refactorConvertParamsToDestructuredObject_importedFunction.ts │ │ ├── refactorConvertParamsToDestructuredObject_importedFunction2.ts │ │ ├── refactorConvertParamsToDestructuredObject_importedFunction3.ts │ │ ├── refactorConvertParamsToDestructuredObject_importedFunction4.ts │ │ ├── refactorConvertParamsToDestructuredObject_importedFunction5.ts │ │ ├── refactorConvertParamsToDestructuredObject_importedFunction6.ts │ │ ├── refactorConvertParamsToDestructuredObject_inheritedConstructor.ts │ │ ├── refactorConvertParamsToDestructuredObject_inheritedMethod.ts │ │ ├── refactorConvertParamsToDestructuredObject_initializer.ts │ │ ├── refactorConvertParamsToDestructuredObject_initializerInference.ts │ │ ├── refactorConvertParamsToDestructuredObject_interface.ts │ │ ├── refactorConvertParamsToDestructuredObject_interfaceAssignability.ts │ │ ├── refactorConvertParamsToDestructuredObject_interfaceContextualParams.ts │ │ ├── refactorConvertParamsToDestructuredObject_interfaceMultipleSignatures.ts │ │ ├── refactorConvertParamsToDestructuredObject_interfaceNoIntersection.ts │ │ ├── refactorConvertParamsToDestructuredObject_interfaceNoUnion.ts │ │ ├── refactorConvertParamsToDestructuredObject_method.ts │ │ ├── refactorConvertParamsToDestructuredObject_methodCallUnion.ts │ │ ├── refactorConvertParamsToDestructuredObject_methodCalls.ts │ │ ├── refactorConvertParamsToDestructuredObject_methodOverrides.ts │ │ ├── refactorConvertParamsToDestructuredObject_namelessClass.ts │ │ ├── refactorConvertParamsToDestructuredObject_overloads.ts │ │ ├── refactorConvertParamsToDestructuredObject_paramDecorator.ts │ │ ├── refactorConvertParamsToDestructuredObject_recursiveFunction.ts │ │ ├── refactorConvertParamsToDestructuredObject_restParamInference.ts │ │ ├── refactorConvertParamsToDestructuredObject_shorthandProperty.ts │ │ ├── refactorConvertParamsToDestructuredObject_staticMethod.ts │ │ ├── refactorConvertParamsToDestructuredObject_superCall.ts │ │ ├── refactorConvertParamsToDestructuredObject_templateLiteral.ts │ │ ├── refactorConvertParamsToDestructuredObject_thisParam.ts │ │ ├── refactorConvertParamsToDestructuredObject_tupleRestParam.ts │ │ ├── refactorConvertParamsToDestructuredObject_typeLiteral.ts │ │ ├── refactorConvertParamsToDestructuredObject_typedRestParam.ts │ │ ├── refactorConvertParamsToDestructuredObject_varArrowFunction.ts │ │ ├── refactorConvertStringOrTemplateLiteral_OnModuleSpecifier.ts │ │ ├── refactorConvertStringOrTemplateLiteral_TemplateString1.ts │ │ ├── refactorConvertStringOrTemplateLiteral_TemplateString10.ts │ │ ├── refactorConvertStringOrTemplateLiteral_TemplateString11.ts │ │ ├── refactorConvertStringOrTemplateLiteral_TemplateString12.ts │ │ ├── refactorConvertStringOrTemplateLiteral_TemplateString13.ts │ │ ├── refactorConvertStringOrTemplateLiteral_TemplateString2.ts │ │ ├── refactorConvertStringOrTemplateLiteral_TemplateString3.ts │ │ ├── refactorConvertStringOrTemplateLiteral_TemplateString4.ts │ │ ├── refactorConvertStringOrTemplateLiteral_TemplateString5.ts │ │ ├── refactorConvertStringOrTemplateLiteral_TemplateString6.ts │ │ ├── refactorConvertStringOrTemplateLiteral_TemplateString7.ts │ │ ├── refactorConvertStringOrTemplateLiteral_TemplateString8.ts │ │ ├── refactorConvertStringOrTemplateLiteral_TemplateString9.ts │ │ ├── refactorConvertStringOrTemplateLiteral_ToTemplateAsFnArgument.ts │ │ ├── refactorConvertStringOrTemplateLiteral_ToTemplateBackTick.ts │ │ ├── refactorConvertStringOrTemplateLiteral_ToTemplateBinaryExpr1.ts │ │ ├── refactorConvertStringOrTemplateLiteral_ToTemplateBinaryExpr2.ts │ │ ├── refactorConvertStringOrTemplateLiteral_ToTemplateBinaryExprInEnding.ts │ │ ├── refactorConvertStringOrTemplateLiteral_ToTemplateBinaryExprSingleQuote.ts │ │ ├── refactorConvertStringOrTemplateLiteral_ToTemplateBinaryExprWithElementAccess.ts │ │ ├── refactorConvertStringOrTemplateLiteral_ToTemplateBinaryExprWithPropertyAccess.ts │ │ ├── refactorConvertStringOrTemplateLiteral_ToTemplateComment.ts │ │ ├── refactorConvertStringOrTemplateLiteral_ToTemplateCommentAfterOperator.ts │ │ ├── refactorConvertStringOrTemplateLiteral_ToTemplateCommentNoExpr.ts │ │ ├── refactorConvertStringOrTemplateLiteral_ToTemplateCommentParenth.ts │ │ ├── refactorConvertStringOrTemplateLiteral_ToTemplateCommentTrailingExpr.ts │ │ ├── refactorConvertStringOrTemplateLiteral_ToTemplateCommentTrailingStr.ts │ │ ├── refactorConvertStringOrTemplateLiteral_ToTemplateConsecutiveStr.ts │ │ ├── refactorConvertStringOrTemplateLiteral_ToTemplateInvalidLocation.ts │ │ ├── refactorConvertStringOrTemplateLiteral_ToTemplateMultiExpr.ts │ │ ├── refactorConvertStringOrTemplateLiteral_ToTemplateOneExpr.ts │ │ ├── refactorConvertStringOrTemplateLiteral_ToTemplateOnlyStr.ts │ │ ├── refactorConvertStringOrTemplateLiteral_ToTemplateOtherExprSeq.ts │ │ ├── refactorConvertStringOrTemplateLiteral_ToTemplateParenthFromExpr.ts │ │ ├── refactorConvertStringOrTemplateLiteral_ToTemplateParenthFromOpening.ts │ │ ├── refactorConvertStringOrTemplateLiteral_ToTemplateParenthFromStr.ts │ │ ├── refactorConvertStringOrTemplateLiteral_ToTemplatePlusExprSeq.ts │ │ ├── refactorConvertStringOrTemplateLiteral_ToTemplatePrefixExpr.ts │ │ ├── refactorConvertStringOrTemplateLiteral_ToTemplateSimple.ts │ │ ├── refactorConvertStringOrTemplateLiteral_ToTemplateSingleQuote.ts │ │ ├── refactorConvertStringOrTemplateLiteral_escapeSequences.ts │ │ ├── refactorConvertStringOrTemplateLiteral_escapedBackslashes.ts │ │ ├── refactorConvertToEsModule_exportEqualsClass.ts │ │ ├── refactorConvertToEsModule_export_alias.ts │ │ ├── refactorConvertToEsModule_export_dotDefault.ts │ │ ├── refactorConvertToEsModule_export_invalidName.ts │ │ ├── refactorConvertToEsModule_export_moduleDotExports.ts │ │ ├── refactorConvertToEsModule_export_moduleDotExportsEqualsRequire.ts │ │ ├── refactorConvertToEsModule_export_moduleDotExports_changesImports.ts │ │ ├── refactorConvertToEsModule_export_named.ts │ │ ├── refactorConvertToEsModule_export_namedClassExpression.ts │ │ ├── refactorConvertToEsModule_export_namedFunctionExpression.ts │ │ ├── refactorConvertToEsModule_export_object.ts │ │ ├── refactorConvertToEsModule_export_object_shorthand.ts │ │ ├── refactorConvertToEsModule_export_referenced.ts │ │ ├── refactorConvertToEsModule_expressionToDeclaration.ts │ │ ├── refactorConvertToEsModule_import_arrayBindingPattern.ts │ │ ├── refactorConvertToEsModule_import_es6DefaultImport.ts │ │ ├── refactorConvertToEsModule_import_includeDefaultUses.ts │ │ ├── refactorConvertToEsModule_import_multipleUniqueIdentifiers.ts │ │ ├── refactorConvertToEsModule_import_multipleVariableDeclarations.ts │ │ ├── refactorConvertToEsModule_import_nameFromModuleSpecifier.ts │ │ ├── refactorConvertToEsModule_import_objectBindingPattern_complex.ts │ │ ├── refactorConvertToEsModule_import_objectBindingPattern_plain.ts │ │ ├── refactorConvertToEsModule_import_onlyNamedImports.ts │ │ ├── refactorConvertToEsModule_import_propertyAccess.ts │ │ ├── refactorConvertToEsModule_import_shadowing.ts │ │ ├── refactorConvertToEsModule_import_sideEffect.ts │ │ ├── refactorConvertToEsModule_inCommonJsFile.ts │ │ ├── refactorConvertToEsModule_missingInitializer.ts │ │ ├── refactorConvertToEsModule_module_node12.ts │ │ ├── refactorConvertToEsModule_module_nodenext.ts │ │ ├── refactorConvertToEsModule_notAtTopLevel.ts │ │ ├── refactorConvertToEsModule_notInCommonjsProject.ts │ │ ├── refactorConvertToEsModule_notInCommonjsProject_yesIfSomeEsModule.ts │ │ ├── refactorConvertToEsModule_preserveQuotes.ts │ │ ├── refactorConvertToEsModule_renameWithinTransformedExports.ts │ │ ├── refactorConvertToEsModule_unexported_uninitialized_var.ts │ │ ├── refactorConvertToGetAccessAndSetAccess1.ts │ │ ├── refactorConvertToGetAccessAndSetAccess10.ts │ │ ├── refactorConvertToGetAccessAndSetAccess11.ts │ │ ├── refactorConvertToGetAccessAndSetAccess12.ts │ │ ├── refactorConvertToGetAccessAndSetAccess13.ts │ │ ├── refactorConvertToGetAccessAndSetAccess14.ts │ │ ├── refactorConvertToGetAccessAndSetAccess15.ts │ │ ├── refactorConvertToGetAccessAndSetAccess16.ts │ │ ├── refactorConvertToGetAccessAndSetAccess17.ts │ │ ├── refactorConvertToGetAccessAndSetAccess18.ts │ │ ├── refactorConvertToGetAccessAndSetAccess19.ts │ │ ├── refactorConvertToGetAccessAndSetAccess2.ts │ │ ├── refactorConvertToGetAccessAndSetAccess20.ts │ │ ├── refactorConvertToGetAccessAndSetAccess21.ts │ │ ├── refactorConvertToGetAccessAndSetAccess22.ts │ │ ├── refactorConvertToGetAccessAndSetAccess23.ts │ │ ├── refactorConvertToGetAccessAndSetAccess24.ts │ │ ├── refactorConvertToGetAccessAndSetAccess25.ts │ │ ├── refactorConvertToGetAccessAndSetAccess26.ts │ │ ├── refactorConvertToGetAccessAndSetAccess27.ts │ │ ├── refactorConvertToGetAccessAndSetAccess28.ts │ │ ├── refactorConvertToGetAccessAndSetAccess29.ts │ │ ├── refactorConvertToGetAccessAndSetAccess3.ts │ │ ├── refactorConvertToGetAccessAndSetAccess30.ts │ │ ├── refactorConvertToGetAccessAndSetAccess31.ts │ │ ├── refactorConvertToGetAccessAndSetAccess32.ts │ │ ├── refactorConvertToGetAccessAndSetAccess33.ts │ │ ├── refactorConvertToGetAccessAndSetAccess34.ts │ │ ├── refactorConvertToGetAccessAndSetAccess35.ts │ │ ├── refactorConvertToGetAccessAndSetAccess36.ts │ │ ├── refactorConvertToGetAccessAndSetAccess37.ts │ │ ├── refactorConvertToGetAccessAndSetAccess38.ts │ │ ├── refactorConvertToGetAccessAndSetAccess39.ts │ │ ├── refactorConvertToGetAccessAndSetAccess4.ts │ │ ├── refactorConvertToGetAccessAndSetAccess40.ts │ │ ├── refactorConvertToGetAccessAndSetAccess41.ts │ │ ├── refactorConvertToGetAccessAndSetAccess42.ts │ │ ├── refactorConvertToGetAccessAndSetAccess5.ts │ │ ├── refactorConvertToGetAccessAndSetAccess6.ts │ │ ├── refactorConvertToGetAccessAndSetAccess7.ts │ │ ├── refactorConvertToGetAccessAndSetAccess8.ts │ │ ├── refactorConvertToGetAccessAndSetAccess9.ts │ │ ├── refactorConvertToGetAccessAndSetAccessRemoveGrammarErrors1.ts │ │ ├── refactorConvertToGetAccessAndSetAccess_js_1.ts │ │ ├── refactorConvertToGetAccessAndSetAccess_js_2.ts │ │ ├── refactorConvertToGetAccessAndSetAccess_js_3.ts │ │ ├── refactorConvertToGetAccessAndSetAccess_js_4.ts │ │ ├── refactorConvertToGetAccessAndSetAccess_js_5.ts │ │ ├── refactorConvertToGetAccessAndSetAccess_js_6.ts │ │ ├── refactorConvertToGetAccessAndSetAccess_js_7.ts │ │ ├── refactorConvertToGetAccessAndSetAccess_js_8.ts │ │ ├── refactorConvertToGetAccessAndSetAccess_js_9.ts │ │ ├── refactorConvertToGetAccessAndSetAccess_notOnWhitespace.ts │ │ ├── refactorConvertToGetAndSetAccessForTriggerReason.ts │ │ ├── refactorConvertToOptionalChainExpression_AccessCallCallReturnValue.ts │ │ ├── refactorConvertToOptionalChainExpression_AccessCallReturnValue.ts │ │ ├── refactorConvertToOptionalChainExpression_AccessThenCall.ts │ │ ├── refactorConvertToOptionalChainExpression_BinaryExpression.ts │ │ ├── refactorConvertToOptionalChainExpression_BinaryExpressionPartialSpan.ts │ │ ├── refactorConvertToOptionalChainExpression_BinaryWithCallExpression.ts │ │ ├── refactorConvertToOptionalChainExpression_CallExpressionComparison.ts │ │ ├── refactorConvertToOptionalChainExpression_ComparisonOperator.ts │ │ ├── refactorConvertToOptionalChainExpression_ConditionalForAny.ts │ │ ├── refactorConvertToOptionalChainExpression_ConditionalInitialIdentifier.ts │ │ ├── refactorConvertToOptionalChainExpression_ConditionalNoNullish.ts │ │ ├── refactorConvertToOptionalChainExpression_ConditionalPartialSPan.ts │ │ ├── refactorConvertToOptionalChainExpression_ConditionalStrictMode.ts │ │ ├── refactorConvertToOptionalChainExpression_ConditionalWithBinaryCondition1.ts │ │ ├── refactorConvertToOptionalChainExpression_ConditionalWithBinaryCondition2.ts │ │ ├── refactorConvertToOptionalChainExpression_ConditionalWithBinaryConditionNoNullish.ts │ │ ├── refactorConvertToOptionalChainExpression_ElementAccessExpression1.ts │ │ ├── refactorConvertToOptionalChainExpression_ElementAccessExpression2.ts │ │ ├── refactorConvertToOptionalChainExpression_EmptySpanBinaryExpression.ts │ │ ├── refactorConvertToOptionalChainExpression_EmptySpanBinaryReturnStatement.ts │ │ ├── refactorConvertToOptionalChainExpression_EmptySpanCallArgument.ts │ │ ├── refactorConvertToOptionalChainExpression_EmptySpanConditional.ts │ │ ├── refactorConvertToOptionalChainExpression_EmptySpanConditionalReturnKeyword.ts │ │ ├── refactorConvertToOptionalChainExpression_EmptySpanConditionalReturnStatement.ts │ │ ├── refactorConvertToOptionalChainExpression_EmptySpanVarKeyword.ts │ │ ├── refactorConvertToOptionalChainExpression_EmptySpanVariableStatementBinary.ts │ │ ├── refactorConvertToOptionalChainExpression_EmptySpanVariableStatementConditional.ts │ │ ├── refactorConvertToOptionalChainExpression_ExpressionStatementValidSpans.ts │ │ ├── refactorConvertToOptionalChainExpression_InFunctionCall.ts │ │ ├── refactorConvertToOptionalChainExpression_InIfStatement.ts │ │ ├── refactorConvertToOptionalChainExpression_NoInitialIdentifier.ts │ │ ├── refactorConvertToOptionalChainExpression_NoPreviousCall.ts │ │ ├── refactorConvertToOptionalChainExpression_NoRepeatCalls.ts │ │ ├── refactorConvertToOptionalChainExpression_NotForOptionalChain.ts │ │ ├── refactorConvertToOptionalChainExpression_NotForOtherOperators.ts │ │ ├── refactorConvertToOptionalChainExpression_NotForOutOfOrderSequence.ts │ │ ├── refactorConvertToOptionalChainExpression_OptionalInterface.ts │ │ ├── refactorConvertToOptionalChainExpression_ReturnStatementBinary.ts │ │ ├── refactorConvertToOptionalChainExpression_ReturnStatementConditional.ts │ │ ├── refactorConvertToOptionalChainExpression_ReturnStatementValidSpans.ts │ │ ├── refactorConvertToOptionalChainExpression_SemicolonNotSelected.ts │ │ ├── refactorConvertToOptionalChainExpression_SparseAccess.ts │ │ ├── refactorConvertToOptionalChainExpression_SubexpressionWithPrefix1.ts │ │ ├── refactorConvertToOptionalChainExpression_SubexpressionWithSuffix1.ts │ │ ├── refactorConvertToOptionalChainExpression_SubexpressionWithSuffix2.ts │ │ ├── refactorConvertToOptionalChainExpression_SubexpressionsWithPrefix2.ts │ │ ├── refactorConvertToOptionalChainExpression_UnknownSymbol.ts │ │ ├── refactorExtractType1.ts │ │ ├── refactorExtractType10.ts │ │ ├── refactorExtractType11.ts │ │ ├── refactorExtractType12.ts │ │ ├── refactorExtractType13.ts │ │ ├── refactorExtractType14.ts │ │ ├── refactorExtractType15.ts │ │ ├── refactorExtractType16.ts │ │ ├── refactorExtractType17.ts │ │ ├── refactorExtractType18.ts │ │ ├── refactorExtractType19.ts │ │ ├── refactorExtractType2.ts │ │ ├── refactorExtractType20.ts │ │ ├── refactorExtractType21.ts │ │ ├── refactorExtractType22.ts │ │ ├── refactorExtractType23.ts │ │ ├── refactorExtractType24.ts │ │ ├── refactorExtractType25.ts │ │ ├── refactorExtractType26.ts │ │ ├── refactorExtractType27.ts │ │ ├── refactorExtractType28.ts │ │ ├── refactorExtractType29.ts │ │ ├── refactorExtractType3.ts │ │ ├── refactorExtractType30.ts │ │ ├── refactorExtractType31.ts │ │ ├── refactorExtractType32.ts │ │ ├── refactorExtractType33.ts │ │ ├── refactorExtractType34.ts │ │ ├── refactorExtractType35.ts │ │ ├── refactorExtractType36.ts │ │ ├── refactorExtractType37.ts │ │ ├── refactorExtractType38.ts │ │ ├── refactorExtractType39.ts │ │ ├── refactorExtractType4.ts │ │ ├── refactorExtractType40.ts │ │ ├── refactorExtractType41.ts │ │ ├── refactorExtractType42.ts │ │ ├── refactorExtractType43.ts │ │ ├── refactorExtractType44.ts │ │ ├── refactorExtractType45.ts │ │ ├── refactorExtractType46.ts │ │ ├── refactorExtractType47.ts │ │ ├── refactorExtractType48.ts │ │ ├── refactorExtractType49.ts │ │ ├── refactorExtractType5.ts │ │ ├── refactorExtractType50.ts │ │ ├── refactorExtractType51.ts │ │ ├── refactorExtractType52.ts │ │ ├── refactorExtractType53.ts │ │ ├── refactorExtractType54.ts │ │ ├── refactorExtractType55.ts │ │ ├── refactorExtractType56.ts │ │ ├── refactorExtractType57.ts │ │ ├── refactorExtractType58.ts │ │ ├── refactorExtractType59.ts │ │ ├── refactorExtractType6.ts │ │ ├── refactorExtractType60.ts │ │ ├── refactorExtractType61.ts │ │ ├── refactorExtractType62.ts │ │ ├── refactorExtractType63.ts │ │ ├── refactorExtractType64.ts │ │ ├── refactorExtractType65.ts │ │ ├── refactorExtractType66.ts │ │ ├── refactorExtractType67.ts │ │ ├── refactorExtractType68.ts │ │ ├── refactorExtractType69.ts │ │ ├── refactorExtractType7.ts │ │ ├── refactorExtractType70.ts │ │ ├── refactorExtractType71.ts │ │ ├── refactorExtractType72.ts │ │ ├── refactorExtractType73.ts │ │ ├── refactorExtractType74.ts │ │ ├── refactorExtractType75.ts │ │ ├── refactorExtractType76.ts │ │ ├── refactorExtractType77.ts │ │ ├── refactorExtractType78.ts │ │ ├── refactorExtractType79.ts │ │ ├── refactorExtractType8.ts │ │ ├── refactorExtractType80.ts │ │ ├── refactorExtractType81.ts │ │ ├── refactorExtractType82.ts │ │ ├── refactorExtractType83.ts │ │ ├── refactorExtractType84.ts │ │ ├── refactorExtractType85.ts │ │ ├── refactorExtractType86.ts │ │ ├── refactorExtractType87.ts │ │ ├── refactorExtractType88.ts │ │ ├── refactorExtractType89.ts │ │ ├── refactorExtractType9.ts │ │ ├── refactorExtractTypeForTriggerReason1.ts │ │ ├── refactorExtractTypeForTriggerReason2.ts │ │ ├── refactorExtractTypeRemoveGrammarError1.ts │ │ ├── refactorExtractTypeRemoveGrammarError2.ts │ │ ├── refactorExtractType_js1.ts │ │ ├── refactorExtractType_js2.ts │ │ ├── refactorExtractType_js3.ts │ │ ├── refactorExtractType_js4.ts │ │ ├── refactorExtractType_js5.ts │ │ ├── refactorExtractType_js6.ts │ │ ├── refactorExtractType_js7.ts │ │ ├── refactorExtractType_js8.ts │ │ ├── refactorExtractType_js9.ts │ │ ├── refactorExtractType_js_TypeLiteral_CommentAfterProperty.ts │ │ ├── refactorExtractType_js_TypeLiteral_CommentBeforeProperty.ts │ │ ├── refactorExtractType_js_Union_CommentAfterMember.ts │ │ ├── refactorExtractType_js_Union_CommentBeforeMember.ts │ │ ├── refactorInferFunctionReturnType1.ts │ │ ├── refactorInferFunctionReturnType10.ts │ │ ├── refactorInferFunctionReturnType11.ts │ │ ├── refactorInferFunctionReturnType12.ts │ │ ├── refactorInferFunctionReturnType13.ts │ │ ├── refactorInferFunctionReturnType14.ts │ │ ├── refactorInferFunctionReturnType15.ts │ │ ├── refactorInferFunctionReturnType16.ts │ │ ├── refactorInferFunctionReturnType17.ts │ │ ├── refactorInferFunctionReturnType18.ts │ │ ├── refactorInferFunctionReturnType19.ts │ │ ├── refactorInferFunctionReturnType2.ts │ │ ├── refactorInferFunctionReturnType20.ts │ │ ├── refactorInferFunctionReturnType21.ts │ │ ├── refactorInferFunctionReturnType22.ts │ │ ├── refactorInferFunctionReturnType23.ts │ │ ├── refactorInferFunctionReturnType24.ts │ │ ├── refactorInferFunctionReturnType25.ts │ │ ├── refactorInferFunctionReturnType3.ts │ │ ├── refactorInferFunctionReturnType4.ts │ │ ├── refactorInferFunctionReturnType5.ts │ │ ├── refactorInferFunctionReturnType6.ts │ │ ├── refactorInferFunctionReturnType7.ts │ │ ├── refactorInferFunctionReturnType8.ts │ │ ├── refactorInferFunctionReturnType9.ts │ │ ├── refactorInferFunctionReturnTypePredicate1.ts │ │ ├── refactorKind_extract.ts │ │ ├── refactorKind_generateGetAndSetAccessor.ts │ │ ├── refactorKind_moveToNewFile.ts │ │ ├── refactorKind_rewriteExport.ts │ │ ├── refactorKind_rewriteFunction.ts │ │ ├── refactorKind_rewriteFunctionOverloadList.ts │ │ ├── refactorKind_rewriteImport.ts │ │ ├── refactorKind_rewriteOptionalChain.ts │ │ ├── refactorKind_rewriteParametersToDestructured.ts │ │ ├── refactorKind_rewriteString.ts │ │ ├── refactorOverloadListToSingleSignature1.ts │ │ ├── refactorOverloadListToSingleSignature2.ts │ │ ├── refactorOverloadListToSingleSignature3.ts │ │ ├── refactorOverloadListToSingleSignature4.ts │ │ ├── refactorOverloadListToSingleSignature5.ts │ │ ├── refactorOverloadListToSingleSignature6.ts │ │ ├── refactorOverloadListToSingleSignature7.ts │ │ ├── refactorOverloadListToSingleSignature8.ts │ │ ├── refactorOverloadListToSingleSignature9.ts │ │ ├── refactorToReturnTypeWithImportAssertions.ts │ │ ├── referenceInParameterPropertyDeclaration.ts │ │ ├── referenceToClass.ts │ │ ├── referencesBloomFilters.ts │ │ ├── referencesBloomFilters2.ts │ │ ├── referencesBloomFilters3.ts │ │ ├── referencesForAmbients.ts │ │ ├── referencesForAmbients2.ts │ │ ├── referencesForClassLocal.ts │ │ ├── referencesForClassMembers.ts │ │ ├── referencesForClassMembersExtendingAbstractClass.ts │ │ ├── referencesForClassMembersExtendingGenericClass.ts │ │ ├── referencesForClassParameter.ts │ │ ├── referencesForContextuallyTypedObjectLiteralProperties.ts │ │ ├── referencesForContextuallyTypedUnionProperties.ts │ │ ├── referencesForContextuallyTypedUnionProperties2.ts │ │ ├── referencesForDeclarationKeywords.ts │ │ ├── referencesForEnums.ts │ │ ├── referencesForExportedValues.ts │ │ ├── referencesForExpressionKeywords.ts │ │ ├── referencesForExternalModuleNames.ts │ │ ├── referencesForFunctionOverloads.ts │ │ ├── referencesForFunctionParameter.ts │ │ ├── referencesForGlobals.ts │ │ ├── referencesForGlobals2.ts │ │ ├── referencesForGlobals3.ts │ │ ├── referencesForGlobals4.ts │ │ ├── referencesForGlobals5.ts │ │ ├── referencesForGlobalsInExternalModule.ts │ │ ├── referencesForIllegalAssignment.ts │ │ ├── referencesForImports.ts │ │ ├── referencesForIndexProperty.ts │ │ ├── referencesForIndexProperty2.ts │ │ ├── referencesForIndexProperty3.ts │ │ ├── referencesForInheritedProperties.ts │ │ ├── referencesForInheritedProperties10.ts │ │ ├── referencesForInheritedProperties2.ts │ │ ├── referencesForInheritedProperties3.ts │ │ ├── referencesForInheritedProperties4.ts │ │ ├── referencesForInheritedProperties5.ts │ │ ├── referencesForInheritedProperties6.ts │ │ ├── referencesForInheritedProperties7.ts │ │ ├── referencesForInheritedProperties8.ts │ │ ├── referencesForInheritedProperties9.ts │ │ ├── referencesForLabel.ts │ │ ├── referencesForLabel2.ts │ │ ├── referencesForLabel3.ts │ │ ├── referencesForLabel4.ts │ │ ├── referencesForLabel5.ts │ │ ├── referencesForLabel6.ts │ │ ├── referencesForMergedDeclarations.ts │ │ ├── referencesForMergedDeclarations2.ts │ │ ├── referencesForMergedDeclarations3.ts │ │ ├── referencesForMergedDeclarations4.ts │ │ ├── referencesForMergedDeclarations5.ts │ │ ├── referencesForMergedDeclarations6.ts │ │ ├── referencesForMergedDeclarations7.ts │ │ ├── referencesForMergedDeclarations8.ts │ │ ├── referencesForModifiers.ts │ │ ├── referencesForNoContext.ts │ │ ├── referencesForNumericLiteralPropertyNames.ts │ │ ├── referencesForObjectLiteralProperties.ts │ │ ├── referencesForOverrides.ts │ │ ├── referencesForPropertiesOfGenericType.ts │ │ ├── referencesForStatementKeywords.ts │ │ ├── referencesForStatic.ts │ │ ├── referencesForStaticsAndMembersWithSameNames.ts │ │ ├── referencesForStringLiteralPropertyNames.ts │ │ ├── referencesForStringLiteralPropertyNames2.ts │ │ ├── referencesForStringLiteralPropertyNames3.ts │ │ ├── referencesForStringLiteralPropertyNames4.ts │ │ ├── referencesForStringLiteralPropertyNames5.ts │ │ ├── referencesForStringLiteralPropertyNames6.ts │ │ ├── referencesForStringLiteralPropertyNames7.ts │ │ ├── referencesForTypeKeywords.ts │ │ ├── referencesForUnionProperties.ts │ │ ├── referencesInComment.ts │ │ ├── referencesIsAvailableThroughGlobalNoCrash.ts │ │ ├── regexDetection.ts │ │ ├── regexErrorRecovery.ts │ │ ├── regexp.ts │ │ ├── regionCheckSpan.ts │ │ ├── remoteGetReferences.ts │ │ ├── removeDeclareFunctionExports.ts │ │ ├── removeDeclareInModule.ts │ │ ├── removeDeclareKeyword.ts │ │ ├── removeDeclareParamTypeAnnotation.ts │ │ ├── removeDuplicateIdentifier.ts │ │ ├── removeExportFromInterfaceError0.ts │ │ ├── removeExportFromInterfaceError1.ts │ │ ├── removeExportedClassFromReopenedModule.ts │ │ ├── removeInterfaceExtendsClause.ts │ │ ├── removeInterfaceUsedAsGenericTypeArgument.ts │ │ ├── removeParameterBetweenCommentAndParameter.ts │ │ ├── removeVarFromModuleWithReopenedEnums.ts │ │ ├── renameAcrossMultipleProjects.ts │ │ ├── renameAlias.ts │ │ ├── renameAlias2.ts │ │ ├── renameAlias3.ts │ │ ├── renameAliasExternalModule.ts │ │ ├── renameAliasExternalModule2.ts │ │ ├── renameAliasExternalModule3.ts │ │ ├── renameBindingElementInitializerExternal.ts │ │ ├── renameBindingElementInitializerProperty.ts │ │ ├── renameCommentsAndStrings1.ts │ │ ├── renameCommentsAndStrings2.ts │ │ ├── renameCommentsAndStrings3.ts │ │ ├── renameCommentsAndStrings4.ts │ │ ├── renameContextuallyTypedProperties.ts │ │ ├── renameContextuallyTypedProperties2.ts │ │ ├── renameCrossJsTs01.ts │ │ ├── renameDeclarationKeywords.ts │ │ ├── renameDefaultImport.ts │ │ ├── renameDefaultImportDifferentName.ts │ │ ├── renameDefaultKeyword.ts │ │ ├── renameDefaultLibDontWork.ts │ │ ├── renameDestructuringAssignment.ts │ │ ├── renameDestructuringAssignmentInFor.ts │ │ ├── renameDestructuringAssignmentInForOf.ts │ │ ├── renameDestructuringAssignmentNestedInArrayLiteral.ts │ │ ├── renameDestructuringAssignmentNestedInFor.ts │ │ ├── renameDestructuringAssignmentNestedInFor2.ts │ │ ├── renameDestructuringAssignmentNestedInForOf.ts │ │ ├── renameDestructuringAssignmentNestedInForOf2.ts │ │ ├── renameDestructuringClassProperty.ts │ │ ├── renameDestructuringDeclarationInFor.ts │ │ ├── renameDestructuringDeclarationInForOf.ts │ │ ├── renameDestructuringFunctionParameter.ts │ │ ├── renameDestructuringNestedBindingElement.ts │ │ ├── renameExportCrash.ts │ │ ├── renameExportSpecifier.ts │ │ ├── renameExportSpecifier2.ts │ │ ├── renameForAliasingExport01.ts │ │ ├── renameForAliasingExport02.ts │ │ ├── renameForDefaultExport01.ts │ │ ├── renameForDefaultExport02.ts │ │ ├── renameForDefaultExport03.ts │ │ ├── renameForDefaultExport04.ts │ │ ├── renameForDefaultExport05.ts │ │ ├── renameForDefaultExport06.ts │ │ ├── renameForDefaultExport07.ts │ │ ├── renameForDefaultExport08.ts │ │ ├── renameForDefaultExport09.ts │ │ ├── renameForStringLiteral.ts │ │ ├── renameFromNodeModulesDep1.ts │ │ ├── renameFromNodeModulesDep2.ts │ │ ├── renameFromNodeModulesDep3.ts │ │ ├── renameFromNodeModulesDep4.ts │ │ ├── renameFunctionParameter1.ts │ │ ├── renameFunctionParameter2.ts │ │ ├── renameImport.ts │ │ ├── renameImportAndExport.ts │ │ ├── renameImportAndExportInDiffFiles.ts │ │ ├── renameImportAndShorthand.ts │ │ ├── renameImportNamespaceAndShorthand.ts │ │ ├── renameImportOfExportEquals.ts │ │ ├── renameImportOfExportEquals2.ts │ │ ├── renameImportOfReExport.ts │ │ ├── renameImportOfReExport2.ts │ │ ├── renameImportRequire.ts │ │ ├── renameImportSpecifierPropertyName.ts │ │ ├── renameInfoForFunctionExpression01.ts │ │ ├── renameInheritedProperties1.ts │ │ ├── renameInheritedProperties2.ts │ │ ├── renameInheritedProperties3.ts │ │ ├── renameInheritedProperties4.ts │ │ ├── renameInheritedProperties5.ts │ │ ├── renameInheritedProperties6.ts │ │ ├── renameInheritedProperties7.ts │ │ ├── renameInheritedProperties8.ts │ │ ├── renameJSDocNamepath.ts │ │ ├── renameJsDocImportTag.ts │ │ ├── renameJsDocTypeLiteral.ts │ │ ├── renameJsExports01.ts │ │ ├── renameJsExports02.ts │ │ ├── renameJsExports03.ts │ │ ├── renameJsOverloadedFunctionParameter.ts │ │ ├── renameJsPropertyAssignment.ts │ │ ├── renameJsPropertyAssignment2.ts │ │ ├── renameJsPropertyAssignment3.ts │ │ ├── renameJsPropertyAssignment4.ts │ │ ├── renameJsPrototypeProperty01.ts │ │ ├── renameJsPrototypeProperty02.ts │ │ ├── renameJsSpecialAssignmentRhs1.ts │ │ ├── renameJsSpecialAssignmentRhs2.ts │ │ ├── renameJsThisProperty01.ts │ │ ├── renameJsThisProperty03.ts │ │ ├── renameJsThisProperty05.ts │ │ ├── renameJsThisProperty06.ts │ │ ├── renameLabel1.ts │ │ ├── renameLabel2.ts │ │ ├── renameLabel3.ts │ │ ├── renameLabel4.ts │ │ ├── renameLabel5.ts │ │ ├── renameLabel6.ts │ │ ├── renameLocationsForClassExpression01.ts │ │ ├── renameLocationsForFunctionExpression01.ts │ │ ├── renameLocationsForFunctionExpression02.ts │ │ ├── renameModifiers.ts │ │ ├── renameModuleExportsProperties1.ts │ │ ├── renameModuleExportsProperties2.ts │ │ ├── renameModuleExportsProperties3.ts │ │ ├── renameModuleToVar.ts │ │ ├── renameNameOnEnumMember.ts │ │ ├── renameNamespace.ts │ │ ├── renameNoDefaultLib.ts │ │ ├── renameNumericalIndex.ts │ │ ├── renameNumericalIndexSingleQuoted.ts │ │ ├── renameObjectBindingElementPropertyName01.ts │ │ ├── renameObjectSpread.ts │ │ ├── renameObjectSpreadAssignment.ts │ │ ├── renameParameterPropertyDeclaration1.ts │ │ ├── renameParameterPropertyDeclaration2.ts │ │ ├── renameParameterPropertyDeclaration3.ts │ │ ├── renameParameterPropertyDeclaration4.ts │ │ ├── renameParameterPropertyDeclaration5.ts │ │ ├── renamePrivateAccessor.ts │ │ ├── renamePrivateFields.ts │ │ ├── renamePrivateFields1.ts │ │ ├── renamePrivateMethod.ts │ │ ├── renamePropertyAccessExpressionHeritageClause.ts │ │ ├── renameReExportDefault.ts │ │ ├── renameReferenceFromLinkTag1.ts │ │ ├── renameReferenceFromLinkTag2.ts │ │ ├── renameReferenceFromLinkTag3.ts │ │ ├── renameReferenceFromLinkTag4.ts │ │ ├── renameReferenceFromLinkTag5.ts │ │ ├── renameRest.ts │ │ ├── renameRestBindingElement.ts │ │ ├── renameStringLiteralOk.ts │ │ ├── renameStringLiteralOk1.ts │ │ ├── renameStringLiteralTypes1.ts │ │ ├── renameStringLiteralTypes2.ts │ │ ├── renameStringLiteralTypes3.ts │ │ ├── renameStringLiteralTypes4.ts │ │ ├── renameStringLiteralTypes5.ts │ │ ├── renameStringPropertyNames.ts │ │ ├── renameStringPropertyNames2.ts │ │ ├── renameTemplateLiteralsComputedProperties.ts │ │ ├── renameTemplateLiteralsDefinePropertyJs.ts │ │ ├── renameThis.ts │ │ ├── renameUMDModuleAlias1.ts │ │ ├── renameUMDModuleAlias2.ts │ │ ├── restArgSignatureHelp.ts │ │ ├── restArgType.ts │ │ ├── restParamsContextuallyTyped.ts │ │ ├── returnRecursiveType.ts │ │ ├── returnTypeOfGenericFunction1.ts │ │ ├── reverseMappedTypeQuickInfo.ts │ │ ├── runtimeBehaviorTests.ts │ │ ├── satisfiesOperatorCompletion.ts │ │ ├── scopeOfUnionProperties.ts │ │ ├── selfReferencedExternalModule.ts │ │ ├── selfReferencedExternalModule2.ts │ │ ├── semanticClassification1.ts │ │ ├── semanticClassification2.ts │ │ ├── semanticClassificationAlias.ts │ │ ├── semanticClassificationClassExpression.ts │ │ ├── semanticClassificationConstAssertion.ts │ │ ├── semanticClassificationInTemplateExpressions.ts │ │ ├── semanticClassificationInstantiatedModuleWithVariableOfSameName1.ts │ │ ├── semanticClassificationInstantiatedModuleWithVariableOfSameName2.ts │ │ ├── semanticClassificationModules.ts │ │ ├── semanticClassificationUninstantiatedModuleWithVariableOfSameName1.ts │ │ ├── semanticClassificationUninstantiatedModuleWithVariableOfSameName2.ts │ │ ├── semanticClassificationWithUnionTypes.ts │ │ ├── semanticClassificationsCancellation1.ts │ │ ├── semanticClassificatonTypeAlias.ts │ │ ├── semanticModernClassificationCallableVariables.ts │ │ ├── semanticModernClassificationCallableVariables2.ts │ │ ├── semanticModernClassificationClassProperties.ts │ │ ├── semanticModernClassificationConstructorTypes.ts │ │ ├── semanticModernClassificationFunctions.ts │ │ ├── semanticModernClassificationInfinityAndNaN.ts │ │ ├── semanticModernClassificationInterfaces.ts │ │ ├── semanticModernClassificationMembers.ts │ │ ├── semanticModernClassificationObjectProperties.ts │ │ ├── semanticModernClassificationVariables.ts │ │ ├── semicolonFormatting.ts │ │ ├── semicolonFormattingAfterArrayLiteral.ts │ │ ├── semicolonFormattingInsideAComment.ts │ │ ├── semicolonFormattingInsideAStringLiteral.ts │ │ ├── semicolonFormattingNestedStatements.ts │ │ ├── semicolonFormattingNewline.ts │ │ ├── server/ │ │ │ ├── autoImportCrossPackage_pathsAndSymlink.ts │ │ │ ├── autoImportCrossProject_baseUrl_toDist.ts │ │ │ ├── autoImportCrossProject_paths_sharedOutDir.ts │ │ │ ├── autoImportCrossProject_paths_stripSrc.ts │ │ │ ├── autoImportCrossProject_paths_toDist.ts │ │ │ ├── autoImportCrossProject_paths_toDist2.ts │ │ │ ├── autoImportCrossProject_paths_toSrc.ts │ │ │ ├── autoImportCrossProject_symlinks_stripSrc.ts │ │ │ ├── autoImportCrossProject_symlinks_toDist.ts │ │ │ ├── autoImportCrossProject_symlinks_toSrc.ts │ │ │ ├── autoImportFileExcludePatterns1.ts │ │ │ ├── autoImportFileExcludePatterns2.ts │ │ │ ├── autoImportFileExcludePatterns_networkPaths.ts │ │ │ ├── autoImportFileExcludePatterns_symlinks.ts │ │ │ ├── autoImportFileExcludePatterns_symlinks2.ts │ │ │ ├── autoImportFileExcludePatterns_windowsPaths.ts │ │ │ ├── autoImportNodeModuleSymlinkRenamed.ts │ │ │ ├── autoImportPackageJsonFilterExistingImport1.ts │ │ │ ├── autoImportPackageJsonFilterExistingImport2.ts │ │ │ ├── autoImportPackageJsonFilterExistingImport3.ts │ │ │ ├── autoImportProvider1.ts │ │ │ ├── autoImportProvider2.ts │ │ │ ├── autoImportProvider3.ts │ │ │ ├── autoImportProvider4.ts │ │ │ ├── autoImportProvider5.ts │ │ │ ├── autoImportProvider6.ts │ │ │ ├── autoImportProvider7.ts │ │ │ ├── autoImportProvider8.ts │ │ │ ├── autoImportProvider9.ts │ │ │ ├── autoImportProvider_exportMap1.ts │ │ │ ├── autoImportProvider_exportMap2.ts │ │ │ ├── autoImportProvider_exportMap3.ts │ │ │ ├── autoImportProvider_exportMap4.ts │ │ │ ├── autoImportProvider_exportMap5.ts │ │ │ ├── autoImportProvider_exportMap6.ts │ │ │ ├── autoImportProvider_exportMap7.ts │ │ │ ├── autoImportProvider_exportMap8.ts │ │ │ ├── autoImportProvider_exportMap9.ts │ │ │ ├── autoImportProvider_globalTypingsCache.ts │ │ │ ├── autoImportProvider_importsMap1.ts │ │ │ ├── autoImportProvider_importsMap2.ts │ │ │ ├── autoImportProvider_importsMap3.ts │ │ │ ├── autoImportProvider_importsMap4.ts │ │ │ ├── autoImportProvider_importsMap5.ts │ │ │ ├── autoImportProvider_namespaceSameNameAsIntrinsic.ts │ │ │ ├── autoImportProvider_pnpm.ts │ │ │ ├── autoImportProvider_referencesCrash.ts │ │ │ ├── autoImportProvider_wildcardExports1.ts │ │ │ ├── autoImportProvider_wildcardExports2.ts │ │ │ ├── autoImportProvider_wildcardExports3.ts │ │ │ ├── autoImportReExportFromAmbientModule.ts │ │ │ ├── autoImportRelativePathToMonorepoPackage.ts │ │ │ ├── autoImportSymlinkedJsPackages.ts │ │ │ ├── brace01.ts │ │ │ ├── callHierarchyContainerNameServer.ts │ │ │ ├── completionEntryDetailAcrossFiles01.ts │ │ │ ├── completionEntryDetailAcrossFiles02.ts │ │ │ ├── completions01.ts │ │ │ ├── completions02.ts │ │ │ ├── completions03.ts │ │ │ ├── completionsImport_addToNamedWithDifferentCacheValue.ts │ │ │ ├── completionsImport_computedSymbolName.ts │ │ │ ├── completionsImport_defaultAndNamedConflict_server.ts │ │ │ ├── completionsImport_jsModuleExportsAssignment.ts │ │ │ ├── completionsImport_mergedReExport.ts │ │ │ ├── completionsImport_sortingModuleSpecifiers.ts │ │ │ ├── completionsOverridingMethodCrash2.ts │ │ │ ├── completionsServerCommitCharacters.ts │ │ │ ├── configurePlugin.ts │ │ │ ├── convertFunctionToEs6Class-server1.ts │ │ │ ├── convertFunctionToEs6Class-server2.ts │ │ │ ├── declarationMapGoToDefinition.ts │ │ │ ├── declarationMapsEnableMapping_NoInline.ts │ │ │ ├── declarationMapsEnableMapping_NoInlineSources.ts │ │ │ ├── declarationMapsGeneratedMapsEnableMapping.ts │ │ │ ├── declarationMapsGeneratedMapsEnableMapping2.ts │ │ │ ├── declarationMapsGeneratedMapsEnableMapping3.ts │ │ │ ├── declarationMapsGoToDefinitionRelativeSourceRoot.ts │ │ │ ├── declarationMapsGoToDefinitionSameNameDifferentDirectory.ts │ │ │ ├── declarationMapsOutOfDateMapping.ts │ │ │ ├── definition01.ts │ │ │ ├── documentHighlights01.ts │ │ │ ├── documentHighlights02.ts │ │ │ ├── documentHighlightsTypeParameterInHeritageClause01.ts │ │ │ ├── fixExtractToInnerFunctionDuplicaton.ts │ │ │ ├── format01.ts │ │ │ ├── formatBracketInSwitchCase.ts │ │ │ ├── formatOnEnter.ts │ │ │ ├── formatSpaceBetweenFunctionAndArrayIndex.ts │ │ │ ├── formatTrimRemainingRange.ts │ │ │ ├── formatonkey01.ts │ │ │ ├── getFileReferences_deduplicate.ts │ │ │ ├── getFileReferences_server1.ts │ │ │ ├── getFileReferences_server2.ts │ │ │ ├── getJavaScriptSyntacticDiagnostics01.ts │ │ │ ├── getJavaScriptSyntacticDiagnostics02.ts │ │ │ ├── getOutliningSpansForComments.ts │ │ │ ├── getOutliningSpansForRegions.ts │ │ │ ├── getOutliningSpansForRegionsNoSingleLineFolds.ts │ │ │ ├── goToDefinitionScriptImportServer.ts │ │ │ ├── goToImplementation_inDifferentFiles.ts │ │ │ ├── goToSource10_mapFromAtTypes3.ts │ │ │ ├── goToSource11_propertyOfAlias.ts │ │ │ ├── goToSource12_callbackParam.ts │ │ │ ├── goToSource13_nodenext.ts │ │ │ ├── goToSource14_unresolvedRequireDestructuring.ts │ │ │ ├── goToSource15_bundler.ts │ │ │ ├── goToSource16_callbackParamDifferentFile.ts │ │ │ ├── goToSource17_AddsFileToProject.ts │ │ │ ├── goToSource18_reusedFromDifferentFolder.ts │ │ │ ├── goToSource1_localJsBesideDts.ts │ │ │ ├── goToSource2_nodeModulesWithTypes.ts │ │ │ ├── goToSource3_nodeModulesAtTypes.ts │ │ │ ├── goToSource5_sameAsGoToDef1.ts │ │ │ ├── goToSource6_sameAsGoToDef2.ts │ │ │ ├── goToSource7_conditionallyMinified.ts │ │ │ ├── goToSource8_mapFromAtTypes.ts │ │ │ ├── goToSource9_mapFromAtTypes2.ts │ │ │ ├── implementation01.ts │ │ │ ├── impliedNodeFormat.ts │ │ │ ├── importCompletions_importsMap1.ts │ │ │ ├── importCompletions_importsMap2.ts │ │ │ ├── importCompletions_importsMap3.ts │ │ │ ├── importCompletions_importsMap4.ts │ │ │ ├── importCompletions_importsMap5.ts │ │ │ ├── importFixes_ambientCircularDefaultCrash.ts │ │ │ ├── importNameCodeFix_externalNonRelateive2.ts │ │ │ ├── importNameCodeFix_externalNonRelative1.ts │ │ │ ├── importNameCodeFix_pnpm1.ts │ │ │ ├── importStatementCompletions_pnpm1.ts │ │ │ ├── importStatementCompletions_pnpmTransitive.ts │ │ │ ├── importSuggestionsCache_ambient.ts │ │ │ ├── importSuggestionsCache_coreNodeModules.ts │ │ │ ├── importSuggestionsCache_exportUndefined.ts │ │ │ ├── importSuggestionsCache_invalidPackageJson.ts │ │ │ ├── importSuggestionsCache_moduleAugmentation.ts │ │ │ ├── isDefinitionAcrossGlobalProjects.ts │ │ │ ├── isDefinitionAcrossModuleProjects.ts │ │ │ ├── jsdocCallbackTag.ts │ │ │ ├── jsdocCallbackTagNavigateTo.ts │ │ │ ├── jsdocCallbackTagRename01.ts │ │ │ ├── jsdocParamTagSpecialKeywords.ts │ │ │ ├── jsdocTypedefTag.ts │ │ │ ├── jsdocTypedefTag1.ts │ │ │ ├── jsdocTypedefTag2.ts │ │ │ ├── jsdocTypedefTagGoToDefinition.ts │ │ │ ├── jsdocTypedefTagNamespace.ts │ │ │ ├── jsdocTypedefTagNavigateTo.ts │ │ │ ├── jsdocTypedefTagRename01.ts │ │ │ ├── jsdocTypedefTagRename02.ts │ │ │ ├── jsdocTypedefTagRename03.ts │ │ │ ├── jsdocTypedefTagRename04.ts │ │ │ ├── moveToFile_emptyTargetFile.ts │ │ │ ├── navbar01.ts │ │ │ ├── navto01.ts │ │ │ ├── navto_serverExcludeLib.ts │ │ │ ├── ngProxy1.ts │ │ │ ├── ngProxy2.ts │ │ │ ├── ngProxy3.ts │ │ │ ├── ngProxy4.ts │ │ │ ├── nodeNextModuleKindCaching1.ts │ │ │ ├── nodeNextPathCompletions.ts │ │ │ ├── nonJsDeclarationFilePathCompletions.ts │ │ │ ├── occurrences01.ts │ │ │ ├── occurrences02.ts │ │ │ ├── openFile.ts │ │ │ ├── openFileWithSyntaxKind.ts │ │ │ ├── packageJsonImportsFailedLookups.ts │ │ │ ├── pasteEdits_addInNextLine.ts │ │ │ ├── pasteEdits_blankTargetFile.ts │ │ │ ├── pasteEdits_defaultExport1.ts │ │ │ ├── pasteEdits_defaultExport2.ts │ │ │ ├── pasteEdits_defaultImport.ts │ │ │ ├── pasteEdits_existingImports1.ts │ │ │ ├── pasteEdits_existingImports2.ts │ │ │ ├── pasteEdits_globalAndLocal1.ts │ │ │ ├── pasteEdits_globalAndLocal2.ts │ │ │ ├── pasteEdits_knownSourceFile.ts │ │ │ ├── pasteEdits_multiplePastes1.ts │ │ │ ├── pasteEdits_multiplePastes2.ts │ │ │ ├── pasteEdits_multiplePastes3.ts │ │ │ ├── pasteEdits_multiplePastes4.ts │ │ │ ├── pasteEdits_multiplePastesConsistentlyLargerInSize.ts │ │ │ ├── pasteEdits_multiplePastesConsistentlySmallerInSize.ts │ │ │ ├── pasteEdits_multiplePastesEqualInSize.ts │ │ │ ├── pasteEdits_multiplePastesGrowingAndShrinkingInSize.ts │ │ │ ├── pasteEdits_multiplePastesGrowingInSize.ts │ │ │ ├── pasteEdits_multiplePastesShrinkingInSize.ts │ │ │ ├── pasteEdits_namespaceImport.ts │ │ │ ├── pasteEdits_noImportNeeded.ts │ │ │ ├── pasteEdits_noImportNeededInUpdatedProgram.ts │ │ │ ├── pasteEdits_pasteComments.ts │ │ │ ├── pasteEdits_pasteIntoSameFile.ts │ │ │ ├── pasteEdits_rangeSelection0.ts │ │ │ ├── pasteEdits_rangeSelection1.ts │ │ │ ├── pasteEdits_rangeSelection2.ts │ │ │ ├── pasteEdits_rangeSelection3.ts │ │ │ ├── pasteEdits_rangeSelection4.ts │ │ │ ├── pasteEdits_rangeSelection5.ts │ │ │ ├── pasteEdits_rangeSelection6.ts │ │ │ ├── pasteEdits_rangeSelection7.ts │ │ │ ├── pasteEdits_rangeSelection8.ts │ │ │ ├── pasteEdits_rangeSelection9.ts │ │ │ ├── pasteEdits_requireImportJsx.ts │ │ │ ├── pasteEdits_revertUpdatedFile.ts │ │ │ ├── pasteEdits_unknownSourceFile.ts │ │ │ ├── pathCompletionsPackageJsonImportsSrcNoDistWildcard1.ts │ │ │ ├── pathCompletionsPackageJsonImportsSrcNoDistWildcard2.ts │ │ │ ├── pathCompletionsPackageJsonImportsSrcNoDistWildcard3.ts │ │ │ ├── pathCompletionsPackageJsonImportsSrcNoDistWildcard4.ts │ │ │ ├── pathCompletionsPackageJsonImportsSrcNoDistWildcard5.ts │ │ │ ├── pathCompletionsPackageJsonImportsSrcNoDistWildcard6.ts │ │ │ ├── pathCompletionsPackageJsonImportsSrcNoDistWildcard7.ts │ │ │ ├── pathCompletionsPackageJsonImportsSrcNoDistWildcard8.ts │ │ │ ├── pathCompletionsPackageJsonImportsSrcNoDistWildcard9.ts │ │ │ ├── projectInfo01.ts │ │ │ ├── projectInfo02.ts │ │ │ ├── projectWithNonExistentFiles.ts │ │ │ ├── quickinfo01.ts │ │ │ ├── quickinfoVerbosityServer.ts │ │ │ ├── quickinfoWrongComment.ts │ │ │ ├── referenceToEmptyObject.ts │ │ │ ├── references01.ts │ │ │ ├── referencesInConfiguredProject.ts │ │ │ ├── referencesInEmptyFile.ts │ │ │ ├── referencesInEmptyFileWithMultipleProjects.ts │ │ │ ├── referencesInStringLiteralValueWithMultipleProjects.ts │ │ │ ├── referencesToNonPropertyNameStringLiteral.ts │ │ │ ├── referencesToStringLiteralValue.ts │ │ │ ├── rename01.ts │ │ │ ├── renameInConfiguredProject.ts │ │ │ ├── renameNamedImport.ts │ │ │ ├── renameNamespaceImport.ts │ │ │ ├── rewriteRelativeImportExtensionsProjectReferences1.ts │ │ │ ├── rewriteRelativeImportExtensionsProjectReferences2.ts │ │ │ ├── rewriteRelativeImportExtensionsProjectReferences3.ts │ │ │ ├── semanticClassificationJs1.ts │ │ │ ├── signatureHelp01.ts │ │ │ ├── signatureHelpJSDocCallbackTag.ts │ │ │ ├── tripleSlashReferenceResolutionMode.ts │ │ │ ├── tsconfigComputedPropertyError.ts │ │ │ ├── tsxIncrementalServer.ts │ │ │ ├── typeReferenceOnServer.ts │ │ │ └── typedefinition01.ts │ │ ├── sideEffectImportsSuggestion1.ts │ │ ├── signatureHelpAfterParameter.ts │ │ ├── signatureHelpAnonymousFunction.ts │ │ ├── signatureHelpAtEOF.ts │ │ ├── signatureHelpAtEOF2.ts │ │ ├── signatureHelpBeforeSemicolon1.ts │ │ ├── signatureHelpCallExpression.ts │ │ ├── signatureHelpCallExpressionJs.ts │ │ ├── signatureHelpCallExpressionTuples.ts │ │ ├── signatureHelpCommentsClass.ts │ │ ├── signatureHelpCommentsClassMembers.ts │ │ ├── signatureHelpCommentsCommentParsing.ts │ │ ├── signatureHelpCommentsFunctionDeclaration.ts │ │ ├── signatureHelpCommentsFunctionExpression.ts │ │ ├── signatureHelpConstructExpression.ts │ │ ├── signatureHelpConstructorCallParamProperties.ts │ │ ├── signatureHelpConstructorInheritance.ts │ │ ├── signatureHelpConstructorOverload.ts │ │ ├── signatureHelpEmptyList.ts │ │ ├── signatureHelpExpandedRestTuples.ts │ │ ├── signatureHelpExpandedRestTuplesLocalLabels1.ts │ │ ├── signatureHelpExpandedRestUnlabeledTuples.ts │ │ ├── signatureHelpExpandedTuplesArgumentIndex.ts │ │ ├── signatureHelpExplicitTypeArguments.ts │ │ ├── signatureHelpFilteredTriggers01.ts │ │ ├── signatureHelpFilteredTriggers02.ts │ │ ├── signatureHelpFilteredTriggers03.ts │ │ ├── signatureHelpForNonlocalTypeDoesNotUseImportType.ts │ │ ├── signatureHelpForOptionalMethods.ts │ │ ├── signatureHelpForSignatureWithUnreachableType.ts │ │ ├── signatureHelpForSuperCalls1.ts │ │ ├── signatureHelpFunctionOverload.ts │ │ ├── signatureHelpFunctionParameter.ts │ │ ├── signatureHelpImplicitConstructor.ts │ │ ├── signatureHelpImportStarFromExportEquals.ts │ │ ├── signatureHelpInAdjacentBlockBody.ts │ │ ├── signatureHelpInCallback.ts │ │ ├── signatureHelpInCompleteGenericsCall.ts │ │ ├── signatureHelpInFunctionCall.ts │ │ ├── signatureHelpInFunctionCallOnFunctionDeclarationInMultipleFiles.ts │ │ ├── signatureHelpInParenthetical.ts │ │ ├── signatureHelpInRecursiveType.ts │ │ ├── signatureHelpIncompleteCalls.ts │ │ ├── signatureHelpInference.ts │ │ ├── signatureHelpInferenceJsDocImportTag.ts │ │ ├── signatureHelpIteratorNext.ts │ │ ├── signatureHelpJSDocTags.ts │ │ ├── signatureHelpJSMissingIdentifier.ts │ │ ├── signatureHelpJSMissingPropertyAccess.ts │ │ ├── signatureHelpJSX.ts │ │ ├── signatureHelpLeadingRestTuple.ts │ │ ├── signatureHelpNegativeTests.ts │ │ ├── signatureHelpNegativeTests2.ts │ │ ├── signatureHelpNoArguments.ts │ │ ├── signatureHelpObjectCreationExpressionNoArgs_NotAvailable.ts │ │ ├── signatureHelpObjectLiteral.ts │ │ ├── signatureHelpOnDeclaration.ts │ │ ├── signatureHelpOnNestedOverloads.ts │ │ ├── signatureHelpOnOverloadOnConst.ts │ │ ├── signatureHelpOnOverloads.ts │ │ ├── signatureHelpOnOverloadsDifferentArity.ts │ │ ├── signatureHelpOnOverloadsDifferentArity2.ts │ │ ├── signatureHelpOnOverloadsDifferentArity3.ts │ │ ├── signatureHelpOnSuperWhenMembersAreNotResolved.ts │ │ ├── signatureHelpOnTypePredicates.ts │ │ ├── signatureHelpOptionalCall.ts │ │ ├── signatureHelpOptionalCall2.ts │ │ ├── signatureHelpRestArgs1.ts │ │ ├── signatureHelpRestArgs2.ts │ │ ├── signatureHelpRestArgs3.ts │ │ ├── signatureHelpSimpleConstructorCall.ts │ │ ├── signatureHelpSimpleFunctionCall.ts │ │ ├── signatureHelpSimpleSuperCall.ts │ │ ├── signatureHelpSkippedArgs1.ts │ │ ├── signatureHelpSuperConstructorOverload.ts │ │ ├── signatureHelpTaggedTemplates1.ts │ │ ├── signatureHelpTaggedTemplates2.ts │ │ ├── signatureHelpTaggedTemplates3.ts │ │ ├── signatureHelpTaggedTemplates4.ts │ │ ├── signatureHelpTaggedTemplates5.ts │ │ ├── signatureHelpTaggedTemplates6.ts │ │ ├── signatureHelpTaggedTemplates7.ts │ │ ├── signatureHelpTaggedTemplatesIncomplete1.ts │ │ ├── signatureHelpTaggedTemplatesIncomplete2.ts │ │ ├── signatureHelpTaggedTemplatesIncomplete3.ts │ │ ├── signatureHelpTaggedTemplatesIncomplete4.ts │ │ ├── signatureHelpTaggedTemplatesIncomplete5.ts │ │ ├── signatureHelpTaggedTemplatesIncomplete6.ts │ │ ├── signatureHelpTaggedTemplatesIncomplete7.ts │ │ ├── signatureHelpTaggedTemplatesIncomplete8.ts │ │ ├── signatureHelpTaggedTemplatesIncomplete9.ts │ │ ├── signatureHelpTaggedTemplatesNegatives1.ts │ │ ├── signatureHelpTaggedTemplatesNegatives2.ts │ │ ├── signatureHelpTaggedTemplatesNegatives3.ts │ │ ├── signatureHelpTaggedTemplatesNegatives4.ts │ │ ├── signatureHelpTaggedTemplatesNegatives5.ts │ │ ├── signatureHelpTaggedTemplatesNested1.ts │ │ ├── signatureHelpTaggedTemplatesNested2.ts │ │ ├── signatureHelpTaggedTemplatesWithOverloadedTags1.ts │ │ ├── signatureHelpTaggedTemplatesWithOverloadedTags2.ts │ │ ├── signatureHelpTaggedTemplatesWithOverloadedTags3.ts │ │ ├── signatureHelpTaggedTemplatesWithOverloadedTags4.ts │ │ ├── signatureHelpTaggedTemplatesWithOverloadedTags5.ts │ │ ├── signatureHelpTaggedTemplatesWithOverloadedTags6.ts │ │ ├── signatureHelpTaggedTemplatesWithOverloadedTags7.ts │ │ ├── signatureHelpTaggedTemplatesWithOverloadedTags8.ts │ │ ├── signatureHelpTaggedTemplatesWithOverloadedTags9.ts │ │ ├── signatureHelpThis.ts │ │ ├── signatureHelpTrailingRestTuple.ts │ │ ├── signatureHelpTypeArguments.ts │ │ ├── signatureHelpTypeArguments2.ts │ │ ├── signatureHelpTypeParametersNotVariadic.ts │ │ ├── signatureHelpWhenEditingCallExpression.ts │ │ ├── signatureHelpWithInterfaceAsIdentifier.ts │ │ ├── signatureHelpWithInvalidArgumentList1.ts │ │ ├── signatureHelpWithTriggers01.ts │ │ ├── signatureHelpWithTriggers02.ts │ │ ├── signatureHelpWithUnknown.ts │ │ ├── signatureHelp_contextual.ts │ │ ├── signatureHelp_unionType.ts │ │ ├── singleLineTypeLiteralFormatting.ts │ │ ├── smartIndentActualIndentation.ts │ │ ├── smartIndentAfterAlignedFunctionArgument.ts │ │ ├── smartIndentAfterFatArrowVar.ts │ │ ├── smartIndentAfterNewExpression.ts │ │ ├── smartIndentArrayBindingPattern01.ts │ │ ├── smartIndentArrayBindingPattern02.ts │ │ ├── smartIndentClass.ts │ │ ├── smartIndentCloseBrace.ts │ │ ├── smartIndentDoStatement.ts │ │ ├── smartIndentEnum.ts │ │ ├── smartIndentIfStatement.ts │ │ ├── smartIndentInCallExpressions.ts │ │ ├── smartIndentInParenthesizedExpression01.ts │ │ ├── smartIndentInParenthesizedExpression02.ts │ │ ├── smartIndentInsideBlockInsideCase.ts │ │ ├── smartIndentInsideMultilineString.ts │ │ ├── smartIndentInterface.ts │ │ ├── smartIndentListItem.ts │ │ ├── smartIndentMissingBracketsDoKeyword.ts │ │ ├── smartIndentMissingBracketsIfKeyword.ts │ │ ├── smartIndentMissingBracketsWhileKeyword.ts │ │ ├── smartIndentMissingBracketsWithKeyword.ts │ │ ├── smartIndentModule.ts │ │ ├── smartIndentNamedImport.ts │ │ ├── smartIndentNestedModule.ts │ │ ├── smartIndentNonterminatedArgumentListAtEOF.ts │ │ ├── smartIndentNonterminatedIfStatementAtEOF.ts │ │ ├── smartIndentObjectBindingPattern01.ts │ │ ├── smartIndentObjectBindingPattern02.ts │ │ ├── smartIndentObjectLiteralOpenBracketNewLine.ts │ │ ├── smartIndentOnAccessors.ts │ │ ├── smartIndentOnAccessors01.ts │ │ ├── smartIndentOnAccessors02.ts │ │ ├── smartIndentOnFunctionParameters.ts │ │ ├── smartIndentOnListEnd.ts │ │ ├── smartIndentOnUnclosedArrowType01.ts │ │ ├── smartIndentOnUnclosedComputedProperty01.ts │ │ ├── smartIndentOnUnclosedConstructorType01.ts │ │ ├── smartIndentOnUnclosedFunctionDeclaration01.ts │ │ ├── smartIndentOnUnclosedFunctionDeclaration02.ts │ │ ├── smartIndentOnUnclosedFunctionDeclaration03.ts │ │ ├── smartIndentOnUnclosedFunctionDeclaration04.ts │ │ ├── smartIndentOnUnclosedFunctionDeclaration05.ts │ │ ├── smartIndentOnUnclosedFunctionDeclaration06.ts │ │ ├── smartIndentOnUnclosedIndexSignature01.ts │ │ ├── smartIndentOnUnclosedObjectTypeLiteral01.ts │ │ ├── smartIndentOnUnclosedTupleTypeLiteral01.ts │ │ ├── smartIndentReturn.ts │ │ ├── smartIndentStartLineInLists.ts │ │ ├── smartIndentStatementFor.ts │ │ ├── smartIndentStatementForIn.ts │ │ ├── smartIndentStatementForOf.ts │ │ ├── smartIndentStatementSwitch.ts │ │ ├── smartIndentStatementTryCatchFinally.ts │ │ ├── smartIndentStatementWith.ts │ │ ├── smartIndentTemplateLiterals.ts │ │ ├── smartSelection_JSDoc.ts │ │ ├── smartSelection_JSDocTags1.ts │ │ ├── smartSelection_JSDocTags10.ts │ │ ├── smartSelection_JSDocTags11.ts │ │ ├── smartSelection_JSDocTags12.ts │ │ ├── smartSelection_JSDocTags13.ts │ │ ├── smartSelection_JSDocTags2.ts │ │ ├── smartSelection_JSDocTags3.ts │ │ ├── smartSelection_JSDocTags4.ts │ │ ├── smartSelection_JSDocTags5.ts │ │ ├── smartSelection_JSDocTags6.ts │ │ ├── smartSelection_JSDocTags7.ts │ │ ├── smartSelection_JSDocTags8.ts │ │ ├── smartSelection_JSDocTags9.ts │ │ ├── smartSelection_behindCaret.ts │ │ ├── smartSelection_bindingPatterns.ts │ │ ├── smartSelection_comment1.ts │ │ ├── smartSelection_comment2.ts │ │ ├── smartSelection_complex.ts │ │ ├── smartSelection_emptyRanges.ts │ │ ├── smartSelection_function1.ts │ │ ├── smartSelection_function2.ts │ │ ├── smartSelection_function3.ts │ │ ├── smartSelection_functionParams1.ts │ │ ├── smartSelection_functionParams2.ts │ │ ├── smartSelection_imports.ts │ │ ├── smartSelection_lastBlankLine.ts │ │ ├── smartSelection_loneVariableDeclaration.ts │ │ ├── smartSelection_mappedTypes.ts │ │ ├── smartSelection_objectTypes.ts │ │ ├── smartSelection_punctuationPriority.ts │ │ ├── smartSelection_simple1.ts │ │ ├── smartSelection_simple2.ts │ │ ├── smartSelection_stringLiteral.ts │ │ ├── smartSelection_templateStrings.ts │ │ ├── smartSelection_templateStrings2.ts │ │ ├── spaceAfterConstructor.ts │ │ ├── spaceAfterReturn.ts │ │ ├── spaceAfterStatementConditions.ts │ │ ├── spaceBeforeAndAfterBinaryOperators.ts │ │ ├── specialIntersectionsOrderIndependent.ts │ │ ├── squiggleFunctionExpression.ts │ │ ├── squiggleIllegalClassExtension.ts │ │ ├── squiggleIllegalInterfaceExtension.ts │ │ ├── squiggleIllegalSubclassOverride.ts │ │ ├── squiggleUnclosedStringLiteral.ts │ │ ├── staticGenericOverloads1.ts │ │ ├── stringBraceCompletionPosition.ts │ │ ├── stringCompletionsFromGenericConditionalTypesUsingTemplateLiteralTypes.ts │ │ ├── stringCompletionsImportOrExportSpecifier.ts │ │ ├── stringCompletionsUnterminated.ts │ │ ├── stringCompletionsUnterminated2.ts │ │ ├── stringCompletionsVsEscaping.ts │ │ ├── stringLiteralCompletionsForGenericConditionalTypesUsingTemplateLiteralTypes.ts │ │ ├── stringLiteralCompletionsForOpenEndedTemplateLiteralType.ts │ │ ├── stringLiteralCompletionsForStringEnumContextualType.ts │ │ ├── stringLiteralCompletionsForTypeIndexedAccess.ts │ │ ├── stringLiteralCompletionsInArgUsingInferenceResultFromPreviousArg.ts │ │ ├── stringLiteralCompletionsInJsxAttributeInitializer.ts │ │ ├── stringLiteralCompletionsInPositionTypedUsingRest.ts │ │ ├── stringLiteralCompletionsWithinInferredObjectWhenItsKeysAreUsedOutsideOfIt.ts │ │ ├── stringLiteralTypeCompletionsInTypeArgForNonGeneric1.ts │ │ ├── stringPropertyNames1.ts │ │ ├── stringPropertyNames2.ts │ │ ├── stringTemplateBraceCompletionPosition.ts │ │ ├── suggestionNoDuplicates.ts │ │ ├── suggestionOfUnusedVariableWithExternalModule.ts │ │ ├── superCallError0.ts │ │ ├── superInDerivedTypeOfGenericWithStatics.ts │ │ ├── superInsideInnerClass.ts │ │ ├── switchCompletions.ts │ │ ├── switchIndenting.ts │ │ ├── symbolCompletionLowerPriority.ts │ │ ├── symbolNameAtUnparseableFunctionOverload.ts │ │ ├── syntacticClassificationForJSDocTemplateTag.ts │ │ ├── syntacticClassificationWithErrors.ts │ │ ├── syntacticClassifications1.ts │ │ ├── syntacticClassificationsCancellation1.ts │ │ ├── syntacticClassificationsConflictDiff3Markers1.ts │ │ ├── syntacticClassificationsConflictDiff3Markers2.ts │ │ ├── syntacticClassificationsConflictMarkers1.ts │ │ ├── syntacticClassificationsConflictMarkers2.ts │ │ ├── syntacticClassificationsDocComment1.ts │ │ ├── syntacticClassificationsDocComment2.ts │ │ ├── syntacticClassificationsDocComment3.ts │ │ ├── syntacticClassificationsDocComment4.ts │ │ ├── syntacticClassificationsForOfKeyword.ts │ │ ├── syntacticClassificationsForOfKeyword2.ts │ │ ├── syntacticClassificationsForOfKeyword3.ts │ │ ├── syntacticClassificationsFunctionWithComments.ts │ │ ├── syntacticClassificationsJsx1.ts │ │ ├── syntacticClassificationsJsx2.ts │ │ ├── syntacticClassificationsMergeConflictMarker1.ts │ │ ├── syntacticClassificationsObjectLiteral.ts │ │ ├── syntacticClassificationsTemplates1.ts │ │ ├── syntacticClassificationsTemplates2.ts │ │ ├── syntacticClassificationsTripleSlash1.ts │ │ ├── syntacticClassificationsTripleSlash10.ts │ │ ├── syntacticClassificationsTripleSlash11.ts │ │ ├── syntacticClassificationsTripleSlash12.ts │ │ ├── syntacticClassificationsTripleSlash13.ts │ │ ├── syntacticClassificationsTripleSlash14.ts │ │ ├── syntacticClassificationsTripleSlash15.ts │ │ ├── syntacticClassificationsTripleSlash16.ts │ │ ├── syntacticClassificationsTripleSlash17.ts │ │ ├── syntacticClassificationsTripleSlash18.ts │ │ ├── syntacticClassificationsTripleSlash2.ts │ │ ├── syntacticClassificationsTripleSlash3.ts │ │ ├── syntacticClassificationsTripleSlash4.ts │ │ ├── syntacticClassificationsTripleSlash5.ts │ │ ├── syntacticClassificationsTripleSlash6.ts │ │ ├── syntacticClassificationsTripleSlash7.ts │ │ ├── syntacticClassificationsTripleSlash8.ts │ │ ├── syntacticClassificationsTripleSlash9.ts │ │ ├── syntaxErrorAfterImport1.ts │ │ ├── syntheticImportFromBabelGeneratedFile1.ts │ │ ├── syntheticImportFromBabelGeneratedFile2.ts │ │ ├── tabbingAfterNewlineInsertedBeforeWhile.ts │ │ ├── textChangesIndentStyle.ts │ │ ├── textChangesPreserveNewlines1.ts │ │ ├── textChangesPreserveNewlines10.ts │ │ ├── textChangesPreserveNewlines2.ts │ │ ├── textChangesPreserveNewlines3.ts │ │ ├── textChangesPreserveNewlines4.ts │ │ ├── textChangesPreserveNewlines5.ts │ │ ├── textChangesPreserveNewlines6.ts │ │ ├── textChangesPreserveNewlines7.ts │ │ ├── textChangesPreserveNewlines8.ts │ │ ├── textChangesPreserveNewlines9.ts │ │ ├── thisBindingInLambda.ts │ │ ├── thisPredicateFunctionCompletions01.ts │ │ ├── thisPredicateFunctionCompletions02.ts │ │ ├── thisPredicateFunctionCompletions03.ts │ │ ├── thisPredicateFunctionQuickInfo.ts │ │ ├── thisPredicateFunctionQuickInfo01.ts │ │ ├── thisPredicateFunctionQuickInfo02.ts │ │ ├── todoComments1.ts │ │ ├── todoComments10.ts │ │ ├── todoComments11.ts │ │ ├── todoComments12.ts │ │ ├── todoComments13.ts │ │ ├── todoComments14.ts │ │ ├── todoComments15.ts │ │ ├── todoComments16.ts │ │ ├── todoComments17.ts │ │ ├── todoComments18.ts │ │ ├── todoComments19.ts │ │ ├── todoComments2.ts │ │ ├── todoComments20.ts │ │ ├── todoComments3.ts │ │ ├── todoComments4.ts │ │ ├── todoComments5.ts │ │ ├── todoComments6.ts │ │ ├── todoComments7.ts │ │ ├── todoComments8.ts │ │ ├── todoComments9.ts │ │ ├── toggleDuplicateFunctionDeclaration.ts │ │ ├── toggleLineComment1.ts │ │ ├── toggleLineComment10.ts │ │ ├── toggleLineComment11.ts │ │ ├── toggleLineComment2.ts │ │ ├── toggleLineComment3.ts │ │ ├── toggleLineComment4.ts │ │ ├── toggleLineComment5.ts │ │ ├── toggleLineComment6.ts │ │ ├── toggleLineComment7.ts │ │ ├── toggleLineComment8.ts │ │ ├── toggleLineComment9.ts │ │ ├── toggleMultilineComment1.ts │ │ ├── toggleMultilineComment2.ts │ │ ├── toggleMultilineComment3.ts │ │ ├── toggleMultilineComment4.ts │ │ ├── toggleMultilineComment5.ts │ │ ├── toggleMultilineComment6.ts │ │ ├── toggleMultilineComment7.ts │ │ ├── toggleMultilineComment8.ts │ │ ├── toggleMultilineComment9.ts │ │ ├── trailingCommaSignatureHelp.ts │ │ ├── transitiveExportImports.ts │ │ ├── transitiveExportImports2.ts │ │ ├── transitiveExportImports3.ts │ │ ├── tripleSlashRefPathCompletionAbsolutePaths.ts │ │ ├── tripleSlashRefPathCompletionBackandForwardSlash.ts │ │ ├── tripleSlashRefPathCompletionContext.ts │ │ ├── tripleSlashRefPathCompletionExtensionsAllowJSFalse.ts │ │ ├── tripleSlashRefPathCompletionExtensionsAllowJSTrue.ts │ │ ├── tripleSlashRefPathCompletionHiddenFile.ts │ │ ├── tripleSlashRefPathCompletionNarrowing.ts │ │ ├── tripleSlashRefPathCompletionRelativePaths.ts │ │ ├── tripleSlashRefPathCompletionRootdirs.ts │ │ ├── tryCatchFinallyFormating.ts │ │ ├── tslibFindAllReferencesOnRuntimeImportWithPaths1.ts │ │ ├── tsxCompletion1.ts │ │ ├── tsxCompletion10.ts │ │ ├── tsxCompletion11.ts │ │ ├── tsxCompletion12.ts │ │ ├── tsxCompletion13.ts │ │ ├── tsxCompletion14.ts │ │ ├── tsxCompletion15.ts │ │ ├── tsxCompletion2.ts │ │ ├── tsxCompletion3.ts │ │ ├── tsxCompletion4.ts │ │ ├── tsxCompletion5.ts │ │ ├── tsxCompletion6.ts │ │ ├── tsxCompletion7.ts │ │ ├── tsxCompletion8.ts │ │ ├── tsxCompletion9.ts │ │ ├── tsxCompletionInFunctionExpressionOfChildrenCallback.ts │ │ ├── tsxCompletionInFunctionExpressionOfChildrenCallback1.ts │ │ ├── tsxCompletionNonTagLessThan.ts │ │ ├── tsxCompletionOnClosingTag1.ts │ │ ├── tsxCompletionOnClosingTag2.ts │ │ ├── tsxCompletionOnClosingTagWithoutJSX1.ts │ │ ├── tsxCompletionOnClosingTagWithoutJSX2.ts │ │ ├── tsxCompletionOnOpeningTagWithoutJSX1.ts │ │ ├── tsxCompletionsGenericComponent.ts │ │ ├── tsxFindAllReferences1.ts │ │ ├── tsxFindAllReferences10.ts │ │ ├── tsxFindAllReferences11.ts │ │ ├── tsxFindAllReferences2.ts │ │ ├── tsxFindAllReferences3.ts │ │ ├── tsxFindAllReferences4.ts │ │ ├── tsxFindAllReferences5.ts │ │ ├── tsxFindAllReferences6.ts │ │ ├── tsxFindAllReferences7.ts │ │ ├── tsxFindAllReferences8.ts │ │ ├── tsxFindAllReferences9.ts │ │ ├── tsxFindAllReferencesUnionElementType1.ts │ │ ├── tsxFindAllReferencesUnionElementType2.ts │ │ ├── tsxGoToDefinitionClassInDifferentFile.ts │ │ ├── tsxGoToDefinitionClasses.ts │ │ ├── tsxGoToDefinitionIntrinsics.ts │ │ ├── tsxGoToDefinitionStatelessFunction1.ts │ │ ├── tsxGoToDefinitionStatelessFunction2.ts │ │ ├── tsxGoToDefinitionUnionElementType1.ts │ │ ├── tsxGoToDefinitionUnionElementType2.ts │ │ ├── tsxIncremental.ts │ │ ├── tsxParsing.ts │ │ ├── tsxQuickInfo1.ts │ │ ├── tsxQuickInfo2.ts │ │ ├── tsxQuickInfo3.ts │ │ ├── tsxQuickInfo4.ts │ │ ├── tsxQuickInfo5.ts │ │ ├── tsxQuickInfo6.ts │ │ ├── tsxQuickInfo7.ts │ │ ├── tsxRename1.ts │ │ ├── tsxRename2.ts │ │ ├── tsxRename3.ts │ │ ├── tsxRename4.ts │ │ ├── tsxRename5.ts │ │ ├── tsxRename6.ts │ │ ├── tsxRename7.ts │ │ ├── tsxRename8.ts │ │ ├── tsxRename9.ts │ │ ├── tsxSignatureHelp1.ts │ │ ├── tsxSignatureHelp2.ts │ │ ├── typeAboveNumberLiteralExpressionStatement.ts │ │ ├── typeArgCompletion.ts │ │ ├── typeAssertionsFormatting.ts │ │ ├── typeCheckAfterAddingGenericParameter.ts │ │ ├── typeCheckAfterResolve.ts │ │ ├── typeCheckObjectInArrayLiteral.ts │ │ ├── typeErrorAfterStringCompletionsInNestedCall.ts │ │ ├── typeErrorAfterStringCompletionsInNestedCall2.ts │ │ ├── typeExtractionDoesNotDuplicateTrailingComment.ts │ │ ├── typeKeywordInFunction.ts │ │ ├── typeOfAFundule.ts │ │ ├── typeOfKeywordCompletion.ts │ │ ├── typeOfSymbol_localSymbolOfExport.ts │ │ ├── typeOperatorNodeBuilding.ts │ │ ├── typeParameterListInQuickInfoAfterEdit.ts │ │ ├── typeReferenceAndImportDeprecated.ts │ │ ├── typeToStringCrashInCodeFix.ts │ │ ├── unclosedArrayErrorRecovery.ts │ │ ├── unclosedCommentsInConstructor.ts │ │ ├── unclosedFunctionErrorRecovery.ts │ │ ├── unclosedFunctionErrorRecovery3.ts │ │ ├── unclosedMultilineStringLiteralErrorRecovery.ts │ │ ├── unclosedStringLiteralAutoformating.ts │ │ ├── unclosedStringLiteralErrorRecovery.ts │ │ ├── unclosedStringLiteralErrorRecovery2.ts │ │ ├── unclosedStringLiteralErrorRecovery3.ts │ │ ├── unclosedStringLiteralErrorRecovery4.ts │ │ ├── uncommentSelection1.ts │ │ ├── uncommentSelection2.ts │ │ ├── uncommentSelection3.ts │ │ ├── uncommentSelection4.ts │ │ ├── underscoreTypings01.ts │ │ ├── underscoreTypings02.ts │ │ ├── unknownVariableErrorRecovery.ts │ │ ├── unreachableCodeAfterEdit.ts │ │ ├── unreachableStatementNodeReuse.ts │ │ ├── unusedAmbient1.ts │ │ ├── unusedAmbient2.ts │ │ ├── unusedClassInNamespace1.ts │ │ ├── unusedClassInNamespace2.ts │ │ ├── unusedClassInNamespace3.ts │ │ ├── unusedClassInNamespace4.ts │ │ ├── unusedClassInNamespaceWithTrivia1.ts │ │ ├── unusedClassInNamespaceWithTrivia2.ts │ │ ├── unusedConstantInFunction1.ts │ │ ├── unusedEnumInFunction1.ts │ │ ├── unusedEnumInNamespace1.ts │ │ ├── unusedFunctionInNamespace1.ts │ │ ├── unusedFunctionInNamespace2.ts │ │ ├── unusedFunctionInNamespace3.ts │ │ ├── unusedFunctionInNamespace4.ts │ │ ├── unusedFunctionInNamespace5.ts │ │ ├── unusedFunctionInNamespaceWithTrivia.ts │ │ ├── unusedImportDeclaration_withEmptyPath.ts │ │ ├── unusedImportDeclaration_withEmptyPath1.ts │ │ ├── unusedImportDeclaration_withEmptyPath2.ts │ │ ├── unusedImportDeclaration_withEmptyPath3.ts │ │ ├── unusedImportDeclaration_withEmptyPath4.ts │ │ ├── unusedImportDeclaration_withEmptyPath5.ts │ │ ├── unusedImports10FS.ts │ │ ├── unusedImports11FS.ts │ │ ├── unusedImports12FS.ts │ │ ├── unusedImports13FS.ts │ │ ├── unusedImports14FS.ts │ │ ├── unusedImports1FS.ts │ │ ├── unusedImports2FS.ts │ │ ├── unusedImports3FS.ts │ │ ├── unusedImports4FS.ts │ │ ├── unusedImports5FS.ts │ │ ├── unusedImports6FS.ts │ │ ├── unusedImports7FS.ts │ │ ├── unusedImports8FS.ts │ │ ├── unusedImports9FS.ts │ │ ├── unusedImportsFS_entireImportDeclaration.ts │ │ ├── unusedLabelAfterEdit.ts │ │ ├── unusedLocalsInFunction1.ts │ │ ├── unusedLocalsInFunction2.ts │ │ ├── unusedLocalsInFunction3.ts │ │ ├── unusedLocalsInFunction4.ts │ │ ├── unusedLocalsInMethodFS1.ts │ │ ├── unusedLocalsInMethodFS2.ts │ │ ├── unusedLocalsinConstructorFS1.ts │ │ ├── unusedLocalsinConstructorFS2.ts │ │ ├── unusedMethodInClass1.ts │ │ ├── unusedMethodInClass2.ts │ │ ├── unusedMethodInClass3.ts │ │ ├── unusedMethodInClass4.ts │ │ ├── unusedMethodInClass5.ts │ │ ├── unusedMethodInClass6.ts │ │ ├── unusedParameterInConstructor1AddUnderscore.ts │ │ ├── unusedParameterInFunction1.ts │ │ ├── unusedParameterInFunction1AddUnderscore.ts │ │ ├── unusedParameterInFunction2.ts │ │ ├── unusedParameterInLambda1.ts │ │ ├── unusedParameterInLambda1AddUnderscore.ts │ │ ├── unusedParameterInLambda2.ts │ │ ├── unusedParameterInLambda3.ts │ │ ├── unusedTypeAliasInNamespace1.ts │ │ ├── unusedTypeParametersInClass1.ts │ │ ├── unusedTypeParametersInClass2.ts │ │ ├── unusedTypeParametersInClass3.ts │ │ ├── unusedTypeParametersInFunction1.ts │ │ ├── unusedTypeParametersInFunction2.ts │ │ ├── unusedTypeParametersInFunction3.ts │ │ ├── unusedTypeParametersInInterface1.ts │ │ ├── unusedTypeParametersInLambda1.ts │ │ ├── unusedTypeParametersInLambda2.ts │ │ ├── unusedTypeParametersInLambda3.ts │ │ ├── unusedTypeParametersInLambda4.ts │ │ ├── unusedTypeParametersInMethod1.ts │ │ ├── unusedTypeParametersInMethod2.ts │ │ ├── unusedTypeParametersInMethods1.ts │ │ ├── unusedTypeParametersWithTrivia1.ts │ │ ├── unusedTypeParametersWithTrivia2.ts │ │ ├── unusedTypeParametersWithTrivia3.ts │ │ ├── unusedTypeParametersWithTrivia4.ts │ │ ├── unusedVariableInBlocks.ts │ │ ├── unusedVariableInClass1.ts │ │ ├── unusedVariableInClass2.ts │ │ ├── unusedVariableInClass3.ts │ │ ├── unusedVariableInClass4.ts │ │ ├── unusedVariableInClass5.ts │ │ ├── unusedVariableInForLoop1FS.ts │ │ ├── unusedVariableInForLoop2FS.ts │ │ ├── unusedVariableInForLoop3FS.ts │ │ ├── unusedVariableInForLoop4FS.ts │ │ ├── unusedVariableInForLoop5FSAddUnderscore.ts │ │ ├── unusedVariableInForLoop6FS.ts │ │ ├── unusedVariableInForLoop6FSAddUnderscore.ts │ │ ├── unusedVariableInForLoop7FS.ts │ │ ├── unusedVariableInModule1.ts │ │ ├── unusedVariableInModule2.ts │ │ ├── unusedVariableInModule3.ts │ │ ├── unusedVariableInModule4.ts │ │ ├── unusedVariableInNamespace1.ts │ │ ├── unusedVariableInNamespace2.ts │ │ ├── unusedVariableInNamespace3.ts │ │ ├── unusedVariableWithTrivia1.ts │ │ ├── unusedVariableWithTrivia2.ts │ │ ├── updateSourceFile_jsdocSignature.ts │ │ ├── updateToClassStatics.ts │ │ ├── validBraceCompletionPosition.ts │ │ ├── verifySingleFileEmitOutput1.ts │ │ ├── whiteSpaceBeforeReturnTypeFormatting.ts │ │ ├── whiteSpaceTrimming.ts │ │ ├── whiteSpaceTrimming2.ts │ │ ├── whiteSpaceTrimming3.ts │ │ ├── whiteSpaceTrimming4.ts │ │ └── yieldKeywordFormatting.ts │ ├── project/ │ │ ├── baseline.json │ │ ├── baseline2.json │ │ ├── baseline3.json │ │ ├── cantFindTheModule.json │ │ ├── circularReferencing.json │ │ ├── circularReferencing2.json │ │ ├── declarationDir.json │ │ ├── declarationDir2.json │ │ ├── declarationDir3.json │ │ ├── declarationsCascadingImports.json │ │ ├── declarationsExportNamespace.json │ │ ├── declarationsGlobalImport.json │ │ ├── declarationsImportedInPrivate.json │ │ ├── declarationsImportedUseInFunction.json │ │ ├── declarationsIndirectImportShouldResultInError.json │ │ ├── declarationsMultipleTimesImport.json │ │ ├── declarationsMultipleTimesMultipleImport.json │ │ ├── declarationsSimpleImport.json │ │ ├── declareExportAdded.json │ │ ├── declareVariableCollision.json │ │ ├── defaultExcludeNodeModulesAndOutDir.json │ │ ├── defaultExcludeNodeModulesAndOutDirWithAllowJS.json │ │ ├── defaultExcludeNodeModulesAndRelativePathOutDir.json │ │ ├── defaultExcludeNodeModulesAndRelativePathOutDirWithAllowJS.json │ │ ├── defaultExcludeOnlyNodeModules.json │ │ ├── emitDecoratorMetadataCommonJSISolatedModules.json │ │ ├── emitDecoratorMetadataCommonJSISolatedModulesNoResolve.json │ │ ├── emitDecoratorMetadataSystemJS.json │ │ ├── emitDecoratorMetadataSystemJSISolatedModules.json │ │ ├── emitDecoratorMetadataSystemJSISolatedModulesNoResolve.json │ │ ├── extReferencingExtAndInt.json │ │ ├── intReferencingExtAndInt.json │ │ ├── invalidRootFile.json │ │ ├── jsFileCompilationDifferentNamesNotSpecified.json │ │ ├── jsFileCompilationDifferentNamesNotSpecifiedWithAllowJs.json │ │ ├── jsFileCompilationDifferentNamesSpecified.json │ │ ├── jsFileCompilationDifferentNamesSpecifiedWithAllowJs.json │ │ ├── jsFileCompilationSameNameDTsSpecified.json │ │ ├── jsFileCompilationSameNameDTsSpecifiedWithAllowJs.json │ │ ├── jsFileCompilationSameNameDtsNotSpecified.json │ │ ├── jsFileCompilationSameNameDtsNotSpecifiedWithAllowJs.json │ │ ├── jsFileCompilationSameNameFilesNotSpecified.json │ │ ├── jsFileCompilationSameNameFilesNotSpecifiedWithAllowJs.json │ │ ├── jsFileCompilationSameNameFilesSpecified.json │ │ ├── jsFileCompilationSameNameFilesSpecifiedWithAllowJs.json │ │ ├── mapRootAbsolutePathMixedSubfolderNoOutdir.json │ │ ├── mapRootAbsolutePathMixedSubfolderSpecifyOutputDirectory.json │ │ ├── mapRootAbsolutePathMixedSubfolderSpecifyOutputFile.json │ │ ├── mapRootAbsolutePathMixedSubfolderSpecifyOutputFileAndOutputDirectory.json │ │ ├── mapRootAbsolutePathModuleMultifolderNoOutdir.json │ │ ├── mapRootAbsolutePathModuleMultifolderSpecifyOutputDirectory.json │ │ ├── mapRootAbsolutePathModuleMultifolderSpecifyOutputFile.json │ │ ├── mapRootAbsolutePathModuleSimpleNoOutdir.json │ │ ├── mapRootAbsolutePathModuleSimpleSpecifyOutputDirectory.json │ │ ├── mapRootAbsolutePathModuleSimpleSpecifyOutputFile.json │ │ ├── mapRootAbsolutePathModuleSubfolderNoOutdir.json │ │ ├── mapRootAbsolutePathModuleSubfolderSpecifyOutputDirectory.json │ │ ├── mapRootAbsolutePathModuleSubfolderSpecifyOutputFile.json │ │ ├── mapRootAbsolutePathMultifolderNoOutdir.json │ │ ├── mapRootAbsolutePathMultifolderSpecifyOutputDirectory.json │ │ ├── mapRootAbsolutePathMultifolderSpecifyOutputFile.json │ │ ├── mapRootAbsolutePathSimpleNoOutdir.json │ │ ├── mapRootAbsolutePathSimpleSpecifyOutputDirectory.json │ │ ├── mapRootAbsolutePathSimpleSpecifyOutputFile.json │ │ ├── mapRootAbsolutePathSingleFileNoOutdir.json │ │ ├── mapRootAbsolutePathSingleFileSpecifyOutputDirectory.json │ │ ├── mapRootAbsolutePathSingleFileSpecifyOutputFile.json │ │ ├── mapRootAbsolutePathSubfolderNoOutdir.json │ │ ├── mapRootAbsolutePathSubfolderSpecifyOutputDirectory.json │ │ ├── mapRootAbsolutePathSubfolderSpecifyOutputFile.json │ │ ├── mapRootRelativePathMixedSubfolderNoOutdir.json │ │ ├── mapRootRelativePathMixedSubfolderSpecifyOutputDirectory.json │ │ ├── mapRootRelativePathMixedSubfolderSpecifyOutputFile.json │ │ ├── mapRootRelativePathMixedSubfolderSpecifyOutputFileAndOutputDirectory.json │ │ ├── mapRootRelativePathModuleMultifolderNoOutdir.json │ │ ├── mapRootRelativePathModuleMultifolderSpecifyOutputDirectory.json │ │ ├── mapRootRelativePathModuleMultifolderSpecifyOutputFile.json │ │ ├── mapRootRelativePathModuleSimpleNoOutdir.json │ │ ├── mapRootRelativePathModuleSimpleSpecifyOutputDirectory.json │ │ ├── mapRootRelativePathModuleSimpleSpecifyOutputFile.json │ │ ├── mapRootRelativePathModuleSubfolderNoOutdir.json │ │ ├── mapRootRelativePathModuleSubfolderSpecifyOutputDirectory.json │ │ ├── mapRootRelativePathModuleSubfolderSpecifyOutputFile.json │ │ ├── mapRootRelativePathMultifolderNoOutdir.json │ │ ├── mapRootRelativePathMultifolderSpecifyOutputDirectory.json │ │ ├── mapRootRelativePathMultifolderSpecifyOutputFile.json │ │ ├── mapRootRelativePathSimpleNoOutdir.json │ │ ├── mapRootRelativePathSimpleSpecifyOutputDirectory.json │ │ ├── mapRootRelativePathSimpleSpecifyOutputFile.json │ │ ├── mapRootRelativePathSingleFileNoOutdir.json │ │ ├── mapRootRelativePathSingleFileSpecifyOutputDirectory.json │ │ ├── mapRootRelativePathSingleFileSpecifyOutputFile.json │ │ ├── mapRootRelativePathSubfolderNoOutdir.json │ │ ├── mapRootRelativePathSubfolderSpecifyOutputDirectory.json │ │ ├── mapRootRelativePathSubfolderSpecifyOutputFile.json │ │ ├── mapRootSourceRootWithNoSourceMapOption.json │ │ ├── mapRootWithNoSourceMapOption.json │ │ ├── maprootUrlMixedSubfolderNoOutdir.json │ │ ├── maprootUrlMixedSubfolderSpecifyOutputDirectory.json │ │ ├── maprootUrlMixedSubfolderSpecifyOutputFile.json │ │ ├── maprootUrlMixedSubfolderSpecifyOutputFileAndOutputDirectory.json │ │ ├── maprootUrlModuleMultifolderNoOutdir.json │ │ ├── maprootUrlModuleMultifolderSpecifyOutputDirectory.json │ │ ├── maprootUrlModuleMultifolderSpecifyOutputFile.json │ │ ├── maprootUrlModuleSimpleNoOutdir.json │ │ ├── maprootUrlModuleSimpleSpecifyOutputDirectory.json │ │ ├── maprootUrlModuleSimpleSpecifyOutputFile.json │ │ ├── maprootUrlModuleSubfolderNoOutdir.json │ │ ├── maprootUrlModuleSubfolderSpecifyOutputDirectory.json │ │ ├── maprootUrlModuleSubfolderSpecifyOutputFile.json │ │ ├── maprootUrlMultifolderNoOutdir.json │ │ ├── maprootUrlMultifolderSpecifyOutputDirectory.json │ │ ├── maprootUrlMultifolderSpecifyOutputFile.json │ │ ├── maprootUrlSimpleNoOutdir.json │ │ ├── maprootUrlSimpleSpecifyOutputDirectory.json │ │ ├── maprootUrlSimpleSpecifyOutputFile.json │ │ ├── maprootUrlSingleFileNoOutdir.json │ │ ├── maprootUrlSingleFileSpecifyOutputDirectory.json │ │ ├── maprootUrlSingleFileSpecifyOutputFile.json │ │ ├── maprootUrlSubfolderNoOutdir.json │ │ ├── maprootUrlSubfolderSpecifyOutputDirectory.json │ │ ├── maprootUrlSubfolderSpecifyOutputFile.json │ │ ├── maprootUrlsourcerootUrlMixedSubfolderNoOutdir.json │ │ ├── maprootUrlsourcerootUrlMixedSubfolderSpecifyOutputDirectory.json │ │ ├── maprootUrlsourcerootUrlMixedSubfolderSpecifyOutputFile.json │ │ ├── maprootUrlsourcerootUrlMixedSubfolderSpecifyOutputFileAndOutputDirectory.json │ │ ├── maprootUrlsourcerootUrlModuleMultifolderNoOutdir.json │ │ ├── maprootUrlsourcerootUrlModuleMultifolderSpecifyOutputDirectory.json │ │ ├── maprootUrlsourcerootUrlModuleMultifolderSpecifyOutputFile.json │ │ ├── maprootUrlsourcerootUrlModuleSimpleNoOutdir.json │ │ ├── maprootUrlsourcerootUrlModuleSimpleSpecifyOutputDirectory.json │ │ ├── maprootUrlsourcerootUrlModuleSimpleSpecifyOutputFile.json │ │ ├── maprootUrlsourcerootUrlModuleSubfolderNoOutdir.json │ │ ├── maprootUrlsourcerootUrlModuleSubfolderSpecifyOutputDirectory.json │ │ ├── maprootUrlsourcerootUrlModuleSubfolderSpecifyOutputFile.json │ │ ├── maprootUrlsourcerootUrlMultifolderNoOutdir.json │ │ ├── maprootUrlsourcerootUrlMultifolderSpecifyOutputDirectory.json │ │ ├── maprootUrlsourcerootUrlMultifolderSpecifyOutputFile.json │ │ ├── maprootUrlsourcerootUrlSimpleNoOutdir.json │ │ ├── maprootUrlsourcerootUrlSimpleSpecifyOutputDirectory.json │ │ ├── maprootUrlsourcerootUrlSimpleSpecifyOutputFile.json │ │ ├── maprootUrlsourcerootUrlSingleFileNoOutdir.json │ │ ├── maprootUrlsourcerootUrlSingleFileSpecifyOutputDirectory.json │ │ ├── maprootUrlsourcerootUrlSingleFileSpecifyOutputFile.json │ │ ├── maprootUrlsourcerootUrlSubfolderNoOutdir.json │ │ ├── maprootUrlsourcerootUrlSubfolderSpecifyOutputDirectory.json │ │ ├── maprootUrlsourcerootUrlSubfolderSpecifyOutputFile.json │ │ ├── moduleIdentifier.json │ │ ├── moduleMergingOrdering1.json │ │ ├── moduleMergingOrdering2.json │ │ ├── multipleLevelsModuleResolution.json │ │ ├── nestedDeclare.json │ │ ├── nestedLocalModuleSimpleCase.json │ │ ├── nestedLocalModuleWithRecursiveTypecheck.json │ │ ├── nestedReferenceTags.json │ │ ├── noProjectOptionAndInputFiles.json │ │ ├── nodeModulesImportHigher.json │ │ ├── nodeModulesMaxDepthExceeded.json │ │ ├── nodeModulesMaxDepthIncreased.json │ │ ├── nonRelative.json │ │ ├── outMixedSubfolderNoOutdir.json │ │ ├── outMixedSubfolderSpecifyOutputDirectory.json │ │ ├── outMixedSubfolderSpecifyOutputFile.json │ │ ├── outMixedSubfolderSpecifyOutputFileAndOutputDirectory.json │ │ ├── outModuleMultifolderNoOutdir.json │ │ ├── outModuleMultifolderSpecifyOutputDirectory.json │ │ ├── outModuleMultifolderSpecifyOutputFile.json │ │ ├── outModuleSimpleNoOutdir.json │ │ ├── outModuleSimpleSpecifyOutputDirectory.json │ │ ├── outModuleSimpleSpecifyOutputFile.json │ │ ├── outModuleSubfolderNoOutdir.json │ │ ├── outModuleSubfolderSpecifyOutputDirectory.json │ │ ├── outModuleSubfolderSpecifyOutputFile.json │ │ ├── outMultifolderNoOutdir.json │ │ ├── outMultifolderSpecifyOutputDirectory.json │ │ ├── outMultifolderSpecifyOutputFile.json │ │ ├── outSimpleNoOutdir.json │ │ ├── outSimpleSpecifyOutputDirectory.json │ │ ├── outSimpleSpecifyOutputFile.json │ │ ├── outSingleFileNoOutdir.json │ │ ├── outSingleFileSpecifyOutputDirectory.json │ │ ├── outSingleFileSpecifyOutputFile.json │ │ ├── outSubfolderNoOutdir.json │ │ ├── outSubfolderSpecifyOutputDirectory.json │ │ ├── outSubfolderSpecifyOutputFile.json │ │ ├── privacyCheckOnImportedModuleDeclarationsInsideModule.json │ │ ├── privacyCheckOnImportedModuleDeclarationsInsideNonExportedModule.json │ │ ├── privacyCheckOnImportedModuleImportStatementInParentModule.json │ │ ├── privacyCheckOnImportedModuleSimpleReference.json │ │ ├── privacyCheckOnIndirectTypeFromTheExternalType.json │ │ ├── projectOptionTest.json │ │ ├── prologueEmit.json │ │ ├── quotesInFileAndDirectoryNames.json │ │ ├── referencePathStatic.json │ │ ├── referenceResolutionRelativePaths.json │ │ ├── referenceResolutionRelativePathsFromRootDirectory.json │ │ ├── referenceResolutionRelativePathsNoResolve.json │ │ ├── referenceResolutionRelativePathsRelativeToRootDirectory.json │ │ ├── referenceResolutionSameFileTwice.json │ │ ├── referenceResolutionSameFileTwiceNoResolve.json │ │ ├── relativeGlobal.json │ │ ├── relativeGlobalRef.json │ │ ├── relativeNested.json │ │ ├── relativeNestedRef.json │ │ ├── relativePaths.json │ │ ├── rootDirectory.json │ │ ├── rootDirectoryErrors.json │ │ ├── rootDirectoryWithSourceRoot.json │ │ ├── rootDirectoryWithoutOutDir.json │ │ ├── sourceRootAbsolutePathMixedSubfolderNoOutdir.json │ │ ├── sourceRootAbsolutePathMixedSubfolderSpecifyOutputDirectory.json │ │ ├── sourceRootAbsolutePathMixedSubfolderSpecifyOutputFile.json │ │ ├── sourceRootAbsolutePathMixedSubfolderSpecifyOutputFileAndOutputDirectory.json │ │ ├── sourceRootAbsolutePathModuleMultifolderNoOutdir.json │ │ ├── sourceRootAbsolutePathModuleMultifolderSpecifyOutputDirectory.json │ │ ├── sourceRootAbsolutePathModuleMultifolderSpecifyOutputFile.json │ │ ├── sourceRootAbsolutePathModuleSimpleNoOutdir.json │ │ ├── sourceRootAbsolutePathModuleSimpleSpecifyOutputDirectory.json │ │ ├── sourceRootAbsolutePathModuleSimpleSpecifyOutputFile.json │ │ ├── sourceRootAbsolutePathModuleSubfolderNoOutdir.json │ │ ├── sourceRootAbsolutePathModuleSubfolderSpecifyOutputDirectory.json │ │ ├── sourceRootAbsolutePathModuleSubfolderSpecifyOutputFile.json │ │ ├── sourceRootAbsolutePathMultifolderNoOutdir.json │ │ ├── sourceRootAbsolutePathMultifolderSpecifyOutputDirectory.json │ │ ├── sourceRootAbsolutePathMultifolderSpecifyOutputFile.json │ │ ├── sourceRootAbsolutePathSimpleNoOutdir.json │ │ ├── sourceRootAbsolutePathSimpleSpecifyOutputDirectory.json │ │ ├── sourceRootAbsolutePathSimpleSpecifyOutputFile.json │ │ ├── sourceRootAbsolutePathSingleFileNoOutdir.json │ │ ├── sourceRootAbsolutePathSingleFileSpecifyOutputDirectory.json │ │ ├── sourceRootAbsolutePathSingleFileSpecifyOutputFile.json │ │ ├── sourceRootAbsolutePathSubfolderNoOutdir.json │ │ ├── sourceRootAbsolutePathSubfolderSpecifyOutputDirectory.json │ │ ├── sourceRootAbsolutePathSubfolderSpecifyOutputFile.json │ │ ├── sourceRootRelativePathMixedSubfolderNoOutdir.json │ │ ├── sourceRootRelativePathMixedSubfolderSpecifyOutputDirectory.json │ │ ├── sourceRootRelativePathMixedSubfolderSpecifyOutputFile.json │ │ ├── sourceRootRelativePathMixedSubfolderSpecifyOutputFileAndOutputDirectory.json │ │ ├── sourceRootRelativePathModuleMultifolderNoOutdir.json │ │ ├── sourceRootRelativePathModuleMultifolderSpecifyOutputDirectory.json │ │ ├── sourceRootRelativePathModuleMultifolderSpecifyOutputFile.json │ │ ├── sourceRootRelativePathModuleSimpleNoOutdir.json │ │ ├── sourceRootRelativePathModuleSimpleSpecifyOutputDirectory.json │ │ ├── sourceRootRelativePathModuleSimpleSpecifyOutputFile.json │ │ ├── sourceRootRelativePathModuleSubfolderNoOutdir.json │ │ ├── sourceRootRelativePathModuleSubfolderSpecifyOutputDirectory.json │ │ ├── sourceRootRelativePathModuleSubfolderSpecifyOutputFile.json │ │ ├── sourceRootRelativePathMultifolderNoOutdir.json │ │ ├── sourceRootRelativePathMultifolderSpecifyOutputDirectory.json │ │ ├── sourceRootRelativePathMultifolderSpecifyOutputFile.json │ │ ├── sourceRootRelativePathSimpleNoOutdir.json │ │ ├── sourceRootRelativePathSimpleSpecifyOutputDirectory.json │ │ ├── sourceRootRelativePathSimpleSpecifyOutputFile.json │ │ ├── sourceRootRelativePathSingleFileNoOutdir.json │ │ ├── sourceRootRelativePathSingleFileSpecifyOutputDirectory.json │ │ ├── sourceRootRelativePathSingleFileSpecifyOutputFile.json │ │ ├── sourceRootRelativePathSubfolderNoOutdir.json │ │ ├── sourceRootRelativePathSubfolderSpecifyOutputDirectory.json │ │ ├── sourceRootRelativePathSubfolderSpecifyOutputFile.json │ │ ├── sourceRootWithNoSourceMapOption.json │ │ ├── sourcemapMixedSubfolderNoOutdir.json │ │ ├── sourcemapMixedSubfolderSpecifyOutputDirectory.json │ │ ├── sourcemapMixedSubfolderSpecifyOutputFile.json │ │ ├── sourcemapMixedSubfolderSpecifyOutputFileAndOutputDirectory.json │ │ ├── sourcemapModuleMultifolderNoOutdir.json │ │ ├── sourcemapModuleMultifolderSpecifyOutputDirectory.json │ │ ├── sourcemapModuleMultifolderSpecifyOutputFile.json │ │ ├── sourcemapModuleSimpleNoOutdir.json │ │ ├── sourcemapModuleSimpleSpecifyOutputDirectory.json │ │ ├── sourcemapModuleSimpleSpecifyOutputFile.json │ │ ├── sourcemapModuleSubfolderNoOutdir.json │ │ ├── sourcemapModuleSubfolderSpecifyOutputDirectory.json │ │ ├── sourcemapModuleSubfolderSpecifyOutputFile.json │ │ ├── sourcemapMultifolderNoOutdir.json │ │ ├── sourcemapMultifolderSpecifyOutputDirectory.json │ │ ├── sourcemapMultifolderSpecifyOutputFile.json │ │ ├── sourcemapSimpleNoOutdir.json │ │ ├── sourcemapSimpleSpecifyOutputDirectory.json │ │ ├── sourcemapSimpleSpecifyOutputFile.json │ │ ├── sourcemapSingleFileNoOutdir.json │ │ ├── sourcemapSingleFileSpecifyOutputDirectory.json │ │ ├── sourcemapSingleFileSpecifyOutputFile.json │ │ ├── sourcemapSubfolderNoOutdir.json │ │ ├── sourcemapSubfolderSpecifyOutputDirectory.json │ │ ├── sourcemapSubfolderSpecifyOutputFile.json │ │ ├── sourcerootUrlMixedSubfolderNoOutdir.json │ │ ├── sourcerootUrlMixedSubfolderSpecifyOutputDirectory.json │ │ ├── sourcerootUrlMixedSubfolderSpecifyOutputFile.json │ │ ├── sourcerootUrlMixedSubfolderSpecifyOutputFileAndOutputDirectory.json │ │ ├── sourcerootUrlModuleMultifolderNoOutdir.json │ │ ├── sourcerootUrlModuleMultifolderSpecifyOutputDirectory.json │ │ ├── sourcerootUrlModuleMultifolderSpecifyOutputFile.json │ │ ├── sourcerootUrlModuleSimpleNoOutdir.json │ │ ├── sourcerootUrlModuleSimpleSpecifyOutputDirectory.json │ │ ├── sourcerootUrlModuleSimpleSpecifyOutputFile.json │ │ ├── sourcerootUrlModuleSubfolderNoOutdir.json │ │ ├── sourcerootUrlModuleSubfolderSpecifyOutputDirectory.json │ │ ├── sourcerootUrlModuleSubfolderSpecifyOutputFile.json │ │ ├── sourcerootUrlMultifolderNoOutdir.json │ │ ├── sourcerootUrlMultifolderSpecifyOutputDirectory.json │ │ ├── sourcerootUrlMultifolderSpecifyOutputFile.json │ │ ├── sourcerootUrlSimpleNoOutdir.json │ │ ├── sourcerootUrlSimpleSpecifyOutputDirectory.json │ │ ├── sourcerootUrlSimpleSpecifyOutputFile.json │ │ ├── sourcerootUrlSingleFileNoOutdir.json │ │ ├── sourcerootUrlSingleFileSpecifyOutputDirectory.json │ │ ├── sourcerootUrlSingleFileSpecifyOutputFile.json │ │ ├── sourcerootUrlSubfolderNoOutdir.json │ │ ├── sourcerootUrlSubfolderSpecifyOutputDirectory.json │ │ ├── sourcerootUrlSubfolderSpecifyOutputFile.json │ │ ├── specifyExcludeUsingRelativepath.json │ │ ├── specifyExcludeUsingRelativepathWithAllowJS.json │ │ ├── specifyExcludeWithOutUsingRelativePath.json │ │ ├── specifyExcludeWithOutUsingRelativePathWithAllowJS.json │ │ ├── visibilityOfTypeUsedAcrossModules.json │ │ └── visibilityOfTypeUsedAcrossModules2.json │ ├── projects/ │ │ ├── CircularReferencing/ │ │ │ ├── consume.ts │ │ │ └── decl.ts │ │ ├── CircularReferencing-2/ │ │ │ ├── a.ts │ │ │ ├── b.ts │ │ │ └── c.ts │ │ ├── DeclareExportAdded/ │ │ │ ├── consumer.ts │ │ │ └── ref.d.ts │ │ ├── InvalidReferences/ │ │ │ └── main.ts │ │ ├── ModuleIdentifier/ │ │ │ ├── consume.ts │ │ │ └── decl.ts │ │ ├── MultipleLevels/ │ │ │ ├── A/ │ │ │ │ ├── A.ts │ │ │ │ └── AA/ │ │ │ │ └── AA.ts │ │ │ ├── B/ │ │ │ │ └── B.ts │ │ │ ├── b.ts │ │ │ └── root.ts │ │ ├── NestedDeclare/ │ │ │ └── consume.ts │ │ ├── NestedLocalModule-SimpleCase/ │ │ │ ├── test1.ts │ │ │ └── test2.ts │ │ ├── NestedLocalModule-WithRecursiveTypecheck/ │ │ │ ├── test1.ts │ │ │ └── test2.ts │ │ ├── NoModule/ │ │ │ ├── decl.ts │ │ │ └── foo/ │ │ │ └── bar.ts │ │ ├── NodeModulesSearch/ │ │ │ ├── importHigher/ │ │ │ │ ├── node_modules/ │ │ │ │ │ ├── m1/ │ │ │ │ │ │ └── index.js │ │ │ │ │ └── m2/ │ │ │ │ │ ├── entry.js │ │ │ │ │ ├── node_modules/ │ │ │ │ │ │ └── m3/ │ │ │ │ │ │ └── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── root.ts │ │ │ │ └── tsconfig.json │ │ │ ├── maxDepthExceeded/ │ │ │ │ ├── node_modules/ │ │ │ │ │ ├── m1/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── relative.js │ │ │ │ │ └── m2/ │ │ │ │ │ ├── entry.js │ │ │ │ │ ├── node_modules/ │ │ │ │ │ │ └── m3/ │ │ │ │ │ │ └── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── root.ts │ │ │ │ └── tsconfig.json │ │ │ └── maxDepthIncreased/ │ │ │ ├── node_modules/ │ │ │ │ ├── @types/ │ │ │ │ │ └── m4/ │ │ │ │ │ ├── entry.d.ts │ │ │ │ │ └── package.json │ │ │ │ ├── m1/ │ │ │ │ │ └── index.js │ │ │ │ ├── m2/ │ │ │ │ │ ├── entry.js │ │ │ │ │ ├── node_modules/ │ │ │ │ │ │ └── m3/ │ │ │ │ │ │ └── index.js │ │ │ │ │ └── package.json │ │ │ │ └── m4/ │ │ │ │ ├── entry.js │ │ │ │ └── package.json │ │ │ ├── root.ts │ │ │ └── tsconfig.json │ │ ├── PrologueEmit/ │ │ │ ├── __extends.ts │ │ │ └── globalThisCapture.ts │ │ ├── Quote'InName/ │ │ │ ├── li'b/ │ │ │ │ └── class'A.ts │ │ │ └── m'ain.ts │ │ ├── ReferenceResolution/ │ │ │ ├── bar/ │ │ │ │ └── bar.ts │ │ │ ├── src/ │ │ │ │ └── ts/ │ │ │ │ └── foo/ │ │ │ │ └── foo.ts │ │ │ └── test.ts │ │ ├── RelativePaths/ │ │ │ ├── A/ │ │ │ │ ├── a.ts │ │ │ │ └── b.ts │ │ │ ├── app.ts │ │ │ └── b.ts │ │ ├── VisibilityOfCrosssModuleTypeUsage/ │ │ │ ├── commands.ts │ │ │ ├── fs.ts │ │ │ └── server.ts │ │ ├── baseline/ │ │ │ ├── decl.ts │ │ │ ├── dont_emit.ts │ │ │ ├── emit.ts │ │ │ └── nestedModule.ts │ │ ├── declarationDir/ │ │ │ ├── a.ts │ │ │ └── subfolder/ │ │ │ ├── b.ts │ │ │ └── c.ts │ │ ├── declarations_CascadingImports/ │ │ │ ├── m4.ts │ │ │ └── useModule.ts │ │ ├── declarations_ExportNamespace/ │ │ │ ├── decl.d.ts │ │ │ └── useModule.ts │ │ ├── declarations_GlobalImport/ │ │ │ ├── glo_m4.d.ts │ │ │ ├── glo_m4.ts │ │ │ ├── useModule.d.ts │ │ │ └── useModule.ts │ │ ├── declarations_ImportedInPrivate/ │ │ │ ├── private_m4.ts │ │ │ └── useModule.ts │ │ ├── declarations_ImportedUseInFunction/ │ │ │ ├── fncOnly_m4.ts │ │ │ └── useModule.ts │ │ ├── declarations_IndirectImport/ │ │ │ ├── m4.ts │ │ │ ├── m5.ts │ │ │ └── useModule.ts │ │ ├── declarations_MultipleTimesImport/ │ │ │ ├── m4.ts │ │ │ └── useModule.ts │ │ ├── declarations_MultipleTimesMultipleImport/ │ │ │ ├── m4.ts │ │ │ ├── m5.ts │ │ │ └── useModule.ts │ │ ├── declarations_SimpleImport/ │ │ │ ├── m4.ts │ │ │ └── useModule.ts │ │ ├── declareVariableCollision/ │ │ │ ├── decl.d.ts │ │ │ ├── in1.d.ts │ │ │ └── in2.d.ts │ │ ├── decoratorMetadata/ │ │ │ ├── emitDecoratorMetadataCommonJSIsolatedModule/ │ │ │ │ ├── main.ts │ │ │ │ └── tsconfig.json │ │ │ ├── emitDecoratorMetadataCommonJSIsolatedModuleNoResolve/ │ │ │ │ ├── main.ts │ │ │ │ └── tsconfig.json │ │ │ ├── emitDecoratorMetadataSystemJS/ │ │ │ │ ├── main.ts │ │ │ │ └── tsconfig.json │ │ │ ├── emitDecoratorMetadataSystemJSIsolatedModule/ │ │ │ │ ├── main.ts │ │ │ │ └── tsconfig.json │ │ │ └── emitDecoratorMetadataSystemJSIsolatedModuleNoResolve/ │ │ │ ├── main.ts │ │ │ └── tsconfig.json │ │ ├── ext-int-ext/ │ │ │ ├── external.ts │ │ │ ├── external2.ts │ │ │ ├── internal.ts │ │ │ └── internal2.ts │ │ ├── jsFileCompilation/ │ │ │ ├── DifferentNamesNotSpecified/ │ │ │ │ ├── a.ts │ │ │ │ └── tsconfig.json │ │ │ ├── DifferentNamesNotSpecifiedWithAllowJs/ │ │ │ │ ├── a.ts │ │ │ │ └── tsconfig.json │ │ │ ├── DifferentNamesSpecified/ │ │ │ │ ├── a.ts │ │ │ │ └── tsconfig.json │ │ │ ├── DifferentNamesSpecifiedWithAllowJs/ │ │ │ │ ├── a.ts │ │ │ │ └── tsconfig.json │ │ │ ├── SameNameDTsNotSpecified/ │ │ │ │ ├── a.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── SameNameDTsNotSpecifiedWithAllowJs/ │ │ │ │ ├── a.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── SameNameDTsSpecified/ │ │ │ │ ├── a.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── SameNameDTsSpecifiedWithAllowJs/ │ │ │ │ ├── a.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── SameNameFilesNotSpecified/ │ │ │ │ ├── a.ts │ │ │ │ └── tsconfig.json │ │ │ ├── SameNameFilesNotSpecifiedWithAllowJs/ │ │ │ │ ├── a.ts │ │ │ │ └── tsconfig.json │ │ │ ├── SameNameTsSpecified/ │ │ │ │ ├── a.ts │ │ │ │ └── tsconfig.json │ │ │ └── SameNameTsSpecifiedWithAllowJs/ │ │ │ ├── a.ts │ │ │ └── tsconfig.json │ │ ├── moduleMergeOrder/ │ │ │ ├── a.ts │ │ │ └── b.ts │ │ ├── non-relative/ │ │ │ ├── consume.ts │ │ │ ├── decl.ts │ │ │ └── lib/ │ │ │ ├── bar/ │ │ │ │ └── a.ts │ │ │ └── foo/ │ │ │ ├── a.ts │ │ │ └── b.ts │ │ ├── outputdir_mixed_subfolder/ │ │ │ ├── ref/ │ │ │ │ ├── m1.ts │ │ │ │ └── m2.ts │ │ │ └── test.ts │ │ ├── outputdir_module_multifolder/ │ │ │ ├── ref/ │ │ │ │ └── m1.ts │ │ │ └── test.ts │ │ ├── outputdir_module_multifolder_ref/ │ │ │ └── m2.ts │ │ ├── outputdir_module_simple/ │ │ │ ├── m1.ts │ │ │ └── test.ts │ │ ├── outputdir_module_subfolder/ │ │ │ ├── ref/ │ │ │ │ └── m1.ts │ │ │ └── test.ts │ │ ├── outputdir_multifolder/ │ │ │ ├── ref/ │ │ │ │ └── m1.ts │ │ │ └── test.ts │ │ ├── outputdir_multifolder_ref/ │ │ │ └── m2.ts │ │ ├── outputdir_simple/ │ │ │ ├── m1.ts │ │ │ └── test.ts │ │ ├── outputdir_singleFile/ │ │ │ └── test.ts │ │ ├── outputdir_subfolder/ │ │ │ ├── ref/ │ │ │ │ └── m1.ts │ │ │ └── test.ts │ │ ├── privacyCheck-ImportInParent/ │ │ │ ├── mExported.ts │ │ │ ├── mNonExported.ts │ │ │ └── test.ts │ │ ├── privacyCheck-IndirectReference/ │ │ │ ├── externalModule.ts │ │ │ ├── indirectExternalModule.ts │ │ │ └── test.ts │ │ ├── privacyCheck-InsideModule/ │ │ │ ├── mExported.ts │ │ │ ├── mNonExported.ts │ │ │ ├── test.ts │ │ │ └── testGlo.ts │ │ ├── privacyCheck-SimpleReference/ │ │ │ ├── mExported.ts │ │ │ ├── mNonExported.ts │ │ │ └── test.ts │ │ ├── projectOption/ │ │ │ ├── DefaultExcludeNodeModulesAndOutDir/ │ │ │ │ ├── OutDir/ │ │ │ │ │ └── a.d.ts │ │ │ │ ├── a.ts │ │ │ │ ├── node_modules/ │ │ │ │ │ └── myLib/ │ │ │ │ │ └── myLib.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── DefaultExcludeNodeModulesAndOutDirWithAllowJS/ │ │ │ │ ├── OutDir/ │ │ │ │ │ └── a.d.ts │ │ │ │ ├── a.ts │ │ │ │ ├── node_modules/ │ │ │ │ │ └── myLib/ │ │ │ │ │ └── myLib.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── DefaultExcludeNodeModulesAndRelativePathOutDir/ │ │ │ │ ├── OutDir/ │ │ │ │ │ └── a.d.ts │ │ │ │ ├── a.ts │ │ │ │ ├── node_modules/ │ │ │ │ │ └── myLib/ │ │ │ │ │ └── myLib.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── DefaultExcludeNodeModulesAndRelativePathOutDirWithAllowJS/ │ │ │ │ ├── OutDir/ │ │ │ │ │ └── a.d.ts │ │ │ │ ├── a.ts │ │ │ │ ├── node_modules/ │ │ │ │ │ └── myLib/ │ │ │ │ │ └── myLib.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── DefaultExcludeOnlyNodeModules/ │ │ │ │ ├── a.ts │ │ │ │ ├── node_modules/ │ │ │ │ │ └── myLib/ │ │ │ │ │ └── myLib.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── SpecifyExcludeUsingRelativePath/ │ │ │ │ ├── OutDir/ │ │ │ │ │ └── a.d.ts │ │ │ │ ├── a.ts │ │ │ │ ├── node_modules/ │ │ │ │ │ └── myLib/ │ │ │ │ │ └── myLib.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── SpecifyExcludeUsingRelativePathWithAllowJS/ │ │ │ │ ├── OutDir/ │ │ │ │ │ └── a.d.ts │ │ │ │ ├── a.ts │ │ │ │ ├── node_modules/ │ │ │ │ │ └── myLib/ │ │ │ │ │ └── myLib.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── SpecifyExcludeWithOutUsingRelativePath/ │ │ │ │ ├── OutDir/ │ │ │ │ │ └── a.d.ts │ │ │ │ ├── a.ts │ │ │ │ ├── node_modules/ │ │ │ │ │ └── myLib/ │ │ │ │ │ └── myLib.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── SpecifyExcludeWithOutUsingRelativePathWithAllowJS/ │ │ │ │ ├── OutDir/ │ │ │ │ │ └── a.d.ts │ │ │ │ ├── a.ts │ │ │ │ ├── node_modules/ │ │ │ │ │ └── myLib/ │ │ │ │ │ └── myLib.d.ts │ │ │ │ └── tsconfig.json │ │ │ └── Test/ │ │ │ ├── a.ts │ │ │ ├── b.ts │ │ │ └── tsconfig.json │ │ ├── reference-1/ │ │ │ ├── lib/ │ │ │ │ ├── classA.ts │ │ │ │ └── classB.ts │ │ │ └── main.ts │ │ ├── reference-path-static/ │ │ │ ├── lib.ts │ │ │ └── test.ts │ │ ├── relative-global/ │ │ │ ├── consume.ts │ │ │ └── decl.ts │ │ ├── relative-global-ref/ │ │ │ ├── consume.ts │ │ │ └── decl.d.ts │ │ ├── relative-nested/ │ │ │ ├── app.ts │ │ │ ├── decl.ts │ │ │ └── main/ │ │ │ └── consume.ts │ │ ├── relative-nested-ref/ │ │ │ ├── decl.d.ts │ │ │ └── main/ │ │ │ └── consume.ts │ │ └── rootDirectory/ │ │ └── FolderA/ │ │ └── FolderB/ │ │ ├── FolderC/ │ │ │ └── fileC.ts │ │ └── fileB.ts │ ├── transpile/ │ │ ├── declarationAsyncAndGeneratorFunctions.ts │ │ ├── declarationBasicSyntax.ts │ │ ├── declarationComputedPropertyNames.ts │ │ ├── declarationCrossFileInferences.ts │ │ ├── declarationEmitPartialNodeReuse.ts │ │ ├── declarationFunctionDeclarations.ts │ │ ├── declarationLinkedAliases.ts │ │ ├── declarationLocalAliasOfImportAlias.ts │ │ ├── declarationNotInScopeTypes.ts │ │ ├── declarationPartialNodeReuseTypeOf.ts │ │ ├── declarationRestParameters.ts │ │ ├── declarationSelfReferentialConstraint.ts │ │ ├── declarationSingleFileHasErrors.ts │ │ ├── declarationSingleFileHasErrorsReported.ts │ │ ├── declarationTypeParameterConstraint.ts │ │ ├── declarationTypeWithComputedName.ts │ │ ├── declarationUnresolvedGlobalReferencesNoErrors.ts │ │ ├── declarationUnresolvedTypeReference.ts │ │ ├── declarationUnresolvedTypeReference2.ts │ │ ├── declarationsSimple.ts │ │ ├── jsWithInlineSourceMapBasic.ts │ │ └── jsWithSourceMapBasic.ts │ └── unittests/ │ └── matchFiles.ts └── lib/ ├── react.d.ts ├── react16.d.ts └── react18/ ├── global.d.ts └── react18.d.ts