From ac3610376469735b6b67e7c119f6e436d332d674 Mon Sep 17 00:00:00 2001 From: hi-ogawa <4232207+hi-ogawa@users.noreply.github.com> Date: Fri, 14 Mar 2025 09:26:08 +0000 Subject: [PATCH] test(ast/estree): add typescript-eslint estree coverage (#9774) Part of https://github.com/oxc-project/oxc/issues/9705 Requires https://github.com/oxc-project/acorn-test262/pull/6 Current result `Positive Passed: 32/10725 (0.30%)` :cry: What I observed from a few diffs I looked at: - typescript-eslint parser's field ordering is not a super set of acorn (maybe keys are ordered alphabetically) - example: `ClassDeclaration` - typescript-eslint https://ast-explorer.dev/#eNolyDEKgDAMBdCrlD/rBTyIOGQJJUOlpqUpgpTe3YjrG8jYcPLNFluqHQuqQ3+q/LCK5aSfR/eY2SwcYUxSp+I0SEMgSLx4l2apKGFzyNzFOoF0Yr7njiIU - abstract, body, declare, decorators, id, implements, superClass, superTypeArguments, typeParameters, - acorn https://ast-explorer.dev/#eNolyTEKwzAMRuGrmH/OCXKOUjpoEaqGFMcyllMIxnePQrbH9wYyVvz4zy5tqx0LagCLtRIt0ZLZPX3SmHSTBQ0qKRFUdn5r880KYQ3I3NU7YXm+29FEX2fVZ+/2PXI0lYl5ATuZJ1U= - id, superClass, body - typescript-eslint parser uses `undefined` instead of `null` for optional ts-specific field - example: `ClassDeclaration.typeParameters` - https://ast-explorer.dev/#eNolyDEKgDAMBdCrlD/rBTyIOGQJJUOlpqUpgpTe3YjrG8jYcPLNFluqHQuqQ3+q/LCK5aSfR/eY2SwcYUxSp+I0SEMgSLx4l2apKGFzyNzFOoF0Yr7njiIU - spec https://github.com/typescript-eslint/typescript-eslint/blob/2224f12ff05b59c5a459291fe93fc8099221089d/packages/ast-spec/src/base/ClassBase.ts#L62 --- .github/actions/clone-submodules/action.yml | 2 +- justfile | 2 +- .../coverage/snapshots/estree_acorn_jsx.snap | 2 +- .../coverage/snapshots/estree_typescript.snap | 11495 ++++++++++++++++ tasks/coverage/src/lib.rs | 3 +- tasks/coverage/src/tools/estree.rs | 102 + 6 files changed, 11602 insertions(+), 4 deletions(-) create mode 100644 tasks/coverage/snapshots/estree_typescript.snap diff --git a/.github/actions/clone-submodules/action.yml b/.github/actions/clone-submodules/action.yml index 0aade95e7963d..d85d96a1b2f1e 100644 --- a/.github/actions/clone-submodules/action.yml +++ b/.github/actions/clone-submodules/action.yml @@ -38,4 +38,4 @@ runs: show-progress: false repository: oxc-project/acorn-test262 path: tasks/coverage/acorn-test262 - ref: b6d96c073429b819c86f785754c249b7870a7737 # Latest main at 13/3/25 + ref: ad6f20525e19e8fb66c35f3513ed0fa7ac06fbd8 # Latest main at 14/3/25 diff --git a/justfile b/justfile index 25af469cb5cc3..66dddc2749c2f 100755 --- a/justfile +++ b/justfile @@ -40,7 +40,7 @@ submodules: just clone-submodule tasks/coverage/babel https://github.com/babel/babel.git 578ac4df1c8a05f01350553950dbfbbeaac013c2 just clone-submodule tasks/coverage/typescript https://github.com/microsoft/TypeScript.git 15392346d05045742e653eab5c87538ff2a3c863 just clone-submodule tasks/prettier_conformance/prettier https://github.com/prettier/prettier.git 7584432401a47a26943dd7a9ca9a8e032ead7285 - just clone-submodule tasks/coverage/acorn-test262 https://github.com/oxc-project/acorn-test262 b6d96c073429b819c86f785754c249b7870a7737 + just clone-submodule tasks/coverage/acorn-test262 https://github.com/oxc-project/acorn-test262 ad6f20525e19e8fb66c35f3513ed0fa7ac06fbd8 just update-transformer-fixtures # Install git pre-commit to format files diff --git a/tasks/coverage/snapshots/estree_acorn_jsx.snap b/tasks/coverage/snapshots/estree_acorn_jsx.snap index 2401780323ac9..94b58a6abe808 100644 --- a/tasks/coverage/snapshots/estree_acorn_jsx.snap +++ b/tasks/coverage/snapshots/estree_acorn_jsx.snap @@ -1,4 +1,4 @@ -commit: b6d96c07 +commit: ad6f2052 estree_acorn_jsx Summary: AST Parsed : 39/39 (100.00%) diff --git a/tasks/coverage/snapshots/estree_typescript.snap b/tasks/coverage/snapshots/estree_typescript.snap new file mode 100644 index 0000000000000..ebbe15efff6c4 --- /dev/null +++ b/tasks/coverage/snapshots/estree_typescript.snap @@ -0,0 +1,11495 @@ +commit: 15392346 + +estree_typescript Summary: +AST Parsed : 10628/10725 (99.10%) +Positive Passed: 32/10725 (0.30%) +Mismatch: tasks/coverage/typescript/tests/cases/compiler/2dArrays.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/APILibCheck.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/APISample_Watch.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/APISample_WatchWithDefaults.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/APISample_WatchWithOwnWatchHost.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/APISample_compile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/APISample_jsdoc.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/APISample_linter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/APISample_parseConfig.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/APISample_transform.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/APISample_watcher.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ClassDeclaration10.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ClassDeclaration11.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ClassDeclaration13.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ClassDeclaration14.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ClassDeclaration15.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ClassDeclaration21.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ClassDeclaration22.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ClassDeclaration24.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ClassDeclaration25.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ClassDeclaration8.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ClassDeclaration9.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/ClassDeclarationWithInvalidConstOnPropertyDeclaration.ts +A class member cannot have the 'const' keyword. +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ClassDeclarationWithInvalidConstOnPropertyDeclaration2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/DeclarationErrorsNoEmitOnError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ExportAssignment7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ExportAssignment8.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/FunctionDeclaration3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/FunctionDeclaration4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/FunctionDeclaration6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/FunctionDeclaration7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/InterfaceDeclaration8.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/SystemModuleForStatementNoInitializer.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/abstractClassInLocalScope.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/abstractClassInLocalScopeIsAbstract.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/abstractClassUnionInstantiation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/abstractIdentifierNameStrict.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/abstractInterfaceIdentifierName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/abstractPropertyBasics.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/abstractPropertyInConstructor.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/abstractPropertyNegative.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/acceptSymbolAsWeakType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/acceptableAlias1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/accessInstanceMemberFromStaticMethod01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/accessOverriddenBaseClassMember1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/accessStaticMemberFromInstanceMethod01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/accessorAccidentalCallDiagnostic.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/accessorBodyInTypeContext.ts +Unexpected token +Mismatch: tasks/coverage/typescript/tests/cases/compiler/accessorDeclarationEmitVisibilityErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/accessorDeclarationOrder.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/accessorInferredReturnTypeErrorInReturnStatement.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/accessorWithInitializer.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/accessorWithLineTerminator.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/accessorWithRestParam.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/accessorsEmit.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/accessorsInAmbientContext.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/accessors_spec_section-4.5_error-cases.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/accessors_spec_section-4.5_inference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/addMoreCallSignaturesToBaseSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/addMoreCallSignaturesToBaseSignature2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/addMoreOverloadsToBaseSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/aliasAssignments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/aliasBug.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/aliasDoesNotDuplicateSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/aliasInaccessibleModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/aliasInaccessibleModule2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/aliasInstantiationExpressionGenericIntersectionNoCrash1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/aliasInstantiationExpressionGenericIntersectionNoCrash2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/aliasOfGenericFunctionWithRestBehavedSameAsUnaliased.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/aliasOnMergedModuleInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/aliasUsageInAccessorsOfClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/aliasUsageInArray.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/aliasUsageInFunctionExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/aliasUsageInGenericFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/aliasUsageInIndexerOfClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/aliasUsageInObjectLiteral.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/aliasUsageInOrExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/aliasUsageInTypeArgumentOfExtendsClause.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/aliasUsageInVarAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/aliasUsedAsNameValue.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/aliasWithInterfaceExportAssignmentUsedInVarInitializer.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/aliasesInSystemModule1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/aliasesInSystemModule2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/allowImportClausesToMergeWithTypes.ts +tasks/coverage/typescript/tests/cases/compiler/allowJsCrossMonorepoPackage.ts +Unexpected estree file content error: 2 != 4 + +tasks/coverage/typescript/tests/cases/compiler/allowJscheckJsTypeParameterNoCrash.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/allowSyntheticDefaultImports1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/allowSyntheticDefaultImports10.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/allowSyntheticDefaultImports2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/allowSyntheticDefaultImports3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/allowSyntheticDefaultImports4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/allowSyntheticDefaultImports5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/allowSyntheticDefaultImports6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/allowSyntheticDefaultImports7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/allowSyntheticDefaultImports8.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/allowSyntheticDefaultImports9.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/allowSyntheticDefaultImportsCanPaintCrossModuleDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/alwaysStrict.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/alwaysStrictAlreadyUseStrict.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/alwaysStrictES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/alwaysStrictModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/alwaysStrictModule2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/alwaysStrictModule3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/alwaysStrictModule4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/alwaysStrictModule5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/alwaysStrictModule6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/alwaysStrictNoImplicitUseStrict.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ambientClassDeclarationWithExtends.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ambientClassDeclaredBeforeBase.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ambientClassMergesOverloadsWithInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ambientClassOverloadForFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ambientConstLiterals.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ambientEnum1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ambientEnumElementInitializer1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ambientEnumElementInitializer2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ambientEnumElementInitializer3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ambientEnumElementInitializer4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ambientEnumElementInitializer5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ambientEnumElementInitializer6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ambientExportDefaultErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ambientExternalModuleInAnotherExternalModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ambientExternalModuleReopen.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ambientExternalModuleWithInternalImportDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ambientExternalModuleWithRelativeExternalImportDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ambientExternalModuleWithRelativeModuleName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ambientExternalModuleWithoutInternalImportDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ambientFundule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ambientGetters.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ambientModuleExports.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ambientModuleWithClassDeclarationWithExtends.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ambientModuleWithTemplateLiterals.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ambientModules.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ambientNameRestrictions.ts +tasks/coverage/typescript/tests/cases/compiler/ambientRequireFunction.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ambientStatement1.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/ambientWithStatements.ts +A 'return' statement can only be used within a function body. +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ambiguousCallsWhereReturnTypesAgree.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ambiguousOverload.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ambiguousOverloadResolution.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/amdDeclarationEmitNoExtraDeclare.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/amdDependencyComment1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/amdDependencyComment2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/amdDependencyCommentName1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/amdDependencyCommentName2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/amdDependencyCommentName3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/amdDependencyCommentName4.ts +tasks/coverage/typescript/tests/cases/compiler/amdLikeInputDeclarationEmit.ts +Unexpected estree file content error: 2 != 3 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/amdModuleBundleNoDuplicateDeclarationEmitComments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/amdModuleConstEnumUsage.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/amdModuleName1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/anonClassDeclarationEmitIsAnon.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/anonterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/anonymousClassDeclarationDoesntPrintWithReadonly.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/anonymousClassExpression1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/anonymousClassExpression2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/anyAndUnknownHaveFalsyComponents.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/anyAsReturnTypeForNewOnCall.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/anyDeclare.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/anyIdenticalToItself.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/anyIndexedAccessArrayNoException.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/anyInferenceAnonymousFunctions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/anyIsAssignableToObject.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/anyIsAssignableToVoid.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/anyMappedTypesError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/anyPlusAny1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/argsInScope.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arguments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/argumentsAsPropertyName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/argumentsAsPropertyName2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/argumentsBindsToFunctionScopeArgumentList.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/argumentsObjectIterator01_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/argumentsObjectIterator01_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/argumentsObjectIterator02_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/argumentsObjectIterator02_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/argumentsObjectIterator03_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/argumentsObjectIterator03_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/argumentsSpreadRestIterables.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/argumentsUsedInClassFieldInitializerOrStaticInitializationBlock.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/argumentsUsedInObjectLiteralProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arithAssignTyping.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arithmeticOnInvalidTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arithmeticOnInvalidTypes2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arityErrorRelatedSpanBindingPattern.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayAssignmentTest1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayAssignmentTest2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayAssignmentTest3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayAssignmentTest4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayAssignmentTest5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayAssignmentTest6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayAugment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayBestCommonTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayBindingPatternOmittedExpressions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayBufferIsViewNarrowsType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayCast.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayConcat2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayConcat3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayConcatMap.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayConstructors1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayDestructuringInSwitch1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayDestructuringInSwitch2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayEvery.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayFakeFlatNoCrashInferenceDeclarations.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayFilter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayFind.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayFlatMap.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayFlatNoCrashInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayFlatNoCrashInferenceDeclarations.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayFrom.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/arrayFromAsync.ts +`await` is only allowed within async functions and at the top levels of modules +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayIndexWithArrayFails.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayLiteral1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayLiteral2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayLiteralAndArrayConstructorEquivalence1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayLiteralComments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayLiteralContextualType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayLiteralInNonVarArgParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayLiteralTypeInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayOfExportedClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayOfSubtypeIsAssignableToReadonlyArray.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayReferenceWithoutTypeArgs.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/arraySigChecking.ts +Unexpected token +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arraySlice.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayToLocaleStringES2015.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayToLocaleStringES2020.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayToLocaleStringES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayTypeInSignatureOfInterfaceAndClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayconcat.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/arrowFunctionErrorSpan.ts +Line terminator not permitted before arrow +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrowFunctionInConstructorArgument1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrowFunctionInExpressionStatement1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrowFunctionInExpressionStatement2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrowFunctionParsingDoesNotConfuseParenthesizedObjectForArrowHead.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrowFunctionParsingGenericInObject.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrowFunctionWithObjectLiteralBody1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrowFunctionWithObjectLiteralBody2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrowFunctionWithObjectLiteralBody3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrowFunctionWithObjectLiteralBody4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrowFunctionWithObjectLiteralBody5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrowFunctionWithObjectLiteralBody6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/asiAbstract.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/asiAmbientFunctionDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/asiArith.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/asiBreak.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/asiContinue.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/asiInES6Classes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/asiPublicPrivateProtected.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/asiReturn.ts +A 'return' statement can only be used within a function body. +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assertionFunctionWildcardImport1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assertionFunctionWildcardImport2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assertionFunctionsCanNarrowByDiscriminant.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assign1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignLambdaToNominalSubtypeOfFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignToEnum.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignToExistingClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignToFn.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/assignToInvalidLHS.ts +Cannot assign to this expression +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignToModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignToObjectTypeWithPrototypeProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignToPrototype1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assigningFromObjectToAnythingElse.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assigningFunctionToTupleIssuesError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompat1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatBug2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatBug3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatBug5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatForEnums.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatFunctionsWithOptionalArgs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatInterfaceWithStringIndexSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatOnNew.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatWithOverloads.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability10.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability11.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability12.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability13.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability14.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability15.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability16.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability17.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability18.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability19.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability20.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability21.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability22.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability23.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability24.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability25.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability26.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability27.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability28.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability29.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability30.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability31.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability32.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability33.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability34.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability35.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability36.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability37.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability38.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability39.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability40.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability41.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability42.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability43.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability44.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability45.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability46.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability8.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability9.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability_checking-apply-member-off-of-function-interface.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability_checking-call-member-off-of-function-interface.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatibilityForConstrainedTypeParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentIndexedToPrimitives.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentNestedInLiterals.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentNonObjectTypeConstraints.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentRestElementWithErrorSourceType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentStricterConstraints.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentToAnyArrayRestParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentToExpandingArrayType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentToFunction.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/assignmentToInstantiationExpression.ts +The left-hand side of an assignment expression must be a variable or a property access. +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentToObject.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentToObjectAndFunction.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/assignmentToParenthesizedExpression1.ts +Cannot assign to this expression +Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentToReferenceTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/asyncArrowInClassES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/asyncAwaitWithCapturedBlockScopeVar.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/asyncFunctionContextuallyTypedReturns.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/asyncFunctionNoReturnType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/asyncFunctionReturnExpressionErrorSpans.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/asyncFunctionReturnType.2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/asyncFunctionReturnType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/asyncFunctionTempVariableScoping.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/asyncFunctionWithForStatementNoInitializer.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/asyncFunctionsAcrossFiles.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/asyncFunctionsAndStrictNullChecks.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/asyncIIFE.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/asyncImportNestedYield.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/asyncIteratorExtraParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/asyncYieldStarContextualType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/augmentArray.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/augmentExportEquals1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/augmentExportEquals1_1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/augmentExportEquals2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/augmentExportEquals2_1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/augmentExportEquals3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/augmentExportEquals3_1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/augmentExportEquals4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/augmentExportEquals4_1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/augmentExportEquals5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/augmentExportEquals6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/augmentExportEquals6_1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/augmentExportEquals7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/augmentedClassWithPrototypePropertyOnModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/augmentedTypeBracketNamedPropertyAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/augmentedTypesClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/augmentedTypesClass2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/augmentedTypesClass2a.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/augmentedTypesClass3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/augmentedTypesClass4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/augmentedTypesEnum.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/augmentedTypesEnum2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/augmentedTypesEnum3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/augmentedTypesExternalModule1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/augmentedTypesFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/augmentedTypesInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/augmentedTypesModules.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/augmentedTypesModules2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/augmentedTypesModules3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/augmentedTypesModules3b.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/augmentedTypesModules4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/augmentedTypesVar.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/autoAsiForStaticsInClassDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/autoTypeAssignedUsingDestructuringFromNeverNoCrash.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/autolift3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/autolift4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/autonumberingInEnums.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/avoid.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/avoidCycleWithVoidExpressionReturnedFromArrow.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/avoidListingPropertiesForTypesWithOnlyCallOrConstructSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/avoidNarrowingUsingConstVariableFromBindingElementWithLiteralInitializer.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/awaitCallExpressionInSyncFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/awaitExpressionInnerCommentEmit.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/awaitInClassInAsyncFunction.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/awaitInNonAsyncFunction.ts +`await` is only allowed within async functions and at the top levels of modules +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/awaitLiteralValues.ts +`await` is only allowed within async functions and at the top levels of modules +Mismatch: tasks/coverage/typescript/tests/cases/compiler/awaitUnionPromise.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/awaitedType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/awaitedTypeCrash.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/awaitedTypeJQuery.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/awaitedTypeNoLib.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/awaitedTypeStrictNull.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/badExternalModuleReference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/badInferenceLowerPriorityThanGoodInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/badOverloadError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/badThisBinding.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/bangInModuleName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/baseCheck.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/baseClassImprovedMismatchErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/baseConstraintOfDecorator.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/baseExpressionTypeParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/baseIndexSignatureResolution.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/baseTypeAfterDerivedType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/baseTypeOrderChecking.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/baseTypePrivateMemberClash.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/baseTypeWrappingInstantiationChain.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/bestChoiceType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/bestCommonTypeReturnStatement.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/bestCommonTypeWithContextualTyping.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/bestCommonTypeWithOptionalProperties.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/betterErrorForAccidentalCall.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/betterErrorForUnionCall.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/bigIntWithTargetES2016.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/bigIntWithTargetLessThanES2016.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/bigint64ArraySubarray.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/bigintIndex.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/bigintWithLib.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/bigintWithoutLib.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/binaryArithmatic1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/binaryArithmatic2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/binaryArithmatic3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/binaryArithmatic4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/binaryArithmeticControlFlowGraphNotTooLarge.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/bind1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/bind2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/bindingPatternCannotBeOnlyInferenceSource.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/bindingPatternContextualTypeDoesNotCauseWidening.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/bindingPatternInParameter01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/bindingPatternOmittedExpressionNesting.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/binopAssignmentShouldHaveType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/bitwiseCompoundAssignmentOperators.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/blockScopedBindingCaptureThisInFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/blockScopedBindingUsedBeforeDef.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/blockScopedBindingsInDownlevelGenerator.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/blockScopedBindingsReassignedInLoop1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/blockScopedBindingsReassignedInLoop2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/blockScopedBindingsReassignedInLoop3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/blockScopedBindingsReassignedInLoop4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/blockScopedBindingsReassignedInLoop5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/blockScopedBindingsReassignedInLoop6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/blockScopedClassDeclarationAcrossFiles.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/blockScopedEnumVariablesUseBeforeDef.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/blockScopedEnumVariablesUseBeforeDef_isolatedModules.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/blockScopedEnumVariablesUseBeforeDef_preserve.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/blockScopedEnumVariablesUseBeforeDef_verbatimModuleSyntax.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/blockScopedFunctionDeclarationES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/blockScopedFunctionDeclarationES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/blockScopedFunctionDeclarationInStrictClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/blockScopedFunctionDeclarationInStrictModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/blockScopedFunctionDeclarationStrictES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/blockScopedFunctionDeclarationStrictES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/blockScopedNamespaceDifferentFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/blockScopedSameNameFunctionDeclarationES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/blockScopedSameNameFunctionDeclarationES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/blockScopedSameNameFunctionDeclarationStrictES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/blockScopedSameNameFunctionDeclarationStrictES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/blockScopedVariablesUseBeforeDef.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/bluebirdStaticThis.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/bom-utf8.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/booleanAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/booleanFilterAnyArray.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/booleanLiteralsContextuallyTypedFromUnion.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/breakInIterationOrSwitchStatement1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/breakInIterationOrSwitchStatement2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/breakInIterationOrSwitchStatement3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/breakInIterationOrSwitchStatement4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/breakNotInIterationOrSwitchStatement2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/breakTarget1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/breakTarget2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/breakTarget3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/breakTarget4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/breakTarget5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/breakTarget6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/builtinIterator.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/bundledDtsLateExportRenaming.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/cacheResolutions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/cachedContextualTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/cachedModuleResolution1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/cachedModuleResolution2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/cachedModuleResolution3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/cachedModuleResolution4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/cachedModuleResolution5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/cachedModuleResolution6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/cachedModuleResolution7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/cachedModuleResolution8.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/cachedModuleResolution9.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/callConstructAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/callExpressionWithTypeParameterConstrainedToOuterTypeParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/callOfConditionalTypeWithConcreteBranches.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/callOnClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/callOnInstance.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/callOverloadViaElementAccessExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/callOverloads1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/callOverloads2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/callOverloads3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/callOverloads4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/callOverloads5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/callSignatureFunctionOverload.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/callSignaturesShouldBeResolvedBeforeSpecialization.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/callWithWrongNumberOfTypeArguments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/callbackArgsDifferByOptionality.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/callbacksDontShareTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/callsOnComplexSignatures.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/cannotIndexGenericWritingError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/cannotInvokeNewOnIndexExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/captureSuperPropertyAccessInSuperCall01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/captureThisInSuperCall.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/capturedLetConstInLoop1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/capturedLetConstInLoop10.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/capturedLetConstInLoop10_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/capturedLetConstInLoop11.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/capturedLetConstInLoop11_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/capturedLetConstInLoop12.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/capturedLetConstInLoop13.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/capturedLetConstInLoop14.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/capturedLetConstInLoop1_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/capturedLetConstInLoop2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/capturedLetConstInLoop2_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/capturedLetConstInLoop3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/capturedLetConstInLoop3_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/capturedLetConstInLoop4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/capturedLetConstInLoop4_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/capturedLetConstInLoop5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/capturedLetConstInLoop5_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/capturedLetConstInLoop6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/capturedLetConstInLoop6_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/capturedLetConstInLoop7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/capturedLetConstInLoop7_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/capturedLetConstInLoop8.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/capturedLetConstInLoop8_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/capturedLetConstInLoop9.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/capturedLetConstInLoop9_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/capturedParametersInInitializers1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/capturedParametersInInitializers2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/capturedShorthandPropertyAssignmentNoCheck.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/capturedVarInLoop.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/caseInsensitiveFileSystemWithCapsImportTypeDeclarations.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/castExpressionParentheses.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/castFunctionExpressionShouldBeParenthesized.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/castNewObjectBug.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/castOfAwait.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/castParentheses.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/castTest.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/catch.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/cf.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/chainedAssignment1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/chainedAssignment2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/chainedAssignment3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/chainedAssignmentChecking.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/chainedCallsWithTypeParameterConstrainedToOtherTypeParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/chainedCallsWithTypeParameterConstrainedToOtherTypeParameter2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/chainedImportAlias.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/chainedSpecializationToObjectTypeLiteral.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/checkDestructuringShorthandAssigment2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/checkForObjectTooStrict.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/checkInfiniteExpansionTermination.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/checkInfiniteExpansionTermination2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/checkInterfaceBases.ts +tasks/coverage/typescript/tests/cases/compiler/checkJsTypeDefNoUnusedLocalMarked.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/compiler/checkJsdocTypeTagOnExportAssignment2.ts +Unexpected estree file content error: 1 != 4 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/checkMergedGlobalUMDSymbol.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/checkSuperCallBeforeThisAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/checkSuperCallBeforeThisAccessing1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/checkSuperCallBeforeThisAccessing2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/checkSuperCallBeforeThisAccessing3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/checkSuperCallBeforeThisAccessing4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/checkSuperCallBeforeThisAccessing5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/checkSuperCallBeforeThisAccessing6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/checkSuperCallBeforeThisAccessing7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/checkSuperCallBeforeThisAccessing8.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/checkSwitchStatementIfCaseTypeIsString.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/checkTypePredicateForRedundantProperties.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/checkerInitializationCrash.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/checkingObjectWithThisInNamePositionNoCrash.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/circularAccessorAnnotations.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/circularBaseConstraint.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/circularBaseTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/circularConstrainedMappedTypeNoCrash.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/circularConstraintYieldsAppropriateError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/circularConstructorWithReturn.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/circularContextualMappedType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/circularContextualReturnType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/circularGetAccessor.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/circularInferredTypeOfVariable.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/circularInlineMappedGenericTupleTypeNoCrash.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/circularInstantiationExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/circularMappedTypeConstraint.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/circularModuleImports.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/circularObjectLiteralAccessors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/circularOptionalityRemoval.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/circularReferenceInImport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/circularReferenceInReturnType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/circularReferenceInReturnType2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/circularResolvedSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/circularTypeArgumentsLocalAndOuterNoCrash1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/circularTypeofWithFunctionModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/circularlyConstrainedMappedTypeContainingConditionalNoInfiniteInstantiationDepth.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/circularlyReferentialInterfaceAccessNoCrash.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/circularlySimplifyingConditionalTypesNoCrash.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classAccessorInitializationInferenceWithElementAccess1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classAttributeInferenceTemplate.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classBlockScoping.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classCannotExtendVar.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classDeclarationBlockScoping1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classDeclarationBlockScoping2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classDeclarationCheckUsedBeforeDefinitionInFunctionDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classDeclarationCheckUsedBeforeDefinitionInItself.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classDeclarationMergedInModuleWithContinuation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classDeclarationShouldBeOutOfScopeInComputedNames.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classDeclaredBeforeClassFactory.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classExpressionAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classExpressionExtendingAbstractClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classExpressionInClassStaticDeclarations.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classExpressionNames.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/classExpressionPropertyModifiers.ts +Expected a semicolon or an implicit semicolon after a statement, but found none +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classExpressionTest1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classExpressionTest2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classExpressionWithDecorator1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classExpressionWithResolutionOfNamespaceOfSameName01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classExpressionWithStaticProperties1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classExpressionWithStaticProperties2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classExpressionWithStaticProperties3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classExpressionWithStaticPropertiesES61.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classExpressionWithStaticPropertiesES62.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classExpressionWithStaticPropertiesES63.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classExpressionWithStaticPropertiesES64.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classExpressions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classExtendingAbstractClassWithMemberCalledTheSameAsItsOwnTypeParam.ts +tasks/coverage/typescript/tests/cases/compiler/classExtendingAny.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classExtendingQualifiedName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classExtendingQualifiedName2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classExtendsAcrossFiles.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classExtendsClauseClassMergedWithModuleNotReferingConstructor.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classExtendsClauseClassNotReferringConstructor.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classExtendsInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classExtendsInterfaceInExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classExtendsInterfaceInModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classExtendsInterfaceThatExtendsClassWithPrivates1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classExtendsInterface_not.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classExtendsNull.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classExtendsNull2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classExtendsNull3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classExtensionNameOutput.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classFieldSuperAccessible.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classFieldSuperNotAccessible.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classFunctionMerging.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classFunctionMerging2.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/classHeritageWithTrailingSeparator.ts +Expected `{` but found `EOF` +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classImplementingInterfaceIndexer.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classImplementsClass1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classImplementsClass2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classImplementsClass3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classImplementsClass4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classImplementsClass5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classImplementsClass6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classImplementsClass7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classImplementsImportedInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classImplementsMethodWIthTupleArgs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classImplementsPrimitive.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classInConvertedLoopES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classIndexer.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classIndexer2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classIndexer3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classIndexer4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classIndexer5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classInheritence.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classMemberInitializerScoping.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classMemberInitializerScoping2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classMemberInitializerWithLamdaScoping.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classMemberInitializerWithLamdaScoping2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classMemberInitializerWithLamdaScoping3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classMemberInitializerWithLamdaScoping4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classMemberInitializerWithLamdaScoping5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classMergedWithInterfaceMultipleBasesNoError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classMethodWithKeywordName1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classNameReferencesInStaticElements.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classNonUniqueSymbolMethodHasSymbolIndexer.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classOrder1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classOrder2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classOrderBug.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classOverloadForFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classOverloadForFunction2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classPropInitializationInferenceWithElementAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classPropertyErrorOnNameOnly.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classReferencedInContextualParameterWithinItsOwnBaseExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classSideInheritance1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classSideInheritance2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classSideInheritance3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classStaticInitializersUsePropertiesBeforeDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classStaticPropertyAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classStaticPropertyTypeGuard.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classTypeParametersInStatics.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classUsedBeforeInitializedVariables.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classVarianceCircularity.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classVarianceResolveCircularity1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classVarianceResolveCircularity2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classWithDuplicateIdentifier.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classWithEmptyTypeParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classWithMultipleBaseClasses.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classWithOverloadImplementationOfWrongName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classWithOverloadImplementationOfWrongName2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/classdecl.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/clinterfaces.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/cloduleAcrossModuleDefinitions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/cloduleAndTypeParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/cloduleGenericOnSelfMember.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/cloduleSplitAcrossFiles.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/cloduleStaticMembers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/cloduleTest1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/cloduleTest2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/cloduleWithDuplicateMember1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/cloduleWithDuplicateMember2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/cloduleWithPriorInstantiatedModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/cloduleWithPriorUninstantiatedModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/cloduleWithRecursiveReference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/clodulesDerivedClasses.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/coAndContraVariantInferences.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/coAndContraVariantInferences2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/coAndContraVariantInferences3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/coAndContraVariantInferences4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/coAndContraVariantInferences5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/coAndContraVariantInferences6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/coAndContraVariantInferences7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/coAndContraVariantInferences8.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collectionPatternNoError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionArgumentsArrowFunctions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionArgumentsClassConstructor.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionArgumentsClassMethod.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionArgumentsFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionArgumentsFunctionExpressions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionArgumentsInType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionArgumentsInterfaceMembers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionCodeGenEnumWithEnumMemberConflict.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionCodeGenModuleWithAccessorChildren.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionCodeGenModuleWithConstructorChildren.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionCodeGenModuleWithEnumMemberConflict.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionCodeGenModuleWithFunctionChildren.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionCodeGenModuleWithMemberClassConflict.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionCodeGenModuleWithMemberInterfaceConflict.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionCodeGenModuleWithMemberVariable.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionCodeGenModuleWithMethodChildren.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionCodeGenModuleWithModuleChildren.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionCodeGenModuleWithModuleReopening.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionCodeGenModuleWithPrivateMember.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionExportsRequireAndAlias.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionExportsRequireAndAmbientClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionExportsRequireAndAmbientEnum.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionExportsRequireAndAmbientFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionExportsRequireAndAmbientFunctionInGlobalFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionExportsRequireAndAmbientModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionExportsRequireAndAmbientVar.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionExportsRequireAndClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionExportsRequireAndEnum.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionExportsRequireAndFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionExportsRequireAndFunctionInGlobalFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionExportsRequireAndInternalModuleAlias.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionExportsRequireAndInternalModuleAliasInGlobalFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionExportsRequireAndModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionExportsRequireAndUninstantiatedModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionExportsRequireAndVar.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionRestParameterArrowFunctions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionRestParameterClassConstructor.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionRestParameterClassMethod.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionRestParameterFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionRestParameterFunctionExpressions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionRestParameterInType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionRestParameterInterfaceMembers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionRestParameterUnderscoreIUsage.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionSuperAndLocalFunctionInAccessors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionSuperAndLocalFunctionInConstructor.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionSuperAndLocalFunctionInMethod.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionSuperAndLocalFunctionInProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionSuperAndLocalVarInAccessors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionSuperAndLocalVarInConstructor.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionSuperAndLocalVarInMethod.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionSuperAndLocalVarInProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionSuperAndNameResolution.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionSuperAndParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionSuperAndParameter1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionSuperAndPropertyNameAsConstuctorParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionThisExpressionAndAliasInGlobal.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionThisExpressionAndAmbientClassInGlobal.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionThisExpressionAndAmbientVarInGlobal.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionThisExpressionAndClassInGlobal.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionThisExpressionAndEnumInGlobal.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionThisExpressionAndFunctionInGlobal.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionThisExpressionAndLocalVarInAccessors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionThisExpressionAndLocalVarInConstructor.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionThisExpressionAndLocalVarInFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionThisExpressionAndLocalVarInLambda.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionThisExpressionAndLocalVarInMethod.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionThisExpressionAndLocalVarInProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionThisExpressionAndLocalVarWithSuperExperssion.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionThisExpressionAndModuleInGlobal.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionThisExpressionAndNameResolution.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionThisExpressionAndParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionThisExpressionAndPropertyNameAsConstuctorParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionThisExpressionAndVarInGlobal.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commaOperator1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commaOperatorInConditionalExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commaOperatorLeftSideUnused.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentBeforeStaticMethod1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentEmitAtEndOfFile1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentEmitOnParenthesizedAssertionInReturnStatement.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentEmitOnParenthesizedAssertionInReturnStatement2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentEmitWithCommentOnLastLine.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentInEmptyParameterList1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentInMethodCall.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentInNamespaceDeclarationWithIdentifierPathName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentLeadingCloseBrace.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnAmbientClass1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnAmbientEnum.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnAmbientModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnAmbientVariable1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnAmbientVariable2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnAmbientfunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnArrayElement1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnArrayElement10.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnArrayElement11.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnArrayElement12.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnArrayElement13.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnArrayElement14.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnArrayElement15.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnArrayElement16.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnArrayElement2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnArrayElement3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnArrayElement4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnArrayElement5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnArrayElement6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnArrayElement7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnArrayElement8.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnArrayElement9.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnBinaryOperator1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnBinaryOperator2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnBlock1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnClassAccessor1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnClassAccessor2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnClassMethod1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnDecoratedClassDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnElidedModule1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnExportEnumDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnExpressionStatement1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnIfStatement1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnImportStatement1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnImportStatement2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnImportStatement3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnInterface1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnParameter1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnParameter2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnParameter3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnParenthesizedExpressionOpenParen1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnSignature1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnSimpleArrowFunctionBody1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnStaticMember1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentWithUnreasonableIndentationLevel01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsAfterCaseClauses1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsAfterCaseClauses2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsAfterCaseClauses3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsAfterFunctionExpression1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsAfterSpread.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsArgumentsOfCallExpression1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsArgumentsOfCallExpression2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsAtEndOfFile1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsBeforeFunctionExpression1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsBeforeVariableStatement1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsClassMembers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsCommentParsing.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsDottedModuleName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsEnums.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsExternalModules.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsExternalModules2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsExternalModules3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsFormatting.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsInheritance.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsModules.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsMultiModuleMultiFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsMultiModuleSingleFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsOnJSXExpressionsArePreserved.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsOnObjectLiteral1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsOnObjectLiteral2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsOnObjectLiteral3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsOnObjectLiteral4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsOnObjectLiteral5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsOnPropertyOfObjectLiteral1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsOnRequireStatement.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsOnReturnStatement1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsOnStaticMembers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsOverloads.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsPropertySignature1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsTypeParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsVarDecl.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsVariableStatement1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsdoNotEmitComments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsemitComments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commonJsImportClassExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commonSourceDir1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commonSourceDir2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commonSourceDir3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commonSourceDir4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commonSourceDir5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commonSourceDir6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commonSourceDirectory.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commonSourceDirectory_dts.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/commonjsSafeImport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/comparabilityTypeParametersRelatedByUnion.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/comparableRelationBidirectional.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/compareTypeParameterConstrainedByLiteralToLiteral.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/comparisonOfPartialDeepAndIndexedAccessTerminatesWithoutError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/compilerOptionsDeclarationAndNoEmit.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/compilerOptionsOutAndNoEmit.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/compilerOptionsOutDirAndNoEmit.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/compilerOptionsOutFileAndNoEmit.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/complexClassRelationships.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/complexNarrowingWithAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/complexRecursiveCollections.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/complicatedGenericRecursiveBaseClassReference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/complicatedIndexedAccessKeyofReliesOnKeyofNeverUpperBound.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/complicatedIndexesOfIntersectionsAreInferencable.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/complicatedPrivacy.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/compositeContextualSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/compositeGenericFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/compositeWithNodeModulesSourceFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/compoundVarDecl1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/computedEnumMemberSyntacticallyString.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/computedEnumMemberSyntacticallyString2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/computedEnumTypeWidening.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/computedPropertiesInDestructuring1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/computedPropertiesInDestructuring1_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/computedPropertiesInDestructuring2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/computedPropertiesInDestructuring2_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/computedPropertiesNarrowed.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/computedPropertiesTransformedInOtherwiseNonTSClasses.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/computedPropertiesWithSetterAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/computedPropertyNameAndTypeParameterConflict.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/computedPropertyNameWithImportedKey.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/computedTypesKeyofNoIndexSignatureType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/computerPropertiesInES5ShouldBeTransformed.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/concatClassAndString.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/concatError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/concatTuples.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/conditionalAnyCheckTypePicksBothBranches.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/conditionalDoesntLeakUninstantiatedTypeParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/conditionalEqualityOnLiteralObjects.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/conditionalEqualityTestingNullability.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/conditionalExpression1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/conditionalExpressionNewLine1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/conditionalExpressionNewLine10.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/conditionalExpressionNewLine2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/conditionalExpressionNewLine3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/conditionalExpressionNewLine4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/conditionalExpressionNewLine5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/conditionalExpressionNewLine6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/conditionalExpressionNewLine7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/conditionalExpressionNewLine8.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/conditionalExpressionNewLine9.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/conditionalExpressions2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/conditionalReturnExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/conditionalTypeAnyUnion.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/conditionalTypeAssignabilityWhenDeferred.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/conditionalTypeBasedContextualTypeReturnTypeWidening.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/conditionalTypeClassMembers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/conditionalTypeContextualTypeSimplificationsSuceeds.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/conditionalTypeDiscriminatingLargeUnionRegularTypeFetchingSpeedReasonable.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/conditionalTypeDoesntSpinForever.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/conditionalTypeGenericInSignatureTypeParameterConstraint.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/conditionalTypeRelaxingConstraintAssignability.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/conditionalTypeSimplification.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/conditionalTypeSubclassExtendsTypeParam.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/conditionalTypeVarianceBigArrayConstraintsPerformance.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/conditionalTypesASI.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/conditionalTypesSimplifyWhenTrivial.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/conditionallyDuplicateOverloadsCausedByOverloadResolution.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/configFileExtendsAsList.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/conflictingDeclarationsImportFromNamespace1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/conflictingDeclarationsImportFromNamespace2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/conflictingMemberTypesInBases.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/conflictingTypeAnnotatedVar.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/conflictingTypeParameterSymbolTransfer.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/consistentAliasVsNonAliasRecordBehavior.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constDeclarationShadowedByVarDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constDeclarationShadowedByVarDeclaration2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constDeclarationShadowedByVarDeclaration3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constDeclarations-access.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constDeclarations-access2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constDeclarations-access3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constDeclarations-access4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constDeclarations-access5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constDeclarations-ambient.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/constDeclarations-errors.ts +Missing initializer in const declaration +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constDeclarations-es5.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/constDeclarations-invalidContexts.ts +Lexical declaration cannot appear in a single-statement context +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/constDeclarations-scopes.ts +Lexical declaration cannot appear in a single-statement context +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constDeclarations-scopes2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constDeclarations-useBeforeDefinition.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constDeclarations-useBeforeDefinition2.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/constDeclarations-validContexts.ts +Lexical declaration cannot appear in a single-statement context +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constDeclarations.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constDeclarations2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constEnumBadPropertyNames.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constEnumDeclarations.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constEnumErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constEnumExternalModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constEnumMergingWithValues1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constEnumMergingWithValues2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constEnumMergingWithValues3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constEnumMergingWithValues4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constEnumMergingWithValues5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constEnumNamespaceReferenceCausesNoImport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constEnumNamespaceReferenceCausesNoImport2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constEnumNoEmitReexport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constEnumNoPreserveDeclarationReexport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constEnumOnlyModuleMerging.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constEnumPreserveEmitNamedExport1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constEnumPreserveEmitNamedExport2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constEnumPreserveEmitReexport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constEnumSyntheticNodesComments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constEnumToStringNoComments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constEnumToStringWithComments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constEnums.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/constInClassExpression.ts +A class member cannot have the 'const' keyword. +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constIndexedAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constWithNonNull.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constantEnumAssert.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constantOverloadFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constantOverloadFunctionNoSubtypeError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constraintCheckInGenericBaseTypeReference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constraintErrors1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constraintOfRecursivelyMappedTypeWithConditionalIsResolvable.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constraintPropagationThroughReturnTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constraintReferencingTypeParameterFromSameTypeParameterList.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constraintWithIndexedAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constraints0.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constraintsThatReferenceOtherContstraints1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constraintsUsedInPrototypeProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constructorArgWithGenericCallSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constructorArgs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constructorAsType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constructorInvocationWithTooFewTypeArgs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constructorOverloads1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constructorOverloads2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constructorOverloads3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constructorOverloads4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constructorOverloads5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constructorOverloads6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constructorOverloads7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constructorOverloads8.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constructorOverloads9.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constructorParametersInVariableDeclarations.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constructorParametersThatShadowExternalNamesInVariableDeclarations.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constructorReturningAPrimitive.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constructorReturnsInvalidType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constructorStaticParamName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constructorStaticParamNameErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constructorTypeWithTypeParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constructorWithCapturedSuper.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constructorWithParameterPropertiesAndPrivateFields.es2015.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constructorWithSuperAndPrologue.es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/constructorsWithSpecializedSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextSensitiveReturnTypeInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualComputedNonBindablePropertyType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualExpressionTypecheckingDoesntBlowStack.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualOuterTypeParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualOverloadListFromArrayUnion.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualOverloadListFromUnionWithPrimitiveNoImplicitAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualPropertyOfGenericFilteringMappedType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualPropertyOfGenericMappedType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualReturnTypeOfIIFE.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualReturnTypeOfIIFE2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualReturnTypeOfIIFE3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualSigInstantiationRestParams.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualSignatureConditionalTypeInstantiationUsingDefault.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualSignatureInArrayElementLibEs2015.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualSignatureInArrayElementLibEs5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualSignatureInObjectFreeze.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualSignatureInstantiation1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualSignatureInstantiation2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualSignatureInstantiation3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualSignatureInstantiation4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualSignatureInstantiationWithTypeParameterConstrainedToOuterTypeParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualSignatureInstatiationContravariance.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualSignatureInstatiationCovariance.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualSignature_objectLiteralMethodMayReturnNever.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTupleTypeParameterReadonly.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypeAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypeAppliedToVarArgs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypeArrayReturnType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypeBasedOnIntersectionWithAnyInTheMix1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypeBasedOnIntersectionWithAnyInTheMix2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypeBasedOnIntersectionWithAnyInTheMix3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypeBasedOnIntersectionWithAnyInTheMix4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypeBasedOnIntersectionWithAnyInTheMix5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypeCaching.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypeForInitalizedVariablesFiltersUndefined.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypeFunctionObjectPropertyIntersection.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypeIterableUnions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypeLogicalOr.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypeObjectSpreadExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypeOfIndexedAccessParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypeOnYield1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypeOnYield2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypeSelfReferencing.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypeShouldBeLiteral.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypesNegatedTypeLikeConstraintInGenericMappedType1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypesNegatedTypeLikeConstraintInGenericMappedType2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypesNegatedTypeLikeConstraintInGenericMappedType3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping10.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping11.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping12.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping13.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping14.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping15.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping16.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping17.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping18.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping19.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping20.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping21.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping22.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping23.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping24.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping25.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping26.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping27.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping28.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping29.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping30.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping31.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping32.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping33.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping34.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping35.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping36.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping37.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping38.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping39.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping40.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping41.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping8.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTyping9.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypingArrayDestructuringWithDefaults.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypingArrayOfLambdas.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypingFunctionReturningFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypingFunctionReturningFunction2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypingOfAccessors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypingOfArrayLiterals1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypingOfConditionalExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypingOfConditionalExpression2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypingOfGenericFunctionTypedArguments1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypingOfLambdaReturnExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypingOfLambdaWithMultipleSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypingOfLambdaWithMultipleSignatures2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypingOfObjectLiterals.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypingOfObjectLiterals2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypingOfOptionalMembers.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypingOfTooShortOverloads.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypingReturnStatementWithReturnTypeAnnotation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypingTwoInstancesOfSameTypeParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypingWithFixedTypeParameters1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypingWithGenericAndNonGenericSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypingWithGenericSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextuallyTypeAsyncFunctionReturnTypeFromUnion.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextuallyTypeGeneratorReturnTypeFromUnion.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextuallyTypedBooleanLiterals.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextuallyTypedByDiscriminableUnion.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextuallyTypedGenericAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextuallyTypedJsxAttribute2.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextuallyTypedJsxChildren.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextuallyTypedOptionalProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextuallyTypedParametersWithInitializers1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextuallyTypedParametersWithInitializers2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextuallyTypedParametersWithInitializers3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextuallyTypedParametersWithInitializers4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextuallyTypedParametersWithQuestionToken.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextuallyTypedSymbolNamedProperties.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextuallyTypingOrOperator.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextuallyTypingOrOperator2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextuallyTypingOrOperator3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextuallyTypingRestParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/continueInIterationStatement1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/continueInIterationStatement2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/continueInIterationStatement3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/continueInIterationStatement4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/continueInLoopsWithCapturedBlockScopedBindings1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/continueLabel.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/continueNotInIterationStatement2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/continueNotInIterationStatement3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/continueNotInIterationStatement4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/continueStatementInternalComments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/continueTarget1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/continueTarget2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/continueTarget3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/continueTarget4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/continueTarget5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/continueTarget6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contravariantInferenceAndTypeGuard.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contravariantOnlyInferenceFromAnnotatedFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contravariantOnlyInferenceWithAnnotatedOptionalParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/contravariantTypeAliasInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/controlFlowAliasedDiscriminants.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/controlFlowAnalysisOnBareThisKeyword.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/controlFlowArrayErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/controlFlowArrays.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/controlFlowAutoAccessor1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/controlFlowBreakContinueWithLabel.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/controlFlowCaching.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/controlFlowCommaExpressionAssertionMultiple.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/controlFlowCommaExpressionAssertionWithinTernary.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/controlFlowCommaExpressionFunctionCall.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/controlFlowDestructuringLoop.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/controlFlowDestructuringParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/controlFlowDestructuringVariablesInTryCatch.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/controlFlowFavorAssertedTypeThroughTypePredicate.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/controlFlowFinallyNoCatchAssignments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/controlFlowForCatchAndFinally.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/controlFlowForCompoundAssignmentToThisMember.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/controlFlowForIndexSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/controlFlowForStatementContinueIntoIncrementor1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/controlFlowInitializedDestructuringVariables.ts +tasks/coverage/typescript/tests/cases/compiler/controlFlowInstanceof.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/controlFlowInstanceofWithSymbolHasInstance.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/controlFlowLoopAnalysis.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/controlFlowManyCallExpressionStatementsPerf.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/controlFlowManyConsecutiveConditionsNoTimeout.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/controlFlowNoImplicitAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/controlFlowNullTypeAndLiteral.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/controlFlowOuterVariable.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/controlFlowPrivateClassField.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/controlFlowPropertyDeclarations.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/controlFlowPropertyInitializer.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/controlFlowSelfReferentialLoop.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/controlFlowUnionContainingTypeParameter1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/controlFlowWithIncompleteTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/convertClassExpressionToFunctionFromObjectProperty1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/convertClassExpressionToFunctionFromObjectProperty2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/convertKeywords.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/convertKeywordsYes.ts +Classes can't have a field named 'constructor' +Mismatch: tasks/coverage/typescript/tests/cases/compiler/copyrightWithNewLine1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/copyrightWithoutNewLine1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/correctOrderOfPromiseMethod.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/correlatedUnions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/couldNotSelectGenericOverload.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/covariance1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/crashDeclareGlobalTypeofExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/crashInEmitTokenWithComment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/crashInGetTextOfComputedPropertyName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/crashInResolveInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/crashInYieldStarInAsyncFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/crashInresolveReturnStatement.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/crashInsourcePropertyIsRelatableToTargetProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/crashIntypeCheckInvocationExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/crashIntypeCheckObjectCreationExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/crashOnMethodSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/crashRegressionTest.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/crossFileOverloadModifierConsistency.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/curiousNestedConditionalEvaluationResult.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/customAsyncIterator.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/customEventDetail.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/cyclicGenericTypeInstantiation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/cyclicGenericTypeInstantiationInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/cyclicModuleImport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/cyclicTypeInstantiation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/dataViewConstructor.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/debugger.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/debuggerEmit.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileAccessors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileAliasUseBeforeDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileAliasUseBeforeDeclaration2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileAmbientExternalModuleWithSingleExportedModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileCallSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileClassExtendsNull.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileClassWithIndexSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileClassWithStaticMethodReturningConstructor.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileConstructSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileConstructors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileEmitDeclarationOnly.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileEmitDeclarationOnlyError1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileEmitDeclarationOnlyError2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileEnumUsedAsValue.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileEnums.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileExportAssignmentImportInternalModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileExportAssignmentOfGenericInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileExportImportChain.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileExportImportChain2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileForClassWithMultipleBaseClasses.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileForClassWithPrivateOverloadedFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileForExportedImport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileForFunctionTypeAsTypeParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileForInterfaceWithOptionalFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileForInterfaceWithRestParams.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileForTypeParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileForVarList.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileFunctions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileGenericClassWithGenericExtendedClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileGenericType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileGenericType2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileImportChainInExportAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileImportModuleWithExportAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileImportedTypeUseInTypeArgPosition.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileIndexSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileInternalAliases.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileMethods.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileModuleAssignmentInObjectLiteralProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileModuleContinuation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileModuleWithPropertyOfTypeModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileObjectLiteralWithAccessors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileObjectLiteralWithOnlyGetter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileObjectLiteralWithOnlySetter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileOptionalInterfaceMethod.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFilePrivateMethodOverloads.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFilePrivateStatic.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileRegressionTests.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileRestParametersOfFunctionAndFunctionType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileTypeAnnotationArrayType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileTypeAnnotationBuiltInType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileTypeAnnotationParenType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileTypeAnnotationStringLiteral.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileTypeAnnotationTupleType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileTypeAnnotationTypeAlias.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileTypeAnnotationTypeLiteral.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileTypeAnnotationTypeQuery.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileTypeAnnotationTypeReference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileTypeAnnotationUnionType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileTypeAnnotationVisibilityErrorAccessors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileTypeAnnotationVisibilityErrorParameterOfFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileTypeAnnotationVisibilityErrorReturnTypeOfFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileTypeAnnotationVisibilityErrorTypeAlias.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileTypeAnnotationVisibilityErrorTypeLiteral.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileTypeAnnotationVisibilityErrorVariableDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileTypeofClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileTypeofEnum.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileTypeofFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileTypeofInAnonymousType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileTypeofModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileWithClassNameConflictingWithClassReferredByExtendsClause.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileWithErrorsInInputDeclarationFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileWithErrorsInInputDeclarationFileWithOut.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileWithExtendsClauseThatHasItsContainerNameConflict.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileWithInternalModuleNameConflictsInExtendsClause1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileWithInternalModuleNameConflictsInExtendsClause2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileWithInternalModuleNameConflictsInExtendsClause3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declInput-2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declInput.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declInput3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declInput4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationAssertionNodeNotReusedWhenTypeNotEquivalent1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitAliasExportStar.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitAliasFromIndirectFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitAliasInlineing.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitAmdModuleDefault.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitAmdModuleNameDirective.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitAnyComputedPropertyInClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitArrayTypesFromGenericArrayUsage.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitArrowFunctionNoRenaming.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitBindingPatternWithReservedWord.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitBindingPatterns.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitBindingPatternsFunctionExpr.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitBindingPatternsUnused.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitBundlePreservesHasNoDefaultLibDirective.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitBundleWithAmbientReferences.ts +tasks/coverage/typescript/tests/cases/compiler/declarationEmitBundlerConditions.ts +Unexpected estree file content error: 3 != 4 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitCastReusesTypeNode1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitCastReusesTypeNode2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitCastReusesTypeNode3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitCastReusesTypeNode5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitClassInherritsAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitClassMemberNameConflict.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitClassMemberNameConflict2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitClassMemberWithComputedPropertyName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitClassMixinLocalClassDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitClassPrivateConstructor.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitClassPrivateConstructor2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitCommonJsModuleReferencedType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitCommonSourceDirectoryDoesNotContainAllFiles.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitComputedNameCausesImportToBePainted.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitComputedNameConstEnumAlias.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitComputedNameWithQuestionToken.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitComputedNamesInaccessible.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitComputedPropertyName1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitComputedPropertyNameEnum1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitComputedPropertyNameEnum2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitComputedPropertyNameEnum3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitComputedPropertyNameSymbol1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitComputedPropertyNameSymbol2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitConstantNoWidening.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitCrossFileCopiedGeneratedImportType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitCrossFileImportTypeOfAmbientModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitDefaultExport1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitDefaultExport2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitDefaultExport3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitDefaultExport4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitDefaultExport5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitDefaultExport6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitDefaultExport7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitDefaultExport8.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitDefaultExportWithStaticAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitDefaultExportWithTempVarName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitDefaultExportWithTempVarNameWithBundling.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitDestructuring1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitDestructuring2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitDestructuring3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitDestructuring4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitDestructuring5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitDestructuringArrayPattern1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitDestructuringArrayPattern2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitDestructuringArrayPattern3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitDestructuringArrayPattern4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitDestructuringArrayPattern5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitDestructuringObjectLiteralPattern.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitDestructuringObjectLiteralPattern1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitDestructuringObjectLiteralPattern2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitDestructuringOptionalBindingParametersInOverloads.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitDestructuringParameterProperties.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitDestructuringPrivacyError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitDestructuringWithOptionalBindingParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitDetachedComment1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitDetachedComment2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitDistributiveConditionalWithInfer.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitDoesNotUseReexportedNamespaceAsLocal.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitDuplicateParameterDestructuring.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitEnumReadonlyProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitEnumReferenceViaImportEquals.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitExactOptionalPropertyTypesNodeNotReused.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitExpandoPropertyPrivateName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitExpandoWithGenericConstraint.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitExportAliasVisibiilityMarking.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitExportAssignedNamespaceNoTripleSlashTypesReference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitExportAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitExportDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitExpressionInExtends.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitExpressionInExtends2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitExpressionInExtends3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitExpressionInExtends4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitExpressionInExtends5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitExpressionInExtends6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitExpressionInExtends7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitExpressionWithNonlocalPrivateUniqueSymbol.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitFBoundedTypeParams.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitFirstTypeArgumentGenericFunctionType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitForDefaultExportClassExtendingExpression01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitForGlobalishSpecifierSymlink.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitForGlobalishSpecifierSymlink2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitForModuleImportingModuleAugmentationRetainsImport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitForTypesWhichNeedImportTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitFunctionDuplicateNamespace.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitFunctionKeywordProp.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitGlobalThisPreserved.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitHasTypesRefOnNamespaceUse.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitHigherOrderRetainedGenerics.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitImportInExportAssignmentModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitIndexTypeArray.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitIndexTypeNotFound.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitInferredDefaultExportType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitInferredDefaultExportType2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitInferredTypeAlias1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitInferredTypeAlias2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitInferredTypeAlias3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitInferredTypeAlias4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitInferredTypeAlias5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitInferredTypeAlias6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitInferredTypeAlias7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitInferredTypeAlias8.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitInferredTypeAlias9.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitInferredUndefinedPropFromFunctionInArray.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitInlinedDistributiveConditional.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitInterfaceWithNonEntityNameExpressionHeritage.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitInvalidReference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitInvalidReference2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitInvalidReferenceAllowJs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitIsolatedDeclarationErrorNotEmittedForNonEmittedFile.ts +tasks/coverage/typescript/tests/cases/compiler/declarationEmitJsReExportDefault.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitKeywordDestructuring.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitLambdaWithMissingTypeParameterNoCrash.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitLateBoundAssignments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitLateBoundAssignments2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitLocalClassDeclarationMixin.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitLocalClassHasRequiredDeclare.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitMappedPrivateTypeTypeParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitMappedTypeDistributivityPreservesConstraints.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitMappedTypePropertyFromNumericStringKey.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitMappedTypeTemplateTypeofSymbol.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitMergedAliasWithConst.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitMixinPrivateProtected.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitModuleWithScopeMarker.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitMonorepoBaseUrl.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitMultipleComputedNamesSameDomain.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitNameConflicts.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitNameConflicts2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitNameConflicts3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitNameConflictsWithAlias.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitNamespaceMergedWithInterfaceNestedFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitNestedAnonymousMappedType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitNestedGenerics.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitNoInvalidCommentReuse1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitNoInvalidCommentReuse2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitNoInvalidCommentReuse3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitNoNonRequiredParens.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitNonExportedBindingPattern.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitObjectAssignedDefaultExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitObjectLiteralAccessors1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitOfFuncspace.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitOfTypeofAliasedExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitOptionalMappedTypePropertyNoStrictNullChecks1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitOptionalMappedTypePropertyNoStrictNullChecks2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitOptionalMappedTypePropertyNoStrictNullChecks3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitOptionalMappedTypePropertyNoStrictNullChecks4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitOptionalMethod.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitOverloadedPrivateInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitParameterProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitPartialNodeReuseTypeOf.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitPartialNodeReuseTypeReferences.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitPartialReuseComputedProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitPathMappingMonorepo.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitPathMappingMonorepo2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitPrefersPathKindBasedOnBundling.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitPrefersPathKindBasedOnBundling2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitPreserveReferencedImports.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitPreservesHasNoDefaultLibDirective.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitPrivateAsync.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitPrivateNameCausesError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitPrivatePromiseLikeInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitPrivateReadonlyLiterals.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitPrivateSymbolCausesVarDeclarationEmit2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitPrivateSymbolCausesVarDeclarationToBeEmitted.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitPromise.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitPropertyNumericStringKey.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitProtectedMembers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitQualifiedAliasTypeArgument.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitReadonlyComputedProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitRecursiveConditionalAliasPreserved.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitRedundantTripleSlashModuleAugmentation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitReexportedSymlinkReference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitReexportedSymlinkReference2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitReexportedSymlinkReference3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitRelativeModuleError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitResolveTypesIfNotReusable.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitRetainedAnnotationRetainsImportInOutput.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitRetainsJsdocyComments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitReusesLambdaParameterNodes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitScopeConsistency.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitScopeConsistency3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitShadowingInferNotRenamed.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitSimpleComputedNames1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitSpreadStringlyKeyedEnum.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitStringEnumUsedInNonlocalSpread.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitSymlinkPaths.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitToDeclarationDirWithCompositeOption.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitToDeclarationDirWithDeclarationOption.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitToDeclarationDirWithoutCompositeAndDeclarationOptions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitTopLevelNodeFromCrossFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitTopLevelNodeFromCrossFile2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitTransitiveImportOfHtmlDeclarationItem.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitTripleSlashReferenceAmbientModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitTupleRestSignatureLeadingVariadic.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitTypeAliasTypeParameterExtendingUnknownSymbol.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitTypeAliasWithTypeParameters1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitTypeAliasWithTypeParameters2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitTypeAliasWithTypeParameters3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitTypeAliasWithTypeParameters4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitTypeAliasWithTypeParameters5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitTypeAliasWithTypeParameters6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitTypeParamMergedWithPrivate.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitTypeParameterNameInOuterScope.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitTypeParameterNameReusedInOverloads.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitTypeParameterNameShadowedInternally.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitTypeofDefaultExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitTypeofRest.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitTypeofThisInClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitUnknownImport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitUnnessesaryTypeReferenceNotAdded.ts +tasks/coverage/typescript/tests/cases/compiler/declarationEmitUsingAlternativeContainingModules1.ts +Unexpected estree file content error: 2 != 3 + +tasks/coverage/typescript/tests/cases/compiler/declarationEmitUsingAlternativeContainingModules2.ts +Unexpected estree file content error: 2 != 3 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitUsingTypeAlias1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitUsingTypeAlias2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitVarInElidedBlock.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitWithComposite.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitWithDefaultAsComputedName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitWithDefaultAsComputedName2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitWithInvalidPackageJsonTypings.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationFileNoCrashOnExtraExportModifier.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationFileOverwriteError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationFileOverwriteErrorWithOut.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationFilesGeneratingTypeReferences.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationFilesWithTypeReferences1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationFilesWithTypeReferences2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationFilesWithTypeReferences3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationFilesWithTypeReferences4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationFunctionTypeNonlocalShouldNotBeAnError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationImportTypeAliasInferredAndEmittable.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationMaps.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationMapsMultifile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationMapsOutFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationMapsOutFile2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationMapsWithSourceMap.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationMapsWithoutDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationMerging1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationMerging2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationNoDanglingGenerics.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationQuotedMembers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationTypecheckNoUseBeforeReferenceCheck.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationsForFileShadowingGlobalNoError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationsForIndirectTypeAliasReference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationsForInferredTypeFromOtherFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationsIndirectGeneratedAliasReference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationsWithRecursiveInternalTypesProduceUniqueTypeParams.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/declareAlreadySeen.ts +declare' modifier already seen. +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declareClassInterfaceImplementation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declareDottedExtend.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declareDottedModuleName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declareExternalModuleWithExportAssignedFundule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declareFileExportAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declareFileExportAssignmentWithVarFromVariableStatement.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declareIdentifierAsBeginningOfStatementExpression01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declareModifierOnImport1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declareModifierOnTypeAlias.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declaredExternalModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/declaredExternalModuleWithExportAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/decoratorMetadataConditionalType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/decoratorMetadataElidedImport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/decoratorMetadataElidedImportOnDeclare.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/decoratorMetadataForMethodWithNoReturnTypeAnnotation01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/decoratorMetadataGenericTypeVariable.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/decoratorMetadataGenericTypeVariableDefault.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/decoratorMetadataGenericTypeVariableInScope.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/decoratorMetadataNoLibIsolatedModulesTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/decoratorMetadataNoStrictNull.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/decoratorMetadataOnInferredType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/decoratorMetadataPromise.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/decoratorMetadataRestParameterWithImportedType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/decoratorMetadataTypeOnlyExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/decoratorMetadataTypeOnlyImport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/decoratorMetadataWithConstructorType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/decoratorMetadataWithImportDeclarationNameCollision.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/decoratorMetadataWithImportDeclarationNameCollision2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/decoratorMetadataWithImportDeclarationNameCollision3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/decoratorMetadataWithImportDeclarationNameCollision4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/decoratorMetadataWithImportDeclarationNameCollision5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/decoratorMetadataWithImportDeclarationNameCollision6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/decoratorMetadataWithImportDeclarationNameCollision7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/decoratorMetadataWithImportDeclarationNameCollision8.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/decoratorReferenceOnOtherProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/decoratorReferences.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/decoratorWithNegativeLiteralTypeNoCrash.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/decoratorWithUnderscoreMethod.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/decoratorsOnComputedProperties.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/deduplicateImportsInSystem.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/deepComparisons.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/deepElaborationsIntoArrowExpressions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/deepExcessPropertyCheckingWhenTargetIsIntersection.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/deepKeysIndexing.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/deeplyNestedAssignabilityErrorsCombined.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/deeplyNestedAssignabilityIssue.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/deeplyNestedCheck.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/deeplyNestedConditionalTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/deeplyNestedConstraints.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/deeplyNestedMappedTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/deeplyNestedTemplateLiteralIntersection.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/defaultArgsInFunctionExpressions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/defaultArgsInOverloads.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/defaultBestCommonTypesHaveDecls.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/defaultDeclarationEmitDefaultImport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/defaultDeclarationEmitNamedCorrectly.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/defaultDeclarationEmitShadowedNamedCorrectly.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/defaultIndexProps1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/defaultIndexProps2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/defaultIsNotVisibleInLocalScope.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/defaultNamedExportWithType1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/defaultNamedExportWithType2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/defaultNamedExportWithType3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/defaultNamedExportWithType4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/defaultOfAnyInStrictNullChecks.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/defaultParameterAddsUndefinedWithStrictNullChecks.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/defaultParameterTrailingComments.ts +tasks/coverage/typescript/tests/cases/compiler/defaultPropsEmptyCurlyBecomesAnyForJs.ts +Unexpected estree file content error: 2 != 3 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/defaultValueInConstructorOverload1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/defaultValueInFunctionOverload1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/defaultValueInFunctionTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/deferredConditionalTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/deferredConditionalTypes2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/deferredLookupTypeResolution.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/deferredLookupTypeResolution2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/deferredTypeReferenceWithinArrayWithinTuple.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/defineVariables_useDefineForClassFields.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/definiteAssignmentOfDestructuredVariable.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/definiteAssignmentWithErrorStillStripped.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/deleteExpressionMustBeOptional.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/deleteExpressionMustBeOptional_exactOptionalPropertyTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/deleteOperator1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/deleteOperatorInStrictMode.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/deleteReadonly.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/deleteReadonlyInStrictNullChecks.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/dependencyViaImportAlias.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/deprecatedBool.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/deprecatedCompilerOptions1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/deprecatedCompilerOptions2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/deprecatedCompilerOptions3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/deprecatedCompilerOptions4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/deprecatedCompilerOptions5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/deprecatedCompilerOptions6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/derivedClassConstructorWithExplicitReturns01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/derivedClassOverridesPrivateFunction1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/derivedClasses.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/derivedInterfaceCallSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/derivedTypeCallingBaseImplWithOptionalParams.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/derivedTypeIncompatibleSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/destructureCatchClause.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/destructureComputedProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/destructureOfVariableSameAsShorthand.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/destructureOptionalParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/destructureTupleWithVariableElement.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/destructuredDeclarationEmit.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/destructuredLateBoundNameHasCorrectTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/destructuredMaappedTypeIsNotImplicitlyAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/destructuringAssignmentWithDefault.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/destructuringAssignmentWithDefault2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/destructuringAssignmentWithExportedName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/destructuringAssignmentWithStrictNullChecks.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/destructuringAssignment_private.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/destructuringFromUnionSpread.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/destructuringInVariableDeclarations1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/destructuringInVariableDeclarations2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/destructuringInVariableDeclarations3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/destructuringInVariableDeclarations4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/destructuringInVariableDeclarations5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/destructuringInVariableDeclarations6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/destructuringInVariableDeclarations7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/destructuringInVariableDeclarations8.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/destructuringInitializerContextualTypeFromContext.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/destructuringPropertyAssignmentNameIsNotAssignmentTarget.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/destructuringTempOccursAfterPrologue.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/destructuringTuple.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/destructuringTypeGuardFlow.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/destructuringUnspreadableIntoRest.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/destructuringWithConstraint.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/destructuringWithGenericParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/destructuringWithNewExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/destructuringWithNumberLiteral.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/detachedCommentAtStartOfConstructor1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/detachedCommentAtStartOfConstructor2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/detachedCommentAtStartOfFunctionBody1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/detachedCommentAtStartOfFunctionBody2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/detachedCommentAtStartOfLambdaFunction1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/detachedCommentAtStartOfLambdaFunction2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/didYouMeanElaborationsForExpressionsWhichCouldBeCalled.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/didYouMeanStringLiteral.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/didYouMeanSuggestionErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/differentTypesWithSameName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/discriminableUnionWithIntersectedMembers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/discriminantElementAccessCheck.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/discriminantNarrowingCouldBeCircular.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/discriminantPropertyCheck.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/discriminantPropertyInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/discriminantUsingEvaluatableTemplateExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/discriminantsAndNullOrUndefined.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/discriminantsAndPrimitives.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/discriminantsAndTypePredicates.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/discriminateObjectTypesOnly.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/discriminateWithDivergentAccessors1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/discriminateWithMissingProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/discriminateWithOptionalProperty1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/discriminateWithOptionalProperty2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/discriminateWithOptionalProperty3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/discriminateWithOptionalProperty4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/discriminatedUnionErrorMessage.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/discriminatedUnionJsxElement.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/discriminatedUnionWithIndexSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/discriminatingUnionWithUnionPropertyAgainstUndefinedWithoutStrictNullChecks.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/dissallowSymbolAsWeakType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/distributiveConditionalTypeConstraints.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/distributiveConditionalTypeNeverIntersection1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/divergentAccessors1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/divergentAccessorsTypes1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/divergentAccessorsTypes2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/divergentAccessorsTypes3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/divergentAccessorsTypes4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/divergentAccessorsTypes5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/divergentAccessorsTypes6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/divergentAccessorsTypes7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/divergentAccessorsTypes8.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/divergentAccessorsVisibility1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/divideAndConquerIntersections.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/doNotElaborateAssignabilityToTypeParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/doNotEmitDetachedComments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/doNotEmitDetachedCommentsAtStartOfConstructor.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/doNotEmitDetachedCommentsAtStartOfFunctionBody.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/doNotEmitDetachedCommentsAtStartOfLambdaFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/doNotEmitPinnedCommentNotOnTopOfFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/doNotEmitPinnedCommentOnNotEmittedNode.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/doNotEmitPinnedCommentOnNotEmittedNodets.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/doNotEmitPinnedDetachedComments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/doNotEmitTripleSlashCommentsInEmptyFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/doNotEmitTripleSlashCommentsOnNotEmittedNode.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/doNotInferUnrelatedTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/doNotWidenAtObjectLiteralPropertyAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/doNotemitTripleSlashComments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/doWhileLoop.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/doWhileUnreachableCode.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/doYouNeedToChangeYourTargetLibraryES2015.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/doYouNeedToChangeYourTargetLibraryES2016Plus.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/doYouNeedToChangeYourTargetLibraryES2023.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/doesNotNarrowUnionOfConstructorsWithInstanceof.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/dottedModuleName2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/dottedNamesInSystem.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/dottedSymbolResolution1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/doubleMixinConditionalTypeBaseClassWorks.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/doubleUnderStringLiteralAssignability.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/doubleUnderscoreEnumEmit.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/doubleUnderscoreExportStarConflict.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/doubleUnderscoreLabels.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/doubleUnderscoreMappedTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/downlevelLetConst10.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/downlevelLetConst11.ts +Unexpected token +Mismatch: tasks/coverage/typescript/tests/cases/compiler/downlevelLetConst12.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/downlevelLetConst13.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/downlevelLetConst14.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/downlevelLetConst15.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/downlevelLetConst16.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/downlevelLetConst17.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/downlevelLetConst18.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/downlevelLetConst19.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/downlevelLetConst2.ts +Missing initializer in const declaration +Mismatch: tasks/coverage/typescript/tests/cases/compiler/downlevelLetConst3.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/downlevelLetConst4.ts +Missing initializer in const declaration +Mismatch: tasks/coverage/typescript/tests/cases/compiler/downlevelLetConst5.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/downlevelLetConst6.ts +Unexpected token +Mismatch: tasks/coverage/typescript/tests/cases/compiler/downlevelLetConst7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/downlevelLetConst8.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/downlevelLetConst9.ts +tasks/coverage/typescript/tests/cases/compiler/dtsEmitTripleSlashAvoidUnnecessaryResolutionMode.ts +Unexpected estree file content error: 2 != 3 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateAnonymousInners1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateAnonymousModuleClasses.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateClassElements.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateConstructSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateConstructSignature2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateConstructorOverloadSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateConstructorOverloadSignature2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateDefaultExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateErrorAssignability.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateErrorClassExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateErrorNameNotFound.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateIdentifierBindingElementInParameterDeclaration1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateIdentifierBindingElementInParameterDeclaration2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateIdentifierComputedName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateIdentifierDifferentModifiers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateIdentifierDifferentSpelling.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateIdentifierEnum.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateIdentifierInCatchBlock.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateIdentifierRelatedSpans1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateIdentifierRelatedSpans2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateIdentifierRelatedSpans3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateIdentifierRelatedSpans4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateIdentifierRelatedSpans5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateIdentifierRelatedSpans6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateIdentifierRelatedSpans7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateIdentifierRelatedSpans_moduleAugmentation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateIdentifierShouldNotShortCircuitBaseTypeBinding.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateIdentifiersAcrossContainerBoundaries.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateIdentifiersAcrossFileBoundaries.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateInterfaceMembers1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateLabel1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateLabel2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateLabel3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateLabel4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateLocalVariable1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateLocalVariable2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateLocalVariable3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateLocalVariable4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateObjectLiteralProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateObjectLiteralProperty_computedName1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateObjectLiteralProperty_computedName2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateObjectLiteralProperty_computedName3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateObjectLiteralProperty_computedNameNegative1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateOverloadInTypeAugmentation1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicatePackage_globalMerge.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicatePackage_packageIdIncludesSubModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicatePackage_referenceTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicatePackage_relativeImportWithinPackage.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicatePackage_relativeImportWithinPackage_scoped.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicatePackage_subModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicatePropertiesInStrictMode.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateStringNamedProperty1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateSymbolsExportMatching.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateTypeParameters1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateTypeParameters2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateTypeParameters3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateVarAndImport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateVarAndImport2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateVariableDeclaration1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateVariablesByScope.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateVariablesWithAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateVarsAcrossFileBoundaries.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/dynamicImportEvaluateSpecifier.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/dynamicImportInDefaultExportExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/dynamicImportTrailingComma.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/dynamicImportWithNestedThis_es2015.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/dynamicImportWithNestedThis_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/dynamicImportsDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/dynamicModuleTypecheckError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/dynamicNames.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/dynamicNamesErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/elaboratedErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/elaboratedErrorsOnNullableTargets01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/elaborationForPossiblyCallableTypeStillReferencesArgumentAtTopLevel.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/elementAccessExpressionInternalComments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/elidedEmbeddedStatementsReplacedWithSemicolon.ts +tasks/coverage/typescript/tests/cases/compiler/elidedJSImport1.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/compiler/elidedJSImport2.ts +Unexpected estree file content error: 1 != 3 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/elidingImportNames.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emitAccessExpressionOfCastedObjectLiteralExpressionInArrowFunctionES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emitAccessExpressionOfCastedObjectLiteralExpressionInArrowFunctionES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emitBOM.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emitBundleWithPrologueDirectives1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emitCapturingThisInTupleDestructuring1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emitCapturingThisInTupleDestructuring2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emitClassExpressionInDeclarationFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emitClassExpressionInDeclarationFile2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emitClassMergedWithConstNamespaceNotElided.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emitCommentsOnlyFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emitDecoratorMetadata_isolatedModules.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emitDecoratorMetadata_object.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emitDecoratorMetadata_restArgs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emitHelpersWithLocalCollisions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emitMemberAccessExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emitMethodCalledNew.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emitOneLineVariableDeclarationRemoveCommentsFalse.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emitPinnedCommentsOnTopOfFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emitPostComments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emitPreComments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emitSkipsThisWithRestParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emitSuperCallBeforeEmitParameterPropertyDeclaration1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emitSuperCallBeforeEmitParameterPropertyDeclaration1ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emitSuperCallBeforeEmitPropertyDeclaration1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emitSuperCallBeforeEmitPropertyDeclaration1ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emitSuperCallBeforeEmitPropertyDeclarationAndParameterPropertyDeclaration1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emitSuperCallBeforeEmitPropertyDeclarationAndParameterPropertyDeclaration1ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emitThisInObjectLiteralGetter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emitThisInSuperMethodCall.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emitTopOfFileTripleSlashCommentOnNotEmittedNodeIfRemoveCommentsIsFalse.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emptyAnonymousObjectNarrowing.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emptyArgumentsListComment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emptyArrayDestructuringExpressionVisitedByTransformer.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emptyDeclarationEmitIsModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emptyEnum.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emptyGenericParamList.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emptyIndexer.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emptyModuleName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emptyObjectNotSubtypeOfIndexSignatureContainingObject1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emptyObjectNotSubtypeOfIndexSignatureContainingObject2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emptyOptionalBindingPatternInDeclarationSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emptyThenWarning.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emptyThenWithoutWarning.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emptyTypeArgumentList.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/emptyTypeArgumentListWithNew.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumAssignmentCompat.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumAssignmentCompat2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumAssignmentCompat3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumAssignmentCompat4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumAssignmentCompat5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumAssignmentCompat6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumAssignmentCompat7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumBasics1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumBasics2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumBasics3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumCodeGenNewLines1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumDecl1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumDeclarationEmitInitializerHasImport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumFromExternalModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumGenericTypeClash.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/enumIdentifierLiterals.ts +An enum member cannot have a numeric name. +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumIndexer.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumInitializersWithExponents.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumKeysQuotedAsObjectPropertiesInDeclarationEmit.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumLiteralAssignableToEnumInsideUnion.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumLiteralUnionNotWidened.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumLiteralsSubtypeReduction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumMapBackIntoItself.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumMemberReduction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumNegativeLiteral1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumNoInitializerFollowsNonLiteralInitializer.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumNumbering1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumOperations.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumPropertyAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumPropertyAccessBeforeInitalisation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumUsedBeforeDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumWithComputedMember.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumWithExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumWithInfinityProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumWithNaNProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumWithNegativeInfinityProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumWithNonLiteralStringInitializer.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumWithPrimitiveName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumWithQuotedElementName1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumWithQuotedElementName2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumWithUnicodeEscape1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumWithoutInitializerAfterComputedMember.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumsWithMultipleDeclarations1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumsWithMultipleDeclarations2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/enumsWithMultipleDeclarations3.ts +tasks/coverage/typescript/tests/cases/compiler/erasableSyntaxOnly.ts +Unexpected estree file content error: 1 != 4 + +tasks/coverage/typescript/tests/cases/compiler/erasableSyntaxOnlyDeclaration.ts +Unexpected estree file content error: 1 != 5 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/errorCause.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/errorConstructorSubtypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/errorElaboration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/errorElaborationDivesIntoApparentlyPresentPropsOnly.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/errorForBareSpecifierWithImplicitModuleResolutionNone.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/errorForConflictingExportEqualsValue.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/errorForUsingPropertyOfTypeAsType02.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/errorForUsingPropertyOfTypeAsType03.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/errorForwardReferenceForwadingConstructor.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/errorHandlingInInstanceOf.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/errorInfoForRelatedIndexTypesNoConstraintElaboration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/errorLocationForInterfaceExtension.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/errorMessageOnIntersectionsWithDiscriminants01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/errorMessageOnObjectLiteralType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/errorMessagesIntersectionTypes01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/errorMessagesIntersectionTypes02.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/errorMessagesIntersectionTypes03.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/errorMessagesIntersectionTypes04.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/errorOnContextuallyTypedReturnType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/errorOnEnumReferenceInCondition.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/errorOnUnionVsObjectShouldDeeplyDisambiguate.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/errorOnUnionVsObjectShouldDeeplyDisambiguate2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/errorSupression1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/errorTypesAsTypeArguments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/errorWithSameNameType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/errorWithTruncatedType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/errorsForCallAndAssignmentAreSimilar.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/errorsInGenericTypeReference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/errorsOnImportedSymbol.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/errorsOnUnionsOfOverlappingObjects01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/errorsWithInvokablesInUnions01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es2015modulekind.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es2015modulekindWithES6Target.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es2017basicAsync.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es2018ObjectAssign.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-amd.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-asyncFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-asyncFunctionArrayLiterals.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-asyncFunctionBinaryExpressions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-asyncFunctionCallExpressions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-asyncFunctionConditionals.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-asyncFunctionDoStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-asyncFunctionElementAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-asyncFunctionForInStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-asyncFunctionForOfStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-asyncFunctionForStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-asyncFunctionHoisting.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-asyncFunctionIfStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-asyncFunctionLongObjectLiteral.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-asyncFunctionNestedLoops.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-asyncFunctionNewExpressions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-asyncFunctionObjectLiterals.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-asyncFunctionPropertyAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-asyncFunctionReturnStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-asyncFunctionSwitchStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-asyncFunctionTryStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-asyncFunctionWhileStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-asyncFunctionWithStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-commonjs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-commonjs2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-commonjs3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-commonjs4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-commonjs5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-commonjs6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-commonjs7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-commonjs8.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-declaration-amd.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-importHelpersAsyncFunctions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-souremap-amd.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-system.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-system2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-umd.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-umd2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-umd3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-umd4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-yieldFunctionObjectLiterals.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5ExportDefaultClassDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5ExportDefaultClassDeclaration2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5ExportDefaultClassDeclaration3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5ExportDefaultClassDeclaration4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5ExportDefaultExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5ExportDefaultFunctionDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5ExportDefaultFunctionDeclaration2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5ExportDefaultFunctionDeclaration3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5ExportDefaultFunctionDeclaration4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5ExportDefaultIdentifier.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5ExportEquals.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5ExportEqualsDts.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5ModuleInternalNamedImports.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5ModuleWithModuleGenAmd.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5ModuleWithModuleGenCommonjs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5ModuleWithoutModuleGenTarget.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5SetterparameterDestructuringNotElided.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5andes6module.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6-amd.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6-declaration-amd.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6-sourcemap-amd.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6-umd.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6-umd2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ClassSuperCodegenBug.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ClassTest.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ClassTest2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ClassTest3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ClassTest4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ClassTest5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ClassTest7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ClassTest8.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6DeclOrdering.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ExportAll.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ExportAllInEs5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ExportAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ExportAssignment2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ExportAssignment3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ExportAssignment4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ExportClause.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ExportClauseInEs5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ExportClauseWithAssignmentInEs5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ExportClauseWithoutModuleSpecifier.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ExportClauseWithoutModuleSpecifierInEs5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ExportDefaultClassDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ExportDefaultClassDeclaration2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ExportDefaultExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ExportDefaultFunctionDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ExportDefaultFunctionDeclaration2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ExportDefaultIdentifier.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ExportEquals.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ExportEqualsInterop.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportDefaultBinding.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportDefaultBindingAmd.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportDefaultBindingDts.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportDefaultBindingFollowedWithNamedImport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportDefaultBindingFollowedWithNamedImport1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportDefaultBindingFollowedWithNamedImport1InEs5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportDefaultBindingFollowedWithNamedImport1WithExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportDefaultBindingFollowedWithNamedImportDts.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportDefaultBindingFollowedWithNamedImportDts1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportDefaultBindingFollowedWithNamedImportInEs5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportDefaultBindingFollowedWithNamedImportWithExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportDefaultBindingFollowedWithNamespaceBinding.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportDefaultBindingFollowedWithNamespaceBinding1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportDefaultBindingFollowedWithNamespaceBinding1InEs5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportDefaultBindingFollowedWithNamespaceBinding1WithExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportDefaultBindingFollowedWithNamespaceBindingDts.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportDefaultBindingFollowedWithNamespaceBindingDts1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportDefaultBindingFollowedWithNamespaceBindingInEs5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportDefaultBindingFollowedWithNamespaceBindingWithExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportDefaultBindingInEs5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportDefaultBindingMergeErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportDefaultBindingNoDefaultProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportDefaultBindingWithExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportEqualsDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportEqualsDeclaration2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportEqualsExportModuleCommonJsError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportEqualsExportModuleEs2015Error.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportNameSpaceImport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportNameSpaceImportAmd.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportNameSpaceImportDts.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportNameSpaceImportInEs5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportNameSpaceImportMergeErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportNameSpaceImportNoNamedExports.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportNameSpaceImportWithExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportNamedImport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportNamedImportAmd.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportNamedImportDts.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportNamedImportInEs5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportNamedImportInExportAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportNamedImportInIndirectExportAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportNamedImportMergeErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportNamedImportNoExportMember.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportNamedImportNoNamedExports.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportNamedImportWithExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportNamedImportWithTypesAndValues.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportWithoutFromClause.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportWithoutFromClauseAmd.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportWithoutFromClauseInEs5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportWithoutFromClauseNonInstantiatedModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ImportWithoutFromClauseWithExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6MemberScoping.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6Module.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ModuleClassDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ModuleConst.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ModuleConstEnumDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ModuleConstEnumDeclaration2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ModuleEnumDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ModuleFunctionDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ModuleInternalImport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ModuleInternalNamedImports.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ModuleInternalNamedImports2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ModuleLet.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ModuleModuleDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ModuleVariableStatement.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ModuleWithModuleGenTargetAmd.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ModuleWithModuleGenTargetCommonjs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6UseOfTopLevelRequire.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/esDecoratorsClassFieldsCrash.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/esModuleInterop.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/esModuleInteropDefaultImports.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/esModuleInteropDefaultMemberMustBeSyntacticallyDefaultExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/esModuleInteropEnablesSyntheticDefaultImports.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/esModuleInteropImportCall.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/esModuleInteropImportDefaultWhenAllNamedAreDefaultAlias.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/esModuleInteropImportNamespace.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/esModuleInteropImportTSLibHasImport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/esModuleInteropNamedDefaultImports.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/esModuleInteropPrettyErrorRelatedInformation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/esModuleInteropTslibHelpers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/esModuleInteropUsesExportStarWhenDefaultPlusNames.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/esModuleInteropWithExportStar.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/esModuleIntersectionCrash.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/esNextWeakRefs_IterableWeakMap.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/escapedIdentifiers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/escapedReservedCompilerNamedIdentifier.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/esmNoSynthesizedDefault.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/evalAfter0.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/evalOrArgumentsInDeclarationFunctions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/eventEmitterPatternWithRecordOfFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/evolvingArrayResolvedAssert.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/evolvingArrayTypeInAssert.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exactSpellingSuggestion.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/excessPropertiesInOverloads.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/excessPropertyCheckIntersectionWithIndexSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/excessPropertyCheckIntersectionWithRecursiveType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/excessPropertyCheckWithEmptyObject.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/excessPropertyCheckWithMultipleDiscriminants.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/excessPropertyCheckWithNestedArrayIntersection.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/excessPropertyCheckWithSpread.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/excessPropertyCheckWithUnions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/excessPropertyCheckingIntersectionWithConditional.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/excessPropertyChecksWithNestedIntersections.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/excessPropertyErrorForFunctionTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/excessPropertyErrorsSuppressed.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/excessivelyLargeTupleSpread.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exhaustiveSwitchCheckCircularity.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exhaustiveSwitchImplicitReturn.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exhaustiveSwitchWithWideningLiteralTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/expandoFunctionBlockShadowing.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/expandoFunctionContextualTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/expandoFunctionContextualTypesJSDocInTs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/expandoFunctionContextualTypesNoValue.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/expandoFunctionExpressionsWithDynamicNames.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/expandoFunctionExpressionsWithDynamicNames2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/expandoFunctionNestedAssigments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/expandoFunctionNestedAssigmentsDeclared.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/expandoFunctionNullishProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/expandoFunctionSymbolProperty.ts +tasks/coverage/typescript/tests/cases/compiler/expandoFunctionSymbolPropertyJs.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/experimentalDecoratorMetadataUnresolvedTypeObjectInEmit.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/explicitAnyAfterSpreadNoImplicitAnyError.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/exportAlreadySeen.ts +'export' modifier cannot be used here. +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportArrayBindingPattern.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportAsNamespace.d.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportAsNamespaceConflict.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportAsNamespace_augment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportAssignClassAndModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportAssignValueAndType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportAssignedNamespaceIsVisibleInDeclarationEmit.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportAssignedTypeAsTypeAnnotation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportAssignmentClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportAssignmentEnum.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportAssignmentError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportAssignmentFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportAssignmentImportMergeNoCrash.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportAssignmentInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportAssignmentInternalModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportAssignmentMembersVisibleInAugmentation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportAssignmentOfDeclaredExternalModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportAssignmentOfGenericType1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportAssignmentVariable.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/exportAssignmentWithDeclareAndExportModifiers.ts +Unexpected token +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/exportAssignmentWithDeclareModifier.ts +Unexpected token +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/exportAssignmentWithExportModifier.ts +Unexpected token +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportAssignmentWithExports.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportAssignmentWithImportStatementPrivacyError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportAssignmentWithPrivacyError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportAssignmentWithoutAllowSyntheticDefaultImportsError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportAssignmentWithoutIdentifier1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportClassExtendingIntersection.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportDeclarationForModuleOrEnumWithMemberOfSameName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportDeclarationWithModuleSpecifierNameOnNextLine1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportDeclarationsInAmbientNamespaces.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportDeclarationsInAmbientNamespaces2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportDeclareClass1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportDefaultAbstractClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportDefaultAlias_excludesEverything.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportDefaultAsyncFunction.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/exportDefaultAsyncFunction2.ts +Cannot use `await` as an identifier in an async context +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportDefaultClassAndValue.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportDefaultClassInNamespace.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportDefaultDuplicateCrash.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportDefaultForNonInstantiatedModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportDefaultFunctionInNamespace.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportDefaultImportedType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportDefaultInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportDefaultInterfaceAndFunctionOverloads.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportDefaultInterfaceAndTwoFunctions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportDefaultInterfaceAndValue.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportDefaultInterfaceClassAndFunctionOverloads.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportDefaultInterfaceClassAndValue.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportDefaultMissingName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportDefaultParenthesize.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportDefaultParenthesizeES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportDefaultProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportDefaultProperty2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportDefaultQualifiedNameNoError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportDefaultStripsFreshness.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportDefaultTypeAndClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportDefaultTypeAndFunctionOverloads.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportDefaultTypeClassAndValue.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportDefaultVariable.ts +tasks/coverage/typescript/tests/cases/compiler/exportDefaultWithJSDoc1.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/compiler/exportDefaultWithJSDoc2.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportEmptyArrayBindingPattern.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportEmptyObjectBindingPattern.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportEqualCallable.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportEqualErrorType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportEqualMemberMissing.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportEqualNamespaces.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportEqualsAmd.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportEqualsClassNoRedeclarationError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportEqualsClassRedeclarationError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportEqualsCommonJs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportEqualsDefaultProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportEqualsOfModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportEqualsProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportEqualsProperty2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportEqualsUmd.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportImport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportImportAndClodule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportImportCanSubstituteConstEnumForValue.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportImportMultipleFiles.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportImportNonInstantiatedModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportImportNonInstantiatedModule2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportInterfaceClassAndValue.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportInterfaceClassAndValueWithDuplicatesInImportList.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportNamespaceDeclarationRetainsVisibility.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportObjectRest.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportPrivateType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportRedeclarationTypeAliases.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportSameNameFuncVar.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportSpecifierAndExportedMemberDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportSpecifierAndLocalMemberDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportSpecifierForAGlobal.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportSpecifierReferencingOuterDeclaration1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportSpecifierReferencingOuterDeclaration2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportSpecifierReferencingOuterDeclaration3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportSpecifierReferencingOuterDeclaration4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportStarForValues.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportStarForValues10.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportStarForValues2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportStarForValues3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportStarForValues4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportStarForValues5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportStarForValues6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportStarForValues7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportStarForValues8.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportStarForValues9.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportStarForValuesInSystem.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportStarFromEmptyModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportStarNotElided.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportToString.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportTwoInterfacesWithSameName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportVisibility.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportedBlockScopedDeclarations.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportedInterfaceInaccessibleInCallbackInModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportedVariable1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportingContainingVisibleType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportsInAmbientModules1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportsInAmbientModules2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/expr.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/expressionWithJSDocTypeArguments.ts +Unexpected token +Mismatch: tasks/coverage/typescript/tests/cases/compiler/expressionsForbiddenInParameterInitializers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/extBaseClass1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/extBaseClass2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/extendAndImplementTheSameBaseType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/extendAndImplementTheSameBaseType2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/extendArray.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/extendBaseClassBeforeItsDeclared.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/extendConstructSignatureInInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/extendFromAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/extendGenericArray.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/extendGenericArray2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/extendGlobalThis.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/extendGlobalThis2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/extendNonClassSymbol1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/extendNonClassSymbol2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/extendPrivateConstructorClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/extendedInterfaceGenericType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/extendedInterfacesWithDuplicateTypeParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/extendedUnicodeEscapeSequenceIdentifiers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/extendedUnicodePlaneIdentifiers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/extendingClassFromAliasAndUsageInIndexer.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/extendingSetWithCheckJs.ts +tasks/coverage/typescript/tests/cases/compiler/extendsUntypedModule.ts +Unexpected estree file content error: 1 != 3 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/externFunc.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/externModuleClobber.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/externSyntax.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/externalModuleAssignToVar.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/externalModuleExportingGenericClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/externalModuleImmutableBindings.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/externalModuleQualification.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/externalModuleReferenceDoubleUnderscore1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/externalModuleReferenceOfImportDeclarationWithExportModifier.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/externalModuleRefernceResolutionOrderInImportDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/externalModuleResolution.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/externalModuleResolution2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/externalModuleWithoutCompilerFlag1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/extractInferenceImprovement.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/fakeInfinity1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/fakeInfinity2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/fakeInfinity3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/fallFromLastCase1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/fallFromLastCase2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/fallbackToBindingPatternForTypeInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/fatArrowSelf.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/fatArrowfunctionAsType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/fatarrowfunctions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/fatarrowfunctionsInFunctionParameterDefaults.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/fatarrowfunctionsInFunctions.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/fatarrowfunctionsOptionalArgsErrors1.ts +A rest parameter cannot be optional +Mismatch: tasks/coverage/typescript/tests/cases/compiler/fatarrowfunctionsOptionalArgsErrors4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/fieldAndGetterWithSameName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/fileReferencesWithNoExtensions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/fileWithNextLine1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/fileWithNextLine2.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/fileWithNextLine3.ts +A 'return' statement can only be used within a function body. +Mismatch: tasks/coverage/typescript/tests/cases/compiler/filesEmittingIntoSameOutput.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/filesEmittingIntoSameOutputWithOutOption.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/fillInMissingTypeArgsOnConstructCalls.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/findLast.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/firstMatchRegExpMatchArray.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/fixCrashAliasLookupForDefauledImport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/fixTypeParameterInSignatureWithRestParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/fixingTypeParametersRepeatedly1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/fixingTypeParametersRepeatedly2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/fixingTypeParametersRepeatedly3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/flatArrayNoExcessiveStackDepth.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/flowAfterFinally1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/flowControlTypeGuardThenSwitch.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/flowInFinally1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/forAwaitForUnion.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/forIn2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/forInModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/forInStatement1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/forInStatement2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/forInStatement3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/forInStatement5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/forInStatement6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/forInStatement7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/forInStrictNullChecksNoError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/forLoopEndingMultilineComments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/forLoopWithDestructuringDoesNotElideFollowingStatement.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/forOfStringConstituents.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/forOfTransformsExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/forStatementInnerComments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/formatToPartsFractionalSecond.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/forwardDeclaredCommonTypes01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/forwardRefInClassProperties.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/forwardRefInEnum.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/forwardRefInTypeDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/freshLiteralInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/freshLiteralTypesInIntersections.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/fromAsIdentifier1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/fromAsIdentifier2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/funClodule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/funcdecl.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionAndImportNameConflict.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionAndInterfaceWithSeparateErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionAndPropertyNameConflict.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionArgShadowing.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionAssignabilityWithArrayLike01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionAssignmentError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionCall1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionCall10.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionCall11.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionCall12.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionCall13.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionCall14.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionCall15.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionCall16.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionCall17.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionCall18.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionCall2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionCall3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionCall4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionCall5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionCall6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionCall7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionCall8.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionCall9.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionCallOnConstrainedTypeVariable.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionDeclarationWithArgumentOfTypeFunctionTypeArray.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionDeclarationWithResolutionOfTypeNamedArguments01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionDeclarationWithResolutionOfTypeOfSameName01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionExpressionAndLambdaMatchesFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionExpressionInWithBlock.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionExpressionReturningItself.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionExpressionShadowedByParams.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionExpressionWithResolutionOfTypeNamedArguments01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionExpressionWithResolutionOfTypeOfSameName01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionExpressionWithResolutionOfTypeOfSameName02.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionInIfStatementInModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionLikeInParameterInitializer.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionMergedWithModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOnlyHasThrow.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloadAmbiguity1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloadImplementationOfWrongName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloadImplementationOfWrongName2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads10.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads11.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads12.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads13.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads14.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads15.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads16.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads17.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads18.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads19.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads20.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads21.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads22.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads23.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads24.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads25.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads26.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads27.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads28.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads29.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads30.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads31.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads32.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads33.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads34.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads35.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads36.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads37.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads38.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads39.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads40.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads41.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads42.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads43.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads44.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads45.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads8.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloads9.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloadsOnGenericArity1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloadsOnGenericArity2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloadsOutOfOrder.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloadsRecursiveGenericReturnType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionParameterArityMismatch.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionReturn.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionReturnTypeQuery.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionReturningItself.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionSignatureAssignmentCompat1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionSubtypingOfVarArgs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionSubtypingOfVarArgs2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionToFunctionWithPropError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionTypeArgumentArityErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionTypeArgumentArrayAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionTypeArgumentAssignmentCompat.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionVariableInReturnTypeAnnotation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionWithAnyReturnTypeAndNoReturnExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionWithDefaultParameterWithNoStatements1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionWithDefaultParameterWithNoStatements10.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionWithDefaultParameterWithNoStatements11.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionWithDefaultParameterWithNoStatements12.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionWithDefaultParameterWithNoStatements13.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionWithDefaultParameterWithNoStatements14.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionWithDefaultParameterWithNoStatements15.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionWithDefaultParameterWithNoStatements16.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionWithDefaultParameterWithNoStatements2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionWithDefaultParameterWithNoStatements3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionWithDefaultParameterWithNoStatements4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionWithDefaultParameterWithNoStatements5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionWithDefaultParameterWithNoStatements6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionWithDefaultParameterWithNoStatements7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionWithDefaultParameterWithNoStatements8.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionWithDefaultParameterWithNoStatements9.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionWithNoBestCommonType1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionWithNoBestCommonType2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionWithSameNameAsField.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionWithThrowButNoReturn1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionsInClassExpressions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionsMissingReturnStatementsAndExpressionsStrictNullChecks.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionsWithImplicitReturnTypeAssignableToUndefined.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/funduleExportedClassIsUsedBeforeDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/funduleOfFunctionWithoutReturnTypeAnnotation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/funduleSplitAcrossFiles.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/funduleUsedAcrossFileBoundary.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/fuzzy.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/generativeRecursionWithTypeOf.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/generatorES6InAMDModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/generatorES6_1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/generatorES6_2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/generatorES6_3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/generatorES6_4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/generatorES6_5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/generatorES6_6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/generatorReturnExpressionIsChecked.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/generatorTransformFinalLabel.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericAndNonGenericInheritedSignature1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericAndNonGenericInheritedSignature2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericAndNonGenericOverload1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericArgumentCallSigAssignmentCompat.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericArray0.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericArray1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericArrayAssignment1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericArrayAssignmentCompatErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericArrayExtenstions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericArrayMethods1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericArrayPropertyAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericArrayWithoutTypeAnnotation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericAssignmentCompatOfFunctionSignatures1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericAssignmentCompatWithInterfaces1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericBaseClassLiteralProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericBaseClassLiteralProperty2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericCallInferenceConditionalType1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericCallInferenceConditionalType2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericCallInferenceWithGenericLocalFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericCallOnMemberReturningClosedOverObject.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericCallSpecializedToTypeArg.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericCallWithFixedArguments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericCallWithNonGenericArgs1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericCallWithObjectLiteralArguments1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericCallWithinOwnBodyCastTypeParameterIdentity.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericCallbackInvokedInsideItsContainingFunction1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericCallbacksAndClassHierarchy.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericCapturingFunctionNarrowing.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericChainedCalls.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericClassImplementingGenericInterfaceFromAnotherModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericClassInheritsConstructorFromNonGenericClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericClassPropertyInheritanceSpecialization.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericClassStaticMethod.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericClassWithStaticFactory.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericClassWithStaticsUsingTypeArguments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericClasses0.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericClasses1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericClasses2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericClasses3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericClasses4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericClassesInModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericClassesInModule2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericClassesRedeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericCloduleInModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericCloduleInModule2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericCloneReturnTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericCloneReturnTypes2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericCombinators2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericConditionalConstrainedToUnknownNotAssignableToConcreteObject.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericConstraint1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericConstraint2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericConstraint3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericConstraintDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericConstraintOnExtendedBuiltinTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericConstraintOnExtendedBuiltinTypes2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericConstraintSatisfaction1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericConstructInvocationWithNoTypeArg.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericConstructSignatureInInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericConstructorFunction1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericContextualTypingSpecialization.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericDefaults.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericDefaultsErrors.ts +tasks/coverage/typescript/tests/cases/compiler/genericDefaultsJs.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericDerivedTypeWithSpecializedBase.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericDerivedTypeWithSpecializedBase2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericFunctionCallSignatureReturnTypeMismatch.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericFunctionHasFreshTypeArgs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericFunctionInference1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericFunctionInference2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericFunctionSpecializations1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericFunctionTypedArgumentsAreFixed.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericFunctions0.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericFunctions1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericFunctions2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericFunctions3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericFunctionsAndConditionalInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericFunctionsNotContextSensitive.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericFunctionsWithOptionalParameters1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericFunctionsWithOptionalParameters2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericFunctionsWithOptionalParameters3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericFunduleInModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericFunduleInModule2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericGetter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericGetter2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericGetter3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericImplements.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericIndexTypeHasSensibleErrorMessage.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericIndexedAccessMethodIntersectionCanBeAccessed.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericIndexedAccessVarianceComparisonResultCorrect.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericInference1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericInference2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericInferenceDefaultTypeParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericInferenceDefaultTypeParameterJsxReact.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericInheritedDefaultConstructors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericInstanceOf.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericInterfaceFunctionTypeParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericInterfaceImplementation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericInterfaceTypeCall.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericInterfacesWithoutTypeArguments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericIsNeverEmptyObject.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericLambaArgWithoutTypeArguments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericMappedTypeAsClause.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericMemberFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericMergedDeclarationUsingTypeParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericMergedDeclarationUsingTypeParameter2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericMethodOverspecialization.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericNewInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericNumberIndex.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericObjectCreationWithoutTypeArgs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericObjectLitReturnType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericObjectSpreadResultInSwitch.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericOfACloduleType1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericOfACloduleType2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericOverloadSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericParameterAssignability1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericPrototypeProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericPrototypeProperty2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericPrototypeProperty3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericRecursiveImplicitConstructorErrors1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericRecursiveImplicitConstructorErrors2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericRecursiveImplicitConstructorErrors3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericReduce.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericRestArgs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericRestTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericReturnTypeFromGetter1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericReversingTypeParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericReversingTypeParameters2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericSignatureIdentity.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericSignatureInheritance.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericSignatureInheritance2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericSpecializationToTypeLiteral1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericSpecializations1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericSpecializations2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericSpecializations3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericStaticAnyTypeFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericTemplateOverloadResolution.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericTupleWithSimplifiableElements.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericTypeArgumentInference1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericTypeAssertions1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericTypeAssertions2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericTypeAssertions3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericTypeAssertions4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericTypeAssertions5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericTypeAssertions6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericTypeConstraints.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericTypeParameterEquivalence2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericTypeReferencesRequireTypeArgs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericTypeUsedWithoutTypeArguments1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericTypeUsedWithoutTypeArguments3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericTypeWithCallableMembers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericTypeWithCallableMembers2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericTypeWithMultipleBases1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericTypeWithMultipleBases2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericTypeWithMultipleBases3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericTypeWithNonGenericBaseMisMatch.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericUnboundedTypeParamAssignability.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericWithCallSignatureReturningSpecialization.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericWithCallSignatures1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericWithIndexerOfTypeParameterType1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericWithIndexerOfTypeParameterType2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericWithNoConstraintComparableWithCurlyCurly.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericWithOpenTypeParameters1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/generics0.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/generics1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/generics1NoError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/generics2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/generics2NoError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/generics3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/generics4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/generics4NoError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/generics5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericsAndHigherOrderFunctions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericsManyTypeParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericsWithDuplicateTypeParameters1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericsWithoutTypeParameters1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/getAccessorWithImpliedReturnTypeAndFunctionClassMerge.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/getAndSetAsMemberNames.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/getAndSetNotIdenticalType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/getAndSetNotIdenticalType2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/getAndSetNotIdenticalType3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/getParameterNameAtPosition.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/getSetEnumerable.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/getsetReturnTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/getterControlFlowStrictNull.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/getterErrorMessageNotDuplicated.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/getterMissingReturnError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/getterSetterNonAccessor.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/getterSetterSubtypeAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/getterThatThrowsShouldNotNeedReturn.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/gettersAndSetters.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/gettersAndSettersAccessibility.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/gettersAndSettersErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/gettersAndSettersTypesAgree.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/global.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/globalFunctionAugmentationOverload.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/globalIsContextualKeyword.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/globalThis.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/globalThisCapture.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/globalThisDeclarationEmit.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/globalThisDeclarationEmit2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/globalThisDeclarationEmit3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/grammarAmbiguities1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/heterogeneousArrayAndOverloads.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/hidingCallSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/hidingConstructSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/hidingIndexSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/higherOrderMappedIndexLookupInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/homomorphicMappedTypeIntersectionAssignability.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/homomorphicMappedTypeNesting.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/homomorphicMappedTypeWithNonHomomorphicInstantiationSpreadable1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/hugeDeclarationOutputGetsTruncatedWithError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/i3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/icomparable.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/idInProp.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/identicalGenericConditionalsWithInferRelated.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/identicalTypesNoDifferByCheckOrder.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/identityAndDivergentNormalizedTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/identityForSignaturesWithTypeParametersAndAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/identityForSignaturesWithTypeParametersSwitched.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/identityRelationNeverTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ifElseWithStatements1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ifStatementInternalComments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ignoredJsxAttributes.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/illegalGenericWrapping1.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/illegalModifiersOnClassElements.ts +Expected a semicolon or an implicit semicolon after a statement, but found none +Mismatch: tasks/coverage/typescript/tests/cases/compiler/illegalSuperCallsInConstructor.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/implementArrayInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/implementGenericWithMismatchedTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/implementInterfaceAnyMemberWithVoid.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/implementPublicPropertyAsPrivate.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/implementsInClassExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/implementsIncorrectlyNoAssertion.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/implicitAnyAmbients.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/implicitAnyAnyReturningFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/implicitAnyCastedValue.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/implicitAnyDeclareFunctionExprWithoutFormalType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/implicitAnyDeclareFunctionWithoutFormalType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/implicitAnyDeclareFunctionWithoutFormalType2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/implicitAnyDeclareMemberWithoutType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/implicitAnyDeclareMemberWithoutType2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/implicitAnyDeclareTypePropertyWithoutType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/implicitAnyDeclareVariablesWithoutTypeAndInit.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/implicitAnyFromCircularInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/implicitAnyFunctionInvocationWithAnyArguements.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/implicitAnyFunctionOverloadWithImplicitAnyReturnType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/implicitAnyFunctionReturnNullOrUndefined.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/implicitAnyGenericTypeInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/implicitAnyGenerics.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/implicitAnyGetAndSetAccessorWithAnyReturnType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/implicitAnyInAmbientDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/implicitAnyInAmbientDeclaration2.d.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/implicitAnyInCatch.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/implicitAnyNewExprLackConstructorSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/implicitAnyWidenToAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/implicitConstParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/implicitIndexSignatures.ts +tasks/coverage/typescript/tests/cases/compiler/impliedNodeFormatEmit1.ts +Unexpected estree file content error: 3 != 10 + +tasks/coverage/typescript/tests/cases/compiler/impliedNodeFormatEmit2.ts +Unexpected estree file content error: 3 != 10 + +tasks/coverage/typescript/tests/cases/compiler/impliedNodeFormatEmit3.ts +Unexpected estree file content error: 3 != 10 + +tasks/coverage/typescript/tests/cases/compiler/impliedNodeFormatEmit4.ts +Unexpected estree file content error: 3 != 10 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/impliedNodeFormatInterop1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importAliasAnExternalModuleInsideAnInternalModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importAliasFromNamespace.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importAliasInModuleAugmentation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importAliasWithDottedName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importAnImport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importAndVariableDeclarationConflict1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importAndVariableDeclarationConflict2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importAndVariableDeclarationConflict3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importAndVariableDeclarationConflict4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importAsBaseClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importDecl.ts +tasks/coverage/typescript/tests/cases/compiler/importDeclFromTypeNodeInJsSource.ts +Unexpected estree file content error: 2 != 3 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importDeclRefereingExternalModuleWithNoResolve.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importDeclTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importDeclWithDeclareModifier.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importDeclWithDeclareModifierInAmbientContext.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importDeclWithExportModifier.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importDeclWithExportModifierAndExportAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importDeclWithExportModifierAndExportAssignmentInAmbientContext.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importDeclWithExportModifierInAmbientContext.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importDeclarationInModuleDeclaration1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importDeclarationNotCheckedAsValueWhenTargetNonValue.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importDeclarationUsedAsTypeQuery.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importElisionEnum.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importElisionExportNonExportAndDefault.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importEqualsError45874.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importExportInternalComments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importHelpers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importHelpersAmd.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importHelpersBundler.ts +tasks/coverage/typescript/tests/cases/compiler/importHelpersCommonJSJavaScript.ts +Unexpected estree file content error: 2 != 3 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importHelpersDeclarations.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importHelpersES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importHelpersInAmbientContext.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importHelpersInIsolatedModules.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importHelpersInTsx.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importHelpersNoEmitHelpersExportDefault.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importHelpersNoHelpers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importHelpersNoHelpersForAsyncGenerators.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importHelpersNoHelpersForPrivateFields.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importHelpersNoModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importHelpersOutFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importHelpersSystem.ts +tasks/coverage/typescript/tests/cases/compiler/importHelpersVerbatimModuleSyntax.ts +Unexpected estree file content error: 2 != 3 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importHelpersWithExportStarAs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importHelpersWithImportOrExportDefault.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importHelpersWithImportOrExportDefaultNoTslib.1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importHelpersWithImportOrExportDefaultNoTslib.2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importHelpersWithImportOrExportDefaultNoTslib.3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importHelpersWithImportStarAs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importHelpersWithLocalCollisions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importInTypePosition.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importInsideModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importNonExportedMember.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importNonExportedMember1.ts +tasks/coverage/typescript/tests/cases/compiler/importNonExportedMember10.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/compiler/importNonExportedMember11.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/compiler/importNonExportedMember12.ts +Unexpected estree file content error: 1 != 3 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importNonExportedMember2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importNonExportedMember3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importNonExportedMember4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importNonExportedMember5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importNonExportedMember6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importNonExportedMember7.ts +tasks/coverage/typescript/tests/cases/compiler/importNonExportedMember8.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/compiler/importNonExportedMember9.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importNotElidedWhenNotFound.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importOnAliasedIdentifiers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importPropertyFromMappedType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importShadowsGlobalName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importShouldNotBeElidedInDeclarationEmit.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importTypeGenericArrowTypeParenthesized.ts +tasks/coverage/typescript/tests/cases/compiler/importTypeResolutionJSDocEOF.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importTypeTypeofClassStaticLookup.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importTypeWithUnparenthesizedGenericFunctionParsed.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importUsedAsTypeWithErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importUsedInExtendsList1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importUsedInGenericImportResolves.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importWithTrailingSlash.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importWithTrailingSlash_noResolve.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/import_reference-exported-alias.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/import_reference-to-type-alias.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/import_unneeded-require-when-referenecing-aliased-type-throug-array.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/import_var-referencing-an-imported-module-alias.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importedAliasedConditionalTypeInstantiation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importedAliasesInTypePositions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importedEnumMemberMergedWithExportedAliasIsError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importedModuleAddToGlobal.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importedModuleClassNameClash.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importsInAmbientModules1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importsInAmbientModules2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/importsInAmbientModules3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inDoesNotOperateOnPrimitiveTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inKeywordAndIntersection.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inKeywordAndUnknown.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inKeywordNarrowingWithNoUncheckedIndexedAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inKeywordTypeguard.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inOperator.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inOperatorWithFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inOperatorWithGeneric.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/incompatibleAssignmentOfIdenticallyNamedTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/incompatibleExports1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/incompatibleExports2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/incompatibleGenericTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/incompatibleTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/incorrectClassOverloadChain.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/incorrectNumberOfTypeArgumentsDuringErrorReporting.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/incorrectRecursiveMappedTypeConstraint.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/incrementOnNullAssertion.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/incrementOnTypeParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/incrementalConfig.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/incrementalInvalid.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/incrementalOut.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/incrementalTsBuildInfoFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexAt.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexClassByNumber.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexIntoArraySubclass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexIntoEnum.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexSignatureAndMappedType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexSignatureInOtherFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexSignatureInOtherFile1.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/indexSignatureMustHaveTypeAnnotation.ts +Unexpected token +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexSignatureOfTypeUnknownStillRequiresIndexSignature.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/indexSignatureTypeCheck.ts +Unexpected token +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/indexSignatureTypeCheck2.ts +Unexpected token +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexSignatureWithInitializer.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/indexSignatureWithInitializer1.ts +Expected `]` but found `=` +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/indexSignatureWithTrailingComma.ts +Expected `]` but found `,` +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/indexSignatureWithoutTypeAnnotation1.ts +Unexpected token +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexSignaturesInferentialTyping.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/indexTypeCheck.ts +Unexpected token +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexTypeNoSubstitutionTemplateLiteral.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexWithUndefinedAndNull.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexWithUndefinedAndNullStrictNullChecks.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/indexWithoutParamType.ts +Unexpected token +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexWithoutParamType2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexedAccessAndNullableNarrowing.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexedAccessCanBeHighOrder.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexedAccessConstraints.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexedAccessImplicitlyAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexedAccessKeyofNestedSimplifiedSubstituteUnwrapped.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexedAccessNormalization.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexedAccessPrivateMemberOfGenericConstraint.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexedAccessRelation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexedAccessRetainsIndexSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexedAccessToThisTypeOnIntersection01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexedAccessTypeConstraints.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexedAccessWithFreshObjectLiteral.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexedAccessWithVariableElement.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexer.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexer2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexer2A.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexer3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexerA.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/indexerAsOptional.ts +Unexpected token +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexerAssignability.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexerConstraints.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/indexerConstraints2.ts +Unexpected token +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexerReturningTypeParameter1.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/indexerSignatureWithRestParam.ts +Unexpected token +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexingTypesWithNever.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indirectDiscriminantAndExcessProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indirectGlobalSymbolPartOfObjectType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indirectSelfReference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indirectSelfReferenceGeneric.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indirectTypeParameterReferences.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/indirectUniqueSymbolDeclarationEmit.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferConditionalConstraintMappedMember.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferFromAnnotatedReturn1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferFromGenericFunctionReturnTypes1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferFromGenericFunctionReturnTypes2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferFromGenericFunctionReturnTypes3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferFromNestedSameShapeTuple.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferObjectTypeFromStringLiteralToKeyof.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferParameterWithMethodCallInitializer.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferPropertyWithContextSensitiveReturnStatement.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferRestArgumentsMappedTuple.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferSecondaryParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferSetterParamType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferStringLiteralUnionForBindingElement.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferTInParentheses.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferTupleFromBindingPattern.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferTypeArgumentsInSignatureWithRestParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferTypeConstraintInstantiationCircularity.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferTypeParameterConstraints.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferTypePredicates.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferTypesWithFixedTupleExtendsAtVariadicPosition.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferenceAndHKTs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferenceAndSelfReferentialConstraint.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferenceDoesNotAddUndefinedOrNull.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferenceDoesntCompareAgainstUninstantiatedTypeParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferenceErasedSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferenceExactOptionalProperties1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferenceExactOptionalProperties2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferenceFromIncompleteSource.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferenceFromParameterlessLambda.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferenceLimit.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferenceOfNullableObjectTypesWithCommonBase.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferenceOptionalProperties.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferenceOptionalPropertiesStrict.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferenceOptionalPropertiesToIndexSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferenceOuterResultNotIncorrectlyInstantiatedWithInnerResult.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferenceShouldFailOnEvolvingArrays.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferenceUnionOfObjectsMappedContextualType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferentialTypingObjectLiteralMethod1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferentialTypingObjectLiteralMethod2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferentialTypingUsingApparentType1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferentialTypingUsingApparentType2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferentialTypingUsingApparentType3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferentialTypingWithFunctionType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferentialTypingWithFunctionType2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferentialTypingWithFunctionTypeNested.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferentialTypingWithFunctionTypeSyntacticScenarios.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferentialTypingWithFunctionTypeZip.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferentialTypingWithObjectLiteralProperties.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferentiallyTypingAnEmptyArray.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferredFunctionReturnTypeIsEmptyType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferredIndexerOnNamespaceImport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferredNonidentifierTypesGetQuotes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferredRestTypeFixedOnce.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferredReturnTypeIncorrectReuse1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferrenceInfiniteLoopWithSubtyping.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferringAnyFunctionType1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferringAnyFunctionType2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferringAnyFunctionType3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferringAnyFunctionType4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferringAnyFunctionType5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferringReturnTypeFromConstructSignatureGeneric.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/infiniteConstraints.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/infiniteExpandingTypeThroughInheritanceInstantiation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/infinitelyExpandingBaseTypes1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/infinitelyExpandingBaseTypes2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/infinitelyExpandingOverloads.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/infinitelyExpandingTypeAssignability.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/infinitelyExpandingTypes1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/infinitelyExpandingTypes2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/infinitelyExpandingTypes3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/infinitelyExpandingTypes4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/infinitelyExpandingTypes5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/infinitelyExpandingTypesNonGenericBase.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/infinitelyGenerativeInheritance1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritFromGenericTypeParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritSameNamePrivatePropertiesFromDifferentOrigins.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritSameNamePrivatePropertiesFromSameOrigin.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritSameNamePropertiesWithDifferentOptionality.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritSameNamePropertiesWithDifferentVisibility.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritance.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritance1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritanceGrandParentPrivateMemberCollision.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritanceGrandParentPrivateMemberCollisionWithPublicMember.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritanceGrandParentPublicMemberCollisionWithPrivateMember.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritanceMemberAccessorOverridingAccessor.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritanceMemberAccessorOverridingMethod.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritanceMemberAccessorOverridingProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritanceMemberFuncOverridingAccessor.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritanceMemberFuncOverridingMethod.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritanceMemberFuncOverridingProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritanceMemberPropertyOverridingAccessor.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritanceMemberPropertyOverridingMethod.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritanceMemberPropertyOverridingProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritanceOfGenericConstructorMethod1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritanceOfGenericConstructorMethod2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritanceStaticAccessorOverridingAccessor.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritanceStaticAccessorOverridingMethod.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritanceStaticAccessorOverridingProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritanceStaticFuncOverridingAccessor.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritanceStaticFuncOverridingAccessorOfFuncType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritanceStaticFuncOverridingMethod.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritanceStaticFuncOverridingProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritanceStaticFuncOverridingPropertyOfFuncType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritanceStaticFunctionOverridingInstanceProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritanceStaticMembersCompatible.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritanceStaticMembersIncompatible.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritanceStaticPropertyOverridingAccessor.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritanceStaticPropertyOverridingMethod.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritanceStaticPropertyOverridingProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritedConstructorPropertyContextualType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritedConstructorWithRestParams.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritedConstructorWithRestParams2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritedFunctionAssignmentCompatibility.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritedGenericCallSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritedMembersAndIndexSignaturesFromDifferentBases.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritedMembersAndIndexSignaturesFromDifferentBases2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritedModuleMembersForClodule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritedOverloadedSpecializedSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritedStringIndexersFromDifferentBaseTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inheritedStringIndexersFromDifferentBaseTypes2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/initializePropertiesWithRenamedLet.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/initializedDestructuringAssignmentTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/initializedParameterBeforeNonoptionalNotOptional.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/initializerWithThisPropertyAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/initializersInAmbientEnums.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inlineConditionalHasSimilarAssignability.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inlineMappedTypeModifierDeclarationEmit.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inlineSourceMap.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inlineSourceMap2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inlineSources.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inlineSources2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/inlinedAliasAssignableToConstraintSameAsAlias.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/innerAliases.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/innerAliases2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/innerBoundLambdaEmit.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/innerExtern.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/innerFunc.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/innerOverloads.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/innerTypeArgumentInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/innerTypeCheckOfLambdaArgument.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/instanceAndStaticDeclarations1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/instanceOfAssignability.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/instanceOfInExternalModules.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/instanceSubtypeCheck1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/instanceSubtypeCheck2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/instanceofNarrowReadonlyArray.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/instanceofOnInstantiationExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/instanceofTypeAliasToGenericClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/instanceofWithPrimitiveUnion.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/instanceofWithStructurallyIdenticalTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/instantiateConstraintsToTypeArguments2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/instantiateContextualTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/instantiateContextuallyTypedGenericThis.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/instantiateCrossFileMerge.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/instantiatedBaseTypeConstraints.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/instantiatedBaseTypeConstraints2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/instantiatedReturnTypeContravariance.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/instantiatedTypeAliasDisplay.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/instantiationExpressionErrorNoCrash.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interMixingModulesInterfaces0.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interMixingModulesInterfaces1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interMixingModulesInterfaces2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interMixingModulesInterfaces3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interMixingModulesInterfaces4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interMixingModulesInterfaces5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interface0.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfaceAssignmentCompat.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfaceClassMerging.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfaceClassMerging2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfaceContextualType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfaceDeclaration1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfaceDeclaration2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfaceDeclaration3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfaceDeclaration5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfaceDeclaration6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfaceExtendsClass1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfaceExtendsClassWithPrivate1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfaceExtendsClassWithPrivate2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfaceImplementation1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfaceImplementation2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfaceImplementation3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfaceImplementation4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfaceImplementation5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfaceImplementation6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfaceImplementation7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfaceImplementation8.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfaceInReopenedModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfaceInheritance.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfaceInheritance2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfaceMayNotBeExtendedWitACall.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfaceMemberValidation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfaceMergedUnconstrainedNoErrorIrrespectiveOfOrder.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfaceNameAsIdentifier.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfaceOnly.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfacePropertiesWithSameName1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfacePropertiesWithSameName2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfacePropertiesWithSameName3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfaceSubtyping.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfaceWithCommaSeparators.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfaceWithMultipleDeclarations.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfaceWithOptionalProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfacedecl.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfacedeclWithIndexerErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasClassInsideLocalModuleWithExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasClassInsideLocalModuleWithoutExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasClassInsideLocalModuleWithoutExportAccessError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasClassInsideTopLevelModuleWithExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasClassInsideTopLevelModuleWithoutExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasEnum.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasEnumInsideLocalModuleWithExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasEnumInsideLocalModuleWithoutExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasEnumInsideLocalModuleWithoutExportAccessError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasEnumInsideTopLevelModuleWithExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasEnumInsideTopLevelModuleWithoutExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasFunctionInsideLocalModuleWithExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasFunctionInsideLocalModuleWithoutExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasFunctionInsideLocalModuleWithoutExportAccessError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasFunctionInsideTopLevelModuleWithExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasFunctionInsideTopLevelModuleWithoutExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasInitializedModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasInitializedModuleInsideLocalModuleWithExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasInitializedModuleInsideLocalModuleWithoutExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasInitializedModuleInsideLocalModuleWithoutExportAccessError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasInitializedModuleInsideTopLevelModuleWithExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasInitializedModuleInsideTopLevelModuleWithoutExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasInterfaceInsideLocalModuleWithExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasInterfaceInsideLocalModuleWithoutExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasInterfaceInsideLocalModuleWithoutExportAccessError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasInterfaceInsideTopLevelModuleWithExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasInterfaceInsideTopLevelModuleWithoutExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasUninitializedModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasUninitializedModuleInsideLocalModuleWithExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasUninitializedModuleInsideLocalModuleWithoutExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasUninitializedModuleInsideLocalModuleWithoutExportAccessError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasUninitializedModuleInsideTopLevelModuleWithExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasUninitializedModuleInsideTopLevelModuleWithoutExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasVar.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasVarInsideLocalModuleWithExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasVarInsideLocalModuleWithoutExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasVarInsideLocalModuleWithoutExportAccessError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasVarInsideTopLevelModuleWithExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasVarInsideTopLevelModuleWithoutExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasWithDottedNameEmit.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalImportInstantiatedModuleMergedWithClassNotReferencingInstance.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalImportInstantiatedModuleMergedWithClassNotReferencingInstanceNoConflict.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalImportInstantiatedModuleNotReferencingInstance.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalImportUnInstantiatedModuleMergedWithClassNotReferencingInstance.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalImportUnInstantiatedModuleMergedWithClassNotReferencingInstanceNoConflict.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalImportUnInstantiatedModuleNotReferencingInstanceNoConflict.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/intersectionApparentTypeCaching.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/intersectionConstraintReduction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/intersectionOfMixinConstructorTypeAndNonConstructorType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/intersectionOfTypeVariableHasApparentSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/intersectionPropertyCheck.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/intersectionReductionGenericStringLikeType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/intersectionSatisfiesConstraint.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/intersectionTypeInference1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/intersectionTypeNormalization.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/intersectionTypeWithLeadingOperator.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/intersectionType_useDefineForClassFields.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/intersectionWithConflictingPrivates.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/intersectionWithConstructSignaturePrototypeResult.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/intersectionsAndOptionalProperties.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/intersectionsAndOptionalProperties2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/intersectionsAndOptionalProperties3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/intersectionsAndReadonlyProperties.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/intersectionsOfLargeUnions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/intersectionsOfLargeUnions2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/intraBindingPatternReferences.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/intrinsics.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/invalidConstraint1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/invalidContinueInDownlevelAsync.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/invalidSplice.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/invalidStaticField.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/invalidSymbolInTypeParameter1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/invalidThisEmitInContextualObjectLiteral.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/invalidTripleSlashReference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/invalidTypeNames.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/invalidUseOfTypeAsNamespace.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/invariantGenericErrorElaboration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/invocationExpressionInFunctionParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/invokingNonGenericMethodWithTypeArguments1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/invokingNonGenericMethodWithTypeArguments2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ipromise2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ipromise3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ipromise4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isArray.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isDeclarationVisibleNodeKinds.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedDeclarationErrorTypes1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedDeclarationErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedDeclarationErrorsAugmentation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedDeclarationErrorsClasses.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedDeclarationErrorsClassesExpressions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedDeclarationErrorsDefault.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedDeclarationErrorsEnums.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedDeclarationErrorsExpandoFunctions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedDeclarationErrorsExpressions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedDeclarationErrorsFunctionDeclarations.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedDeclarationErrorsObjects.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedDeclarationErrorsReturnTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedDeclarationLazySymbols.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedDeclarationOutFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedDeclarationsAddUndefined.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedDeclarationsAddUndefined2.ts +tasks/coverage/typescript/tests/cases/compiler/isolatedDeclarationsAllowJs.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedDeclarationsLiterals.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedDeclarationsRequiresDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedDeclarationsStrictBuiltinIteratorReturn.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedModulesAmbientConstEnum.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedModulesConstEnum.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedModulesDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedModulesDontElideReExportStar.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedModulesES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedModulesExportDeclarationType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedModulesExportImportUninstantiatedNamespace.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedModulesExternalModuleForced.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedModulesGlobalNamespacesAndEnums.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedModulesImportConstEnum.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedModulesImportConstEnumTypeOnly.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedModulesImportExportElision.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedModulesNoEmitOnError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedModulesNoExternalModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedModulesNoExternalModuleMultiple.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedModulesNonAmbientConstEnum.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedModulesOut.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedModulesPlainFile-AMD.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedModulesPlainFile-CommonJS.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedModulesPlainFile-ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedModulesPlainFile-System.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedModulesPlainFile-UMD.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedModulesReExportAlias.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedModulesReExportType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedModulesRequiresPreserveConstEnum.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedModulesShadowGlobalTypeNotValue.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedModulesSketchyAliasLocalMerge.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedModulesSourceMap.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedModulesSpecifiedModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedModulesUnspecifiedModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedModulesWithDeclarationFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedModules_resolveJsonModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedModules_resolveJsonModule_strict_outDir_commonJs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/iterableTReturnTNext.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/iteratorExtraParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/iteratorsAndStrictNullChecks.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jqueryInference.ts +tasks/coverage/typescript/tests/cases/compiler/jsDeclarationEmitExportedClassWithExtends.ts +Unexpected estree file content error: 3 != 4 + +tasks/coverage/typescript/tests/cases/compiler/jsDeclarationsWithDefaultAsNamespaceLikeMerge.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/compiler/jsDocDeclarationEmitDoesNotUseNodeModulesPathWithoutError.ts +Unexpected estree file content error: 2 != 3 + +tasks/coverage/typescript/tests/cases/compiler/jsEmitIntersectionProperty.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/compiler/jsExportMemberMergedWithModuleAugmentation.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/compiler/jsExportMemberMergedWithModuleAugmentation2.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/compiler/jsExportMemberMergedWithModuleAugmentation3.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/compiler/jsExtendsImplicitAny.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/compiler/jsFileClassPropertyType.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/compiler/jsFileClassPropertyType2.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/compiler/jsFileClassPropertyType3.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/compiler/jsFileCompilationDuplicateFunctionImplementation.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/compiler/jsFileCompilationDuplicateFunctionImplementationFileOrderReversed.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/compiler/jsFileCompilationDuplicateVariable.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/compiler/jsFileCompilationDuplicateVariableErrorReported.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/compiler/jsFileCompilationEmitBlockedCorrectly.ts +Unexpected estree file content error: 2 != 3 + +tasks/coverage/typescript/tests/cases/compiler/jsFileCompilationEmitDeclarations.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/compiler/jsFileCompilationEmitTrippleSlashReference.ts +Unexpected estree file content error: 1 != 3 + +tasks/coverage/typescript/tests/cases/compiler/jsFileCompilationErrorOnDeclarationsWithJsFileReferenceWithNoOut.ts +Unexpected estree file content error: 2 != 3 + +tasks/coverage/typescript/tests/cases/compiler/jsFileCompilationErrorOnDeclarationsWithJsFileReferenceWithOut.ts +Unexpected estree file content error: 2 != 3 + +tasks/coverage/typescript/tests/cases/compiler/jsFileCompilationErrorOnDeclarationsWithJsFileReferenceWithOutDir.ts +Unexpected estree file content error: 2 != 3 + +tasks/coverage/typescript/tests/cases/compiler/jsFileCompilationExternalPackageError.ts +Unexpected estree file content error: 1 != 3 + +tasks/coverage/typescript/tests/cases/compiler/jsFileCompilationLetDeclarationOrder.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/compiler/jsFileCompilationLetDeclarationOrder2.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/compiler/jsFileCompilationNoErrorWithoutDeclarationsWithJsFileReferenceWithNoOut.ts +Unexpected estree file content error: 2 != 3 + +tasks/coverage/typescript/tests/cases/compiler/jsFileCompilationNoErrorWithoutDeclarationsWithJsFileReferenceWithOut.ts +Unexpected estree file content error: 2 != 3 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsFileCompilationWithDeclarationEmitPathSameAsInput.ts +tasks/coverage/typescript/tests/cases/compiler/jsFileCompilationWithEnabledCompositeOption.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/compiler/jsFileCompilationWithJsEmitPathSameAsInput.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/compiler/jsFileCompilationWithMapFileAsJs.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/compiler/jsFileCompilationWithMapFileAsJsWithInlineSourceMap.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/compiler/jsFileCompilationWithMapFileAsJsWithOutDir.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/compiler/jsFileCompilationWithOut.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsFileCompilationWithOutDeclarationFileNameSameAsInputJsFile.ts +tasks/coverage/typescript/tests/cases/compiler/jsFileCompilationWithOutFileNameSameAsInputJsFile.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/compiler/jsFileCompilationWithoutOut.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/compiler/jsFileFunctionParametersAsOptional.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/compiler/jsFileFunctionParametersAsOptional2.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/compiler/jsFileImportPreservedWhenUsed.ts +Unexpected estree file content error: 2 != 3 + +tasks/coverage/typescript/tests/cases/compiler/jsNoImplicitAnyNoCascadingReferenceErrors.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/compiler/jsdocAccessEnumType.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsdocCastCommentEmit.ts +tasks/coverage/typescript/tests/cases/compiler/jsdocImportTypeNodeNamespace.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsdocInTypeScript.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsdocParameterParsingInvalidName.ts +tasks/coverage/typescript/tests/cases/compiler/jsdocReferenceGlobalTypeInCommonJs.ts +Unexpected estree file content error: 2 != 3 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/json.stringify.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsonFileImportChecksCallCorrectlyTwice.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxAttributeWithoutExpressionReact.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxCallElaborationCheckNoCrash1.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxCallbackWithDestructuring.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxChildWrongType.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxChildrenArrayWrongType.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxChildrenGenericContextualTypes.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxChildrenIndividualErrorElaborations.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxChildrenSingleChildConfusableWithMultipleChildrenNoError.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxChildrenWrongType.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxClassAttributeResolution.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxComplexSignatureHasApplicabilityError.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxComponentTypeErrors.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxContainsOnlyTriviaWhiteSpacesNotCountedAsChild.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxElementClassTooManyParams.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxElementType.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxElementTypeLiteral.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxElementTypeLiteralWithGeneric.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxElementsAsIdentifierNames.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxEmitAttributeWithPreserve.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxEmptyExpressionNotCountedAsChild.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxEmptyExpressionNotCountedAsChild2.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxExcessPropsAndAssignability.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxFactoryAndJsxFragmentFactory.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxFactoryAndJsxFragmentFactoryErrorNotIdentifier.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxFactoryAndJsxFragmentFactoryNull.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxFactoryButNoJsxFragmentFactory.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxFragReactReferenceErrors.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxFragmentAndFactoryUsedOnFragmentUse.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxFragmentFactoryNoUnusedLocals.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxFragmentFactoryReference.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxFragmentWrongType.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxGenericComponentWithSpreadingResultOfGenericFunction.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxHasLiteralType.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxHash.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxImportForSideEffectsNonExtantNoError.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxImportInAttribute.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxImportSourceNonPragmaComment.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxInExtendsClause.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxInferenceProducesLiteralAsExpected.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxIntrinsicDeclaredUsingTemplateLiteralTypeSignatures.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxIntrinsicElementsCompatability.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxIntrinsicElementsExtendsRecord.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxIntrinsicElementsTypeArgumentErrors.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxIntrinsicUnions.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxIssuesErrorWhenTagExpectsTooManyArguments.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxLibraryManagedAttributesUnusedGeneric.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxLocalNamespaceIndexSignatureNoCrash.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxMultilineAttributeStringValues.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxMultilineAttributeValuesReact.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxNamespaceElementChildrenAttributeIgnoredWhenReactJsx.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxNamespaceGlobalReexport.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxNamespaceGlobalReexportMissingAliasTarget.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxNamespaceImplicitImportJSXNamespace.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxNamespaceImplicitImportJSXNamespaceFromConfigPickedOverGlobalOne.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxNamespaceImplicitImportJSXNamespaceFromPragmaPickedOverGlobalOne.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxNamespaceNoElementChildrenAttributeReactJsx.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxNamespacePrefixIntrinsics.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxNamespaceReexports.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxNamespacedNameNotComparedToNonMatchingIndexSignature.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxNestedWithinTernaryParsesCorrectly.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxPartialSpread.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxPropsAsIdentifierNames.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxSpreadFirstUnionNoErrors.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxViaImport.2.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxViaImport.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/keepImportsInDts1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/keepImportsInDts2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/keepImportsInDts3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/keepImportsInDts4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/keyRemappingKeyofResult.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/keyofDoesntContainSymbols.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/keyofGenericExtendingClassDoubleLayer.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/keyofIsLiteralContexualType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/keyofModuleObjectHasCorrectKeys.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/keyofObjectWithGlobalSymbolIncluded.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/keywordExpressionInternalComments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/keywordField.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/keywordInJsxIdentifier.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/knockout.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/lambdaASIEmit.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/lambdaArgCrash.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/lambdaExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/lambdaParamTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/lambdaParameterWithTupleArgsHasCorrectAssignability.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/lambdaPropSelf.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/largeControlFlowGraph.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/largeTupleTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/lastPropertyInLiteralWins.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/lateBoundConstraintTypeChecksCorrectly.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/lateBoundDestructuringImplicitAnyError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/lateBoundFunctionMemberAssignmentDeclarations.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/letAndVarRedeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/letAsIdentifier.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/letAsIdentifier2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/letAsIdentifierInStrictMode.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/letConstInCaseClauses.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/letConstMatchingParameterNames.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/letDeclarations-access.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/letDeclarations-es5-1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/letDeclarations-es5.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/letDeclarations-invalidContexts.ts +Expected a semicolon or an implicit semicolon after a statement, but found none +Mismatch: tasks/coverage/typescript/tests/cases/compiler/letDeclarations-scopes-duplicates.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/letDeclarations-scopes-duplicates2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/letDeclarations-scopes-duplicates3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/letDeclarations-scopes-duplicates4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/letDeclarations-scopes-duplicates5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/letDeclarations-scopes-duplicates6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/letDeclarations-scopes-duplicates7.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/letDeclarations-scopes.ts +Expected a semicolon or an implicit semicolon after a statement, but found none +Mismatch: tasks/coverage/typescript/tests/cases/compiler/letDeclarations-scopes2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/letDeclarations-useBeforeDefinition.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/letDeclarations-useBeforeDefinition2.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/letDeclarations-validContexts.ts +Expected a semicolon or an implicit semicolon after a statement, but found none +Mismatch: tasks/coverage/typescript/tests/cases/compiler/letDeclarations.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/letDeclarations2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/letInConstDeclarations_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/letInConstDeclarations_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/letInLetConstDeclOfForOfAndForIn_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/letInLetConstDeclOfForOfAndForIn_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/letInLetDeclarations_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/letInLetDeclarations_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/letInNonStrictMode.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/letInVarDeclOfForIn_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/letInVarDeclOfForIn_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/letInVarDeclOfForOf_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/letInVarDeclOfForOf_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/letKeepNamesOfTopLevelItems.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/letShadowedByNameInNestedScope.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/libCompileChecks.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/libTypeScriptOverrideSimple.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/libTypeScriptOverrideSimpleConfig.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/libTypeScriptSubfileResolving.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/libTypeScriptSubfileResolvingConfig.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/libdtsFix.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/library_ArraySlice.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/library_DatePrototypeProperties.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/library_ObjectPrototypeProperties.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/library_RegExpExecArraySlice.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/library_StringSlice.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/lift.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/limitDeepInstantiations.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/listFailure.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/literalFreshnessPropagationOnNarrowing.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/literalIntersectionYieldsLiteral.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/literalTypeNameAssertionNotTriggered.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/literalWideningWithCompoundLikeAssignments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/literals-negative.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/literals1.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/literalsInComputedProperties1.ts +An enum member cannot have a numeric name. +Mismatch: tasks/coverage/typescript/tests/cases/compiler/localAliasExportAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/localClassesInLoop.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/localClassesInLoop_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/localImportNameVsGlobalName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/localTypeParameterInferencePriority.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/localVariablesReturnedFromCatchBlocks.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/logicalNotExpression1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/m7Bugs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/manyConstExports.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mapConstructor.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mapConstructorOnReadonlyTuple.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mapGroupBy.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mapOnTupleTypes01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mapOnTupleTypes02.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mappedArrayTupleIntersections.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mappedToToIndexSignatureInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mappedTypeAndIndexSignatureRelation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mappedTypeAsStringTemplate.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mappedTypeCircularReferenceInAccessor.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mappedTypeContextualTypesApplied.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mappedTypeGenericIndexedAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mappedTypeGenericInstantiationPreservesHomomorphism.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mappedTypeGenericInstantiationPreservesInlineForm.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mappedTypeGenericWithKnownKeys.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mappedTypeIndexedAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mappedTypeIndexedAccessConstraint.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mappedTypeInferenceAliasSubstitution.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mappedTypeInferenceCircularity.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mappedTypeInferenceFromApparentType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mappedTypeInferenceToMappedType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mappedTypeMultiInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mappedTypeNestedGenericInstantiation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mappedTypeNoTypeNoCrash.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mappedTypeNotMistakenlyHomomorphic.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mappedTypeOverArrayWithBareAnyRestCanBeUsedAsRestParam1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mappedTypeParameterConstraint.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mappedTypePartialConstraints.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mappedTypePartialNonHomomorphicBaseConstraint.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mappedTypeRecursiveInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mappedTypeRecursiveInference2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mappedTypeTupleConstraintAssignability.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mappedTypeUnionConstrainTupleTreatedAsArrayLike.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mappedTypeUnionConstraintInferences.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mappedTypeWithAsClauseAndLateBoundProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mappedTypeWithAsClauseAndLateBoundProperty2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mappedTypeWithCombinedTypeMappers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mappedTypeWithNameClauseAppliedToArrayType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/matchReturnTypeInAllBranches.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/matchingOfObjectLiteralConstraints.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/maxConstraints.ts +tasks/coverage/typescript/tests/cases/compiler/maxNodeModuleJsDepthDefaultsToZero.ts +Unexpected estree file content error: 2 != 4 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/maximum10SpellingSuggestions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/memberAccessMustUseModuleInstances.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/memberAccessOnConstructorType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/memberOverride.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/memberScope.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/memberVariableDeclarations1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mergeMultipleInterfacesReexported.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mergeSymbolReexportInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mergeSymbolReexportedTypeAliasInstantiation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mergeSymbolRexportFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mergeWithImportedNamespace.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mergeWithImportedType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mergedClassNamespaceRecordCast.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mergedClassWithNamespacePrototype.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mergedDeclarationExports.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mergedDeclarations1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mergedDeclarations2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mergedDeclarations3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mergedDeclarations4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mergedDeclarations5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mergedDeclarations6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mergedDeclarations7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mergedEnumDeclarationCodeGen.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mergedInstantiationAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mergedInterfaceFromMultipleFiles1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mergedModuleDeclarationCodeGen.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mergedModuleDeclarationCodeGen2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mergedModuleDeclarationCodeGen3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mergedModuleDeclarationCodeGen4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mergedModuleDeclarationCodeGen5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mergedModuleDeclarationWithSharedExportedVar.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/metadataImportType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/metadataOfClassFromAlias.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/metadataOfClassFromAlias2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/metadataOfClassFromModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/metadataOfEventAlias.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/metadataOfStringLiteral.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/metadataOfUnion.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/metadataOfUnionWithNull.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/metadataReferencedWithinFilteredUnion.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/methodChainError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/methodContainingLocalFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/methodInAmbientClass1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/methodSignatureDeclarationEmit1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/methodSignatureHandledDeclarationKindForSymbol.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mismatchedClassConstructorVariable.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mismatchedExplicitTypeParameterAndArgumentType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mismatchedGenericArguments1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/missingCommaInTemplateStringsArray.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/missingDomElements.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/missingFunctionImplementation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/missingFunctionImplementation2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/missingImportAfterModuleImport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/missingMemberErrorHasShortPath.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/missingPropertiesOfClassExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/missingRequiredDeclare.d.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/missingReturnStatement.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/missingReturnStatement1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/missingSelf.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/missingSemicolonInModuleSpecifier.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/missingTypeArguments1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/missingTypeArguments2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/missingTypeArguments3.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/misspelledNewMetaProperty.ts +The only valid meta property for new is new.target +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mixedExports.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mixedStaticAndInstanceClassMembers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mixedTypeEnumComparison.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mixinIntersectionIsValidbaseType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mixinOverMappedTypeNoCrash.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mixinPrivateAndProtected.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mixingApparentTypeOverrides.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mixingFunctionAndAmbientModule1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mixingStaticAndInstanceOverloads.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/modFunctionCrash.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/modKeyword.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/modifierParenCast.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/modifiersInObjectLiterals.ts +'public' modifier cannot be used here. +Mismatch: tasks/coverage/typescript/tests/cases/compiler/modularizeLibrary_Dom.asynciterable.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/modularizeLibrary_Dom.iterable.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/modularizeLibrary_ErrorFromUsingES6ArrayWithOnlyES6ArrayLib.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/modularizeLibrary_ErrorFromUsingES6FeaturesWithOnlyES5Lib.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/modularizeLibrary_ErrorFromUsingWellknownSymbolWithOutES6WellknownSymbolLib.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/modularizeLibrary_NoErrorDuplicateLibOptions1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/modularizeLibrary_NoErrorDuplicateLibOptions2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/modularizeLibrary_TargetES5UsingES6Lib.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/modularizeLibrary_TargetES6UsingES6Lib.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/modularizeLibrary_UsingES5LibAndES6ArrayLib.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/modularizeLibrary_UsingES5LibAndES6FeatureLibs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/modularizeLibrary_UsingES5LibES6ArrayLibES6WellknownSymbolLib.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/modularizeLibrary_Worker.asynciterable.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/modularizeLibrary_Worker.iterable.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAliasAsFunctionArgument.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAliasInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAndInterfaceSharingName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAndInterfaceSharingName2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAndInterfaceSharingName3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAndInterfaceSharingName4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAndInterfaceWithSameName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAsBaseType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAssignmentCompat1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAssignmentCompat2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAssignmentCompat3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAssignmentCompat4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationCollidingNamesInAugmentation1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationDeclarationEmit1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationDeclarationEmit2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationDisallowedExtensions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationDoesInterfaceMergeOfReexport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationDoesNamespaceEnumMergeOfReexport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationDoesNamespaceMergeOfReexport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationDuringSyntheticDefaultCheck.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationEnumClassMergeOfReexportIsError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationExtendAmbientModule1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationExtendAmbientModule2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationExtendFileModule1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationExtendFileModule2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationGlobal1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationGlobal2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationGlobal3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationGlobal4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationGlobal5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationGlobal6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationGlobal6_1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationGlobal7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationGlobal7_1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationGlobal8.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationGlobal8_1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationImportsAndExports1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationImportsAndExports2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationImportsAndExports3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationImportsAndExports4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationImportsAndExports5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationImportsAndExports6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationInAmbientModule1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationInAmbientModule2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationInAmbientModule3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationInAmbientModule4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationInAmbientModule5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationInDependency.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationInDependency2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationNoNewNames.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationOfAlias.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationWithNonExistentNamedImport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationsBundledOutput1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationsImports1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationsImports2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationsImports3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationsImports4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleClassArrayCodeGenTest.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleCodeGenTest3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleCodeGenTest5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleCodegenTest4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleCrashBug1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleDeclarationExportStarShadowingGlobalIsNameable.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleDuplicateIdentifiers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleElementsInWrongContext.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleElementsInWrongContext2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleElementsInWrongContext3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleExports1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleExportsUnaryExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleIdentifiers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleImport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleImportedForTypeArgumentPosition.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleInTypePosition1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleLocalImportNotIncorrectlyRedirected.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleMemberMissingErrorIsRelative.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleMemberWithoutTypeAnnotation1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleMemberWithoutTypeAnnotation2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleMerge.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleMergeConstructor.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleNewExportBug.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleNoEmit.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleNodeImportRequireEmit.ts +tasks/coverage/typescript/tests/cases/compiler/moduleNoneDynamicImport.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleNoneErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleNoneOutFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleOuterQualification.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/modulePreserve1.ts +tasks/coverage/typescript/tests/cases/compiler/modulePreserve2.ts +Unexpected estree file content error: 2 != 4 + +tasks/coverage/typescript/tests/cases/compiler/modulePreserve4.ts +Unexpected estree file content error: 5 != 12 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/modulePreserve5.ts +tasks/coverage/typescript/tests/cases/compiler/modulePreserveImportHelpers.ts +Unexpected estree file content error: 2 != 4 + +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/modulePreserveTopLevelAwait1.ts +`await` is only allowed within async functions and at the top levels of modules +Mismatch: tasks/coverage/typescript/tests/cases/compiler/modulePrologueAMD.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/modulePrologueCommonjs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/modulePrologueES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/modulePrologueSystem.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/modulePrologueUmd.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleProperty2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleRedifinitionErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleReopenedTypeOtherBlock.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleReopenedTypeSameBlock.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleResolutionAsTypeReferenceDirective.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleResolutionAsTypeReferenceDirectiveAmbient.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleResolutionAsTypeReferenceDirectiveScoped.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleResolutionNoResolve.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleResolutionNoTsCJS.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleResolutionNoTsESM.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleResolutionPackageIdWithRelativeAndAbsolutePath.ts +tasks/coverage/typescript/tests/cases/compiler/moduleResolutionWithExtensions_notSupported.ts +Unexpected estree file content error: 2 != 4 + +tasks/coverage/typescript/tests/cases/compiler/moduleResolutionWithExtensions_notSupported2.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/compiler/moduleResolutionWithExtensions_notSupported3.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleResolutionWithExtensions_unexpected.ts +tasks/coverage/typescript/tests/cases/compiler/moduleResolutionWithExtensions_unexpected2.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/compiler/moduleResolutionWithExtensions_withAmbientPresent.ts +Unexpected estree file content error: 2 != 3 + +tasks/coverage/typescript/tests/cases/compiler/moduleResolutionWithExtensions_withPaths.ts +Unexpected estree file content error: 3 != 5 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleResolutionWithModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleResolutionWithRequire.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleResolutionWithRequireAndImport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleResolutionWithSuffixes_empty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleResolutionWithSuffixes_notSpecified.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleResolutionWithSuffixes_one.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleResolutionWithSuffixes_oneBlank.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleResolutionWithSuffixes_oneNotFound.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleResolutionWithSuffixes_one_dirModuleWithIndex.ts +tasks/coverage/typescript/tests/cases/compiler/moduleResolutionWithSuffixes_one_externalModule.ts +Unexpected estree file content error: 3 != 5 + +tasks/coverage/typescript/tests/cases/compiler/moduleResolutionWithSuffixes_one_externalModulePath.ts +Unexpected estree file content error: 3 != 5 + +tasks/coverage/typescript/tests/cases/compiler/moduleResolutionWithSuffixes_one_externalModule_withPaths.ts +Unexpected estree file content error: 3 != 5 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleResolutionWithSuffixes_one_externalTSModule.ts +tasks/coverage/typescript/tests/cases/compiler/moduleResolutionWithSuffixes_one_jsModule.ts +Unexpected estree file content error: 1 != 3 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleResolutionWithSuffixes_one_jsonModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleResolutionWithSuffixes_threeLastIsBlank1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleResolutionWithSuffixes_threeLastIsBlank2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleResolutionWithSuffixes_threeLastIsBlank3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleResolutionWithSuffixes_threeLastIsBlank4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleResolutionWithSymlinks.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleResolutionWithSymlinks_notInNodeModules.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleResolutionWithSymlinks_preserveSymlinks.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleResolutionWithSymlinks_referenceTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleResolutionWithSymlinks_withOutDir.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleResolution_automaticTypeDirectiveNames.ts +tasks/coverage/typescript/tests/cases/compiler/moduleResolution_classicPrefersTs.ts +Unexpected estree file content error: 2 != 3 + +tasks/coverage/typescript/tests/cases/compiler/moduleResolution_explicitNodeModulesImport.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/compiler/moduleResolution_explicitNodeModulesImport_implicitAny.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleResolution_noLeadingDot.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleResolution_packageJson_notAtPackageRoot.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleResolution_packageJson_notAtPackageRoot_fakeScopedPackage.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleResolution_packageJson_scopedPackage.ts +tasks/coverage/typescript/tests/cases/compiler/moduleResolution_packageJson_yesAtPackageRoot.ts +Unexpected estree file content error: 2 != 3 + +tasks/coverage/typescript/tests/cases/compiler/moduleResolution_packageJson_yesAtPackageRoot_fakeScopedPackage.ts +Unexpected estree file content error: 2 != 3 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleResolution_packageJson_yesAtPackageRoot_mainFieldInSubDirectory.ts +tasks/coverage/typescript/tests/cases/compiler/moduleResolution_relativeImportJsFile.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/compiler/moduleResolution_relativeImportJsFile_noImplicitAny.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleSameValueDuplicateExportedBindings1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleSameValueDuplicateExportedBindings2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleScopingBug.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleSharesNameWithImportDeclarationInsideIt.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleSharesNameWithImportDeclarationInsideIt2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleSharesNameWithImportDeclarationInsideIt3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleSharesNameWithImportDeclarationInsideIt4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleSharesNameWithImportDeclarationInsideIt5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleSharesNameWithImportDeclarationInsideIt6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleSymbolMerging.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleUnassignedVariable.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleVariableArrayIndexer.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleVariables.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleVisibilityTest1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleVisibilityTest2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleVisibilityTest3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleVisibilityTest4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleWithNoValuesAsType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleWithTryStatement1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleWithValuesAsType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/module_augmentExistingAmbientVariable.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/module_augmentExistingVariable.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/module_augmentUninstantiatedModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/module_augmentUninstantiatedModule2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduledecl.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/multiCallOverloads.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/multiExtendsSplitInterfaces1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/multiExtendsSplitInterfaces2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/multiImportExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/multiLineContextDiagnosticWithPretty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/multiLineErrors.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/multiLinePropertyAccessAndArrowFunctionIndent1.ts +A 'return' statement can only be used within a function body. +Mismatch: tasks/coverage/typescript/tests/cases/compiler/multiModuleClodule1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/multiModuleFundule1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/multiSignatureTypeInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/multipleBaseInterfaesWithIncompatibleProperties.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/multipleClassPropertyModifiers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/multipleExportAssignments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/multipleExportAssignmentsInAmbientDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/multipleExports.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/multipleInferenceContexts.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/multivar.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mutrec.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mutuallyRecursiveCallbacks.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mutuallyRecursiveGenericBaseTypes1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mutuallyRecursiveGenericBaseTypes2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mutuallyRecursiveInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/mutuallyRecursiveInterfaceDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nameCollisionWithBlockScopedVariable1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nameCollisions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nameCollisionsInPropertyAssignments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/namedFunctionExpressionAssignedToClassProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/namedFunctionExpressionCall.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/namedFunctionExpressionCallErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/namedFunctionExpressionInModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/namedImportNonExistentName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/namespaceDisambiguationInUnion.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/namespaceMergedWithFunctionWithOverloadsUsage.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/namespaceMergedWithImportAliasNoCrash.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/namespaceNotMergedWithFunctionDefaultExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/namespaces1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/namespaces2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/namespacesDeclaration1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/namespacesDeclaration2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/namespacesWithTypeAliasOnlyExportsMerge.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nanEquality.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowByBooleanComparison.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowByClauseExpressionInSwitchTrue1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowByClauseExpressionInSwitchTrue10.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowByClauseExpressionInSwitchTrue2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowByClauseExpressionInSwitchTrue3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowByClauseExpressionInSwitchTrue4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowByClauseExpressionInSwitchTrue5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowByClauseExpressionInSwitchTrue6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowByClauseExpressionInSwitchTrue7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowByClauseExpressionInSwitchTrue8.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowByClauseExpressionInSwitchTrue9.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowByEquality.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowByInstanceof.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowByParenthesizedSwitchExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowBySwitchDiscriminantUndefinedCase1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowCommaOperatorNestedWithinLHS.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowRefinedConstLikeParameterBIndingElementNameInInnerScope.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowSwitchOptionalChainContainmentEvolvingArrayNoCrash1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowTypeByInstanceof.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowUnknownByTypePredicate.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowUnknownByTypeofObject.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowedConstInMethod.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowedImports.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowedImports_assumeInitialized.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowingAssignmentReadonlyRespectsAssertion.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowingByDiscriminantInLoop.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowingByTypeofInSwitch.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowingConstrainedTypeParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowingDestructuring.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowingInCaseClauseAfterCaseClauseWithReturn.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowingIntersection.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowingMutualSubtypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowingNoInfer1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowingOfDottedNames.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowingOfQualifiedNames.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowingOrderIndependent.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowingPastLastAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowingPastLastAssignmentInModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowingRestGenericCall.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowingTruthyObject.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowingTypeofDiscriminant.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowingTypeofFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowingTypeofObject.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowingTypeofParenthesized1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowingTypeofUndefined1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowingTypeofUndefined2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowingUnionToNeverAssigment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowingUnionToUnion.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowingUnionWithBang.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowingWithNonNullExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nativeToBoxedTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nearbyIdenticalGenericLambdasAssignable.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/negativeZero.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedBlockScopedBindings1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedBlockScopedBindings10.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedBlockScopedBindings11.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedBlockScopedBindings12.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedBlockScopedBindings13.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedBlockScopedBindings14.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedBlockScopedBindings15.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedBlockScopedBindings16.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedBlockScopedBindings2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedBlockScopedBindings3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedBlockScopedBindings4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedBlockScopedBindings5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedBlockScopedBindings6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedBlockScopedBindings7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedBlockScopedBindings8.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedBlockScopedBindings9.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedCallbackErrorNotFlattened.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedExcessPropertyChecking.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedFreshLiteral.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedGenericConditionalTypeWithGenericImportType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedGenericSpreadInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedGenerics.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedHomomorphicMappedTypesWithArrayConstraint1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedIfStatement.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedIndexer.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedInfinitelyExpandedRecursiveTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedLoopTypeGuards.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedLoopWithOnlyInnerLetCaptured.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedLoops.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedModulePrivateAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedObjectRest.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedRecursiveArraysOrObjectsError01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedRecursiveLambda.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedRedeclarationInES6AMD.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedSelf.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedSuperCallEmit.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedThisContainer.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedTypeVariableInfersLiteral.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/neverAsDiscriminantType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/newAbstractInstance.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/newAbstractInstance2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/newArrays.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/newExpressionWithTypeParameterConstrainedToOuterTypeParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/newFunctionImplicitAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/newLexicalEnvironmentForConvertedLoop.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/newLineFlagWithCRLF.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/newLineFlagWithLF.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/newLineInTypeofInstantiation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/newMap.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/newNamesInGlobalAugmentations1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/newNonReferenceType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/newOnInstanceSymbol.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noAsConstNameLookup.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noBundledEmitFromNodeModules.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noCatchBlock.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noCheckDoesNotReportError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noCheckNoEmit.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noCheckRequiresEmitDeclarationOnly.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noCircularDefinitionOnExportOfPrivateInMergedNamespace.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noCollisionThisExpressionAndClassInGlobal.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noCollisionThisExpressionAndLocalVarInAccessors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noCollisionThisExpressionAndLocalVarInConstructor.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noCollisionThisExpressionAndLocalVarInFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noCollisionThisExpressionAndLocalVarInLambda.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noCollisionThisExpressionAndLocalVarInMethod.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noCollisionThisExpressionAndLocalVarInProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noCollisionThisExpressionAndVarInGlobal.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noCollisionThisExpressionInFunctionAndVarInGlobal.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noConstraintInReturnType1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noCrashOnImportShadowing.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noCrashOnMixin.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noCrashOnNoLib.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noCrashOnThisTypeUsage.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noCrashUMDMergedWithGlobalValue.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noCrashWithVerbatimModuleSyntaxAndImportsNotUsedAsValues.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noDefaultLib.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noEmitAndComposite.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noEmitAndCompositeListFilesOnly.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noEmitAndIncremental.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noEmitAndIncrementalListFilesOnly.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noEmitHelpers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noEmitHelpers2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noEmitOnError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noErrorTruncation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noErrorUsingImportExportModuleAugmentationInDeclarationFile1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noErrorUsingImportExportModuleAugmentationInDeclarationFile2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noErrorUsingImportExportModuleAugmentationInDeclarationFile3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noErrorsInCallback.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noExcessiveStackDepthError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitAnyAndPrivateMembersWithoutTypeAnnotations.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitAnyDestructuringInPrivateMethod.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitAnyDestructuringParameterDeclaration.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/noImplicitAnyDestructuringVarDeclaration.ts +Missing initializer in destructuring declaration +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitAnyDestructuringVarDeclaration2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitAnyForIn.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitAnyForMethodParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitAnyForwardReferencedInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitAnyFunctionExpressionAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitAnyFunctions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitAnyInBareInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitAnyInCastExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitAnyInContextuallyTypesFunctionParamter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitAnyIndexing.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitAnyIndexingSuppressed.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitAnyLoopCrash.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitAnyMissingGetAccessor.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitAnyMissingSetAccessor.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitAnyModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitAnyNamelessParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitAnyParametersInAmbientClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitAnyParametersInAmbientFunctions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitAnyParametersInAmbientModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitAnyParametersInBareFunctions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitAnyParametersInClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitAnyParametersInInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitAnyParametersInModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitAnyReferencingDeclaredInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitAnyStringIndexerOnObject.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitAnyUnionNormalizedObjectLiteral1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitAnyWithOverloads.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitReturnInConstructors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitReturnsExclusions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitReturnsInAsync1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitReturnsInAsync2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitReturnsWithProtectedBlocks1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitReturnsWithProtectedBlocks2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitReturnsWithProtectedBlocks3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitReturnsWithoutReturnExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitSymbolToString.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitThisBigThis.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitThisFunctions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitUseStrict_amd.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitUseStrict_commonjs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitUseStrict_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitUseStrict_system.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitUseStrict_umd.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noInferCommonPropertyCheck1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noInferUnionExcessPropertyCheck1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noIterationTypeErrorsInCFA.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noMappedGetSet.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noObjectKeysToKeyofT.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noReachabilityErrorsOnEmptyStatement.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noRepeatedPropertyNames.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noSelfOnVars.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noStrictGenericChecks.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noSubstitutionTemplateStringLiteralTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noSubtypeReduction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noSymbolForMergeCrash.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noTypeArgumentOnReturnType1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noUncheckedIndexAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noUncheckedIndexedAccessCompoundAssignments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noUnusedLocals_destructuringAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noUnusedLocals_potentialPredicateUnusedParam.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noUnusedLocals_selfReference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noUnusedLocals_selfReference_skipsBlockLocations.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noUnusedLocals_typeParameterMergedWithParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noUnusedLocals_writeOnly.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noUnusedLocals_writeOnlyProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noUnusedLocals_writeOnlyProperty_dynamicNames.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noUsedBeforeDefinedErrorInAmbientContext1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/noUsedBeforeDefinedErrorInTypeContext.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nodeColonModuleResolution.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nodeColonModuleResolution2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nodeModuleReexportFromDottedPath.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nodeNextEsmImportsOfPackagesWithExtensionlessMains.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nodeNextImportModeImplicitIndexResolution.ts +tasks/coverage/typescript/tests/cases/compiler/nodeNextImportModeImplicitIndexResolution2.ts +Unexpected estree file content error: 4 != 6 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nodeNextModuleResolution1.ts +tasks/coverage/typescript/tests/cases/compiler/nodeNextModuleResolution2.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nodeNextPackageImportMapRootDir.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nodeNextPackageSelfNameWithOutDir.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nodeNextPackageSelfNameWithOutDirDeclDir.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nodeNextPackageSelfNameWithOutDirDeclDirComposite.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nodeNextPackageSelfNameWithOutDirDeclDirCompositeNestedDirs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nodeNextPackageSelfNameWithOutDirDeclDirNestedDirs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nodeNextPackageSelfNameWithOutDirDeclDirRootDir.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nodeNextPackageSelfNameWithOutDirRootDir.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nodeResolution1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nodeResolution2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nodeResolution3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nodeResolution4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nodeResolution5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nodeResolution6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nodeResolution7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nodeResolution8.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nonArrayRestArgs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nonConflictingRecursiveBaseTypeMembers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nonContextuallyTypedLogicalOr.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nonExportedElementsOfMergedModules.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nonGenericClassExtendingGenericClassWithAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nonIdenticalTypeConstraints.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nonInferrableTypePropagation1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nonInferrableTypePropagation2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nonInferrableTypePropagation3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nonMergedDeclarationsAndOverloads.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nonMergedOverloads.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nonNullFullInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nonNullMappedType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nonNullParameterExtendingStringAssignableToString.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nonNullReferenceMatching.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nonNullableAndObjectIntersections.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nonNullableReduction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nonNullableReductionNonStrict.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nonNullableTypes1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nonNullableWithNullableGenericIndexedAccessArg.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nonObjectUnionNestedExcessPropertyCheck.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nondistributiveConditionalTypeInfer.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nonexistentPropertyOnUnion.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nonexistentPropertyUnavailableOnPromisedType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nongenericConditionalNotPartiallyComputed.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nongenericPartialInstantiationsRelatedInBothDirections.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nonnullAssertionPropegatesContextualType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nonstrictTemplateWithNotOctalPrintsAsIs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/normalizedIntersectionTooComplex.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nounusedTypeParameterConstraint.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/null.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nullKeyword.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/nullableFunctionError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/numberAsInLHS.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/numberAssignableToEnumInsideUnion.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/numberOnLeftSideOfInExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/numberToString.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/numberVsBigIntOperations.ts +Missing initializer in const declaration +Mismatch: tasks/coverage/typescript/tests/cases/compiler/numericClassMembers1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/numericEnumMappedType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/numericIndexExpressions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/numericIndexerConstraint.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/numericIndexerConstraint1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/numericIndexerConstraint2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/numericIndexerConstraint3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/numericIndexerConstraint4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/numericIndexerConstraint5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/numericIndexerTyping1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/numericIndexerTyping2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/numericMethodName1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/numericUnderscoredSeparator.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectAssignLikeNonUnionResult.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectBindingPatternContextuallyTypesArgument.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectBindingPattern_restElementWithPropertyName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectCreate-errors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectCreate.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectCreate2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectCreationOfElementAccessExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectFreeze.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectFreezeLiteralsDontWiden.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectFromEntries.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectGroupBy.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectIndexer.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectInstantiationFromUnionSpread.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectLitGetterSetter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectLitIndexerContextualType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectLitPropertyScoping.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectLitStructuralTypeMismatch.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectLitTargetTypeCallSite.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectLiteral1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectLiteral2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectLiteralArraySpecialization.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectLiteralComputedNameNoDeclarationError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectLiteralDeclarationGeneration1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectLiteralEnumPropertyNames.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectLiteralExcessProperties.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectLiteralFreshnessWithSpread.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectLiteralFunctionArgContextualTyping.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectLiteralFunctionArgContextualTyping2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectLiteralIndexerErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectLiteralIndexerNoImplicitAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectLiteralIndexers.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/objectLiteralMemberWithModifiers1.ts +'public' modifier cannot be used here. +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/objectLiteralMemberWithModifiers2.ts +'public' modifier cannot be used here. +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/objectLiteralMemberWithQuestionMark1.ts +Expected `,` but found `?` +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectLiteralParameterResolution.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectLiteralPropertyImplicitlyAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectLiteralReferencingInternalProperties.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectLiteralThisWidenedOnUse.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectLiteralWithGetAccessorInsideFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectLiteralWithNumericPropertyName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectLiteralsAgainstUnionsOfArrays01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectMembersOnTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectRestBindingContextualInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectRestSpread.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectSpreadWithinMethodWithinObjectWithSpread.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/observableInferenceCanBeMade.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/omitTypeHelperModifiers01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/omitTypeTestErrors01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/omitTypeTests01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/omittedExpressionForOfLoop.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/operationsAvailableOnPromisedType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/operatorAddNullUndefined.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/optionalAccessorsInInterface1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/optionalArgsWithDefaultValues.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/optionalChainWithInstantiationExpression2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/optionalConstructorArgInSuper.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/optionalFunctionArgAssignability.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/optionalParamArgsTest.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/optionalParamAssignmentCompat.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/optionalParamInOverride.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/optionalParamReferencingOtherParams1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/optionalParamReferencingOtherParams2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/optionalParamReferencingOtherParams3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/optionalParamTypeComparison.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/optionalParameterInDestructuringWithInitializer.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/optionalParameterProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/optionalParameterRetainsNull.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/optionalParamterAndVariableDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/optionalParamterAndVariableDeclaration2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/optionalPropertiesInClasses.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/optionalPropertiesTest.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/optionalSetterParam.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/optionalTupleElementsAndUndefined.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/optionsCompositeWithIncrementalFalse.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/optionsInlineSourceMapMapRoot.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/optionsInlineSourceMapSourceRoot.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/optionsInlineSourceMapSourcemap.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/optionsOutAndNoModuleGen.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/optionsSourcemapInlineSources.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/optionsSourcemapInlineSourcesMapRoot.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/optionsSourcemapInlineSourcesSourceRoot.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/optionsStrictPropertyInitializationStrict.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/optionsStrictPropertyInitializationStrictNullChecks.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/optionsTsBuildInfoFileWithoutIncrementalAndComposite.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/orderMattersForSignatureGroupIdentity.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/out-flag.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/out-flag2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/out-flag3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/outModuleConcatAmd.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/outModuleConcatCommonjs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/outModuleConcatCommonjsDeclarationOnly.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/outModuleConcatES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/outModuleConcatSystem.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/outModuleConcatUmd.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/outModuleConcatUnspecifiedModuleKind.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/outModuleConcatUnspecifiedModuleKindDeclarationOnly.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/outModuleTripleSlashRefs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overEagerReturnTypeSpecialization.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overload1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overload2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadAssignmentCompat.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadBindingAcrossDeclarationBoundaries.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadBindingAcrossDeclarationBoundaries2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadCallTest.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadCrash.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadEquivalenceWithStatics.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadErrorMatchesImplementationElaboaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadGenericFunctionWithRestArgs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadModifiersMustAgree.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadOnConstAsTypeAnnotation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadOnConstConstraintChecks1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadOnConstConstraintChecks2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadOnConstConstraintChecks3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadOnConstConstraintChecks4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadOnConstDuplicateOverloads1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadOnConstInBaseWithBadImplementationInDerived.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadOnConstInCallback1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadOnConstInObjectLiteralImplementingAnInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadOnConstInheritance1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadOnConstInheritance2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadOnConstInheritance3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadOnConstInheritance4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadOnConstNoAnyImplementation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadOnConstNoAnyImplementation2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadOnConstNoNonSpecializedSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadOnConstNoStringImplementation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadOnConstNoStringImplementation2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadOnConstantsInvalidOverload1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadOnGenericArity.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadOnGenericClassAndNonGenericClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadResolutionOnDefaultConstructor1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadResolutionOverCTLambda.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadResolutionOverNonCTLambdas.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadResolutionOverNonCTObjectLit.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadResolutionTest1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadResolutionWithAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadRet.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadReturnTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadWithCallbacksWithDifferingOptionalityOnArgs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadedConstructorFixesInferencesAppropriately.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadedStaticMethodSpecialization.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadingOnConstants1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadingOnConstants2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadingOnConstantsInImplementation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadresolutionWithConstraintCheckingDeferred.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadsAndTypeArgumentArity.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadsAndTypeArgumentArityErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadsInDifferentContainersDisagreeOnAmbient.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadsWithComputedNames.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadsWithConstraints.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadsWithProvisionalErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadsWithinClasses.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overrideBaseIntersectionMethod.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overridingPrivateStaticMembers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/overshifts.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/parameterDecoratorsEmitCrash.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/parameterDestructuringObjectLiteral.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/parameterListAsTupleType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/parameterNamesInTypeParameterList.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/parameterPropertyInConstructor3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/parameterPropertyInConstructor4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/parameterPropertyInConstructorWithPrologues.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/parameterPropertyInitializerInInitializers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/parameterPropertyReferencingOtherParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/parameterReferenceInInitializer1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/parameterReferenceInInitializer2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/parameterReferencesOtherParameter1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/parameterReferencesOtherParameter2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/paramsOnlyHaveLiteralTypesWhenAppropriatelyContextualized.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/paramterDestrcuturingDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/parenthesisDoesNotBlockAliasSymbolCreation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/parenthesizedArrowExpressionASI.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/parenthesizedAsyncArrowFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/parenthesizedExpressionInternalComments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/parenthesizedSatisfiesExpressionWithComments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/parseArrowFunctionWithFunctionReturnType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/parseCommaSeparatedNewlineNumber.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/parseCommaSeparatedNewlineString.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/parseEntityNameWithReservedWord.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/parseGenericArrowRatherThanLeftShift.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/parseInvalidNonNullableTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/parseInvalidNullableTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/parseObjectLiteralsWithoutTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/parseReplacementCharacter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/parseShortform.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/parseTypes.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/parserConstructorDeclaration12.ts +Type parameters cannot appear on a constructor declaration +Mismatch: tasks/coverage/typescript/tests/cases/compiler/parserIsClassMemberStart.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/parsingClassRecoversWhenHittingUnexpectedSemicolon.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/partialDiscriminatedUnionMemberHasGoodError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/partialOfLargeAPIIsAbleToBeWorkedWith.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/partialTypeNarrowedToByTypeGuard.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/partiallyAmbientClodule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/partiallyAmbientFundule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/partiallyDiscriminantedUnions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution1_amd.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution1_node.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution2_classic.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution2_node.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution3_classic.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution3_node.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution4_classic.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution4_node.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution5_classic.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution5_node.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution6_classic.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution6_node.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution7_classic.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution7_node.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution8_classic.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution8_node.ts +tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution_rootImport_aliasWithRoot.ts +Unexpected estree file content error: 2 != 3 + +tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution_rootImport_aliasWithRoot_differentRootTypes.ts +Unexpected estree file content error: 2 != 3 + +tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution_rootImport_aliasWithRoot_multipleAliases.ts +Unexpected estree file content error: 2 != 3 + +tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution_rootImport_aliasWithRoot_realRootFile.ts +Unexpected estree file content error: 2 != 3 + +tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution_rootImport_noAliasWithRoot.ts +Unexpected estree file content error: 2 != 3 + +tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution_rootImport_noAliasWithRoot_realRootFile.ts +Unexpected estree file content error: 2 != 3 + +tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution_withExtension.ts +Unexpected estree file content error: 2 != 3 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution_withExtensionInName.ts +tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution_withExtension_MapedToNodeModules.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution_withExtension_failedLookup.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/pathMappingInheritedBaseUrl.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/pathMappingWithoutBaseUrl1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/pathMappingWithoutBaseUrl2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/pathsValidation1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/pathsValidation2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/pathsValidation3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/pathsValidation4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/pathsValidation5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/performanceComparisonOfStructurallyIdenticalInterfacesWithGenericSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/pickOfLargeObjectUnionWorks.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/pinnedComments1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/potentiallyUnassignedVariableInCatch.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/potentiallyUncalledDecorators.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/predicateSemantics.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/prefixIncrementAsOperandOfPlusExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/prefixUnaryOperatorsOnExportedVariables.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/prefixedNumberLiteralAssignToNumberLiteralType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/preserveConstEnums.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/preserveUnusedImports.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/prespecializedGenericMembers1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/prettyFileWithErrorsAndTabs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/primaryExpressionMods.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/primitiveConstraints1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/primitiveConstraints2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/primitiveMembers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/primitiveTypeAsClassName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/primitiveTypeAsInterfaceName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/primitiveTypeAsInterfaceNameGeneric.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/primitiveTypeAsmoduleName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/primitiveTypeAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/primitiveUnionDetection.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyAccessorDeclFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyCannotNameAccessorDeclFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyCannotNameVarTypeDeclFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyCheckAnonymousFunctionParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyCheckAnonymousFunctionParameter2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyCheckCallbackOfInterfaceMethodWithTypeParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyCheckExportAssignmentOnExportedGenericInterface1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyCheckExportAssignmentOnExportedGenericInterface2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyCheckExternalModuleExportAssignmentOfGenericClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyCheckOnTypeParameterReferenceInConstructorParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyCheckTypeOfFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyCheckTypeOfInvisibleModuleError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyCheckTypeOfInvisibleModuleNoError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyClassExtendsClauseDeclFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyClassImplementsClauseDeclFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyFunc.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyFunctionCannotNameParameterTypeDeclFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyFunctionCannotNameReturnTypeDeclFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyFunctionParameterDeclFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyFunctionReturnTypeDeclFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyGetter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyGloClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyGloFunc.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyGloGetter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyGloImport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyGloImportParseErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyGloInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyGloVar.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyImport.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/privacyImportParseErrors.ts +'export' modifier cannot be used here. +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyInterfaceExtendsClauseDeclFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyLocalInternalReferenceImportWithExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyLocalInternalReferenceImportWithoutExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyTopLevelAmbientExternalModuleImportWithExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyTopLevelAmbientExternalModuleImportWithoutExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyTopLevelInternalReferenceImportWithExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyTopLevelInternalReferenceImportWithoutExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyTypeParameterOfFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyTypeParameterOfFunctionDeclFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyTypeParametersOfClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyTypeParametersOfClassDeclFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyTypeParametersOfInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyTypeParametersOfInterfaceDeclFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyVar.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyVarDeclFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privateAccessInSubclass1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privateFieldAssignabilityFromUnknown.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privateInstanceVisibility.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privateInterfaceProperties.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privateNameWeakMapCollision.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privatePropertyInUnion.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privatePropertyUsingObjectType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privateVisibility.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/privateVisibles.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/promiseAllOnAny01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/promiseChaining.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/promiseChaining1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/promiseChaining2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/promiseDefinitionTest.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/promiseEmptyTupleNoException.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/promiseIdentity.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/promiseIdentity2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/promiseIdentityWithAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/promiseIdentityWithAny2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/promiseIdentityWithConstraints.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/promisePermutations.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/promisePermutations2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/promisePermutations3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/promiseTry.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/promiseType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/promiseTypeInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/promiseTypeInferenceUnion.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/promiseTypeStrictNull.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/promiseVoidErrorCallback.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/promiseWithResolvers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/promises.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/promisesWithConstraints.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/propTypeValidatorInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/propagateNonInferrableType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/propagationOfPromiseInitialization.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/properties.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/propertiesAndIndexers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/propertiesAndIndexers2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/propertiesAndIndexersForNumericNames.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/propertyAccess1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/propertyAccess2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/propertyAccess3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/propertyAccess4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/propertyAccess5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/propertyAccess6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/propertyAccess7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/propertyAccessExpressionInnerComments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/propertyAccessOfReadonlyIndexSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/propertyAccessOnObjectLiteral.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/propertyAccessibility1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/propertyAccessibility2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/propertyAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/propertyIdentityWithPrivacyMismatch.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/propertyNamesWithStringLiteral.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/propertyOrdering.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/propertyOrdering2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/propertyOverridingPrototype.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/propertyParameterWithQuestionMark.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/propertySignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/protectedAccessThroughContextualThis.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/protectedMembers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/protectedMembersThisParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/protoAsIndexInIndexExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/protoAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/protoInIndexer.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/prototypeInstantiatedWithBaseConstraint.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/prototypeOnConstructorFunctions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/prototypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/publicGetterProtectedSetterFromThisParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/publicMemberImplementedAsPrivateInDerivedClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/qualifiedModuleLocals.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/qualifiedName_ImportDeclarations-entity-names-referencing-a-var.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/qualifiedName_entity-name-resolution-does-not-affect-class-heritage.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/qualify.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/quickinfoTypeAtReturnPositionsInaccurate.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/quotedAccessorName1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/quotedAccessorName2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/quotedFunctionName1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/quotedFunctionName2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/quotedModuleNameMustBeAmbient.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/quotedPropertyName1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/quotedPropertyName2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/quotedPropertyName3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/raiseErrorOnParameterProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ramdaToolsNoInfinite.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ramdaToolsNoInfinite2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/randomSemicolons1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reExportGlobalDeclaration1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reExportGlobalDeclaration2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reExportGlobalDeclaration3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reExportGlobalDeclaration4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reExportUndefined1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reExportUndefined2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reachabilityCheckWithEmptyDefault.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reachabilityChecks1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reachabilityChecks2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reachabilityChecks3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reachabilityChecks4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reachabilityChecks5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reachabilityChecks6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reachabilityChecks7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reachabilityChecks8.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reactDefaultPropsInferenceSuccess.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reactHOCSpreadprops.tsx +tasks/coverage/typescript/tests/cases/compiler/reactImportDropped.ts +Unexpected estree file content error: 1 != 3 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reactImportUnusedInNewJSXEmit.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reactJsxReactResolvedNodeNext.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reactJsxReactResolvedNodeNextEsm.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reactNamespaceImportPresevation.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reactNamespaceInvalidInput.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reactNamespaceJSXEmit.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reactNamespaceMissingDeclaration.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reactReadonlyHOCAssignabilityReal.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reactReduxLikeDeferredInferenceAllowsAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reactSFCAndFunctionResolvable.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reactTagNameComponentWithPropsNoOOM.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reactTagNameComponentWithPropsNoOOM2.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reactTransitiveImportHasValidDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/readonlyAssignmentInSubclassOfClassExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/readonlyFloat32ArrayAssignableWithFloat32Array.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/readonlyInDeclarationFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/readonlyMembers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/readonlyPropertySubtypeRelationDirected.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/readonlyTupleAndArrayElaboration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reassignStaticProp.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reboundBaseClassSymbol.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reboundIdentifierOnImportAlias.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/rectype.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recur1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveArrayNotCircular.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveBaseCheck.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveBaseCheck2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveBaseCheck3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveBaseCheck4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveBaseCheck5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveBaseCheck6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveBaseConstructorCreation1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveBaseConstructorCreation2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveBaseConstructorCreation3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveClassBaseType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveClassInstantiationsWithDefaultConstructors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveClassReferenceTest.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveCloduleReference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveComplicatedClasses.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveConditionalCrash1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveConditionalCrash2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveConditionalCrash3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveConditionalCrash4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveConditionalEvaluationNonInfinite.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveConditionalTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveConditionalTypes2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveExcessPropertyChecks.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveExportAssignmentAndFindAliasedType1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveExportAssignmentAndFindAliasedType2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveExportAssignmentAndFindAliasedType3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveExportAssignmentAndFindAliasedType4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveExportAssignmentAndFindAliasedType5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveExportAssignmentAndFindAliasedType6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveExportAssignmentAndFindAliasedType7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveFieldSetting.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveFunctionTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveFunctionTypes1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveGenericMethodCall.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveGenericSignatureInstantiation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveGenericTypeHierarchy.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveGenericUnionType1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveGenericUnionType2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveGetterAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveIdenticalAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveIdenticalOverloadResolution.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveInference1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveInferenceBug.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveInheritance.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveInheritance2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveInheritance3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveInheritanceGeneric.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveLetConst.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveMods.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveNamedLambdaCall.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveObjectLiteral.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveProperties.ts +tasks/coverage/typescript/tests/cases/compiler/recursiveResolveDeclaredMembers.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveResolveTypeMembers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveReturns.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveReverseMappedType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveSpecializationOfExtendedTypeWithError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveSpecializationOfSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveTupleTypeInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveTupleTypes1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveTupleTypes2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveTypeAliasWithSpreadConditionalReturnNotCircular.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveTypeComparison.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveTypeComparison2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveTypeIdentity.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveTypeParameterConstraintReferenceLacksTypeArgs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveTypeParameterReferenceError1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveTypeParameterReferenceError2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveTypeRelations.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveTypes1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveUnionTypeInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursivelyExpandingUnionNoStackoverflow.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursivelySpecializedConstructorDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/redeclarationOfVarWithGenericType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/redeclareParameterInCatchBlock.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/redefineArray.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reducibleIndexedAccessTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reexportDefaultIsCallable.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reexportMissingDefault.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reexportMissingDefault1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reexportMissingDefault2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reexportMissingDefault3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reexportMissingDefault4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reexportMissingDefault5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reexportMissingDefault6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reexportMissingDefault7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reexportMissingDefault8.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reexportNameAliasedAndHoisted.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reexportWrittenCorrectlyInDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reexportedMissingAlias.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/referenceSatisfiesExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/referenceTypesPreferedToPathIfPossible.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/regExpWithOpenBracketInCharClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/regExpWithSlashInCharClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/regexMatchAll-esnext.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/regexMatchAll.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/regexpExecAndMatchTypeUsages.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/regularExpressionAnnexB.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/regularExpressionCharacterClassRangeOrder.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/regularExpressionExtendedUnicodeEscapes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/regularExpressionGroupNameSuggestions.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/regularExpressionScanning.ts +Unexpected flag a in regular expression literal +Mismatch: tasks/coverage/typescript/tests/cases/compiler/regularExpressionUnicodePropertyValueExpressionSuggestions.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/regularExpressionWithNonBMPFlags.ts +Expected a semicolon or an implicit semicolon after a statement, but found none +Mismatch: tasks/coverage/typescript/tests/cases/compiler/relatedViaDiscriminatedTypeNoError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/relatedViaDiscriminatedTypeNoError2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/relationComplexityError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/relationalOperatorComparable.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/relativeNamesInClassicResolution.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/renamingDestructuredPropertyInFunctionType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/renamingDestructuredPropertyInFunctionType2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/renamingDestructuredPropertyInFunctionType3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reorderProperties.ts +tasks/coverage/typescript/tests/cases/compiler/requireAsFunctionInExternalModule.ts +Unexpected estree file content error: 1 != 3 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requireEmitSemicolon.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requireOfAnEmptyFile1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requireOfJsonFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requireOfJsonFileNonRelative.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requireOfJsonFileNonRelativeWithoutExtension.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requireOfJsonFileNonRelativeWithoutExtensionResolvesToTs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requireOfJsonFileTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requireOfJsonFileWithAlwaysStrictWithoutErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requireOfJsonFileWithAmd.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requireOfJsonFileWithComputedPropertyName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requireOfJsonFileWithDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requireOfJsonFileWithEmptyObject.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requireOfJsonFileWithEmptyObjectWithErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requireOfJsonFileWithErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requireOfJsonFileWithModuleEmitNone.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requireOfJsonFileWithModuleEmitUndefined.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requireOfJsonFileWithModuleNodeResolutionEmitAmd.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requireOfJsonFileWithModuleNodeResolutionEmitAmdOutFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requireOfJsonFileWithModuleNodeResolutionEmitEs2015.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requireOfJsonFileWithModuleNodeResolutionEmitEsNext.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requireOfJsonFileWithModuleNodeResolutionEmitNone.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requireOfJsonFileWithModuleNodeResolutionEmitSystem.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requireOfJsonFileWithModuleNodeResolutionEmitUmd.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requireOfJsonFileWithModuleNodeResolutionEmitUndefined.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requireOfJsonFileWithNoContent.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requireOfJsonFileWithSourceMap.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requireOfJsonFileWithTraillingComma.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requireOfJsonFileWithoutAllowJs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requireOfJsonFileWithoutEsModuleInterop.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requireOfJsonFileWithoutExtension.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requireOfJsonFileWithoutExtensionResolvesToTs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requireOfJsonFileWithoutOutDir.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requireOfJsonFileWithoutResolveJsonModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requireOfJsonFileWithoutResolveJsonModuleAndPathMapping.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requireOfJsonFile_PathMapping.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requiredInitializedParameter1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requiredInitializedParameter2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requiredInitializedParameter3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requiredInitializedParameter4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/requiredMappedTypeModifierTrumpsVariance.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reservedNameOnInterfaceImport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reservedNameOnModuleImport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reservedNameOnModuleImportWithInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reservedWords.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/resolutionCandidateFromPackageJsonField1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/resolutionCandidateFromPackageJsonField2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/resolveInterfaceNameWithSameLetDeclarationName1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/resolveInterfaceNameWithSameLetDeclarationName2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/resolveModuleNameWithSameLetDeclarationName1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/resolveModuleNameWithSameLetDeclarationName2.ts +tasks/coverage/typescript/tests/cases/compiler/resolveNameWithNamspace.ts +Unexpected estree file content error: 2 != 3 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/resolveTypeAliasWithSameLetDeclarationName1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/resolvingClassDeclarationWhenInBaseTypeResolution.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/restArgAssignmentCompat.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/restElementAssignable.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/restElementWithNumberPropertyName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/restIntersection.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/restInvalidArgumentType.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/restParamAsOptional.ts +A rest parameter cannot be optional +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/restParamModifier2.ts +Unexpected token +Mismatch: tasks/coverage/typescript/tests/cases/compiler/restParamUsingMappedTypeOverUnionConstraint.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/restParameterAssignmentCompatibility.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/restParameterNoTypeAnnotation.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/restParameterNotLast.ts +A rest parameter must be last in a parameter list +Mismatch: tasks/coverage/typescript/tests/cases/compiler/restParameterTypeInstantiation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/restParameterWithBindingPattern1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/restParameterWithBindingPattern2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/restParameterWithBindingPattern3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/restParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/restParamsWithNonRestParams.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/restTypeRetainsMappyness.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/restUnion.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/restUnion2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/restUnion3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/returnInConstructor1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/returnInfiniteIntersection.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/returnStatement1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/returnTypeInferenceNotTooBroad.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/returnTypeParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/returnTypeParameterWithModules.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/returnTypePredicateIsInstantiateInContextOfTarget.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/returnTypeTypeArguments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/returnValueInSetter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reuseInnerModuleMember.ts +tasks/coverage/typescript/tests/cases/compiler/reuseTypeAnnotationImportTypeInGlobalThisTypeArgument.ts +Unexpected estree file content error: 2 != 4 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reverseInferenceInContextualInstantiation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reverseMappedContravariantInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reverseMappedIntersectionInference1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reverseMappedIntersectionInference2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reverseMappedPartiallyInferableTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reverseMappedTupleContext.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reverseMappedTypeAssignableToIndex.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reverseMappedTypeContextualTypeNotCircular.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reverseMappedTypeContextualTypesPerElementOfTupleConstraint.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reverseMappedTypeDeepDeclarationEmit.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reverseMappedTypeInferenceSameSource1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reverseMappedTypeIntersectionConstraint.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reverseMappedTypeLimitedConstraint.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reverseMappedTypePrimitiveConstraintProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reverseMappedTypeRecursiveInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reverseMappedUnionInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/reversedRecusiveTypeInstantiation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/satisfiesEmit.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/scopeCheckClassProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/scopeCheckExtendedClassInsidePublicMethod2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/scopeCheckExtendedClassInsideStaticMethod1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/scopeCheckInsidePublicMethod1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/scopeCheckInsideStaticMethod1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/scopeCheckStaticInitializer.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/scopeTests.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/scopingInCatchBlocks.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/selfInCallback.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/selfInLambdas.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/selfNameAndImportsEmitInclusion.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/selfRef.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/selfReference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/selfReferencesInFunctionParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/selfReferencingFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/selfReferencingFile2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/selfReferencingFile3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/selfReferencingSpreadInLoop.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/selfReferencingTypeReferenceInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/selfReferentialFunctionType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/semicolonsInModuleDeclarations.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/separate1-1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/separate1-2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/setMethods.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/setterBeforeGetter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/setterWithReturn.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/shadowPrivateMembers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/shadowedFunctionScopedVariablesByBlockScopedOnes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/shadowedReservedCompilerDeclarationsWithNoEmit.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/shadowingViaLocalValue.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/shadowingViaLocalValueOrBindingElement.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/shebang.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/shebangBeforeReferences.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/shorthand-property-es5-es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/shorthand-property-es6-amd.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/shorthand-property-es6-es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/shorthandOfExportedEntity01_targetES2015_CommonJS.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/shorthandOfExportedEntity02_targetES5_CommonJS.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/shorthandPropertyAssignmentInES6Module.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/shorthandPropertyAssignmentsInDestructuring.ts +Invalid assignment in object literal +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/shorthandPropertyAssignmentsInDestructuring_ES6.ts +Invalid assignment in object literal +Mismatch: tasks/coverage/typescript/tests/cases/compiler/shorthandPropertyUndefined.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/shouldNotPrintNullEscapesIntoOctalLiterals.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sideEffectImports1.ts +tasks/coverage/typescript/tests/cases/compiler/sideEffectImports2.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sideEffectImports3.ts +tasks/coverage/typescript/tests/cases/compiler/sideEffectImports4.ts +Unexpected estree file content error: 1 != 3 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sigantureIsSubTypeIfTheyAreIdentical.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/signatureCombiningRestParameters1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/signatureCombiningRestParameters2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/signatureCombiningRestParameters3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/signatureCombiningRestParameters4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/signatureCombiningRestParameters5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/signatureInstantiationWithRecursiveConstraints.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/signatureLengthMismatchCall.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/signatureLengthMismatchInOverload.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/signatureLengthMismatchWithOptionalParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/signatureOverloadsWithComments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/silentNeverPropagation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/simpleArrowFunctionParameterReferencedInObjectLiteral1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/simpleRecursionWithBaseCase1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/simpleRecursionWithBaseCase2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/simpleRecursionWithBaseCase3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/simpleRecursionWithBaseCase4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/simplifyingConditionalWithInteriorConditionalIsRelated.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/singletonLabeledTuple.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sliceResultCast.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/slightlyIndirectedDeepObjectLiteralElaborations.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMap-Comment1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMap-Comments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMap-Comments2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMap-FileWithComments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMap-InterfacePrecedingVariableDeclaration1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMap-LineBreaks.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMap-SemiColon1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMap-SingleSpace1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMap-SkippedNode.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMap-StringLiteralWithNewLine.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapForFunctionInInternalModuleWithCommentPrecedingStatement01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapForFunctionWithCommentPrecedingStatement01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapPercentEncoded.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapSample.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationClassWithDefaultConstructor.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationClassWithDefaultConstructorAndCapturedThisStatement.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationClassWithDefaultConstructorAndExtendsClause.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationClasses.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDecorators.ts +Unexpected token +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringForArrayBindingPattern.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringForArrayBindingPattern2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringForArrayBindingPatternDefaultValues.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringForObjectBindingPattern.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringForObjectBindingPattern2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringForObjectBindingPatternDefaultValues.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringForObjectBindingPatternDefaultValues2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringForOfArrayBindingPattern.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringForOfArrayBindingPattern2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringForOfObjectBindingPattern.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringForOfObjectBindingPattern2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringParameterNestedObjectBindingPattern.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringParameterNestedObjectBindingPatternDefaultValues.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringParameterObjectBindingPattern.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringParameterObjectBindingPatternDefaultValues.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringParametertArrayBindingPattern.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringParametertArrayBindingPattern2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringParametertArrayBindingPatternDefaultValues.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringParametertArrayBindingPatternDefaultValues2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringVariableStatement.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringVariableStatement1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringVariableStatementArrayBindingPattern.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringVariableStatementArrayBindingPattern2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringVariableStatementArrayBindingPattern3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringVariableStatementArrayBindingPattern4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringVariableStatementArrayBindingPattern5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringVariableStatementArrayBindingPattern6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringVariableStatementArrayBindingPattern7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringVariableStatementDefaultValues.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringVariableStatementNestedObjectBindingPattern.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringVariableStatementNestedObjectBindingPatternWithDefaultValues.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringVariableStatementObjectBindingPattern1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringVariableStatementObjectBindingPattern2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringVariableStatementObjectBindingPattern3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringVariableStatementObjectBindingPattern4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDo.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationEnums.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationExportAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationExportAssignmentCommonjs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationFor.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationForIn.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationFunctionExpressions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationFunctionPropertyAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationFunctions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationIfElse.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationImport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationLabeled.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationLambdaSpanningMultipleLines.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationSwitch.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationTryCatchFinally.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationVarInDownLevelGenerator.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationVariables.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationWhile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationWithComments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapWithCaseSensitiveFileNames.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapWithCaseSensitiveFileNamesAndOutDir.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapWithMultipleFilesWithCopyright.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapWithMultipleFilesWithFileEndingWithInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapWithNonCaseSensitiveFileNames.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapWithNonCaseSensitiveFileNamesAndOutDir.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourcemapValidationDuplicateNames.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/specedNoStackBlown.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/specialIntersectionsInMappedTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/specializationError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/specializationOfExportedClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/specializationsShouldNotAffectEachOther.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/specializeVarArgs1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/specializedInheritedConstructors1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/specializedLambdaTypeArguments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/specializedOverloadWithRestParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/specializedSignatureAsCallbackParameter1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/specializedSignatureInInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/specializedSignatureOverloadReturnTypeWithIndexers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/spellingSuggestionGlobal1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/spellingSuggestionGlobal2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/spellingSuggestionGlobal3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/spellingSuggestionGlobal4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/spellingSuggestionJSXAttribute.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/spellingSuggestionLeadingUnderscores01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/spellingSuggestionModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/spliceTuples.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/spreadBooleanRespectsFreshness.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/spreadExpressionContainingObjectExpressionContextualType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/spreadExpressionContextualType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/spreadExpressionContextualTypeWithNamespace.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/spreadIdenticalTypesRemoved.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/spreadIntersection.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/spreadIntersectionJsx.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/spreadInvalidArgumentType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/spreadObjectNoCircular1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/spreadObjectPermutations.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/spreadObjectWithIndexDoesNotAddUndefinedToLocalIndex.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/spreadOfObjectLiteralAssignableToIndexSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/spreadOfParamsFromGeneratorMakesRequiredParams.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/spreadParameterTupleType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/spreadTupleAccessedByTypeParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/spreadTypeRemovesReadonly.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/spreadsAndContextualTupleTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/spuriousCircularityOnTypeImport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/spyComparisonChecking.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/stackDepthLimitCastingType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/staticAndMemberFunctions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/staticAnonymousTypeNotReferencingTypeParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/staticClassMemberError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/staticFieldWithInterfaceContext.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/staticGetter1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/staticGetter2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/staticGetterAndSetter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/staticIndexSignatureAndNormalIndexSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/staticInheritance.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/staticInitializersAndLegacyClassDecorators.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/staticInstanceResolution.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/staticInstanceResolution2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/staticInstanceResolution3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/staticInstanceResolution4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/staticInstanceResolution5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/staticInterfaceAssignmentCompat.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/staticMemberAccessOffDerivedType1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/staticMemberExportAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/staticMemberOfClassAndPublicMemberOfAnotherClassAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/staticMemberWithStringAndNumberNames.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/staticMethodReferencingTypeArgument1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/staticMethodWithTypeParameterExtendsClauseDeclFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/staticMethodsReferencingClassTypeParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/staticMismatchBecauseOfPrototype.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/staticMustPrecedePublic.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/staticOffOfInstance1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/staticOffOfInstance2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/staticPropSuper.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/staticPrototypeProperty.ts +Classes may not have a static property named prototype +Mismatch: tasks/coverage/typescript/tests/cases/compiler/staticPrototypePropertyOnClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/staticVisibility.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/staticVisibility2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/statics.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/staticsNotInScopeInClodule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/stradac.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/strictBooleanMemberAssignability.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/strictFunctionTypes1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/strictFunctionTypesErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/strictModeEnumMemberNameReserved.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/strictModeInConstructor.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/strictModeReservedWord.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/strictModeReservedWord2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/strictModeReservedWordInClassDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/strictModeReservedWordInDestructuring.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/strictModeReservedWordInImportEqualDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/strictModeReservedWordInModuleDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/strictModeUseContextualKeyword.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/strictModeWordInExportDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/strictModeWordInImportDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/strictNullEmptyDestructuring.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/strictNullLogicalAndOr.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/strictNullNotNullIndexTypeNoLib.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/strictNullNotNullIndexTypeShouldWork.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/strictOptionalProperties1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/strictOptionalProperties2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/strictSubtypeAndNarrowing.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/strictTypeofUnionNarrowing.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/stringHasStringValuedNumericIndexer.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/stringIncludes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/stringIndexerAndConstructor.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/stringIndexerAndConstructor1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/stringIndexerAssignments1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/stringIndexerAssignments2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/stringLiteralObjectLiteralDeclaration1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/stringLiteralPropertyNameWithLineContinuation1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/stringMappingAssignability.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/stringMatchAll.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/stringPropCodeGen.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/stringRawType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/stringTrim.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/stripInternal1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/stripMembersOptionality.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/structural1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/structuralTypeInDeclareFileForModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/styleOptions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/styledComponentsInstantiaionLimitNotReached.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/subSubClassCanAccessProtectedConstructor.ts +tasks/coverage/typescript/tests/cases/compiler/subclassThisTypeAssignable01.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/compiler/subclassThisTypeAssignable02.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/subclassUint8Array.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/subclassWithPolymorphicThisIsAssignable.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/substituteReturnTypeSatisfiesConstraint.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/substitutionTypeForIndexedAccessType1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/substitutionTypeForIndexedAccessType2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/substitutionTypeForNonGenericIndexedAccessType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/substitutionTypeNoMergeOfAssignableType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/substitutionTypePassedToExtends.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/substitutionTypesCompareCorrectlyInRestrictiveInstances.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/substitutionTypesInIndexedAccessTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/subtypeReductionUnionConstraints.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/subtypeRelationForNever.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/subtypingTransitivity.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/super.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/super1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/super2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superAccessCastedCall.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superAccessInFatArrow1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superCallArgsMustMatch.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superCallAssignResult.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superCallFromClassThatDerivesFromGenericType1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superCallFromClassThatDerivesFromGenericType2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superCallFromClassThatDerivesFromGenericTypeButWithIncorrectNumberOfTypeArguments1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superCallFromClassThatDerivesFromGenericTypeButWithNoTypeArguments1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superCallFromClassThatDerivesNonGenericTypeButWithTypeArguments1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superCallFromClassThatHasNoBaseType1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superCallFromFunction1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superCallInNonStaticMethod.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superCallInStaticMethod.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superCallInsideClassDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superCallInsideClassExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superCallInsideObjectLiteralExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superCallOutsideConstructor.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superCallWithCommentEmit01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superCallWithMissingBaseClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superCallsInConstructor.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superElementAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superHasMethodsFromMergedInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superInCatchBlock1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superInConstructorParam1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superInObjectLiterals_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superInObjectLiterals_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superNewCall1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superPropertyAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superPropertyAccess1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superPropertyAccess2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superPropertyAccessInComputedPropertiesOfNestedType_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superPropertyAccessInComputedPropertiesOfNestedType_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superPropertyAccessInSuperCall01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superPropertyAccess_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superPropertyAccess_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superPropertyElementNoUnusedLexicalThisCapture.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superWithGenericSpecialization.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/superWithGenerics.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/super_inside-object-literal-getters-and-setters.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/switchAssignmentCompat.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/switchCaseCircularRefeference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/switchCaseInternalComments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/switchCaseNarrowsMatchingClausesEvenWhenNonMatchingClausesExist.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/switchCases.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/switchCasesExpressionTypeMismatch.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/switchComparableCompatForBrands.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/switchFallThroughs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/symbolLinkDeclarationEmitModuleNames.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/symbolLinkDeclarationEmitModuleNamesImportRef.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/symbolLinkDeclarationEmitModuleNamesRootDir.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/symbolMergeValueAndImportedType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/symbolObserverMismatchingPolyfillsWorkTogether.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/symlinkedWorkspaceDependenciesNoDirectLinkGeneratesDeepNonrelativeName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/symlinkedWorkspaceDependenciesNoDirectLinkGeneratesNonrelativeName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/symlinkedWorkspaceDependenciesNoDirectLinkOptionalGeneratesNonrelativeName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/symlinkedWorkspaceDependenciesNoDirectLinkPeerGeneratesNonrelativeName.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/syntheticDefaultExportsWithDynamicImports.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/systemDefaultExportCommentValidity.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/systemDefaultImportCallable.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/systemExportAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/systemExportAssignment2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/systemExportAssignment3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/systemJsForInNoException.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/systemModule1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/systemModule10.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/systemModule10_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/systemModule11.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/systemModule12.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/systemModule13.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/systemModule14.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/systemModule15.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/systemModule16.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/systemModule17.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/systemModule18.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/systemModule2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/systemModule3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/systemModule4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/systemModule5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/systemModule6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/systemModule7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/systemModule8.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/systemModule9.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/systemModuleAmbientDeclarations.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/systemModuleConstEnums.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/systemModuleConstEnumsSeparateCompilation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/systemModuleDeclarationMerging.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/systemModuleExportDefault.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/systemModuleNonTopLevelModuleMembers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/systemModuleTargetES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/systemModuleTrailingComments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/systemModuleWithSuperClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/systemNamespaceAliasEmit.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/systemObjectShorthandRename.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/taggedPrimitiveNarrowing.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/taggedTemplateStringWithSymbolExpression01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/taggedTemplateStringsHexadecimalEscapes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/taggedTemplateStringsHexadecimalEscapesES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/taggedTemplateStringsWithCurriedFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/taggedTemplateStringsWithMultilineTemplate.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/taggedTemplateStringsWithMultilineTemplateES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/taggedTemplateStringsWithUnicodeEscapes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/taggedTemplateStringsWithUnicodeEscapesES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/taggedTemplateStringsWithWhitespaceEscapes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/taggedTemplateStringsWithWhitespaceEscapesES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/taggedTemplateWithoutDeclaredHelper.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/taggedTemplatesInDifferentScopes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/taggedTemplatesInModuleAndGlobal.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/tailRecursiveConditionalTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/targetEs6DecoratorMetadataImportNotElided.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/targetTypeArgs.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/targetTypeCalls.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/targetTypeCastTest.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/targetTypeObjectLiteral.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/targetTypeObjectLiteralToAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/targetTypeTest1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/targetTypeTest2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/targetTypeTest3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/targetTypeVoidFunc.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/targetTypingOnFunctions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/templateExpressionAsPossiblyDiscriminantValue.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/templateExpressionNoInlininingOfConstantBindingWithInitializer.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/templateLiteralConstantEvaluation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/templateLiteralIntersection.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/templateLiteralIntersection2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/templateLiteralIntersection3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/templateLiteralIntersection4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/templateLiteralsAndDecoratorMetadata.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/templateLiteralsInTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/templateLiteralsSourceMap.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/templateStringsArrayTypeDefinedInES5Mode.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/templateStringsArrayTypeNotDefinedES5Mode.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/templateStringsArrayTypeRedefinedInES6Mode.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/ternaryExpressionSourceMap.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/testContainerList.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/testTypings.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisBinding.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisBinding2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisCapture1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisConditionalOnMethodReturnOfGenericInstance.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisExpressionInCallExpressionWithTypeArguments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisExpressionInIndexExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisExpressionOfGenericObject.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisInAccessors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisInArrowFunctionInStaticInitializer1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisInClassBodyStaticESNext.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisInConstructorParameter1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisInConstructorParameter2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisInFunctionCall.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisInGenericStaticMembers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisInInnerFunctions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisInLambda.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisInModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisInModuleFunction1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisInOuterClassBody.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisInPropertyBoundDeclarations.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisInStaticMethod1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisInStatics.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisInSuperCall.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisInSuperCall1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisInSuperCall2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisInSuperCall3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisInTupleTypeParameterConstraints.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisInTypeQuery.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisIndexOnExistingReadonlyFieldIsNotNever.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisKeyword.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisPredicateInObjectLiteral.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisReferencedInFunctionInsideArrowFunction1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisShadowingErrorSpans.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisTypeAsConstraint.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisWhenTypeCheckFails.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/this_inside-enum-should-not-be-allowed.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/this_inside-object-literal-getters-and-setters.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/toStringOnPrimitives.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/tooFewArgumentsInGenericFunctionTypedArgument.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/tooManyTypeParameters1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/topFunctionTypeNotCallable.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/topLevel.ts +tasks/coverage/typescript/tests/cases/compiler/topLevelBlockExpando.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/topLevelExports.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/topLevelLambda.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/topLevelLambda2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/topLevelLambda3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/topLevelLambda4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/trackedSymbolsNoCrash.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/trailingCommaInHeterogenousArrayLiteral1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/trailingCommasES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/transformArrowInBlockScopedLoopVarInitializer.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/transformNestedGeneratorsWithTry.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/transformParenthesizesConditionalSubexpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/transformsElideNullUndefinedType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/transitiveTypeArgumentInference1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/tripleSlashInCommentNotParsed.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/tripleSlashReferenceAbsoluteWindowsPath.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/tripleSlashTypesReferenceWithMissingExports.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/trivialSubtypeReductionNoStructuralCheck.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/trivialSubtypeReductionNoStructuralCheck2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/truthinessCallExpressionCoercion.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/truthinessCallExpressionCoercion1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/truthinessCallExpressionCoercion2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/truthinessCallExpressionCoercion3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/truthinessPromiseCoercion.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/tryCatchFinally.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/tryCatchFinallyControlFlow.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/tryStatementInternalComments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/tsconfigExtendsPackageJsonExportsWildcard.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/tsconfigMapOptionsAreCaseInsensitive.ts +tasks/coverage/typescript/tests/cases/compiler/tslibMissingHelper.ts +Unexpected estree file content error: 3 != 4 + +tasks/coverage/typescript/tests/cases/compiler/tslibMultipleMissingHelper.ts +Unexpected estree file content error: 5 != 7 + +tasks/coverage/typescript/tests/cases/compiler/tslibNotFoundDifferentModules.ts +Unexpected estree file content error: 3 != 4 + +tasks/coverage/typescript/tests/cases/compiler/tslibReExportHelpers.ts +Unexpected estree file content error: 1 != 3 + +tasks/coverage/typescript/tests/cases/compiler/tslibReExportHelpers2.ts +Unexpected estree file content error: 1 != 3 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/tsxAttributeQuickinfoTypesSameAsObjectLiteral.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/tsxAttributesHasInferrableIndex.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/tsxDeepAttributeAssignabilityError.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/tsxDefaultImports.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/tsxDiscriminantPropertyInference.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/tsxInferenceShouldNotYieldAnyOnUnions.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/tsxInvokeComponentType.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/tsxNoTypeAnnotatedSFC.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/tsxNotUsingApparentTypeOfSFC.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/tsxReactPropsInferenceSucceedsOnIntersections.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/tsxSpreadDoesNotReportExcessProps.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/tsxStatelessComponentDefaultProps.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/tsxUnionMemberChecksFilterDataProps.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/tsxUnionSpread.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/tupleTypeInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/tupleTypeInference2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/tupleTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/twiceNestedKeyofIndexInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeAliasDeclarationEmit.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeAliasDeclarationEmit2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeAliasDeclarationEmit3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeAliasDeclareKeyword01.d.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeAliasDoesntMakeModuleInstantiated.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeAliasExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeAliasFunctionTypeSharedSymbol.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeAnnotationBestCommonTypeInArrayLiteral.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeArgInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeArgInference2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeArgInference2WithError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeArgInferenceWithNull.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeArgumentConstraintResolution1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeArgumentDefaultUsesConstraintOnCircularDefault.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeArgumentInferenceApparentType1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeArgumentInferenceApparentType2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeArgumentInferenceOrdering.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeArgumentInferenceWithConstraintAsCommonRoot.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeArgumentInferenceWithRecursivelyReferencedTypeAliasToTypeLiteral01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeArgumentInferenceWithRecursivelyReferencedTypeAliasToTypeLiteral02.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeArgumentsInFunctionExpressions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeArgumentsOnFunctionsWithNoTypeParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeArgumentsShouldDisallowNonGenericOverloads.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeAssertionToGenericFunctionType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeAssignabilityErrorMessage.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeCheckExportsVariable.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeCheckObjectCreationExpressionWithUndefinedCallResolutionData.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeCheckObjectLiteralMethodBody.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeCheckReturnExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeCheckTypeArgument.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeCheckingInsideFunctionExpressionInArray.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeComparisonCaching.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeConstraintsWithConstructSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeGuardConstructorClassAndNumber.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeGuardConstructorDerivedClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeGuardConstructorNarrowAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeGuardConstructorNarrowPrimitivesInUnion.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeGuardConstructorPrimitiveTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeGuardNarrowByMutableUntypedField.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeGuardNarrowByUntypedField.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeGuardNarrowsIndexedAccessOfKnownProperty1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeGuardNarrowsIndexedAccessOfKnownProperty10.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeGuardNarrowsIndexedAccessOfKnownProperty11.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeGuardNarrowsIndexedAccessOfKnownProperty12.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeGuardNarrowsIndexedAccessOfKnownProperty2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeGuardNarrowsIndexedAccessOfKnownProperty3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeGuardNarrowsIndexedAccessOfKnownProperty4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeGuardNarrowsIndexedAccessOfKnownProperty5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeGuardNarrowsIndexedAccessOfKnownProperty6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeGuardNarrowsIndexedAccessOfKnownProperty7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeGuardNarrowsIndexedAccessOfKnownProperty8.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeGuardNarrowsIndexedAccessOfKnownProperty9.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeGuardOnContainerTypeNoHang.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeIdentityConsidersBrands.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeInfer1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeInferenceCacheInvalidation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeInferenceConflictingCandidates.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeInferenceFBoundedTypeParams.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeInferenceFixEarly.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeInferenceLiteralUnion.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeInferenceReturnTypeCallback.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeInferenceTypePredicate.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeInferenceTypePredicate2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeInferenceWithExcessProperties.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeInferenceWithExcessPropertiesJsx.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeInferenceWithTypeAnnotation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeInterfaceDeclarationsInBlockStatements1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeLiteralCallback.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeMatch1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeMatch2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeName1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeNamedUndefined1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeNamedUndefined2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeOfEnumAndVarRedeclarations.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeOfOnTypeArg.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeOfOperator1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeOfPrototype.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeOfSuperCall.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeOfThisInStatics.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeOfYieldWithUnionInContextualReturnType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParamExtendsOtherTypeParam.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterAndArgumentOfSameName1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterArgumentEquivalence.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterArgumentEquivalence2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterArgumentEquivalence3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterArgumentEquivalence4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterArgumentEquivalence5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterAsBaseClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterAsElementType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterAssignmentCompat1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterAssignmentWithConstraints.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterCompatibilityAccrossDeclarations.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterConstrainedToOuterTypeParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterConstrainedToOuterTypeParameter2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterConstraintInstantiation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterConstraints1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterDiamond1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterDiamond2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterDiamond3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterDiamond4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterDoesntBlockParameterLookup.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterEquality.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterExplicitlyExtendsAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterExtendingUnion1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterExtendingUnion2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterExtendsPrimitive.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterFixingWithConstraints.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterFixingWithContextSensitiveArguments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterFixingWithContextSensitiveArguments2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterFixingWithContextSensitiveArguments3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterFixingWithContextSensitiveArguments4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterFixingWithContextSensitiveArguments5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterHasSelfAsConstraint.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterInConstraint1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterLeak.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterListWithTrailingComma1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterOrderReversal.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterWithInvalidConstraintType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParametersAndParametersInComputedNames.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParametersInStaticAccessors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParametersInStaticMethods.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParametersInStaticProperties.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParametersShouldNotBeEqual.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParametersShouldNotBeEqual2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParametersShouldNotBeEqual3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typePartameterConstraintInstantiatedWithDefaultWhenCheckingDefault.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typePredicateAcceptingPartialOfRefinedType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typePredicateFreshLiteralWidening.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typePredicateInLoop.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typePredicateInherit.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typePredicateStructuralMatch.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typePredicateTopLevelTypeParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typePredicateWithThisParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typePredicatesCanNarrowByDiscriminant.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typePredicatesInUnion.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typePredicatesInUnion2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typePredicatesInUnion3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typePredicatesInUnion_noMatch.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typePredicatesOptionalChaining1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typePredicatesOptionalChaining2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typePredicatesOptionalChaining3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeReferenceDirectiveScopedPackageCustomTypeRoot.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeReferenceDirectiveWithFailedFromTypeRoot.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeReferenceDirectiveWithTypeAsFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeReferenceDirectives1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeReferenceDirectives10.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeReferenceDirectives11.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeReferenceDirectives12.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeReferenceDirectives13.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeReferenceDirectives2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeReferenceDirectives3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeReferenceDirectives4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeReferenceDirectives5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeReferenceDirectives6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeReferenceDirectives7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeReferenceDirectives8.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeReferenceDirectives9.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeResolution.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeRootsFromMultipleNodeModulesDirectories.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeRootsFromNodeModulesInParentDirectory.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeUsedAsTypeLiteralIndex.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeUsedAsValueError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeUsedAsValueError2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeVal.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeValueConflict1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeValueConflict2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeVariableConstraintIntersections.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeVariableConstraintedToAliasNotAssignableToUnion.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeVariableTypeGuards.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typecheckCommaExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typecheckIfCondition.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typedArrayConstructorOverloads.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typedArrays-es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typedArrays-es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typedArrays.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typedArraysCrossAssignability01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typedArraysSubarray.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typedGenericPrototypeMember.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeofAmbientExternalModules.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeofClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeofEnum.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeofExternalModules.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeofImportInstantiationExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeofInObjectLiteralType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeofInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeofInternalModules.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeofObjectInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeofProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeofSimple.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeofStrictNull.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeofStripsFreshness.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeofThisInMethodSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeofUndefined.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeofUnknownSymbol.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeofUsedBeforeBlockScoped.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/umdDependencyComment2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/umdDependencyCommentName1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/umdDependencyCommentName2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/umdGlobalAugmentationNoCrash.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/umdGlobalConflict.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/umdNamedAmdMode.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/umdNamespaceMergedWithGlobalAugmentationIsNotCircular.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unaryOperators1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unaryOperatorsInStrictMode.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unaryPlus.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/uncalledFunctionChecksInConditional.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/uncalledFunctionChecksInConditional2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/uncalledFunctionChecksInConditionalPerf.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/uncaughtCompilerError1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/undeclaredBase.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/undeclaredMethod.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/undeclaredModuleError.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/undeclaredVarEmit.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/undefinedArgumentInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/undefinedAsDiscriminantWithUnknown.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/undefinedAssignableToGenericMappedIntersection.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/undefinedInferentialTyping.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/undefinedSymbolReferencedInArrayLiteral1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/undefinedTypeArgument1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/undefinedTypeArgument2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/undefinedTypeAssignment1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/undefinedTypeAssignment2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/undefinedTypeAssignment3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/undefinedTypeAssignment4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/underscoreEscapedNameInEnum.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/underscoreMapFirst.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/underscoreTest1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/underscoreThisInDerivedClass01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/underscoreThisInDerivedClass02.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unexportedInstanceClassVariables.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unicodeEscapesInNames01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unicodeStringLiteral.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unionCallMixedTypeParameterPresence.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unionErrorMessageOnMatchingDiscriminant.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unionExcessPropertyCheckNoApparentPropTypeMismatchErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unionExcessPropsWithPartialMember.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unionOfArraysFilterCall.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unionOfClassCalls.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unionOfEnumInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unionOfFunctionAndSignatureIsCallable.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unionPropertyExistence.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unionPropertyOfProtectedAndIntersectionProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unionReductionMutualSubtypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unionReductionWithStringMappingAndIdenticalBaseTypeExistsNoCrash.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unionRelationshipCheckPasses.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unionSignaturesWithThisParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unionSubtypeReductionErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unionTypeErrorMessageTypeRefs01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unionTypeParameterInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unionTypeWithIndexAndMethodSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unionTypeWithIndexAndTuple.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unionTypeWithIndexedLiteralType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unionTypeWithLeadingOperator.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unionTypeWithRecursiveSubtypeReduction1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unionTypeWithRecursiveSubtypeReduction2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unionTypeWithRecursiveSubtypeReduction3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unionWithIndexSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/uniqueSymbolAllowsIndexInObjectWithIndexSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/uniqueSymbolAssignmentOnGlobalAugmentationSuceeds.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/uniqueSymbolPropertyDeclarationEmit.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unknownLikeUnionObjectFlagsNotPropagated.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unknownPropertiesAreAssignableToObjectUnion.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unknownSymbolInGenericReturnType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unknownSymbolOffContextualType1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unknownSymbols1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unknownSymbols2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unknownTypeArgOnCall.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unknownTypeErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unmatchedParameterPositions.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unmetTypeConstraintInImportCall.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unqualifiedCallToClassStatic1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unreachableDeclarations.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unreachableFlowAfterFinally.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unreachableSwitchTypeofAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unreachableSwitchTypeofUnknown.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unresolvableSelfReferencingAwaitedUnion.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unresolvedTypeAssertionSymbol.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unspecializedConstraints.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/untypedArgumentInLambdaExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/untypedFunctionCallsWithTypeParameters1.ts +tasks/coverage/typescript/tests/cases/compiler/untypedModuleImport_withAugmentation2.ts +Unexpected estree file content error: 2 != 3 + +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedClassesinModule1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedClassesinNamespace1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedClassesinNamespace2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedClassesinNamespace3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedClassesinNamespace4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedClassesinNamespace5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedDestructuring.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedDestructuringParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedFunctionsinNamespaces1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedFunctionsinNamespaces2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedFunctionsinNamespaces3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedFunctionsinNamespaces4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedFunctionsinNamespaces5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedFunctionsinNamespaces6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedGetterInClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedIdentifiersConsolidated1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedImportDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedImportWithSpread.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedImports1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedImports10.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedImports11.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedImports12.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedImports2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedImports3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedImports4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedImports5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedImports6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedImports7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedImports8.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedImports9.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedImports_entireImportDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedInterfaceinNamespace1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedInterfaceinNamespace2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedInterfaceinNamespace3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedInterfaceinNamespace4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedInterfaceinNamespace5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedInvalidTypeArguments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedLocalProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedLocalsAndObjectSpread.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedLocalsAndObjectSpread2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedLocalsAndParametersDeferred.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedLocalsAndParametersOverloadSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedLocalsAndParametersTypeAliases.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedLocalsAndParametersTypeAliases2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedLocalsInMethod1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedLocalsInMethod2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedLocalsInMethod3.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/unusedLocalsInMethod4.ts +Missing initializer in const declaration +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedLocalsInRecursiveReturn.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedLocalsOnFunctionDeclarationWithinFunctionDeclaration1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedLocalsOnFunctionDeclarationWithinFunctionDeclaration2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedLocalsOnFunctionDeclarationWithinFunctionExpression1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedLocalsOnFunctionDeclarationWithinFunctionExpression2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedLocalsOnFunctionExpressionWithinFunctionDeclaration1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedLocalsOnFunctionExpressionWithinFunctionDeclaration2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedLocalsOnFunctionExpressionWithinFunctionExpression1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedLocalsOnFunctionExpressionWithinFunctionExpression2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedLocalsStartingWithUnderscore.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedLocalsinConstructor1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedLocalsinConstructor2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedMethodsInInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedModuleInModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedMultipleParameter1InContructor.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedMultipleParameter1InFunctionExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedMultipleParameter2InContructor.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedMultipleParameter2InFunctionExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedMultipleParameters1InFunctionDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedMultipleParameters1InMethodDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedMultipleParameters2InFunctionDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedMultipleParameters2InMethodDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedNamespaceInModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedNamespaceInNamespace.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedParameterInCatchClause.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedParameterProperty1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedParameterProperty2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedParameterUsedInTypeOf.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedParametersInLambda1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedParametersInLambda2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedParametersThis.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedParametersWithUnderscore.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedParametersinConstructor1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedParametersinConstructor2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedParametersinConstructor3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedPrivateMembers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedPrivateMethodInClass1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedPrivateMethodInClass2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedPrivateMethodInClass3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedPrivateMethodInClass4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedPrivateStaticMembers.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedPrivateVariableInClass1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedPrivateVariableInClass2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedPrivateVariableInClass3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedPrivateVariableInClass4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedPrivateVariableInClass5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedSemicolonInClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedSetterInClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedSetterInClass2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedSingleParameterInContructor.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedSingleParameterInFunctionDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedSingleParameterInFunctionExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedSingleParameterInMethodDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedSwitchStatement.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedTypeParameterInFunction1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedTypeParameterInFunction2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedTypeParameterInFunction3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedTypeParameterInFunction4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedTypeParameterInInterface1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedTypeParameterInInterface2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedTypeParameterInLambda1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedTypeParameterInLambda2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedTypeParameterInLambda3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedTypeParameterInMethod1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedTypeParameterInMethod2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedTypeParameterInMethod3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedTypeParameterInMethod4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedTypeParameterInMethod5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedTypeParameters1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedTypeParameters10.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedTypeParameters2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedTypeParameters3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedTypeParameters4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedTypeParameters5.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedTypeParameters6.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedTypeParameters7.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedTypeParameters8.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedTypeParameters9.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedTypeParametersCheckedByNoUnusedParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedTypeParametersNotCheckedByNoUnusedLocals.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedTypeParametersWithUnderscore.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedTypeParameters_infer.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedVariablesWithUnderscoreInBindingElement.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedVariablesWithUnderscoreInForOfLoop.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedVariablesinBlocks1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedVariablesinBlocks2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedVariablesinForLoop.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedVariablesinForLoop2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedVariablesinForLoop3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedVariablesinForLoop4.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedVariablesinModules1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedVariablesinNamespaces1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedVariablesinNamespaces2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedVariablesinNamespaces3.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/unwitnessedTypeParameterVariance.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/useBeforeDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/useBeforeDeclaration_classDecorators.1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/useBeforeDeclaration_classDecorators.2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/useBeforeDeclaration_destructuring.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/useBeforeDeclaration_jsx.tsx +Mismatch: tasks/coverage/typescript/tests/cases/compiler/useBeforeDeclaration_propertyAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/useBeforeDeclaration_superClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/useBeforeDefinitionInDeclarationFiles.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/useDefineForClassFieldsFlagDefault.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/useStrictLikePrologueString01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/useUnknownInCatchVariables01.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/usingModuleWithExportImportInValuePosition.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/validUseOfThisInSuper.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/valueOfTypedArray.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/varAndFunctionShareName.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/varArgConstructorMemberParameter.ts +Unexpected token +Mismatch: tasks/coverage/typescript/tests/cases/compiler/varArgParamTypeCheck.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/varArgsOnConstructorTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/varAsID.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/varInFunctionInVarInitializer.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/varNameConflictsWithImportInDifferentPartOfModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/vararg.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/vardecl.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/variableDeclarationDeclarationEmitUniqueSymbolPartialStatement.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/variableDeclarationInStrictMode1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/variableDeclarationInnerCommentEmit.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/variableDeclarator1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/variableDeclaratorResolvedDuringContextualTyping.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/varianceAnnotationValidation.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/varianceCallbacksAndIndexedAccesses.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/varianceCantBeStrictWhileStructureIsnt.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/varianceMeasurement.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/varianceProblingAndZeroOrderIndexSignatureRelationsAlign.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/varianceProblingAndZeroOrderIndexSignatureRelationsAlign2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/varianceReferences.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/varianceRepeatedlyPropegatesWithUnreliableFlag.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/verbatim-declarations-parameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/verbatimModuleSyntaxDefaultValue.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/verifyDefaultLib_dom.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/verifyDefaultLib_webworker.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/visSyntax.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/visibilityOfCrossModuleTypeUsage.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/visibilityOfTypeParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/voidArrayLit.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/voidAsNonAmbiguousReturnType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/voidAsOperator.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/voidConstructor.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/voidFunctionAssignmentCompat.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/voidIsInitialized.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/voidOperator1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/voidReturnIndexUnionInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/voidReturnLambdaValue.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/voidUndefinedReduction.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/vueLikeDataAndPropsInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/vueLikeDataAndPropsInference2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/weakType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/weakTypeAndPrimitiveNarrowing.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/webworkerIterable.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/wellKnownSymbolExpando.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/whileStatementInnerComments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/widenToAny1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/widenToAny2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/widenedTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/widenedTypes1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/wideningWithTopLevelTypeParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/withExportDecl.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/withImportDecl.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/withStatement.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/withStatementErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/withStatementInternalComments.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/withStatementNestedScope.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/wrappedIncovations1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/wrappedIncovations2.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/wrappedRecursiveGenericType.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/yieldExpression1.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/yieldExpressionInFlowLoop.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/yieldExpressionInnerCommentEmit.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/yieldInForInInDownlevelGenerator.ts +Mismatch: tasks/coverage/typescript/tests/cases/compiler/yieldStarContextualType.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/yieldStringLiteral.ts +A 'yield' expression is only allowed in a generator body. +Mismatch: tasks/coverage/typescript/tests/cases/conformance/Symbols/ES5SymbolProperty1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/Symbols/ES5SymbolProperty2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/Symbols/ES5SymbolProperty3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/Symbols/ES5SymbolProperty4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/Symbols/ES5SymbolProperty5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/Symbols/ES5SymbolProperty6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/Symbols/ES5SymbolProperty7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/Symbols/ES5SymbolType1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/additionalChecks/noPropertyAccessFromIndexSignature1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/ambient/ambientDeclarations.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/ambient/ambientDeclarationsExternal.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/ambient/ambientDeclarationsPatterns.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/ambient/ambientDeclarationsPatterns_merging1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/ambient/ambientDeclarationsPatterns_merging2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/ambient/ambientDeclarationsPatterns_merging3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/ambient/ambientDeclarationsPatterns_tooManyAsterisks.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/ambient/ambientEnumDeclaration1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/ambient/ambientEnumDeclaration2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/ambient/ambientExternalModuleInsideNonAmbient.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/ambient/ambientExternalModuleInsideNonAmbientExternalModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/ambient/ambientExternalModuleMerging.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/ambient/ambientInsideNonAmbient.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/ambient/ambientInsideNonAmbientExternalModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/ambient/ambientShorthand.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/ambient/ambientShorthand_declarationEmit.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/ambient/ambientShorthand_duplicate.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/ambient/ambientShorthand_merging.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/ambient/ambientShorthand_reExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/asyncFunctionDeclarationParameterEvaluation.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/asyncArrowFunction/arrowFunctionWithParameterNameAsync_es2017.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/asyncArrowFunction/asyncArrowFunction10_es2017.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/asyncArrowFunction/asyncArrowFunction1_es2017.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/asyncArrowFunction/asyncArrowFunction2_es2017.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/asyncArrowFunction/asyncArrowFunction3_es2017.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/asyncArrowFunction/asyncArrowFunction4_es2017.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/async/es2017/asyncArrowFunction/asyncArrowFunction5_es2017.ts +Cannot use `await` as an identifier in an async context +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/asyncArrowFunction/asyncArrowFunctionCapturesArguments_es2017.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/asyncArrowFunction/asyncArrowFunctionCapturesThis_es2017.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/asyncArrowFunction/asyncUnParenthesizedArrowFunction_es2017.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/asyncAwaitIsolatedModules_es2017.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/asyncAwait_es2017.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/asyncMethodWithSuperConflict_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/asyncMethodWithSuper_es2017.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/asyncUseStrict_es2017.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitBinaryExpression/awaitBinaryExpression1_es2017.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitBinaryExpression/awaitBinaryExpression2_es2017.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitBinaryExpression/awaitBinaryExpression3_es2017.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitBinaryExpression/awaitBinaryExpression4_es2017.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitBinaryExpression/awaitBinaryExpression5_es2017.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitCallExpression/awaitCallExpression1_es2017.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitCallExpression/awaitCallExpression2_es2017.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitCallExpression/awaitCallExpression3_es2017.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitCallExpression/awaitCallExpression4_es2017.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitCallExpression/awaitCallExpression5_es2017.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitCallExpression/awaitCallExpression6_es2017.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitCallExpression/awaitCallExpression7_es2017.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitCallExpression/awaitCallExpression8_es2017.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitClassExpression_es2017.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitInheritedPromise_es2017.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/await_incorrectThisType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/await_unaryExpression_es2017.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/await_unaryExpression_es2017_1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/await_unaryExpression_es2017_2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/functionDeclarations/asyncFunctionDeclaration11_es2017.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/async/es2017/functionDeclarations/asyncFunctionDeclaration12_es2017.ts +Cannot use `await` as an identifier in an async context +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/functionDeclarations/asyncFunctionDeclaration13_es2017.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/functionDeclarations/asyncFunctionDeclaration14_es2017.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/functionDeclarations/asyncFunctionDeclaration1_es2017.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/functionDeclarations/asyncFunctionDeclaration2_es2017.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/functionDeclarations/asyncFunctionDeclaration3_es2017.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/functionDeclarations/asyncFunctionDeclaration4_es2017.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/async/es2017/functionDeclarations/asyncFunctionDeclaration5_es2017.ts +Cannot use `await` as an identifier in an async context +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es2017/functionDeclarations/asyncFunctionDeclaration8_es2017.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/asyncAliasReturnType_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/asyncArrowFunction/arrowFunctionWithParameterNameAsync_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/asyncArrowFunction/asyncArrowFunction10_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/asyncArrowFunction/asyncArrowFunction11_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/asyncArrowFunction/asyncArrowFunction1_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/asyncArrowFunction/asyncArrowFunction2_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/asyncArrowFunction/asyncArrowFunction3_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/asyncArrowFunction/asyncArrowFunction4_es5.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/async/es5/asyncArrowFunction/asyncArrowFunction5_es5.ts +Cannot use `await` as an identifier in an async context +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/asyncArrowFunction/asyncArrowFunctionCapturesArguments_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/asyncArrowFunction/asyncArrowFunctionCapturesThis_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/asyncArrowFunction/asyncUnParenthesizedArrowFunction_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/asyncAwaitIsolatedModules_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/asyncAwaitNestedClasses_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/asyncAwait_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/asyncImportedPromise_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/asyncMethodWithSuper_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/asyncMultiFile_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/asyncQualifiedReturnType_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/asyncUseStrict_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitBinaryExpression/awaitBinaryExpression1_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitBinaryExpression/awaitBinaryExpression2_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitBinaryExpression/awaitBinaryExpression3_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitBinaryExpression/awaitBinaryExpression4_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitBinaryExpression/awaitBinaryExpression5_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitCallExpression/awaitCallExpression1_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitCallExpression/awaitCallExpression2_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitCallExpression/awaitCallExpression3_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitCallExpression/awaitCallExpression4_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitCallExpression/awaitCallExpression5_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitCallExpression/awaitCallExpression6_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitCallExpression/awaitCallExpression7_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitCallExpression/awaitCallExpression8_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitClassExpression_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitUnion_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/functionDeclarations/asyncFunctionDeclaration11_es5.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/async/es5/functionDeclarations/asyncFunctionDeclaration12_es5.ts +Cannot use `await` as an identifier in an async context +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/functionDeclarations/asyncFunctionDeclaration13_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/functionDeclarations/asyncFunctionDeclaration14_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/functionDeclarations/asyncFunctionDeclaration15_es5.ts +tasks/coverage/typescript/tests/cases/conformance/async/es5/functionDeclarations/asyncFunctionDeclaration16_es5.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/functionDeclarations/asyncFunctionDeclaration1_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/functionDeclarations/asyncFunctionDeclaration2_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/functionDeclarations/asyncFunctionDeclaration3_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/functionDeclarations/asyncFunctionDeclaration4_es5.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/async/es5/functionDeclarations/asyncFunctionDeclaration5_es5.ts +Cannot use `await` as an identifier in an async context +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/functionDeclarations/asyncFunctionDeclaration8_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/functionDeclarations/asyncFunctionDeclarationCapturesArguments_es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/asyncAliasReturnType_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/asyncArrowFunction/arrowFunctionWithParameterNameAsync_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/asyncArrowFunction/asyncArrowFunction10_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/asyncArrowFunction/asyncArrowFunction1_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/asyncArrowFunction/asyncArrowFunction2_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/asyncArrowFunction/asyncArrowFunction3_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/asyncArrowFunction/asyncArrowFunction4_es6.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/async/es6/asyncArrowFunction/asyncArrowFunction5_es6.ts +Cannot use `await` as an identifier in an async context +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/asyncArrowFunction/asyncArrowFunctionCapturesArguments_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/asyncArrowFunction/asyncArrowFunctionCapturesThis_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/asyncArrowFunction/asyncUnParenthesizedArrowFunction_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/asyncAwaitIsolatedModules_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/asyncAwait_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/asyncImportedPromise_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/asyncMethodWithSuper_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/asyncMultiFile_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/asyncQualifiedReturnType_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/asyncUseStrict_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/asyncWithVarShadowing_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitBinaryExpression/awaitBinaryExpression1_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitBinaryExpression/awaitBinaryExpression2_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitBinaryExpression/awaitBinaryExpression3_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitBinaryExpression/awaitBinaryExpression4_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitBinaryExpression/awaitBinaryExpression5_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitCallExpression/awaitCallExpression1_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitCallExpression/awaitCallExpression2_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitCallExpression/awaitCallExpression3_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitCallExpression/awaitCallExpression4_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitCallExpression/awaitCallExpression5_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitCallExpression/awaitCallExpression6_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitCallExpression/awaitCallExpression7_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitCallExpression/awaitCallExpression8_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitClassExpression_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitUnion_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/await_unaryExpression_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/await_unaryExpression_es6_1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/await_unaryExpression_es6_2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/functionDeclarations/asyncFunctionDeclaration11_es6.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/async/es6/functionDeclarations/asyncFunctionDeclaration12_es6.ts +Cannot use `await` as an identifier in an async context +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/functionDeclarations/asyncFunctionDeclaration13_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/functionDeclarations/asyncFunctionDeclaration14_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/functionDeclarations/asyncFunctionDeclaration15_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/functionDeclarations/asyncFunctionDeclaration1_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/functionDeclarations/asyncFunctionDeclaration2_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/functionDeclarations/asyncFunctionDeclaration3_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/functionDeclarations/asyncFunctionDeclaration4_es6.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/async/es6/functionDeclarations/asyncFunctionDeclaration5_es6.ts +Cannot use `await` as an identifier in an async context +Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es6/functionDeclarations/asyncFunctionDeclaration8_es6.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/async/es6/functionDeclarations/asyncOrYieldAsBindingIdentifier1.ts +Cannot use `await` as an identifier in an async context +Mismatch: tasks/coverage/typescript/tests/cases/conformance/asyncGenerators/asyncGeneratorGenericNonWrappedReturn.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/asyncGenerators/asyncGeneratorParameterEvaluation.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/asyncGenerators/asyncGeneratorPromiseNextType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/awaitAndYieldInProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classAbstractKeyword/classAbstractAccessor.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classAbstractKeyword/classAbstractAsIdentifier.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classAbstractKeyword/classAbstractAssignabilityConstructorFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classAbstractKeyword/classAbstractClinterfaceAssignability.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classAbstractKeyword/classAbstractConstructorAssignability.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classAbstractKeyword/classAbstractExtends.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classAbstractKeyword/classAbstractFactoryFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classAbstractKeyword/classAbstractGeneric.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classAbstractKeyword/classAbstractImportInstantiation.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classAbstractKeyword/classAbstractInAModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classAbstractKeyword/classAbstractInheritance1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classAbstractKeyword/classAbstractInheritance2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classAbstractKeyword/classAbstractInstantiations1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classAbstractKeyword/classAbstractInstantiations2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classAbstractKeyword/classAbstractMergedDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classAbstractKeyword/classAbstractMethodInNonAbstractClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classAbstractKeyword/classAbstractMethodWithImplementation.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classAbstractKeyword/classAbstractMixedWithModifiers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classAbstractKeyword/classAbstractOverloads.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classAbstractKeyword/classAbstractOverrideWithAbstract.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classAbstractKeyword/classAbstractProperties.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classAbstractKeyword/classAbstractSingleLineDecl.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classAbstractKeyword/classAbstractSuperCalls.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classAbstractKeyword/classAbstractUsingAbstractMethod1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classAbstractKeyword/classAbstractUsingAbstractMethods2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classAndInterfaceMerge.d.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classAndInterfaceMergeConflictingMembers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classAndInterfaceWithSameName.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classAndVariableWithSameName.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classBody/classWithEmptyBody.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classDeclarationLoop.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classExtendingBuiltinType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classExtendingClassLikeType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classExtendingNonConstructor.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classExtendingNull.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classHeritageSpecification/classAppearsToHaveMembersOfObject.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classHeritageSpecification/classExtendingClass.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classHeritageSpecification/classExtendingOptionalChain.ts +Expected `{` but found `?.` +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classHeritageSpecification/classExtendsItself.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classHeritageSpecification/classExtendsItselfIndirectly.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classHeritageSpecification/classExtendsItselfIndirectly2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classHeritageSpecification/classExtendsItselfIndirectly3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classHeritageSpecification/classExtendsShadowedConstructorFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classHeritageSpecification/classExtendsValidConstructorFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classHeritageSpecification/classIsSubtypeOfBaseType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classHeritageSpecification/constructorFunctionTypeIsAssignableToBaseType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classHeritageSpecification/constructorFunctionTypeIsAssignableToBaseType2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classHeritageSpecification/derivedTypeDoesNotRequireExtendsClause.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classImplementsMergedClassInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classInsideBlock.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classWithPredefinedTypesAsNames.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classWithSemicolonClassElement1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classWithSemicolonClassElement2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/declaredClassMergedwithSelf.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/mergeClassInterfaceAndModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/mergedClassInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/mergedInheritedClassInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/modifierOnClassDeclarationMemberInFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classExpressions/classExpression1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classExpressions/classExpression2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classExpressions/classExpression3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classExpressions/classExpression4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classExpressions/classExpression5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classExpressions/classExpressionLoop.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classExpressions/classWithStaticFieldInParameterBindingPattern.2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classExpressions/classWithStaticFieldInParameterBindingPattern.3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classExpressions/classWithStaticFieldInParameterBindingPattern.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classExpressions/classWithStaticFieldInParameterInitializer.2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classExpressions/classWithStaticFieldInParameterInitializer.3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classExpressions/classWithStaticFieldInParameterInitializer.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classExpressions/extendClassExpressionFromModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classExpressions/genericClassExpressionInFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classExpressions/modifierOnClassExpressionMemberInFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classStaticBlock/classStaticBlock1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classStaticBlock/classStaticBlock10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classStaticBlock/classStaticBlock11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classStaticBlock/classStaticBlock12.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classStaticBlock/classStaticBlock13.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classStaticBlock/classStaticBlock14.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classStaticBlock/classStaticBlock15.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classStaticBlock/classStaticBlock16.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classStaticBlock/classStaticBlock17.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classStaticBlock/classStaticBlock18.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classStaticBlock/classStaticBlock19.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classStaticBlock/classStaticBlock2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classStaticBlock/classStaticBlock20.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classStaticBlock/classStaticBlock21.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/classes/classStaticBlock/classStaticBlock22.ts +Cannot use `await` as an identifier in an async context +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classStaticBlock/classStaticBlock23.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classStaticBlock/classStaticBlock24.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classStaticBlock/classStaticBlock25.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classStaticBlock/classStaticBlock27.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classStaticBlock/classStaticBlock28.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classStaticBlock/classStaticBlock3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classStaticBlock/classStaticBlock4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classStaticBlock/classStaticBlock5.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/classes/classStaticBlock/classStaticBlock7.ts +A 'yield' expression is only allowed in a generator body. +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classStaticBlock/classStaticBlock8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classStaticBlock/classStaticBlock9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classStaticBlock/classStaticBlockUseBeforeDef1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classStaticBlock/classStaticBlockUseBeforeDef2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classStaticBlock/classStaticBlockUseBeforeDef3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classStaticBlock/classStaticBlockUseBeforeDef4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classStaticBlock/classStaticBlockUseBeforeDef5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/automaticConstructors/classWithoutExplicitConstructor.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/automaticConstructors/derivedClassWithoutExplicitConstructor.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/automaticConstructors/derivedClassWithoutExplicitConstructor2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/automaticConstructors/derivedClassWithoutExplicitConstructor3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/classConstructorAccessibility.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/classConstructorAccessibility2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/classConstructorAccessibility3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/classConstructorAccessibility4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/classConstructorAccessibility5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/classConstructorOverloadsAccessibility.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/classConstructorParametersAccessibility.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/classConstructorParametersAccessibility2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/classConstructorParametersAccessibility3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/classWithTwoConstructorDefinitions.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/constructorParameters/constructorDefaultValuesReferencingThis.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/constructorParameters/constructorImplementationWithDefaultValues.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/constructorParameters/constructorImplementationWithDefaultValues2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/constructorParameters/constructorOverloadsWithDefaultValues.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/constructorParameters/constructorOverloadsWithOptionalParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/constructorParameters/constructorParameterProperties.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/constructorParameters/constructorParameterProperties2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/constructorParameters/declarationEmitReadonly.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/constructorParameters/readonlyConstructorAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/constructorParameters/readonlyInConstructorParameters.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/constructorParameters/readonlyReadonly.ts +readonly' modifier already seen. +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/constructorWithAssignableReturnExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/constructorWithExpressionLessReturn.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/quotedConstructors.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/superCalls/derivedClassConstructorWithoutSuperCall.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/superCalls/derivedClassParameterProperties.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/superCalls/derivedClassSuperCallsWithThisArg.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/superCalls/derivedClassSuperProperties.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/superCalls/derivedClassSuperStatementPosition.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/superCalls/emitStatementsBeforeSuperCall.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/superCalls/emitStatementsBeforeSuperCallWithDefineFields.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/superCalls/superCallInConstructorWithNoBaseType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/superCalls/superPropertyInConstructorBeforeSuperCall.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/indexMemberDeclarations/staticIndexers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/accessibility/classPropertyAsPrivate.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/accessibility/classPropertyAsProtected.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/accessibility/classPropertyIsPublicByDefault.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/accessibility/privateClassPropertyAccessibleWithinClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/accessibility/privateClassPropertyAccessibleWithinNestedClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/accessibility/privateProtectedMembersAreNotAccessibleDestructuring.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/accessibility/privateStaticMemberAccessibility.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/accessibility/privateStaticNotAccessibleInClodule.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/accessibility/privateStaticNotAccessibleInClodule2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/accessibility/protectedClassPropertyAccessibleWithinClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/accessibility/protectedClassPropertyAccessibleWithinNestedClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/accessibility/protectedClassPropertyAccessibleWithinNestedSubclass.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/accessibility/protectedClassPropertyAccessibleWithinNestedSubclass1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/accessibility/protectedClassPropertyAccessibleWithinSubclass.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/accessibility/protectedClassPropertyAccessibleWithinSubclass2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/accessibility/protectedClassPropertyAccessibleWithinSubclass3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/accessibility/protectedInstanceMemberAccessibility.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/accessibility/protectedStaticClassPropertyAccessibleWithinSubclass.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/accessibility/protectedStaticClassPropertyAccessibleWithinSubclass2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/accessibility/protectedStaticNotAccessibleInClodule.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/classTypes/genericSetterInClassType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/classTypes/indexersInClassType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/classTypes/instancePropertiesInheritedIntoClassType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/classTypes/instancePropertyInClassType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/classTypes/staticPropertyNotInClassType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/constructorFunctionTypes/classWithBaseClassButNoConstructor.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/constructorFunctionTypes/classWithConstructors.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/constructorFunctionTypes/classWithNoConstructorOrBaseClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/constructorFunctionTypes/classWithStaticMembers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/constructorFunctionTypes/constructorHasPrototypeProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/inheritanceAndOverriding/derivedClassFunctionOverridesBaseClassAccessor.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/inheritanceAndOverriding/derivedClassIncludesInheritedMembers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/inheritanceAndOverriding/derivedClassOverridesIndexersWithAssignmentCompatibility.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/inheritanceAndOverriding/derivedClassOverridesPrivates.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/inheritanceAndOverriding/derivedClassOverridesProtectedMembers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/inheritanceAndOverriding/derivedClassOverridesProtectedMembers2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/inheritanceAndOverriding/derivedClassOverridesProtectedMembers3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/inheritanceAndOverriding/derivedClassOverridesProtectedMembers4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/inheritanceAndOverriding/derivedClassOverridesPublicMembers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/inheritanceAndOverriding/derivedClassOverridesWithoutSubtype.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/inheritanceAndOverriding/derivedClassTransitivity.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/inheritanceAndOverriding/derivedClassTransitivity2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/inheritanceAndOverriding/derivedClassTransitivity3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/inheritanceAndOverriding/derivedClassTransitivity4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/inheritanceAndOverriding/derivedClassWithAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/inheritanceAndOverriding/derivedClassWithPrivateInstanceShadowingProtectedInstance.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/inheritanceAndOverriding/derivedClassWithPrivateInstanceShadowingPublicInstance.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/inheritanceAndOverriding/derivedClassWithPrivateStaticShadowingProtectedStatic.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/inheritanceAndOverriding/derivedClassWithPrivateStaticShadowingPublicStatic.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/inheritanceAndOverriding/derivedGenericClassWithAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/instanceAndStaticMembers/superInStaticMembers1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/instanceAndStaticMembers/thisAndSuperInStaticMembers1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/instanceAndStaticMembers/thisAndSuperInStaticMembers2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/instanceAndStaticMembers/thisAndSuperInStaticMembers3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/instanceAndStaticMembers/thisAndSuperInStaticMembers4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/instanceAndStaticMembers/typeOfThisInInstanceMember.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/instanceAndStaticMembers/typeOfThisInInstanceMember2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers12.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers13.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/instanceAndStaticMembers/typeOfThisInstanceMemberNarrowedWithLoopAntecedent.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameAccessors.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameAccessorsAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameAccessorsCallExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameAccessorssDerivedClasses.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameAmbientNoImplicitAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameAndAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameAndIndexSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameAndObjectRestSpread.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameAndPropertySignature.ts +Unexpected token +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameAndStaticInitializer.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameBadAssignment.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameBadDeclaration.ts +Unexpected token +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameBadSuper.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameBadSuperUseDefineForClassFields.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameCircularReference.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameClassExpressionLoop.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameComputedPropertyName1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameComputedPropertyName2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameComputedPropertyName3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameComputedPropertyName4.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameConstructorReserved.ts +Classes can't have an element named '#constructor' +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameConstructorSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameDeclarationMerging.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameDuplicateField.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameES5Ban.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameEmitHelpers.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameEnum.ts +Unexpected token +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameField.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameFieldAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameFieldAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameFieldCallExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameFieldClassExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameFieldDerivedClasses.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameFieldDestructuredBinding.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameFieldInitializer.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameFieldParenthesisLeftAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameFieldUnaryMutation.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameFieldsESNext.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameInInExpressionUnused.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameInLhsReceiverExpression.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameInObjectLiteral-1.ts +Unexpected token +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameInObjectLiteral-2.ts +Unexpected token +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameInObjectLiteral-3.ts +Unexpected token +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameLateSuper.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameLateSuperUseDefineForClassFields.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameMethod.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameMethodAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameMethodAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameMethodAsync.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameMethodCallExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameMethodClassExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameMethodInStaticFieldInit.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameMethodsDerivedClasses.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameNestedClassAccessorsShadowing.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameNestedClassFieldShadowing.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameNestedClassMethodShadowing.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameNestedClassNameConflict.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameNestedMethodAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameNotAccessibleOutsideDefiningClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameReadonly.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameSetterExprReturnValue.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameSetterNoGetter.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameStaticAccessors.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameStaticAccessorsAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameStaticAccessorsCallExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameStaticAccessorssDerivedClasses.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameStaticAndStaticInitializer.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameStaticEmitHelpers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameStaticFieldAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameStaticFieldAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameStaticFieldCallExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameStaticFieldClassExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameStaticFieldDerivedClasses.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameStaticFieldDestructuredBinding.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameStaticFieldInitializer.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameStaticFieldNoInitializer.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameStaticFieldUnaryMutation.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameStaticMethod.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameStaticMethodAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameStaticMethodAsync.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameStaticMethodCallExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameStaticMethodClassExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameStaticMethodInStaticFieldInit.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameStaticsAndStaticMethods.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameUnused.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameWhenNotUseDefineForClassFieldsInEsNext.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNamesAndDecorators.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNamesAndFields.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNamesAndGenericClasses-2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNamesAndMethods.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNamesAndStaticFields.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNamesAndStaticMethods.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNamesAndkeyof.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNamesAssertion.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNamesConstructorChain-1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNamesConstructorChain-2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNamesInGenericClasses.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNamesInNestedClasses-1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNamesInNestedClasses-2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNamesInterfaceExtendingClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNamesNoDelete.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNamesUnique-1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNamesUnique-2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNamesUnique-3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNamesUnique-4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNamesUnique-5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNamesUseBeforeDef.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateStaticNameShadowing.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateWriteOnlyAccessorRead.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/typeFromPrivatePropertyAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/methodDeclarations/optionalMethodDeclarations.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/mixinAbstractClasses.2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/mixinAbstractClasses.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/mixinAbstractClassesReturnTypeInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/mixinAccessModifiers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/mixinClassesAnnotated.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/mixinClassesAnonymous.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/mixinClassesMembers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/mixinWithBaseDependingOnSelfNoCrash1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/abstractProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/accessorsOverrideMethod.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/accessorsOverrideProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/accessorsOverrideProperty2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/accessorsOverrideProperty3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/accessorsOverrideProperty4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/accessorsOverrideProperty5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/accessorsOverrideProperty6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/accessorsOverrideProperty8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/accessorsOverrideProperty9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/assignParameterPropertyToPropertyDeclarationES2022.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/assignParameterPropertyToPropertyDeclarationESNext.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/autoAccessor1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/autoAccessor10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/autoAccessor11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/autoAccessor2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/autoAccessor3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/autoAccessor4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/autoAccessor5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/autoAccessor6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/autoAccessor7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/autoAccessor8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/autoAccessor9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/autoAccessorAllowedModifiers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/autoAccessorExperimentalDecorators.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/autoAccessorNoUseDefineForClassFields.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/constructorParameterShadowsOuterScopes.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/constructorParameterShadowsOuterScopes2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/defineProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/initializationOrdering1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/initializerReferencingConstructorLocals.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/initializerReferencingConstructorParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/instanceMemberInitialization.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/instanceMemberWithComputedPropertyName.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/instanceMemberWithComputedPropertyName2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/memberAccessorDeclarations/accessorWithES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/memberAccessorDeclarations/accessorWithMismatchedAccessibilityModifiers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/memberAccessorDeclarations/accessorsAreNotContextuallyTyped.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/memberAccessorDeclarations/ambientAccessors.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/memberAccessorDeclarations/typeOfThisInAccessor.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/memberFunctionDeclarations/derivedTypeAccessesHiddenBaseCallViaSuperPropertyAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/memberFunctionDeclarations/instanceMemberAssignsToClassPrototype.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/memberFunctionDeclarations/memberFunctionOverloadMixingStaticAndInstance.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/memberFunctionDeclarations/memberFunctionsWithPrivateOverloads.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/memberFunctionDeclarations/memberFunctionsWithPublicOverloads.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/memberFunctionDeclarations/memberFunctionsWithPublicPrivateOverloads.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/memberFunctionDeclarations/staticFactory1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/memberFunctionDeclarations/staticMemberAssignsToConstructorFunctionMembers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/memberFunctionDeclarations/typeOfThisInMemberFunctions.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/optionalMethod.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/optionalProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/overrideInterfaceProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/propertyAndAccessorWithSameName.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/propertyAndFunctionWithSameName.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/propertyNamedConstructor.ts +Classes can't have a field named 'constructor' +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/propertyNamedPrototype.ts +Classes may not have a static property named prototype +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/propertyOverridesAccessors.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/propertyOverridesAccessors2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/propertyOverridesAccessors3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/propertyOverridesAccessors4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/propertyOverridesAccessors5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/propertyOverridesMethod.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/redeclaredProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/redefinedPararameterProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/staticAndNonStaticPropertiesSameName.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/staticAutoAccessors.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/staticAutoAccessorsWithDecorators.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/staticMemberInitialization.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/staticPropertyAndFunctionWithSameName.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/staticPropertyNameConflicts.ts +Classes may not have a static property named prototype +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/staticPropertyNameConflictsInAmbientContext.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/strictPropertyInitialization.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/thisInInstanceMemberInitializer.ts +tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/thisPropertyOverridesAccessors.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/twoAccessorsWithSameName.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/twoAccessorsWithSameName2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/staticIndexSignature/staticIndexSignature1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/staticIndexSignature/staticIndexSignature2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/staticIndexSignature/staticIndexSignature3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/staticIndexSignature/staticIndexSignature6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/staticIndexSignature/staticIndexSignature7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/constEnums/constEnum1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/constEnums/constEnum2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/constEnums/constEnum3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/constEnums/constEnum4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/constEnums/constEnumNoObjectPrototypePropertyAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/constEnums/constEnumPropertyAccess1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/constEnums/constEnumPropertyAccess2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/constEnums/constEnumPropertyAccess3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/constEnums/importElisionConstEnumMerge1.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/controlFlow/assertionTypePredicates1.ts +Expected `,` but found `is` +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/constLocalsInFunctionExpressions.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowAliasing.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowAliasingCatchVariables.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowAssignmentExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowAssignmentPatternOrder.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowBinaryAndExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowBinaryOrExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowBindingElement.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowBindingPatternOrder.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowCommaOperator.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowComputedPropertyNames.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowConditionalExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowDeleteOperator.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowDestructuringDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowDoWhileStatement.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowElementAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowElementAccess2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowElementAccessNoCrash1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowForInStatement.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowForInStatement2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowForOfStatement.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowForStatement.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowGenericTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowIIFE.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowIfStatement.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowInOperator.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowInstanceOfGuardPrimitives.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowInstanceofExtendsFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowIteration.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowIterationErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowIterationErrorsAsync.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowNoIntermediateErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowNullishCoalesce.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowOptionalChain.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowOptionalChain2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowOptionalChain3.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowStringIndex.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowSuperPropertyAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowTruthiness.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowTypeofObject.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowWhileStatement.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowWithTemplateLiterals.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/dependentDestructuredVariables.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/dependentDestructuredVariablesFromNestedPatterns.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/dependentDestructuredVariablesWithExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/exhaustiveSwitchStatements1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/neverReturningFunctions1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/switchWithConstrainedTypeVariable.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/typeGuardsAsAssertions.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/typeGuardsNestedAssignments.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/typeGuardsTypeParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/declarationEmit/classDoesNotDependOnPrivateMember.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/declarationEmit/declarationEmitWorkWithInlineComments.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/declarationEmit/exportDefaultExpressionComments.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/declarationEmit/exportDefaultNamespace.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/declarationEmit/leaveOptionalParameterAsWritten.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/declarationEmit/libReferenceDeclarationEmit.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/declarationEmit/libReferenceDeclarationEmitBundle.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/declarationEmit/libReferenceNoLib.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/declarationEmit/libReferenceNoLibBundle.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/declarationEmit/nullPropertyName.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/declarationEmit/typePredicates/declarationEmitIdentifierPredicates01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/declarationEmit/typePredicates/declarationEmitIdentifierPredicatesWithPrivateName01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/declarationEmit/typePredicates/declarationEmitThisPredicates01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/declarationEmit/typePredicates/declarationEmitThisPredicates02.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/declarationEmit/typePredicates/declarationEmitThisPredicatesWithPrivateName01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/declarationEmit/typePredicates/declarationEmitThisPredicatesWithPrivateName02.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/declarationEmit/typeReferenceRelatedFiles.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/declarationEmit/typeofImportTypeOnlyExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/declarationEmit/typesVersionsDeclarationEmit.ambient.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/declarationEmit/typesVersionsDeclarationEmit.multiFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/declarationEmit/typesVersionsDeclarationEmit.multiFileBackReferenceToSelf.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/declarationEmit/typesVersionsDeclarationEmit.multiFileBackReferenceToUnmapped.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/1.0lib-noErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/accessor/decoratorOnClassAccessor1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/accessor/decoratorOnClassAccessor2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/accessor/decoratorOnClassAccessor4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/accessor/decoratorOnClassAccessor5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/accessor/decoratorOnClassAccessor7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/accessor/decoratorOnClassAccessor8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/constructableDecoratorOnClass01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/constructor/decoratorOnClassConstructor2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/constructor/decoratorOnClassConstructor3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/constructor/decoratorOnClassConstructor4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/constructor/parameter/decoratorOnClassConstructorParameter1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/constructor/parameter/decoratorOnClassConstructorParameter5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/decoratedBlockScopedClass1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/decoratedBlockScopedClass2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/decoratedBlockScopedClass3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/decoratedClassExportsCommonJS1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/decoratedClassExportsCommonJS2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/decoratedClassExportsSystem1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/decoratedClassExportsSystem2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/decoratedClassFromExternalModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/decoratorChecksFunctionBodies.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/decoratorInstantiateModulesInFunctionBodies.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/decoratorOnClass1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/decoratorOnClass2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/decoratorOnClass3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/decoratorOnClass4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/decoratorOnClass5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/decoratorOnClass8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/decoratorOnClass9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/decoratorOnClassMethod1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/decoratorOnClassMethod10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/decoratorOnClassMethod11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/decoratorOnClassMethod12.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/decoratorOnClassMethod13.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/decoratorOnClassMethod14.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/decoratorOnClassMethod15.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/decoratorOnClassMethod16.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/decoratorOnClassMethod18.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/decoratorOnClassMethod19.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/decoratorOnClassMethod2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/decoratorOnClassMethod4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/decoratorOnClassMethod5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/decoratorOnClassMethod6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/decoratorOnClassMethod7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/decoratorOnClassMethod8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/decoratorOnClassMethodOverload2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/parameter/decoratorOnClassMethodParameter1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/parameter/decoratorOnClassMethodParameter2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/parameter/decoratorOnClassMethodParameter3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/property/decoratorOnClassProperty1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/property/decoratorOnClassProperty10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/property/decoratorOnClassProperty11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/property/decoratorOnClassProperty12.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/property/decoratorOnClassProperty13.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/property/decoratorOnClassProperty2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/property/decoratorOnClassProperty6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/property/decoratorOnClassProperty7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/decoratorCallGeneric.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/decoratorInAmbientContext.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/decorators/decoratorMetadata-jsdoc.ts +Unexpected token +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/decoratorMetadata.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/decoratorMetadataWithTypeOnlyImport.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/decoratorMetadataWithTypeOnlyImport2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/legacyDecorators-contextualTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/missingDecoratorType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/directives/multiline.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/directives/ts-expect-error-nocheck.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/directives/ts-expect-error.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/directives/ts-ignore.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpression1ES2020.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpression2ES2020.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpression3ES2020.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpression4ES2020.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpression5ES2020.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpression6ES2020.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionAsyncES2020.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionAsyncES5AMD.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionAsyncES5CJS.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionAsyncES5System.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionAsyncES5UMD.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionAsyncES6AMD.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionAsyncES6CJS.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionAsyncES6System.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionAsyncES6UMD.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionCheckReturntype1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionDeclarationEmit1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionDeclarationEmit2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionDeclarationEmit3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionES5AMD.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionES5CJS.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionES5System.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionES5UMD.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionES6AMD.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionES6CJS.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionES6System.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionES6UMD.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionErrorInES2015.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionInAMD1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionInAMD2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionInAMD3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionInAMD4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionInCJS1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionInCJS2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionInCJS3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionInCJS4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionInCJS5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionInExportEqualsAMD.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionInExportEqualsCJS.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionInExportEqualsUMD.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionInScriptContext1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionInScriptContext2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionInSystem1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionInSystem2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionInSystem3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionInSystem4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionInUMD1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionInUMD2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionInUMD3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionInUMD4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionInUMD5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionNestedAMD.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionNestedAMD2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionNestedCJS.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionNestedCJS2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionNestedES2015.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionNestedES20152.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionNestedES2020.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionNestedES20202.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionNestedSystem.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionNestedSystem2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionNestedUMD.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionNestedUMD2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionNoModuleKindSpecified.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionReturnPromiseOfAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionShouldNotGetParen.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionSpecifierNotStringTypeError.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpressionWithTypeArgument.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/emitter/es2015/asyncGenerators/emitter.asyncGenerators.classMethods.es2015.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/emitter/es2015/asyncGenerators/emitter.asyncGenerators.functionDeclarations.es2015.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/emitter/es2015/asyncGenerators/emitter.asyncGenerators.functionExpressions.es2015.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/emitter/es2015/asyncGenerators/emitter.asyncGenerators.objectLiteralMethods.es2015.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/emitter/es2018/asyncGenerators/emitter.asyncGenerators.classMethods.es2018.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/emitter/es2018/asyncGenerators/emitter.asyncGenerators.functionDeclarations.es2018.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/emitter/es2018/asyncGenerators/emitter.asyncGenerators.functionExpressions.es2018.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/emitter/es2018/asyncGenerators/emitter.asyncGenerators.objectLiteralMethods.es2018.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/emitter/es2019/noCatchBinding/emitter.noCatchBinding.es2019.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/emitter/es5/asyncGenerators/emitter.asyncGenerators.classMethods.es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/emitter/es5/asyncGenerators/emitter.asyncGenerators.functionDeclarations.es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/emitter/es5/asyncGenerators/emitter.asyncGenerators.functionExpressions.es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/emitter/es5/asyncGenerators/emitter.asyncGenerators.objectLiteralMethods.es5.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/enums/awaitAndYield.ts +`await` is only allowed within async functions and at the top levels of modules +Mismatch: tasks/coverage/typescript/tests/cases/conformance/enums/enumBasics.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/enums/enumClassification.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/enums/enumConstantMemberWithString.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/enums/enumConstantMemberWithStringEmitDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/enums/enumConstantMemberWithTemplateLiterals.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/enums/enumConstantMemberWithTemplateLiteralsEmitDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/enums/enumConstantMembers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/enums/enumErrorOnConstantBindingWithInitializer.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/enums/enumExportMergingES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/enums/enumMerging.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/enums/enumMergingErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/enums/enumShadowedInfinityNaN.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2016/es2016IntlAPIs.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2017/assignSharedArrayBufferToArrayBuffer.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2017/es2017DateAPIs.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2017/useObjectValuesAndEntries1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2017/useObjectValuesAndEntries2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2017/useObjectValuesAndEntries3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2017/useObjectValuesAndEntries4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2017/useSharedArrayBuffer1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2017/useSharedArrayBuffer2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2017/useSharedArrayBuffer3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2017/useSharedArrayBuffer4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2017/useSharedArrayBuffer5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2017/useSharedArrayBuffer6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2018/es2018IntlAPIs.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2018/usePromiseFinally.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2018/useRegexpGroups.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2019/allowUnescapedParagraphAndLineSeparatorsInStringLiteral.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2019/globalThisAmbientModules.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2019/globalThisBlockscopedProperties.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2019/globalThisGlobalExportAsGlobal.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2019/globalThisReadonlyProperties.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2019/globalThisTypeIndexAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2019/globalThisUnknown.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2019/globalThisUnknownNoImplicitAny.ts +tasks/coverage/typescript/tests/cases/conformance/es2019/globalThisVarDeclaration.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2019/importMeta/importMeta.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2019/importMeta/importMetaNarrowing.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2020/bigintMissingES2019.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2020/bigintMissingES2020.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2020/bigintMissingESNext.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2020/constructBigint.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2020/es2020IntlAPIs.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2020/intlNumberFormatES2020.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2020/localesObjectArgument.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2020/modules/exportAsNamespace1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2020/modules/exportAsNamespace2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2020/modules/exportAsNamespace3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2020/modules/exportAsNamespace4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2020/modules/exportAsNamespace5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2020/modules/exportAsNamespace_exportAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2020/modules/exportAsNamespace_missingEmitHelpers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2020/modules/exportAsNamespace_nonExistent.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2021/es2021LocalesObjectArgument.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2021/intlDateTimeFormatRangeES2021.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2021/logicalAssignment/logicalAssignment1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2021/logicalAssignment/logicalAssignment10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2021/logicalAssignment/logicalAssignment2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2021/logicalAssignment/logicalAssignment3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2021/logicalAssignment/logicalAssignment4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2021/logicalAssignment/logicalAssignment5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2021/logicalAssignment/logicalAssignment6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2021/logicalAssignment/logicalAssignment7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2021/logicalAssignment/logicalAssignment8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2021/logicalAssignment/logicalAssignment9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2022/arbitraryModuleNamespaceIdentifiers/arbitraryModuleNamespaceIdentifiers_exportEmpty.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2022/arbitraryModuleNamespaceIdentifiers/arbitraryModuleNamespaceIdentifiers_importEmpty.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2022/arbitraryModuleNamespaceIdentifiers/arbitraryModuleNamespaceIdentifiers_module.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2022/es2022IntlAPIs.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2022/es2022LocalesObjectArgument.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2022/es2024SharedMemory.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2023/intlNumberFormatES2023.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2023/intlNumberFormatES5UseGrouping.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2024/resizableArrayBuffer.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2024/sharedMemory.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2024/transferableArrayBuffer.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es5/es5DateAPIs.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolDeclarationEmit1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolDeclarationEmit10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolDeclarationEmit11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolDeclarationEmit12.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolDeclarationEmit13.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolDeclarationEmit14.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolDeclarationEmit2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolDeclarationEmit3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolDeclarationEmit4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolDeclarationEmit5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolDeclarationEmit6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolDeclarationEmit7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolDeclarationEmit8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolDeclarationEmit9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty12.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty13.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty14.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty15.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty16.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty17.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty18.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty19.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty20.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty21.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty22.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty23.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty24.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty25.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty26.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty27.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty28.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty29.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty30.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty31.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty32.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty33.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty34.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty35.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty36.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty37.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty38.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty39.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty40.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty41.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty42.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty43.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty44.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty45.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty46.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty47.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty48.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty49.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty50.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty51.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty52.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty53.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty54.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty55.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty56.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty57.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty58.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty59.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty60.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty61.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolType1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolType10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolType11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolType12.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolType13.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolType14.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolType15.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolType16.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolType17.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolType18.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolType19.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolType2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolType20.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolType3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolType4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolType5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolType6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolType7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolType8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolType9.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/disallowLineTerminatorBeforeArrow.ts +Line terminator not permitted before arrow +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionAsIs.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionAsIsES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionThisCapturing.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionThisCapturingES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments01_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments02.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments02_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments03.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments03_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments04.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments04_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments05.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments05_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments06.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments06_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments07.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments07_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments08.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments08_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments09.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments09_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments10_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments11_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments12.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments12_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments13.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments13_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments14.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments14_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments15.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments15_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments16.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments16_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments17.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments17_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments18.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments18_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments19.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments19_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionsAsIs.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionsAsIsES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/binaryAndOctalIntegerLiteral/binaryIntegerLiteral.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/binaryAndOctalIntegerLiteral/binaryIntegerLiteralES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/binaryAndOctalIntegerLiteral/octalIntegerLiteral.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/binaryAndOctalIntegerLiteral/octalIntegerLiteralES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/classDeclaration/classWithSemicolonClassElementES61.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/classDeclaration/classWithSemicolonClassElementES62.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/classDeclaration/emitClassDeclarationOverloadInES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/classDeclaration/emitClassDeclarationWithConstructorInES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/classDeclaration/emitClassDeclarationWithExtensionAndTypeArgumentInES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/classDeclaration/emitClassDeclarationWithExtensionInES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/classDeclaration/emitClassDeclarationWithGetterSetterInES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/classDeclaration/emitClassDeclarationWithLiteralPropertyNameInES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/classDeclaration/emitClassDeclarationWithMethodInES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/classDeclaration/emitClassDeclarationWithPropertyAccessInHeritageClause1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/classDeclaration/emitClassDeclarationWithPropertyAssignmentInES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/classDeclaration/emitClassDeclarationWithStaticPropertyAssignmentInES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/classDeclaration/emitClassDeclarationWithSuperMethodCall01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/classDeclaration/emitClassDeclarationWithThisKeywordInES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/classDeclaration/emitClassDeclarationWithTypeArgumentAndOverloadInES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/classDeclaration/emitClassDeclarationWithTypeArgumentInES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/classDeclaration/exportDefaultClassWithStaticPropertyAssignmentsInES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/classDeclaration/parseClassDeclarationInStrictModeByDefaultInES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/classDeclaration/superCallBeforeThisAccessing1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/classDeclaration/superCallBeforeThisAccessing2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/classDeclaration/superCallBeforeThisAccessing3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/classDeclaration/superCallBeforeThisAccessing4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/classDeclaration/superCallBeforeThisAccessing5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/classDeclaration/superCallBeforeThisAccessing6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/classDeclaration/superCallBeforeThisAccessing7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/classDeclaration/superCallBeforeThisAccessing8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/classDeclaration/superCallFromClassThatHasNoBaseTypeButWithSameSymbolInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/classExpressions/classExpressionES61.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/classExpressions/classExpressionES62.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/classExpressions/classExpressionES63.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/classExpressions/typeArgumentInferenceWithClassExpression1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/classExpressions/typeArgumentInferenceWithClassExpression2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/classExpressions/typeArgumentInferenceWithClassExpression3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames10_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames10_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames11_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames11_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames12_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames12_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames13_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames13_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames14_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames14_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames15_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames15_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames16_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames16_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames17_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames17_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames18_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames18_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames19_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames19_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames1_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames1_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames20_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames20_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames21_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames21_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames22_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames22_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames23_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames23_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames24_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames24_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames25_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames25_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames26_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames26_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames27_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames27_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames28_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames28_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames29_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames29_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames2_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames2_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames30_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames30_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames31_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames31_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames32_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames32_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames33_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames33_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames34_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames34_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames35_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames35_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames36_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames36_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames37_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames37_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames38_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames38_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames39_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames39_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames3_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames3_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames40_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames40_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames41_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames41_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames42_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames42_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames43_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames43_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames44_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames44_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames45_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames45_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames46_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames46_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames47_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames47_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames48_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames48_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames49_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames49_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames4_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames4_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames50_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames50_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames51_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames51_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames5_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames5_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames6_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames6_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames7_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames7_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames8_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames8_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames9_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames9_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType10_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType10_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType1_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType1_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType2_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType2_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType3_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType3_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType4_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType4_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType5_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType5_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType6_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType6_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType7_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType7_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType8_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType8_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType9_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType9_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesDeclarationEmit1_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesDeclarationEmit1_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesDeclarationEmit2_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesDeclarationEmit2_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesDeclarationEmit3_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesDeclarationEmit3_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesDeclarationEmit4_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesDeclarationEmit4_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesDeclarationEmit5_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesDeclarationEmit5_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesDeclarationEmit6_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesDeclarationEmit6_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesOnOverloads_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesOnOverloads_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesSourceMap1_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesSourceMap1_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesSourceMap2_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesSourceMap2_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesWithStaticProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/decorators/class/accessor/decoratorOnClassAccessor1.es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/decorators/class/decoratorOnClass1.es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/decorators/class/decoratorOnClass2.es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/decorators/class/decoratorOnClass3.es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/decorators/class/decoratorOnClass4.es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/decorators/class/decoratorOnClass5.es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/decorators/class/decoratorOnClass6.es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/decorators/class/decoratorOnClass7.es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/decorators/class/decoratorOnClass8.es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/decorators/class/method/decoratorOnClassMethod1.es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/decorators/class/method/parameter/decoratorOnClassMethodParameter1.es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/decorators/class/property/decoratorOnClassProperty1.es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/defaultParameters/emitDefaultParametersFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/defaultParameters/emitDefaultParametersFunctionES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/defaultParameters/emitDefaultParametersFunctionExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/defaultParameters/emitDefaultParametersFunctionExpressionES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/defaultParameters/emitDefaultParametersFunctionProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/defaultParameters/emitDefaultParametersFunctionPropertyES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/defaultParameters/emitDefaultParametersMethod.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/defaultParameters/emitDefaultParametersMethodES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/arrayAssignmentPatternWithAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/declarationInAmbientContext.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/declarationWithNoInitializer.ts +Missing initializer in destructuring declaration +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/declarationsAndAssignments.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringArrayBindingPatternAndAssignment1ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringArrayBindingPatternAndAssignment1ES5iterable.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringArrayBindingPatternAndAssignment1ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringArrayBindingPatternAndAssignment2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringArrayBindingPatternAndAssignment3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringArrayBindingPatternAndAssignment4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringArrayBindingPatternAndAssignment5SiblingInitializer.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringAssignabilityCheck.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringCatch.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringControlFlow.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringEvaluationOrder.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringInFunctionType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringObjectAssignmentPatternWithNestedSpread.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringObjectBindingPatternAndAssignment1ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringObjectBindingPatternAndAssignment1ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringObjectBindingPatternAndAssignment4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringObjectBindingPatternAndAssignment5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringObjectBindingPatternAndAssignment6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringObjectBindingPatternAndAssignment7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringObjectBindingPatternAndAssignment8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringObjectBindingPatternAndAssignment9SiblingInitializer.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringParameterDeclaration10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringParameterDeclaration1ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringParameterDeclaration1ES5iterable.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringParameterDeclaration1ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringParameterDeclaration3ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringParameterDeclaration3ES5iterable.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringParameterDeclaration3ES6.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringParameterDeclaration4.ts +A rest parameter cannot be optional +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringParameterDeclaration5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringParameterDeclaration7ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringParameterDeclaration7ES5iterable.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringParameterDeclaration8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringParameterProperties1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringParameterProperties2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringParameterProperties3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringParameterProperties4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringParameterProperties5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringReassignsRightHandSide.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringSameNames.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringSpread.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringTypeAssertionsES5_1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringTypeAssertionsES5_2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringTypeAssertionsES5_3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringTypeAssertionsES5_4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringTypeAssertionsES5_5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringTypeAssertionsES5_6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringTypeAssertionsES5_7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringVariableDeclaration1ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringVariableDeclaration1ES5iterable.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringVariableDeclaration1ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringVariableDeclaration2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringVoid.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringVoidStrictNullChecks.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringWithLiteralInitializers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringWithLiteralInitializers2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/emptyArrayBindingPatternParameter01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/emptyArrayBindingPatternParameter02.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/emptyArrayBindingPatternParameter03.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/emptyArrayBindingPatternParameter04.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/emptyAssignmentPatterns01_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/emptyAssignmentPatterns01_ES5iterable.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/emptyAssignmentPatterns01_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/emptyAssignmentPatterns02_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/emptyAssignmentPatterns02_ES5iterable.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/emptyAssignmentPatterns02_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/emptyAssignmentPatterns03_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/emptyAssignmentPatterns03_ES5iterable.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/emptyAssignmentPatterns03_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/emptyAssignmentPatterns04_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/emptyAssignmentPatterns04_ES5iterable.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/emptyAssignmentPatterns04_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/emptyObjectBindingPatternParameter01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/emptyObjectBindingPatternParameter02.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/emptyObjectBindingPatternParameter03.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/emptyObjectBindingPatternParameter04.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/emptyVariableDeclarationBindingPatterns01_ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/emptyVariableDeclarationBindingPatterns01_ES5iterable.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/emptyVariableDeclarationBindingPatterns01_ES6.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/emptyVariableDeclarationBindingPatterns02_ES5.ts +Missing initializer in destructuring declaration +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/emptyVariableDeclarationBindingPatterns02_ES5iterable.ts +Missing initializer in destructuring declaration +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/emptyVariableDeclarationBindingPatterns02_ES6.ts +Missing initializer in destructuring declaration +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/iterableArrayPattern1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/iterableArrayPattern10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/iterableArrayPattern11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/iterableArrayPattern12.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/iterableArrayPattern13.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/iterableArrayPattern14.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/iterableArrayPattern15.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/iterableArrayPattern16.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/iterableArrayPattern17.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/iterableArrayPattern18.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/iterableArrayPattern19.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/iterableArrayPattern2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/iterableArrayPattern20.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/iterableArrayPattern21.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/iterableArrayPattern22.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/iterableArrayPattern23.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/iterableArrayPattern24.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/iterableArrayPattern25.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/iterableArrayPattern26.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/iterableArrayPattern27.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/iterableArrayPattern28.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/iterableArrayPattern29.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/iterableArrayPattern3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/iterableArrayPattern30.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/iterableArrayPattern4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/iterableArrayPattern5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/iterableArrayPattern6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/iterableArrayPattern7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/iterableArrayPattern8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/iterableArrayPattern9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/missingAndExcessProperties.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/nonIterableRestElement1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/nonIterableRestElement2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/nonIterableRestElement3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/objectBindingPatternKeywordIdentifiers05.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/objectBindingPatternKeywordIdentifiers06.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/optionalBindingParameters1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/optionalBindingParameters2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/optionalBindingParametersInOverloads1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/optionalBindingParametersInOverloads2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/restElementWithAssignmentPattern1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/restElementWithAssignmentPattern2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/restElementWithAssignmentPattern3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/restElementWithAssignmentPattern4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/restElementWithAssignmentPattern5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/restElementWithBindingPattern.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/restElementWithBindingPattern2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/restElementWithInitializer1.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/restElementWithInitializer2.ts +Cannot assign to this expression +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/restElementWithNullInitializer.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/restPropertyWithBindingPattern.ts +Cannot assign to this expression +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of12.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of13.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of14.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of15.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of16.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of17.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of18.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of19.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of2.ts +Missing initializer in const declaration +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of20.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of21.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of22.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of23.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of24.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of25.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of26.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of27.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of28.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of29.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of30.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of31.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of32.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of33.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of34.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of35.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of36.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of37.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of38.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of39.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of40.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of41.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of42.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of43.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of44.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of45.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of46.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of47.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of48.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of49.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of50.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of51.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of52.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of53.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of54.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of55.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of56.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of57.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of58.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/functionDeclarations/FunctionDeclaration11_es6.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/es6/functionDeclarations/FunctionDeclaration12_es6.ts +Cannot use `yield` as an identifier in a generator context +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/functionDeclarations/FunctionDeclaration13_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/functionDeclarations/FunctionDeclaration1_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/functionDeclarations/FunctionDeclaration2_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/functionDeclarations/FunctionDeclaration3_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/functionDeclarations/FunctionDeclaration4_es6.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/es6/functionDeclarations/FunctionDeclaration5_es6.ts +Cannot use `yield` as an identifier in a generator context +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/functionDeclarations/FunctionDeclaration6_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/functionDeclarations/FunctionDeclaration7_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/functionDeclarations/FunctionDeclaration8_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/functionDeclarations/FunctionDeclaration9_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/functionExpressions/FunctionExpression1_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/functionExpressions/FunctionExpression2_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/functionPropertyAssignments/FunctionPropertyAssignments1_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/functionPropertyAssignments/FunctionPropertyAssignments5_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/memberFunctionDeclarations/MemberFunctionDeclaration1_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/memberFunctionDeclarations/MemberFunctionDeclaration2_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/memberFunctionDeclarations/MemberFunctionDeclaration3_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/memberFunctionDeclarations/MemberFunctionDeclaration7_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/moduleExportsAmd/anonymousDefaultExportsAmd.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/moduleExportsAmd/decoratedDefaultExportsGetExportedAmd.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/moduleExportsAmd/defaultExportsGetExportedAmd.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/moduleExportsAmd/outFilerootDirModuleNamesAmd.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/moduleExportsCommonjs/anonymousDefaultExportsCommonjs.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/moduleExportsCommonjs/decoratedDefaultExportsGetExportedCommonjs.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/moduleExportsCommonjs/defaultExportsGetExportedCommonjs.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/moduleExportsSystem/anonymousDefaultExportsSystem.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/moduleExportsSystem/decoratedDefaultExportsGetExportedSystem.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/moduleExportsSystem/defaultExportsGetExportedSystem.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/moduleExportsSystem/outFilerootDirModuleNamesSystem.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/moduleExportsSystem/topLevelVarHoistingCommonJS.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/moduleExportsSystem/topLevelVarHoistingSystem.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/moduleExportsUmd/anonymousDefaultExportsUmd.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/moduleExportsUmd/decoratedDefaultExportsGetExportedUmd.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/moduleExportsUmd/defaultExportsGetExportedUmd.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/modules/defaultExportInAwaitExpression01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/modules/defaultExportInAwaitExpression02.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/modules/defaultExportWithOverloads01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/modules/defaultExportsCannotMerge01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/modules/defaultExportsCannotMerge02.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/modules/defaultExportsCannotMerge03.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/modules/defaultExportsCannotMerge04.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/modules/exportAndImport-es5-amd.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/modules/exportAndImport-es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/modules/exportBinding.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/modules/exportSpellingSuggestion.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/modules/exportStar-amd.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/modules/exportStar.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/modules/exportsAndImports1-amd.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/modules/exportsAndImports1-es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/modules/exportsAndImports1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/modules/exportsAndImports2-amd.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/modules/exportsAndImports2-es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/modules/exportsAndImports2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/modules/exportsAndImports3-amd.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/modules/exportsAndImports3-es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/modules/exportsAndImports3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/modules/exportsAndImports4-amd.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/modules/exportsAndImports4-es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/modules/exportsAndImports4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/modules/exportsAndImports5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/modules/exportsAndImportsWithContextualKeywordNames01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/modules/exportsAndImportsWithContextualKeywordNames02.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/modules/exportsAndImportsWithUnderscores2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/modules/exportsAndImportsWithUnderscores3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/modules/exportsAndImportsWithUnderscores4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/modules/importEmptyFromModuleNotExisted.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/modules/multipleDefaultExports01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/modules/multipleDefaultExports02.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/modules/multipleDefaultExports03.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/modules/multipleDefaultExports04.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/modules/multipleDefaultExports05.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/modules/reExportDefaultExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/newTarget/invalidNewTarget.es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/newTarget/invalidNewTarget.es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/newTarget/newTarget.es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/newTarget/newTarget.es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/newTarget/newTargetNarrowing.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/propertyAccess/propertyAccessNumericLiterals.es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/restParameters/emitRestParametersFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/restParameters/emitRestParametersFunctionES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/restParameters/emitRestParametersFunctionExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/restParameters/emitRestParametersFunctionExpressionES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/restParameters/emitRestParametersFunctionProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/restParameters/emitRestParametersFunctionPropertyES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/restParameters/emitRestParametersMethod.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/restParameters/emitRestParametersMethodES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/restParameters/readonlyRestParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/shorthandPropertyAssignment/objectLiteralShorthandProperties.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesAssignmentES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesAssignmentError.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesAssignmentErrorFromMissingIdentifier.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesErrorFromNoneExistingIdentifier.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesFunctionArgument.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesFunctionArgument2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesWithModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesWithModuleES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/spread/arrayLiteralSpread.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/spread/arrayLiteralSpreadES5iterable.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/spread/arraySpreadImportHelpers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/spread/arraySpreadInCall.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/spread/iteratorSpreadInArray.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/spread/iteratorSpreadInArray10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/spread/iteratorSpreadInArray11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/spread/iteratorSpreadInArray2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/spread/iteratorSpreadInArray3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/spread/iteratorSpreadInArray4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/spread/iteratorSpreadInArray5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/spread/iteratorSpreadInArray6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/spread/iteratorSpreadInArray7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/spread/iteratorSpreadInArray8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/spread/iteratorSpreadInArray9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/spread/iteratorSpreadInCall.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/spread/iteratorSpreadInCall10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/spread/iteratorSpreadInCall11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/spread/iteratorSpreadInCall12.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/spread/iteratorSpreadInCall2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/spread/iteratorSpreadInCall3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/spread/iteratorSpreadInCall4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/spread/iteratorSpreadInCall5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/spread/iteratorSpreadInCall6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/spread/iteratorSpreadInCall7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/spread/iteratorSpreadInCall8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/spread/iteratorSpreadInCall9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateStringsPlainCharactersThatArePartsOfEscapes01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateStringsPlainCharactersThatArePartsOfEscapes01_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateStringsPlainCharactersThatArePartsOfEscapes02.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateStringsPlainCharactersThatArePartsOfEscapes02_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateStringsTypeArgumentInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateStringsTypeArgumentInferenceES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateStringsWithIncompatibleTypedTags.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateStringsWithIncompatibleTypedTagsES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateStringsWithManyCallAndMemberExpressions.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateStringsWithManyCallAndMemberExpressionsES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateStringsWithOverloadResolution1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateStringsWithOverloadResolution1_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateStringsWithOverloadResolution2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateStringsWithOverloadResolution2_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateStringsWithOverloadResolution3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateStringsWithOverloadResolution3_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateStringsWithTagNamedDeclare.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateStringsWithTagNamedDeclareES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateStringsWithTagsTypedAsAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateStringsWithTagsTypedAsAnyES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateStringsWithTypeErrorInFunctionExpressionsInSubstitutionExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateStringsWithTypeErrorInFunctionExpressionsInSubstitutionExpressionES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateStringsWithTypedTags.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateStringsWithTypedTagsES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateUntypedTagCall01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateWithConstructableTag01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateWithConstructableTag02.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplatesWithTypeArguments1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringBinaryOperations.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringBinaryOperationsES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringBinaryOperationsES6Invalid.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringBinaryOperationsInvalid.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringControlCharacterEscapes01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringControlCharacterEscapes01_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringControlCharacterEscapes02.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringControlCharacterEscapes02_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringControlCharacterEscapes03.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringControlCharacterEscapes03_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringControlCharacterEscapes04.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringControlCharacterEscapes04_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInArray.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInArrowFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInArrowFunctionES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInCallExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInCallExpressionES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInConditional.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInConditionalES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInDeleteExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInDeleteExpressionES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInDivision.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInEqualityChecks.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInEqualityChecksES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInFunctionExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInFunctionExpressionES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInInOperator.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInInOperatorES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInIndexExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInIndexExpressionES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInInstanceOf.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInInstanceOfES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInModulo.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInModuloES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInMultiplication.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInMultiplicationES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInNewExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInNewExpressionES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInNewOperator.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInNewOperatorES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInParentheses.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInParenthesesES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInPropertyAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInPropertyAssignmentES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInSwitchAndCase.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInSwitchAndCaseES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInTaggedTemplate.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInTaggedTemplateES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInTypeAssertion.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInTypeAssertionES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInTypeOf.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInTypeOfES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInUnaryPlus.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInUnaryPlusES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInWhile.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInWhileES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringInYieldKeyword.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringMultiline1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringMultiline1_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringMultiline2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringMultiline2_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringMultiline3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringMultiline3_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringPlainCharactersThatArePartsOfEscapes01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringPlainCharactersThatArePartsOfEscapes01_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringPlainCharactersThatArePartsOfEscapes02.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringPlainCharactersThatArePartsOfEscapes02_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringTermination1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringTermination1_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringTermination2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringTermination2_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringTermination3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringTermination3_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringTermination4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringTermination4_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringTermination5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringTermination5_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWhitespaceEscapes1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWhitespaceEscapes1_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWhitespaceEscapes2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWhitespaceEscapes2_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithBackslashEscapes01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithBackslashEscapes01_ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithCommentsInArrowFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithEmbeddedAddition.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithEmbeddedAdditionES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithEmbeddedArray.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithEmbeddedArrayES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithEmbeddedArrowFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithEmbeddedArrowFunctionES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithEmbeddedComments.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithEmbeddedCommentsES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithEmbeddedConditional.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithEmbeddedConditionalES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithEmbeddedDivision.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithEmbeddedDivisionES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithEmbeddedFunctionExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithEmbeddedFunctionExpressionES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithEmbeddedInOperator.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithEmbeddedInOperatorES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithEmbeddedInstanceOf.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithEmbeddedInstanceOfES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithEmbeddedModulo.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithEmbeddedModuloES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithEmbeddedMultiplication.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithEmbeddedMultiplicationES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithEmbeddedNewOperator.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithEmbeddedNewOperatorES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithEmbeddedObjectLiteral.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithEmbeddedObjectLiteralES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithEmbeddedTemplateString.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithEmbeddedTemplateStringES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithEmbeddedTypeAssertionOnAddition.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithEmbeddedTypeAssertionOnAdditionES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithEmbeddedTypeOfOperator.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithEmbeddedTypeOfOperatorES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithEmbeddedUnaryPlus.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithEmbeddedUnaryPlusES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithEmbeddedYieldKeywordES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithEmptyLiteralPortions.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithEmptyLiteralPortionsES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithOpenCommentInStringPortion.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithOpenCommentInStringPortionES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithPropertyAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringWithPropertyAccessES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringsWithTypeErrorInFunctionExpressionsInSubstitutionExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/templates/templateStringsWithTypeErrorInFunctionExpressionsInSubstitutionExpressionES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions07.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions12.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions14.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions17.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions19.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings02.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings03.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings04.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings05.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings06.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings08.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings09.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings13.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings15.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings16.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings18.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings23.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates02.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates03.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates04.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates05.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates06.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates08.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates09.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates13.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates15.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates16.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates18.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates20.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/variableDeclarations/VariableDeclaration10_es6.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/es6/variableDeclarations/VariableDeclaration11_es6.ts +Unexpected token +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/variableDeclarations/VariableDeclaration12_es6.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/es6/variableDeclarations/VariableDeclaration2_es6.ts +Missing initializer in const declaration +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/variableDeclarations/VariableDeclaration3_es6.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/es6/variableDeclarations/VariableDeclaration4_es6.ts +Missing initializer in const declaration +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/variableDeclarations/VariableDeclaration5_es6.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/es6/variableDeclarations/VariableDeclaration6_es6.ts +Unexpected token +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/variableDeclarations/VariableDeclaration7_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/variableDeclarations/VariableDeclaration8_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/variableDeclarations/VariableDeclaration9_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/YieldExpression10_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/YieldExpression11_es6.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/YieldExpression12_es6.ts +A 'yield' expression is only allowed in a generator body. +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/YieldExpression13_es6.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/YieldExpression14_es6.ts +A 'yield' expression is only allowed in a generator body. +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/YieldExpression15_es6.ts +A 'yield' expression is only allowed in a generator body. +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/YieldExpression16_es6.ts +A 'yield' expression is only allowed in a generator body. +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/YieldExpression17_es6.ts +A 'yield' expression is only allowed in a generator body. +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/YieldExpression18_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/YieldExpression19_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/YieldExpression1_es6.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/YieldExpression2_es6.ts +A 'yield' expression is only allowed in a generator body. +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/YieldExpression3_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/YieldExpression4_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/YieldExpression6_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/YieldExpression7_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/YieldExpression8_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/YieldExpression9_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/YieldStarExpression1_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/YieldStarExpression4_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorInAmbientContext1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorInAmbientContext3.d.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorInAmbientContext5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorInAmbientContext6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorNoImplicitReturns.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorOverloads3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorOverloads4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorOverloads5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck12.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck13.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck14.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck15.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck16.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck17.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck18.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck19.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck20.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck21.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck22.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck23.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck24.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck25.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck26.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck27.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck28.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck29.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck30.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck31.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck32.ts +A 'yield' expression is only allowed in a generator body. +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck33.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck34.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck35.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck36.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck37.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck38.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck39.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck40.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck41.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck42.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck43.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck44.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck45.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck46.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck47.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck48.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck49.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck50.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck51.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck52.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck53.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck54.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck55.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck56.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck57.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck58.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck59.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck60.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck61.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck62.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck63.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck9.ts +tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/yieldExpressionInControlFlow.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es7/exponentiationOperator/compoundExponentiationAssignmentLHSCanBeAssigned1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es7/exponentiationOperator/compoundExponentiationAssignmentLHSCannotBeAssigned.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es7/exponentiationOperator/compoundExponentiationAssignmentLHSIsReference.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es7/exponentiationOperator/emitCompoundExponentiationAssignmentWithIndexingOnLHS1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es7/exponentiationOperator/emitCompoundExponentiationAssignmentWithIndexingOnLHS2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es7/exponentiationOperator/emitCompoundExponentiationAssignmentWithIndexingOnLHS3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es7/exponentiationOperator/emitCompoundExponentiationAssignmentWithIndexingOnLHS4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es7/exponentiationOperator/emitCompoundExponentiationAssignmentWithPropertyAccessingOnLHS1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es7/exponentiationOperator/emitCompoundExponentiationOperator1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es7/exponentiationOperator/emitCompoundExponentiationOperator2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es7/exponentiationOperator/emitExponentiationOperator1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es7/exponentiationOperator/emitExponentiationOperator2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es7/exponentiationOperator/emitExponentiationOperator3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es7/exponentiationOperator/emitExponentiationOperator4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es7/exponentiationOperator/emitExponentiationOperatorInTempalteString4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es7/exponentiationOperator/emitExponentiationOperatorInTempalteString4ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es7/exponentiationOperator/emitExponentiationOperatorInTemplateString1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es7/exponentiationOperator/emitExponentiationOperatorInTemplateString1ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es7/exponentiationOperator/emitExponentiationOperatorInTemplateString2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es7/exponentiationOperator/emitExponentiationOperatorInTemplateString2ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es7/exponentiationOperator/emitExponentiationOperatorInTemplateString3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es7/exponentiationOperator/emitExponentiationOperatorInTemplateString3ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es7/exponentiationOperator/exponentiationOperatorWithAnyAndNumber.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es7/exponentiationOperator/exponentiationOperatorWithEnum.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es7/exponentiationOperator/exponentiationOperatorWithEnumUnion.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es7/exponentiationOperator/exponentiationOperatorWithInvalidOperands.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es7/exponentiationOperator/exponentiationOperatorWithInvalidSimpleUnaryExpressionOperands.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es7/exponentiationOperator/exponentiationOperatorWithNew.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es7/exponentiationOperator/exponentiationOperatorWithNullValueAndInvalidOperands.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es7/exponentiationOperator/exponentiationOperatorWithNullValueAndValidOperands.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es7/exponentiationOperator/exponentiationOperatorWithOnlyNullValueOrUndefinedValue.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es7/exponentiationOperator/exponentiationOperatorWithTemplateStringInvalid.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es7/exponentiationOperator/exponentiationOperatorWithTemplateStringInvalidES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es7/exponentiationOperator/exponentiationOperatorWithTypeParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es7/exponentiationOperator/exponentiationOperatorWithUndefinedValueAndInvalidOperands.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/es7/exponentiationOperator/exponentiationOperatorWithUndefinedValueAndValidOperands.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/es7/trailingCommasInBindingPatterns.ts +Unexpected trailing comma after rest element +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/es7/trailingCommasInFunctionParametersAndArguments.ts +A rest parameter must be last in a parameter list +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/accessors/esDecorators-classDeclaration-accessors-nonStatic.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/accessors/esDecorators-classDeclaration-accessors-nonStaticPrivate.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/accessors/esDecorators-classDeclaration-accessors-static.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/accessors/esDecorators-classDeclaration-accessors-staticPrivate.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/classSuper/esDecorators-classDeclaration-classSuper.1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/classSuper/esDecorators-classDeclaration-classSuper.2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/classSuper/esDecorators-classDeclaration-classSuper.3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/classSuper/esDecorators-classDeclaration-classSuper.4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/classSuper/esDecorators-classDeclaration-classSuper.5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/classSuper/esDecorators-classDeclaration-classSuper.6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/classSuper/esDecorators-classDeclaration-classSuper.7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/classThisReference/esDecorators-classDeclaration-classThisReference.es5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/classThisReference/esDecorators-classDeclaration-classThisReference.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/esDecorators-classDeclaration-commentPreservation.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/esDecorators-classDeclaration-commonjs-classNamespaceMerge.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/esDecorators-classDeclaration-commonjs.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/esDecorators-classDeclaration-missingEmitHelpers-classDecorator.1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/esDecorators-classDeclaration-missingEmitHelpers-classDecorator.2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/esDecorators-classDeclaration-missingEmitHelpers-classDecorator.3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/esDecorators-classDeclaration-missingEmitHelpers-nonStaticPrivateAutoAccessor.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/esDecorators-classDeclaration-missingEmitHelpers-nonStaticPrivateField.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/esDecorators-classDeclaration-missingEmitHelpers-nonStaticPrivateGetter.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/esDecorators-classDeclaration-missingEmitHelpers-nonStaticPrivateMethod.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/esDecorators-classDeclaration-missingEmitHelpers-nonStaticPrivateSetter.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/esDecorators-classDeclaration-missingEmitHelpers-staticComputedAutoAccessor.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/esDecorators-classDeclaration-missingEmitHelpers-staticComputedField.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/esDecorators-classDeclaration-missingEmitHelpers-staticComputedGetter.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/esDecorators-classDeclaration-missingEmitHelpers-staticComputedMethod.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/esDecorators-classDeclaration-missingEmitHelpers-staticComputedSetter.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/esDecorators-classDeclaration-missingEmitHelpers-staticPrivateAutoAccessor.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/esDecorators-classDeclaration-missingEmitHelpers-staticPrivateField.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/esDecorators-classDeclaration-missingEmitHelpers-staticPrivateGetter.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/esDecorators-classDeclaration-missingEmitHelpers-staticPrivateMethod.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/esDecorators-classDeclaration-missingEmitHelpers-staticPrivateSetter.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/esDecorators-classDeclaration-multipleDecorators.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/esDecorators-classDeclaration-outerThisReference.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/esDecorators-classDeclaration-parameterProperties.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/esDecorators-classDeclaration-setFunctionName.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/esDecorators-classDeclaration-simpleTransformation.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/esDecorators-classDeclaration-sourceMap.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/fields/esDecorators-classDeclaration-fields-nonStatic.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/fields/esDecorators-classDeclaration-fields-nonStaticAbstract.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/fields/esDecorators-classDeclaration-fields-nonStaticAbstractAccessor.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/fields/esDecorators-classDeclaration-fields-nonStaticAccessor.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/fields/esDecorators-classDeclaration-fields-nonStaticAmbient.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/fields/esDecorators-classDeclaration-fields-nonStaticPrivate.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/fields/esDecorators-classDeclaration-fields-nonStaticPrivateAccessor.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/fields/esDecorators-classDeclaration-fields-static.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/fields/esDecorators-classDeclaration-fields-staticAccessor.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/fields/esDecorators-classDeclaration-fields-staticAmbient.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/fields/esDecorators-classDeclaration-fields-staticPrivate.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/fields/esDecorators-classDeclaration-fields-staticPrivateAccessor.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/methods/esDecorators-classDeclaration-methods-nonStatic.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/methods/esDecorators-classDeclaration-methods-nonStaticPrivate.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/methods/esDecorators-classDeclaration-methods-static.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/methods/esDecorators-classDeclaration-methods-staticPrivate.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/classSuper/esDecorators-classExpression-classSuper.1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/classSuper/esDecorators-classExpression-classSuper.2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/classSuper/esDecorators-classExpression-classSuper.3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/classSuper/esDecorators-classExpression-classSuper.4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/classSuper/esDecorators-classExpression-classSuper.5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/classSuper/esDecorators-classExpression-classSuper.6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/esDecorators-classExpression-commentPreservation.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/esDecorators-classExpression-missingEmitHelpers-classDecorator.1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/esDecorators-classExpression-missingEmitHelpers-classDecorator.10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/esDecorators-classExpression-missingEmitHelpers-classDecorator.11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/esDecorators-classExpression-missingEmitHelpers-classDecorator.12.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/esDecorators-classExpression-missingEmitHelpers-classDecorator.13.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/esDecorators-classExpression-missingEmitHelpers-classDecorator.14.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/esDecorators-classExpression-missingEmitHelpers-classDecorator.15.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/esDecorators-classExpression-missingEmitHelpers-classDecorator.16.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/esDecorators-classExpression-missingEmitHelpers-classDecorator.17.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/esDecorators-classExpression-missingEmitHelpers-classDecorator.2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/esDecorators-classExpression-missingEmitHelpers-classDecorator.3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/esDecorators-classExpression-missingEmitHelpers-classDecorator.4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/esDecorators-classExpression-missingEmitHelpers-classDecorator.5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/esDecorators-classExpression-missingEmitHelpers-classDecorator.6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/esDecorators-classExpression-missingEmitHelpers-classDecorator.7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/esDecorators-classExpression-missingEmitHelpers-classDecorator.8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/esDecorators-classExpression-missingEmitHelpers-classDecorator.9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/namedEvaluation/esDecorators-classExpression-namedEvaluation.1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/namedEvaluation/esDecorators-classExpression-namedEvaluation.10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/namedEvaluation/esDecorators-classExpression-namedEvaluation.11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/namedEvaluation/esDecorators-classExpression-namedEvaluation.2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/namedEvaluation/esDecorators-classExpression-namedEvaluation.3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/namedEvaluation/esDecorators-classExpression-namedEvaluation.4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/namedEvaluation/esDecorators-classExpression-namedEvaluation.5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/namedEvaluation/esDecorators-classExpression-namedEvaluation.6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/namedEvaluation/esDecorators-classExpression-namedEvaluation.7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/namedEvaluation/esDecorators-classExpression-namedEvaluation.8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/namedEvaluation/esDecorators-classExpression-namedEvaluation.9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/esDecorators-arguments.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/esDecorators-contextualTypes.2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/esDecorators-contextualTypes.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/esDecorators/esDecorators-decoratorExpression.1.ts +Expected a semicolon or an implicit semicolon after a statement, but found none +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/esDecorators-decoratorExpression.2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/esDecorators-emitDecoratorMetadata.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/esDecorators-preservesThis.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/esDecorators-privateFieldAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/metadata/esDecoratorsMetadata1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/metadata/esDecoratorsMetadata2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/metadata/esDecoratorsMetadata3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/metadata/esDecoratorsMetadata4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/metadata/esDecoratorsMetadata5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/esnext/logicalAssignment/logicalAssignment11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/arrayLiterals/arrayLiteralInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/arrayLiterals/arrayLiterals.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/arrayLiterals/arrayLiterals2ES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/arrayLiterals/arrayLiterals2ES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/arrayLiterals/arrayLiterals3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/asOperator/asOpEmitParens.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/asOperator/asOperator1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/asOperator/asOperator2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/asOperator/asOperator3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/asOperator/asOperator4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/asOperator/asOperatorASI.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/asOperator/asOperatorAmbiguity.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/asOperator/asOperatorContextualType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/asOperator/asOperatorNames.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/assignmentOperator/assignmentGenericLookupTypeNarrowing.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/assignmentOperator/assignmentLHSIsReference.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/assignmentOperator/assignmentTypeNarrowing.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/assignmentOperator/compoundAdditionAssignmentLHSCanBeAssigned.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/assignmentOperator/compoundAdditionAssignmentLHSCannotBeAssigned.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/assignmentOperator/compoundAdditionAssignmentWithInvalidOperands.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/assignmentOperator/compoundArithmeticAssignmentLHSCanBeAssigned.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/assignmentOperator/compoundArithmeticAssignmentWithInvalidOperands.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/assignmentOperator/compoundAssignmentLHSIsReference.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/additionOperator/additionOperatorWithAnyAndEveryType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/additionOperator/additionOperatorWithConstrainedTypeParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/additionOperator/additionOperatorWithInvalidOperands.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/additionOperator/additionOperatorWithNullValueAndInvalidOperator.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/additionOperator/additionOperatorWithNullValueAndValidOperator.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/additionOperator/additionOperatorWithNumberAndEnum.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/additionOperator/additionOperatorWithOnlyNullValueOrUndefinedValue.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/additionOperator/additionOperatorWithStringAndEveryType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/additionOperator/additionOperatorWithTypeParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/additionOperator/additionOperatorWithUndefinedValueAndInvalidOperands.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/additionOperator/additionOperatorWithUndefinedValueAndValidOperator.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/arithmeticOperator/arithmeticOperatorWithAnyAndNumber.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/arithmeticOperator/arithmeticOperatorWithEnum.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/arithmeticOperator/arithmeticOperatorWithEnumUnion.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/arithmeticOperator/arithmeticOperatorWithInvalidOperands.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/arithmeticOperator/arithmeticOperatorWithNullValueAndInvalidOperands.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/arithmeticOperator/arithmeticOperatorWithNullValueAndValidOperands.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/arithmeticOperator/arithmeticOperatorWithOnlyNullValueOrUndefinedValue.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/arithmeticOperator/arithmeticOperatorWithTypeParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/arithmeticOperator/arithmeticOperatorWithUndefinedValueAndInvalidOperands.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/arithmeticOperator/arithmeticOperatorWithUndefinedValueAndValidOperands.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithIdenticalObjects.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithIdenticalPrimitiveType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithIdenticalTypeParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithIntersectionType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithNoRelationshipObjectsOnCallSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithNoRelationshipObjectsOnConstructorSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithNoRelationshipObjectsOnIndexSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithNoRelationshipObjectsOnInstantiatedCallSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithNoRelationshipObjectsOnInstantiatedConstructorSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithNoRelationshipObjectsOnOptionalProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithNoRelationshipObjectsOnProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithNoRelationshipPrimitiveType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithNoRelationshipTypeParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithNumberOperand.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithNumericLiteral.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithOneOperandIsAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithOneOperandIsNull.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithOneOperandIsUndefined.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithSubtypeEnumAndNumber.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithSubtypeObjectOnCallSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithSubtypeObjectOnConstructorSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithSubtypeObjectOnIndexSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithSubtypeObjectOnInstantiatedCallSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithSubtypeObjectOnInstantiatedConstructorSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithSubtypeObjectOnOptionalProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithSubtypeObjectOnProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithTwoOperandsAreAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithTypeParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/inOperator/inOperatorWithInvalidOperands.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/inOperator/inOperatorWithValidOperands.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/instanceofOperator/instanceofOperatorWithAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/instanceofOperator/instanceofOperatorWithInvalidOperands.es2015.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/instanceofOperator/instanceofOperatorWithInvalidOperands.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/instanceofOperator/instanceofOperatorWithInvalidStaticToString.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/instanceofOperator/instanceofOperatorWithLHSIsObject.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/instanceofOperator/instanceofOperatorWithLHSIsTypeParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/instanceofOperator/instanceofOperatorWithRHSHasSymbolHasInstance.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/instanceofOperator/instanceofOperatorWithRHSIsSubtypeOfFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/logicalAndOperator/logicalAndOperatorStrictMode.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/logicalAndOperator/logicalAndOperatorWithEveryType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/logicalAndOperator/logicalAndOperatorWithTypeParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/logicalOrOperator/logicalOrExpressionIsContextuallyTyped.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/logicalOrOperator/logicalOrExpressionIsNotContextuallyTyped.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/logicalOrOperator/logicalOrOperatorWithEveryType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/logicalOrOperator/logicalOrOperatorWithTypeParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/commaOperator/commaOperatorInvalidAssignmentType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/commaOperator/commaOperatorOtherInvalidOperation.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/commaOperator/commaOperatorOtherValidOperation.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/commaOperator/commaOperatorWithSecondOperandAnyType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/commaOperator/commaOperatorWithSecondOperandBooleanType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/commaOperator/commaOperatorWithSecondOperandNumberType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/commaOperator/commaOperatorWithSecondOperandObjectType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/commaOperator/commaOperatorWithSecondOperandStringType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/commaOperator/commaOperatorsMultipleOperators.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/conditonalOperator/conditionalOperatorConditionIsBooleanType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/conditonalOperator/conditionalOperatorConditionIsNumberType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/conditonalOperator/conditionalOperatorConditionIsObjectType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/conditonalOperator/conditionalOperatorConditoinIsAnyType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/conditonalOperator/conditionalOperatorConditoinIsStringType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/conditonalOperator/conditionalOperatorWithIdenticalBCT.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/conditonalOperator/conditionalOperatorWithoutIdenticalBCT.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/contextualTyping/argumentExpressionContextualTyping.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/contextualTyping/arrayLiteralExpressionContextualTyping.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/contextualTyping/functionExpressionContextualTyping1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/contextualTyping/functionExpressionContextualTyping2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/contextualTyping/functionExpressionContextualTyping3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/contextualTyping/generatedContextualTyping.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/contextualTyping/getSetAccessorContextualTyping.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/contextualTyping/iterableContextualTyping1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/contextualTyping/objectLiteralContextualTyping.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/contextualTyping/parenthesizedContexualTyping1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/contextualTyping/parenthesizedContexualTyping2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/contextualTyping/parenthesizedContexualTyping3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/contextualTyping/superCallParameterContextualTyping1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/contextualTyping/superCallParameterContextualTyping2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/contextualTyping/superCallParameterContextualTyping3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/contextualTyping/taggedTemplateContextualTyping1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/contextualTyping/taggedTemplateContextualTyping2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/elementAccess/letIdentifierInElementAccess01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/elementAccess/stringEnumInElementAccess01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/functionCalls/callOverload.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/functionCalls/callWithMissingVoid.ts +tasks/coverage/typescript/tests/cases/conformance/expressions/functionCalls/callWithMissingVoidUndefinedUnknownAnyInJs.ts +Unexpected estree file content error: 2 != 3 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/functionCalls/callWithSpread.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/functionCalls/callWithSpread2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/functionCalls/callWithSpread3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/functionCalls/callWithSpread4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/functionCalls/callWithSpread5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/functionCalls/callWithSpreadES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/functionCalls/forgottenNew.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/functionCalls/functionCalls.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/functionCalls/grammarAmbiguities.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/functionCalls/newWithSpread.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/functionCalls/newWithSpreadES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/functionCalls/newWithSpreadES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/functionCalls/overloadResolution.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/functionCalls/overloadResolutionClassConstructors.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/functionCalls/overloadResolutionConstructors.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/functionCalls/typeArgumentInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/functionCalls/typeArgumentInferenceConstructSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/functionCalls/typeArgumentInferenceErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/functionCalls/typeArgumentInferenceTransitiveConstraints.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/functionCalls/typeArgumentInferenceWithConstraints.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/functionCalls/typeArgumentInferenceWithObjectLiteral.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/functions/arrowFunctionContexts.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/functions/arrowFunctionExpressions.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/functions/contextuallyTypedFunctionExpressionsAndReturnAnnotations.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/functions/contextuallyTypedIife.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/functions/contextuallyTypedIifeStrict.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/functions/typeOfThisInFunctionExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/functions/voidParamAssignmentCompatibility.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/identifiers/scopeResolutionIdentifiers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/newOperator/newOperatorConformance.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/newOperator/newOperatorErrorCases_noImplicitAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/nullishCoalescingOperator/nullishCoalescingOperator1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/nullishCoalescingOperator/nullishCoalescingOperator10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/nullishCoalescingOperator/nullishCoalescingOperator11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/nullishCoalescingOperator/nullishCoalescingOperator12.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/nullishCoalescingOperator/nullishCoalescingOperator2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/nullishCoalescingOperator/nullishCoalescingOperator3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/nullishCoalescingOperator/nullishCoalescingOperator4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/nullishCoalescingOperator/nullishCoalescingOperator5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/nullishCoalescingOperator/nullishCoalescingOperator6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/nullishCoalescingOperator/nullishCoalescingOperator7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/nullishCoalescingOperator/nullishCoalescingOperator8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/nullishCoalescingOperator/nullishCoalescingOperator9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/nullishCoalescingOperator/nullishCoalescingOperatorInAsyncGenerator.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/nullishCoalescingOperator/nullishCoalescingOperatorInParameterBindingPattern.2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/nullishCoalescingOperator/nullishCoalescingOperatorInParameterBindingPattern.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/nullishCoalescingOperator/nullishCoalescingOperatorInParameterInitializer.2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/nullishCoalescingOperator/nullishCoalescingOperatorInParameterInitializer.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/nullishCoalescingOperator/nullishCoalescingOperator_es2020.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/nullishCoalescingOperator/nullishCoalescingOperator_not_strict.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/expressions/objectLiterals/objectLiteralErrors.ts +Unexpected token +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/objectLiterals/objectLiteralGettersAndSetters.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/objectLiterals/objectLiteralNormalization.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/optionalChaining/callChain/callChain.2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/optionalChaining/callChain/callChain.3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/optionalChaining/callChain/callChain.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/optionalChaining/callChain/callChainInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/optionalChaining/callChain/callChainWithSuper.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/optionalChaining/callChain/parentheses.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/optionalChaining/callChain/superMethodCall.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/optionalChaining/callChain/thisMethodCall.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/optionalChaining/delete/deleteChain.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/optionalChaining/elementAccessChain/elementAccessChain.2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/optionalChaining/elementAccessChain/elementAccessChain.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/optionalChaining/optionalChainingInArrow.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/optionalChaining/optionalChainingInLoop.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/optionalChaining/optionalChainingInParameterBindingPattern.2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/optionalChaining/optionalChainingInParameterBindingPattern.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/optionalChaining/optionalChainingInParameterInitializer.2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/optionalChaining/optionalChainingInParameterInitializer.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/optionalChaining/optionalChainingInTypeAssertions.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/optionalChaining/optionalChainingInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/optionalChaining/propertyAccessChain/propertyAccessChain.2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/optionalChaining/propertyAccessChain/propertyAccessChain.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/expressions/optionalChaining/taggedTemplateChain/taggedTemplateChain.ts +Tagged template expressions are not permitted in an optional chain +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/propertyAccess/propertyAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/propertyAccess/propertyAccessStringIndexSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/propertyAccess/propertyAccessStringIndexSignatureNoImplicitAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/propertyAccess/propertyAccessWidening.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/superCalls/superCalls.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/superPropertyAccess/errorSuperPropertyAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/superPropertyAccess/superPropertyAccessNoError.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/superPropertyAccess/superSymbolIndexedAccess1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/superPropertyAccess/superSymbolIndexedAccess2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/superPropertyAccess/superSymbolIndexedAccess3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/superPropertyAccess/superSymbolIndexedAccess4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/superPropertyAccess/superSymbolIndexedAccess5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/superPropertyAccess/superSymbolIndexedAccess6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/thisKeyword/thisInInvalidContexts.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/thisKeyword/thisInInvalidContextsExternalModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/thisKeyword/thisInObjectLiterals.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/thisKeyword/typeOfThisGeneral.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/thisKeyword/typeOfThisInConstructorParamList.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeAssertions/constAssertionOnEnum.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeAssertions/constAssertions.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeAssertions/duplicatePropertiesInTypeAssertions01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeAssertions/duplicatePropertiesInTypeAssertions02.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/TypeGuardWithArrayUnion.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/TypeGuardWithEnumUnion.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/nullOrUndefinedTypeGuardIsOrderIndependent.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardEnums.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardFunctionGenerics.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardFunctionOfFormThis.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardFunctionOfFormThisErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardInClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardIntersectionTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardNarrowsPrimitiveIntersection.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardNarrowsToLiteralType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardNarrowsToLiteralTypeUnion.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardNesting.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardOfFormExpr1AndExpr2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardOfFormExpr1OrExpr2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardOfFormFunctionEquality.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardOfFormInstanceOf.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardOfFormInstanceOfOnInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardOfFormIsType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardOfFormIsTypeOnInterfaces.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardOfFormNotExpr.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardOfFormThisMember.ts +Expected a semicolon or an implicit semicolon after a statement, but found none +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardOfFormThisMemberErrors.ts +Expected a semicolon or an implicit semicolon after a statement, but found none +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardOfFormTypeOfBoolean.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardOfFormTypeOfEqualEqualHasNoEffect.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardOfFormTypeOfFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardOfFormTypeOfIsOrderIndependent.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardOfFormTypeOfNotEqualHasNoEffect.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardOfFormTypeOfNumber.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardOfFormTypeOfOther.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardOfFormTypeOfPrimitiveSubtype.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardOfFormTypeOfString.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardOfFromPropNameInUnionType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardRedundancy.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardTautologicalConsistiency.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardTypeOfUndefined.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardsDefeat.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardsInClassAccessors.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardsInClassMethods.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardsInConditionalExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardsInDoStatement.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardsInExternalModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardsInForStatement.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardsInFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardsInFunctionAndModuleBlock.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardsInGlobal.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardsInIfStatement.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardsInModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardsInProperties.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardsInRightOperandOfAndAndOperator.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardsInRightOperandOfOrOrOperator.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardsInWhileStatement.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardsObjectMethods.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardsOnClassProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardsWithAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardsWithInstanceOf.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardsWithInstanceOfByConstructorSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardsWithInstanceOfBySymbolHasInstance.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typePredicateASI.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typePredicateOnVariableDeclaration01.ts +Expected a semicolon or an implicit semicolon after a statement, but found none +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeSatisfaction/typeSatisfaction.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeSatisfaction/typeSatisfactionWithDefaultExport.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeSatisfaction/typeSatisfaction_asConstArrays.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeSatisfaction/typeSatisfaction_contextualTyping1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeSatisfaction/typeSatisfaction_contextualTyping2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeSatisfaction/typeSatisfaction_contextualTyping3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeSatisfaction/typeSatisfaction_ensureInterfaceImpl.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeSatisfaction/typeSatisfaction_errorLocations1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeSatisfaction/typeSatisfaction_optionalMemberConformance.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeSatisfaction/typeSatisfaction_propNameConstraining.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeSatisfaction/typeSatisfaction_propertyNameFulfillment.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeSatisfaction/typeSatisfaction_propertyValueConformance1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeSatisfaction/typeSatisfaction_propertyValueConformance2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeSatisfaction/typeSatisfaction_propertyValueConformance3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeSatisfaction/typeSatisfaction_vacuousIntersectionOfContextualTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/bitwiseNotOperator/bitwiseNotOperatorWithAnyOtherType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/bitwiseNotOperator/bitwiseNotOperatorWithBooleanType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/bitwiseNotOperator/bitwiseNotOperatorWithEnumType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/bitwiseNotOperator/bitwiseNotOperatorWithNumberType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/bitwiseNotOperator/bitwiseNotOperatorWithStringType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/decrementOperator/decrementOperatorWithAnyOtherType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/decrementOperator/decrementOperatorWithEnumType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/decrementOperator/decrementOperatorWithNumberType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/deleteOperator/deleteOperatorWithAnyOtherType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/deleteOperator/deleteOperatorWithBooleanType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/deleteOperator/deleteOperatorWithEnumType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/deleteOperator/deleteOperatorWithNumberType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/deleteOperator/deleteOperatorWithStringType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/incrementOperator/incrementOperatorWithAnyOtherType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/incrementOperator/incrementOperatorWithEnumType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/incrementOperator/incrementOperatorWithNumberType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/logicalNotOperator/logicalNotOperatorWithAnyOtherType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/logicalNotOperator/logicalNotOperatorWithBooleanType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/logicalNotOperator/logicalNotOperatorWithEnumType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/logicalNotOperator/logicalNotOperatorWithNumberType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/logicalNotOperator/logicalNotOperatorWithStringType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/negateOperator/negateOperatorWithAnyOtherType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/negateOperator/negateOperatorWithBooleanType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/negateOperator/negateOperatorWithEnumType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/negateOperator/negateOperatorWithNumberType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/negateOperator/negateOperatorWithStringType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/plusOperator/plusOperatorWithAnyOtherType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/plusOperator/plusOperatorWithBooleanType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/plusOperator/plusOperatorWithEnumType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/plusOperator/plusOperatorWithNumberType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/plusOperator/plusOperatorWithStringType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/typeofOperator/typeofOperatorWithAnyOtherType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/typeofOperator/typeofOperatorWithBooleanType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/typeofOperator/typeofOperatorWithEnumType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/typeofOperator/typeofOperatorWithNumberType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/typeofOperator/typeofOperatorWithStringType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/voidOperator/voidOperatorWithAnyOtherType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/voidOperator/voidOperatorWithBooleanType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/voidOperator/voidOperatorWithEnumType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/voidOperator/voidOperatorWithNumberType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/voidOperator/voidOperatorWithStringType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/valuesAndReferences/assignmentToParenthesizedIdentifiers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/valuesAndReferences/assignments.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/amdImportAsPrimaryExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/amdImportNotAsPrimaryExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/asiPreventsParsingAsAmbientExternalModule01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/asiPreventsParsingAsAmbientExternalModule02.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/circularReference.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/commonJSImportAsPrimaryExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/commonJSImportNotAsPrimaryExpression.ts +tasks/coverage/typescript/tests/cases/conformance/externalModules/commonJsImportBindingElementNarrowType.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/duplicateExportAssignments.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/es6/es6modulekind.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/es6/es6modulekindExportClassNameWithObject.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/es6/es6modulekindWithES2015Target.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/es6/es6modulekindWithES5Target.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/es6/es6modulekindWithES5Target10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/es6/es6modulekindWithES5Target11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/es6/es6modulekindWithES5Target12.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/es6/es6modulekindWithES5Target2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/es6/es6modulekindWithES5Target3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/es6/es6modulekindWithES5Target4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/es6/es6modulekindWithES5Target5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/es6/es6modulekindWithES5Target6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/es6/es6modulekindWithES5Target7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/es6/es6modulekindWithES5Target8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/es6/es6modulekindWithES5Target9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/esnext/esnextmodulekind.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/esnext/esnextmodulekindWithES2015Target.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/esnext/esnextmodulekindWithES5Target.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/esnext/esnextmodulekindWithES5Target10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/esnext/esnextmodulekindWithES5Target11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/esnext/esnextmodulekindWithES5Target12.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/esnext/esnextmodulekindWithES5Target2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/esnext/esnextmodulekindWithES5Target3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/esnext/esnextmodulekindWithES5Target4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/esnext/esnextmodulekindWithES5Target5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/esnext/esnextmodulekindWithES5Target6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/esnext/esnextmodulekindWithES5Target7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/esnext/esnextmodulekindWithES5Target8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/esnext/esnextmodulekindWithES5Target9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/esnext/exnextmodulekindExportClassNameWithObject.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/exportAmbientClassNameWithObject.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/exportAssignDottedName.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/exportAssignImportedIdentifier.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/exportAssignTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/exportAssignmentAndDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/exportAssignmentCircularModules.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/exportAssignmentConstrainedGenericType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/exportAssignmentGenericType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/exportAssignmentMergedInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/exportAssignmentMergedModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/exportAssignmentOfExportNamespaceWithDefault.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/exportAssignmentTopLevelClodule.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/exportAssignmentTopLevelEnumdule.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/exportAssignmentTopLevelFundule.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/exportAssignmentTopLevelIdentifier.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/exportClassNameWithObjectAMD.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/exportClassNameWithObjectCommonJS.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/exportClassNameWithObjectSystem.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/exportClassNameWithObjectUMD.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/exportDeclaredModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/exportDefaultClassNameWithObject.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/externalModules/exportNonInitializedVariablesInIfThenStatementNoCrash1.ts +Missing initializer in const declaration +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/exportNonLocalDeclarations.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/exportNonVisibleType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/exportTypeMergedWithExportStarAsNamespace.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/globalAugmentationModuleResolution.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/importImportOnlyModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/importNonExternalModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/importTsBeforeDTs.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/importsImplicitlyReadonly.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/moduleResolutionWithExtensions.ts +tasks/coverage/typescript/tests/cases/conformance/externalModules/moduleResolutionWithoutExtension3.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/externalModules/moduleResolutionWithoutExtension4.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/moduleScoping.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/multipleExportDefault1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/multipleExportDefault2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/multipleExportDefault3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/multipleExportDefault4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/multipleExportDefault5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/multipleExportDefault6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/nameDelimitedBySlashes.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/nameWithFileExtension.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/nameWithRelativePaths.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/reexportClassDefinition.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/relativePathMustResolve.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/relativePathToDeclarationFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/rewriteRelativeImportExtensions/cjsErrors.ts +tasks/coverage/typescript/tests/cases/conformance/externalModules/rewriteRelativeImportExtensions/emit.ts +Unexpected estree file content error: 4 != 5 + +tasks/coverage/typescript/tests/cases/conformance/externalModules/rewriteRelativeImportExtensions/emitModuleCommonJS.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/rewriteRelativeImportExtensions/nodeModulesTsFiles.ts +tasks/coverage/typescript/tests/cases/conformance/externalModules/rewriteRelativeImportExtensions/nonTSExtensions.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/rewriteRelativeImportExtensions/packageJsonImportsErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/topLevelAmbientModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/topLevelAwait.1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/topLevelAwait.2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/topLevelAwait.3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/topLevelAwaitErrors.10.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/externalModules/topLevelAwaitErrors.11.ts +Cannot use `await` as an identifier in an async context +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/topLevelAwaitErrors.12.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/topLevelAwaitErrors.2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/topLevelAwaitErrors.3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/topLevelAwaitErrors.4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/topLevelAwaitErrors.5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/topLevelAwaitErrors.6.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/externalModules/topLevelAwaitErrors.7.ts +Cannot use `await` as an identifier in an async context +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/externalModules/topLevelAwaitErrors.8.ts +Cannot use `await` as an identifier in an async context +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/topLevelAwaitErrors.9.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/externalModules/topLevelAwaitNonModule.ts +`await` is only allowed within async functions and at the top levels of modules +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/topLevelFileModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/topLevelFileModuleMissing.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/topLevelModuleDeclarationAndFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeAndNamespaceExportMerge.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/allowsImportingTsExtension.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/ambient.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/chained.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/chained2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/circular1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/circular2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/circular3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/circular4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/cjsImportInES2015.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/computedPropertyName.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/enums.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/exportDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/exportDeclaration_moduleSpecifier-isolatedModules.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/exportDeclaration_moduleSpecifier.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/exportDeclaration_value.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/exportDefault.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/exportNamespace1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/exportNamespace10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/exportNamespace11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/exportNamespace12.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/exportNamespace2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/exportNamespace3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/exportNamespace4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/exportNamespace5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/exportNamespace6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/exportNamespace7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/exportNamespace8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/exportNamespace9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/exportSpecifiers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/extendsClause.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/filterNamespace_import.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/generic.ts +tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/grammarErrors.ts +Unexpected estree file content error: 3 != 4 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/implementsClause.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/importClause_default.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/importClause_namedImports.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/importClause_namespaceImport.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/importDefaultNamedType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/importDefaultNamedType2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/importDefaultNamedType3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/importEquals1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/importEquals2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/importEquals3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/importEqualsDeclaration.ts +tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/importSpecifiers_js.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/importsNotUsedAsValues_error.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/mergedWithLocalValue.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/namespaceImportTypeQuery.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/namespaceImportTypeQuery2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/namespaceImportTypeQuery3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/namespaceImportTypeQuery4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/namespaceMemberAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/nestedNamespace.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/preserveValueImports.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/preserveValueImports_errors.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/preserveValueImports_importsNotUsedAsValues.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/preserveValueImports_mixedImports.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/preserveValueImports_module.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/renamed.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/typeQuery.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnlyMerge1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnlyMerge2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnlyMerge3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeValueMerge1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typesOnlyExternalModuleStillHasInstance.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/umd-augmentation-1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/umd-augmentation-2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/umd-augmentation-3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/umd-augmentation-4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/umd1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/umd2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/umd3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/umd4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/umd5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/umd6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/umd7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/umd8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/umd9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/valuesMergingAcrossModules.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/verbatimModuleSyntaxAmbientConstEnum.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/verbatimModuleSyntaxCompat.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/verbatimModuleSyntaxConstEnum.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/verbatimModuleSyntaxConstEnumUsage.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/verbatimModuleSyntaxDeclarationFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/verbatimModuleSyntaxInternalImportEquals.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/verbatimModuleSyntaxNoElisionCJS.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/verbatimModuleSyntaxNoElisionESM.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/verbatimModuleSyntaxRestrictionsCJS.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/verbatimModuleSyntaxRestrictionsESM.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/fixSignatureCaching.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/functions/functionImplementationErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/functions/functionImplementations.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/functions/functionNameConflicts.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/functions/functionOverloadCompatibilityWithVoid01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/functions/functionOverloadCompatibilityWithVoid02.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/functions/functionOverloadCompatibilityWithVoid03.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/functions/functionOverloadErrors.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/functions/functionOverloadErrorsSyntax.ts +A rest parameter must be last in a parameter list +Mismatch: tasks/coverage/typescript/tests/cases/conformance/functions/functionParameterObjectRestAndInitializers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/functions/functionWithUseStrictAndSimpleParameterList_es2016.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/functions/parameterInitializersBackwardReferencing.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/functions/parameterInitializersForwardReferencing.2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/functions/parameterInitializersForwardReferencing.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/functions/parameterInitializersForwardReferencing1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/functions/parameterInitializersForwardReferencing1_es6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/functions/strictBindCallApply1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/functions/strictBindCallApply2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/generators/generatorAssignability.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/generators/generatorExplicitReturnType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/generators/generatorImplicitAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/generators/generatorReturnContextualType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/generators/generatorReturnTypeFallback.1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/generators/generatorReturnTypeFallback.2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/generators/generatorReturnTypeFallback.3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/generators/generatorReturnTypeFallback.4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/generators/generatorReturnTypeFallback.5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/generators/generatorReturnTypeIndirectReferenceToGlobalType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/generators/generatorReturnTypeInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/generators/generatorReturnTypeInferenceNonStrict.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/generators/generatorYieldContextualType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/generators/restParameterInDownlevelGenerator.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/generators/yieldStatementNoAsiAfterTransform.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/importAssertion/importAssertion2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/importAssertion/importAssertion3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/importAttributes/importAttributes2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/importAttributes/importAttributes3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/importAttributes/importAttributes7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/importAttributes/importAttributes8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/importAttributes/importAttributes9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/inferFromBindingPattern.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/genericAndNonGenericInterfaceWithTheSameName.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/genericAndNonGenericInterfaceWithTheSameName2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/mergeThreeInterfaces.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/mergeThreeInterfaces2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/mergeTwoInterfaces.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/mergeTwoInterfaces2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/mergedInheritedMembersSatisfyAbstractBase.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/mergedInterfacesWithConflictingPropertyNames.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/mergedInterfacesWithConflictingPropertyNames2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/mergedInterfacesWithIndexers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/mergedInterfacesWithIndexers2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/mergedInterfacesWithInheritedPrivates.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/mergedInterfacesWithInheritedPrivates2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/mergedInterfacesWithInheritedPrivates3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/mergedInterfacesWithMultipleBases.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/mergedInterfacesWithMultipleBases2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/mergedInterfacesWithMultipleBases3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/mergedInterfacesWithMultipleBases4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/twoGenericInterfacesDifferingByTypeParameterName.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/twoGenericInterfacesDifferingByTypeParameterName2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/twoGenericInterfacesWithDifferentConstraints.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/twoGenericInterfacesWithTheSameNameButDifferentArity.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/twoInterfacesDifferentRootModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/twoInterfacesDifferentRootModule2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/twoMergedInterfacesWithDifferingOverloads.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/twoMergedInterfacesWithDifferingOverloads2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/asiPreventsParsingAsInterface01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/asiPreventsParsingAsInterface02.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/asiPreventsParsingAsInterface03.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/asiPreventsParsingAsInterface04.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/asiPreventsParsingAsInterface05.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/derivedInterfaceDoesNotHideBaseSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/derivedInterfaceIncompatibleWithBaseIndexer.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceExtendingOptionalChain.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceExtendsObjectIntersection.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceExtendsObjectIntersectionErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceThatHidesBaseProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceThatHidesBaseProperty2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceThatIndirectlyInheritsFromItself.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceWithCallAndConstructSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceWithCallSignaturesThatHidesBaseSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceWithCallSignaturesThatHidesBaseSignature2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceWithConstructSignaturesThatHidesBaseSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceWithConstructSignaturesThatHidesBaseSignature2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceWithMultipleBaseTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceWithMultipleBaseTypes2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceWithOverloadedCallAndConstructSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceWithPropertyOfEveryType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceWithPropertyThatIsPrivateInBaseType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceWithPropertyThatIsPrivateInBaseType2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceWithSpecializedCallAndConstructSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceWithStringIndexerHidingBaseTypeIndexer.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceWithStringIndexerHidingBaseTypeIndexer2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceWithStringIndexerHidingBaseTypeIndexer3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/interfacesExtendingClasses/implementingAnInterfaceExtendingClassWithPrivates.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/interfacesExtendingClasses/implementingAnInterfaceExtendingClassWithPrivates2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/interfacesExtendingClasses/implementingAnInterfaceExtendingClassWithProtecteds.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/interfacesExtendingClasses/interfaceExtendingClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/interfacesExtendingClasses/interfaceExtendingClassWithPrivates.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/interfacesExtendingClasses/interfaceExtendingClassWithPrivates2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/interfacesExtendingClasses/interfaceExtendingClassWithProtecteds.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/interfacesExtendingClasses/interfaceExtendingClassWithProtecteds2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMerging/AmbientModuleAndAmbientFunctionWithTheSameNameAndCommonRoot.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMerging/AmbientModuleAndAmbientWithSameNameAndCommonRoot.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMerging/AmbientModuleAndNonAmbientClassWithSameNameAndCommonRoot.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMerging/AmbientModuleAndNonAmbientFunctionWithTheSameNameAndCommonRoot.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMerging/ClassAndModuleThatMergeWithModuleMemberThatUsesClassTypeParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMerging/ClassAndModuleThatMergeWithModulesExportedGenericFunctionAndGenericClassStaticFunctionOfTheSameName.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMerging/ClassAndModuleThatMergeWithModulesExportedGenericFunctionAndNonGenericClassStaticFunctionOfTheSameName.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMerging/ClassAndModuleThatMergeWithModulesExportedStaticFunctionUsingClassPrivateStatics.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMerging/ClassAndModuleThatMergeWithStaticFunctionAndExportedFunctionThatShareAName.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMerging/ClassAndModuleThatMergeWithStaticFunctionAndNonExportedFunctionThatShareAName.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMerging/ClassAndModuleThatMergeWithStaticVariableAndExportedVarThatShareAName.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMerging/ClassAndModuleThatMergeWithStaticVariableAndNonExportedVarThatShareAName.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMerging/ClassAndModuleThatMergeWithStringIndexerAndExportedFunctionWithTypeIncompatibleWithIndexer.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMerging/ClassAndModuleWithSameNameAndCommonRoot.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMerging/ClassAndModuleWithSameNameAndCommonRootES6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMerging/EnumAndModuleWithSameNameAndCommonRoot.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMerging/FunctionAndModuleWithSameNameAndCommonRoot.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMerging/FunctionAndModuleWithSameNameAndDifferentCommonRoot.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMerging/ModuleAndClassWithSameNameAndCommonRoot.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMerging/ModuleAndEnumWithSameNameAndCommonRoot.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMerging/ModuleAndFunctionWithSameNameAndCommonRoot.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMerging/TwoInternalModulesThatMergeEachWithExportedAndNonExportedClassesOfTheSameName.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMerging/TwoInternalModulesThatMergeEachWithExportedAndNonExportedInterfacesOfTheSameName.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMerging/TwoInternalModulesThatMergeEachWithExportedAndNonExportedLocalVarsOfTheSameName.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMerging/TwoInternalModulesThatMergeEachWithExportedClassesOfTheSameName.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMerging/TwoInternalModulesThatMergeEachWithExportedInterfacesOfTheSameName.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMerging/TwoInternalModulesThatMergeEachWithExportedLocalVarsOfTheSameName.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMerging/TwoInternalModulesThatMergeEachWithExportedModulesOfTheSameName.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMerging/TwoInternalModulesWithTheSameNameAndDifferentCommonRoot.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMerging/TwoInternalModulesWithTheSameNameAndSameCommonRoot.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/codeGeneration/exportCodeGen.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/codeGeneration/importStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/codeGeneration/importStatementsInterfaces.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/codeGeneration/nameCollision.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/exportDeclarations/ExportClassWhichExtendsInterfaceWithInaccessibleType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/exportDeclarations/ExportClassWithAccessibleTypesInTypeParameterConstraintsClassHeritageListMemberTypeAnnotations.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/exportDeclarations/ExportClassWithInaccessibleTypeInIndexerTypeAnnotations.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/exportDeclarations/ExportClassWithInaccessibleTypeInTypeParameterConstraint.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/exportDeclarations/ExportFunctionWithAccessibleTypesInParameterAndReturnTypeAnnotation.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/exportDeclarations/ExportFunctionWithInaccessibleTypesInParameterTypeAnnotation.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/exportDeclarations/ExportFunctionWithInaccessibleTypesInReturnTypeAnnotation.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/exportDeclarations/ExportInterfaceWithAccessibleTypesInTypeParameterConstraintsClassHeritageListMemberTypeAnnotations.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/exportDeclarations/ExportInterfaceWithInaccessibleTypeInIndexerTypeAnnotations.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/exportDeclarations/ExportInterfaceWithInaccessibleTypeInTypeParameterConstraint.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/exportDeclarations/ExportModuleWithAccessibleTypesOnItsExportedMembers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/exportDeclarations/ExportObjectLiteralAndObjectTypeLiteralWithAccessibleTypesInMemberTypeAnnotations.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/exportDeclarations/ExportObjectLiteralAndObjectTypeLiteralWithAccessibleTypesInNestedMemberTypeAnnotations.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/exportDeclarations/ExportVariableOfGenericTypeWithInaccessibleTypeAsTypeArgument.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/exportDeclarations/ExportVariableWithAccessibleTypeInTypeAnnotation.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/exportDeclarations/ExportVariableWithInaccessibleTypeInTypeAnnotation.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/exportDeclarations/ModuleWithExportedAndNonExportedClasses.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/exportDeclarations/ModuleWithExportedAndNonExportedEnums.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/exportDeclarations/ModuleWithExportedAndNonExportedFunctions.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/exportDeclarations/ModuleWithExportedAndNonExportedImportAlias.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/exportDeclarations/ModuleWithExportedAndNonExportedVariables.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/importDeclarations/circularImportAlias.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/importDeclarations/exportImportAlias.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/importDeclarations/importAliasIdentifiers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/importDeclarations/invalidImportAliasIdentifiers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/importDeclarations/shadowedInternalModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/moduleBody/moduleWithStatementsOfEveryKind.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/moduleDeclarations/InvalidNonInstantiatedModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/moduleDeclarations/asiPreventsParsingAsNamespace01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/moduleDeclarations/asiPreventsParsingAsNamespace02.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/moduleDeclarations/asiPreventsParsingAsNamespace03.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/moduleDeclarations/asiPreventsParsingAsNamespace04.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/moduleDeclarations/asiPreventsParsingAsNamespace05.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/moduleDeclarations/instantiatedModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/moduleDeclarations/invalidInstantiatedModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/moduleDeclarations/invalidNestedModules.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/moduleDeclarations/nestedModules.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/moduleDeclarations/nonInstantiatedModule.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/moduleDeclarations/reExportAliasMakesInstantiated.ts +tasks/coverage/typescript/tests/cases/conformance/jsdoc/checkExportsObjectAssignProperty.ts +Unexpected estree file content error: 1 != 4 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/checkExportsObjectAssignPrototypeProperty.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/checkJsdocTypeTag4.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/checkObjectDefineProperty.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/declarations/jsDeclarationsClassAccessor.ts +Unexpected estree file content error: 1 != 3 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/declarations/jsDeclarationsClassImplementsGenericsSerialization.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/declarations/jsDeclarationsClassStatic2.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/declarations/jsDeclarationsTypeReassignmentFromDeclaration.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/declarations/jsDeclarationsTypeReassignmentFromDeclaration2.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/declarations/jsDeclarationsTypeReferences.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/declarations/jsDeclarationsTypeReferences2.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/declarations/jsDeclarationsTypeReferences3.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/declarations/jsDeclarationsTypeReferences4.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/importTag1.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/importTag13.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/importTag15.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/importTag16.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/importTag18.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/importTag19.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/importTag2.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/importTag20.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/importTag21.ts +Unexpected estree file content error: 2 != 3 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsdoc/importTag22.ts +tasks/coverage/typescript/tests/cases/conformance/jsdoc/importTag23.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/importTag3.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/importTag4.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/importTag5.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/importTag6.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/importTag7.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/importTag8.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/importTag9.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocAugments_withTypeParameter.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocImplements_interface.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocImplements_interface_multiple.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocImplements_namespacedInterface.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocImplements_signatures.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocImportType.ts +Unexpected estree file content error: 1 != 3 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocImportType2.ts +Unexpected estree file content error: 1 != 3 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocImportTypeReferenceToCommonjsModule.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocImportTypeReferenceToESModule.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocLinkTag1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocLinkTag3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocLinkTag4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocLinkTag5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocLinkTag6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocLinkTag9.ts +tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocParseBackquotedParamName.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocThisType.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocTwoLineTypedef.ts +tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocTypeReferenceToImport.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocTypeTag.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocTypeTagCast.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocVariadicType.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/linkTagEmit1.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/paramTagOnCallExpression.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/paramTagOnFunctionUsingArguments.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsdoc/parseLinkTag.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsdoc/parseThrowsTag.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsdoc/seeTag1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsdoc/seeTag2.ts +tasks/coverage/typescript/tests/cases/conformance/jsdoc/syntaxErrors.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsdoc/thisPrototypeMethodCompoundAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsdoc/tsNoCheckForTypescript.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsdoc/tsNoCheckForTypescriptComments1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsdoc/tsNoCheckForTypescriptComments2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsdoc/typeParameterExtendsUnionConstraintDistributed.ts +tasks/coverage/typescript/tests/cases/conformance/jsdoc/typedefCrossModule.ts +Unexpected estree file content error: 1 != 5 + +tasks/coverage/typescript/tests/cases/conformance/jsdoc/typedefMultipleTypeParameters.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxChildrenCanBeTupleType.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxChildrenProperty1.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxChildrenProperty10.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxChildrenProperty11.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxChildrenProperty12.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxChildrenProperty13.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxChildrenProperty14.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxChildrenProperty15.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxChildrenProperty16.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxChildrenProperty2.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxChildrenProperty3.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxChildrenProperty4.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxChildrenProperty5.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxChildrenProperty6.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxChildrenProperty7.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxChildrenProperty8.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxChildrenProperty9.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxGenericTagHasCorrectInferences.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxIntersectionElementPropsType.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxSubtleSkipContextSensitiveBug.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxUnionSFXContextualTypeInferredCorrectly.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/commentEmittingInPreserveJsx1.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/correctlyMarkAliasAsReferences1.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/correctlyMarkAliasAsReferences2.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/correctlyMarkAliasAsReferences3.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/correctlyMarkAliasAsReferences4.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/inline/inlineJsxAndJsxFragPragma.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/inline/inlineJsxAndJsxFragPragmaOverridesCompilerOptions.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/inline/inlineJsxFactoryDeclarations.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/inline/inlineJsxFactoryDeclarationsLocalTypes.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/inline/inlineJsxFactoryLocalTypeGlobalFallback.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/inline/inlineJsxFactoryOverridesCompilerOption.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/inline/inlineJsxFactoryWithFragmentIsError.tsx +tasks/coverage/typescript/tests/cases/conformance/jsx/jsxCheckJsxNoTypeArgumentsAllowed.tsx +Unexpected estree file content error: 1 != 2 + +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/jsx/jsxParsingError1.tsx +JSX expressions may not use the comma operator +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/jsxParsingError4.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/jsxReactTestSuite.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/jsxSpreadOverwritesAttributeStrict.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/jsxs/jsxJsxsCjsTransformChildren.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/jsxs/jsxJsxsCjsTransformCustomImport.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/jsxs/jsxJsxsCjsTransformCustomImportPragma.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/jsxs/jsxJsxsCjsTransformKeyProp.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/jsxs/jsxJsxsCjsTransformKeyPropCustomImport.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/jsxs/jsxJsxsCjsTransformKeyPropCustomImportPragma.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/jsxs/jsxJsxsCjsTransformNestedSelfClosingChild.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/jsxs/jsxJsxsCjsTransformSubstitutesNames.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/jsxs/jsxJsxsCjsTransformSubstitutesNamesFragment.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxAttributeErrors.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxAttributeResolution.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxAttributeResolution1.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxAttributeResolution10.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxAttributeResolution11.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxAttributeResolution12.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxAttributeResolution13.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxAttributeResolution14.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxAttributeResolution15.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxAttributeResolution16.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxAttributeResolution2.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxAttributeResolution3.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxAttributeResolution4.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxAttributeResolution5.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxAttributeResolution6.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxAttributeResolution7.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxAttributeResolution8.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxAttributeResolution9.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxCorrectlyParseLessThanComparison1.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxDefaultAttributesResolution1.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxDefaultAttributesResolution2.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxDefaultAttributesResolution3.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxDynamicTagName1.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxDynamicTagName2.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxDynamicTagName3.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxDynamicTagName4.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxDynamicTagName5.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxDynamicTagName6.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxDynamicTagName7.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxDynamicTagName8.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxDynamicTagName9.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxElementResolution.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxElementResolution1.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxElementResolution10.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxElementResolution11.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxElementResolution12.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxElementResolution13.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxElementResolution14.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxElementResolution15.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxElementResolution16.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxElementResolution17.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxElementResolution18.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxElementResolution19.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxElementResolution2.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxElementResolution3.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxElementResolution4.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxElementResolution5.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxElementResolution6.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxElementResolution7.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxElementResolution8.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxElementResolution9.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxEmit1.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxEmit2.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxEmit3.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxExternalModuleEmit1.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxExternalModuleEmit2.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxFragmentPreserveEmit.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxFragmentReactEmit.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxGenericAttributesType1.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxGenericAttributesType2.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxGenericAttributesType3.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxGenericAttributesType4.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxGenericAttributesType5.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxGenericAttributesType6.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxGenericAttributesType7.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxGenericAttributesType8.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxGenericAttributesType9.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxInArrowFunction.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxIntrinsicAttributeErrors.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxLibraryManagedAttributes.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxNamespacedAttributeName1.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxNamespacedAttributeName2.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxNamespacedTagName1.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxNamespacedTagName2.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxNoJsx.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxOpeningClosingNames.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxParseTests1.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxParseTests2.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxPreserveEmit1.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxPreserveEmit2.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxPreserveEmit3.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxReactComponentWithDefaultTypeParameter1.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxReactComponentWithDefaultTypeParameter2.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxReactComponentWithDefaultTypeParameter3.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxReactEmit1.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxReactEmit2.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxReactEmit3.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxReactEmit4.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxReactEmit5.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxReactEmit6.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxReactEmit7.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxReactEmit8.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxReactEmitEntities.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxReactEmitNesting.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxReactEmitWhitespace.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxReactEmitWhitespace2.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxSfcReturnNull.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxSfcReturnNullStrictNullChecks.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxSfcReturnUndefinedStrictNullChecks.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxSpreadAttributesResolution1.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxSpreadAttributesResolution10.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxSpreadAttributesResolution11.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxSpreadAttributesResolution12.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxSpreadAttributesResolution13.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxSpreadAttributesResolution14.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxSpreadAttributesResolution15.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxSpreadAttributesResolution16.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxSpreadAttributesResolution17.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxSpreadAttributesResolution2.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxSpreadAttributesResolution3.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxSpreadAttributesResolution4.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxSpreadAttributesResolution5.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxSpreadAttributesResolution6.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxSpreadAttributesResolution7.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxSpreadAttributesResolution8.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxSpreadAttributesResolution9.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxSpreadChildren.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxSpreadChildrenInvalidType.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxSpreadInvalidType.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxStatelessFunctionComponentOverload1.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxStatelessFunctionComponentOverload2.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxStatelessFunctionComponentOverload3.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxStatelessFunctionComponentOverload4.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxStatelessFunctionComponentOverload5.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxStatelessFunctionComponentOverload6.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxStatelessFunctionComponentWithDefaultTypeParameter1.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxStatelessFunctionComponentWithDefaultTypeParameter2.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxStatelessFunctionComponents2.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxStatelessFunctionComponents3.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxStatelessFunctionComponentsWithTypeArguments1.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxStatelessFunctionComponentsWithTypeArguments2.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxStatelessFunctionComponentsWithTypeArguments3.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxStatelessFunctionComponentsWithTypeArguments4.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxStatelessFunctionComponentsWithTypeArguments5.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxTypeArgumentResolution.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxTypeArgumentsJsxPreserveOutput.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxTypeErrors.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxUnionElementType1.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxUnionElementType2.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxUnionElementType3.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxUnionElementType4.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxUnionElementType5.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxUnionElementType6.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxUnionTypeComponent1.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxUnionTypeComponent2.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/moduleResolution/allowImportingTsExtensions.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/moduleResolution/allowImportingTypesDtsExtension.ts +tasks/coverage/typescript/tests/cases/conformance/moduleResolution/bundler/bundlerConditionsExcludesNode.ts +Unexpected estree file content error: 3 != 5 + +tasks/coverage/typescript/tests/cases/conformance/moduleResolution/bundler/bundlerDirectoryModule.ts +Unexpected estree file content error: 2 != 3 + +tasks/coverage/typescript/tests/cases/conformance/moduleResolution/bundler/bundlerImportESM.ts +Unexpected estree file content error: 1 != 3 + +tasks/coverage/typescript/tests/cases/conformance/moduleResolution/bundler/bundlerImportTsExtensions.ts +Unexpected estree file content error: 10 != 11 + +tasks/coverage/typescript/tests/cases/conformance/moduleResolution/bundler/bundlerNodeModules1.ts +Unexpected estree file content error: 2 != 7 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/moduleResolution/bundler/bundlerRelative1.ts +tasks/coverage/typescript/tests/cases/conformance/moduleResolution/bundler/bundlerSyntaxRestrictions.ts +Unexpected estree file content error: 4 != 5 + +tasks/coverage/typescript/tests/cases/conformance/moduleResolution/conditionalExportsResolutionFallback.ts +Unexpected estree file content error: 1 != 3 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/moduleResolution/customConditions.ts +tasks/coverage/typescript/tests/cases/conformance/moduleResolution/declarationNotFoundPackageBundlesTypes.ts +Unexpected estree file content error: 2 != 4 + +tasks/coverage/typescript/tests/cases/conformance/moduleResolution/extensionLoadingPriority.ts +Unexpected estree file content error: 2 != 5 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/moduleResolution/importFromDot.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/moduleResolution/nestedPackageJsonRedirect.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/moduleResolution/node10AlternateResult_noResolution.ts +tasks/coverage/typescript/tests/cases/conformance/moduleResolution/node10Alternateresult_noTypes.ts +Unexpected estree file content error: 2 != 3 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/moduleResolution/node10IsNode_node.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/moduleResolution/node10IsNode_node10.ts +tasks/coverage/typescript/tests/cases/conformance/moduleResolution/nodeModulesAtTypesPriority.ts +Unexpected estree file content error: 4 != 6 + +tasks/coverage/typescript/tests/cases/conformance/moduleResolution/packageJsonMain.ts +Unexpected estree file content error: 1 != 4 + +tasks/coverage/typescript/tests/cases/conformance/moduleResolution/packageJsonMain_isNonRecursive.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/moduleResolution/resolutionModeCache.ts +Unexpected estree file content error: 2 != 3 + +tasks/coverage/typescript/tests/cases/conformance/moduleResolution/resolutionModeImportType1.ts +Unexpected estree file content error: 2 != 4 + +tasks/coverage/typescript/tests/cases/conformance/moduleResolution/resolutionModeTripleSlash1.ts +Unexpected estree file content error: 1 != 3 + +tasks/coverage/typescript/tests/cases/conformance/moduleResolution/resolutionModeTripleSlash2.ts +Unexpected estree file content error: 1 != 3 + +tasks/coverage/typescript/tests/cases/conformance/moduleResolution/resolutionModeTripleSlash3.ts +Unexpected estree file content error: 1 != 3 + +tasks/coverage/typescript/tests/cases/conformance/moduleResolution/resolutionModeTripleSlash4.ts +Unexpected estree file content error: 1 != 3 + +tasks/coverage/typescript/tests/cases/conformance/moduleResolution/resolutionModeTripleSlash5.ts +Unexpected estree file content error: 1 != 3 + +tasks/coverage/typescript/tests/cases/conformance/moduleResolution/resolutionModeTypeOnlyImport1.ts +Unexpected estree file content error: 2 != 4 + +tasks/coverage/typescript/tests/cases/conformance/moduleResolution/resolvesWithoutExportsDiagnostic1.ts +Unexpected estree file content error: 2 != 7 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/moduleResolution/scopedPackages.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/moduleResolution/scopedPackagesClassic.ts +tasks/coverage/typescript/tests/cases/conformance/moduleResolution/selfNameModuleAugmentation.ts +Unexpected estree file content error: 2 != 3 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/moduleResolution/typesVersions.ambientModules.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/moduleResolution/typesVersions.emptyTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/moduleResolution/typesVersions.justIndex.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/moduleResolution/typesVersions.multiFile.ts +tasks/coverage/typescript/tests/cases/conformance/moduleResolution/untypedModuleImport.ts +Unexpected estree file content error: 3 != 4 + +tasks/coverage/typescript/tests/cases/conformance/moduleResolution/untypedModuleImport_allowJs.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/moduleResolution/untypedModuleImport_noImplicitAny.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/moduleResolution/untypedModuleImport_noImplicitAny_relativePath.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/moduleResolution/untypedModuleImport_noImplicitAny_scoped.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/moduleResolution/untypedModuleImport_noImplicitAny_typesForPackageExist.ts +Unexpected estree file content error: 3 != 7 + +tasks/coverage/typescript/tests/cases/conformance/moduleResolution/untypedModuleImport_vsAmbient.ts +Unexpected estree file content error: 2 != 3 + +tasks/coverage/typescript/tests/cases/conformance/moduleResolution/untypedModuleImport_withAugmentation.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/node/allowJs/nodeAllowJsPackageSelfName2.ts +Unexpected estree file content error: 2 != 4 + +tasks/coverage/typescript/tests/cases/conformance/node/allowJs/nodeModulesAllowJsCjsFromJs.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/node/allowJs/nodeModulesAllowJsConditionalPackageExports.ts +Unexpected estree file content error: 1 != 6 + +tasks/coverage/typescript/tests/cases/conformance/node/allowJs/nodeModulesAllowJsDynamicImport.ts +Unexpected estree file content error: 1 != 3 + +tasks/coverage/typescript/tests/cases/conformance/node/allowJs/nodeModulesAllowJsImportAssignment.ts +Unexpected estree file content error: 1 != 4 + +tasks/coverage/typescript/tests/cases/conformance/node/allowJs/nodeModulesAllowJsImportHelpersCollisions1.ts +Unexpected estree file content error: 1 != 3 + +tasks/coverage/typescript/tests/cases/conformance/node/allowJs/nodeModulesAllowJsImportHelpersCollisions2.ts +Unexpected estree file content error: 2 != 3 + +tasks/coverage/typescript/tests/cases/conformance/node/allowJs/nodeModulesAllowJsImportHelpersCollisions3.ts +Unexpected estree file content error: 1 != 3 + +tasks/coverage/typescript/tests/cases/conformance/node/allowJs/nodeModulesAllowJsPackageExports.ts +Unexpected estree file content error: 1 != 6 + +tasks/coverage/typescript/tests/cases/conformance/node/allowJs/nodeModulesAllowJsPackagePatternExports.ts +Unexpected estree file content error: 1 != 6 + +tasks/coverage/typescript/tests/cases/conformance/node/allowJs/nodeModulesAllowJsPackagePatternExportsExclude.ts +Unexpected estree file content error: 1 != 6 + +tasks/coverage/typescript/tests/cases/conformance/node/allowJs/nodeModulesAllowJsPackagePatternExportsTrailers.ts +Unexpected estree file content error: 1 != 6 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/legacyNodeModulesExportsSpecifierGenerationConditions.ts +tasks/coverage/typescript/tests/cases/conformance/node/nodeModules1.ts +Unexpected estree file content error: 4 != 12 + +tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesCJSResolvingToESM1_emptyPackageJson.ts +Unexpected estree file content error: 2 != 5 + +tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesCJSResolvingToESM2_cjsPackageJson.ts +Unexpected estree file content error: 2 != 5 + +tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesCJSResolvingToESM3_modulePackageJson.ts +Unexpected estree file content error: 2 != 5 + +tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesCJSResolvingToESM4_noPackageJson.ts +Unexpected estree file content error: 2 != 5 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesCjsFormatFileAlwaysHasDefault.ts +tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesConditionalPackageExports.ts +Unexpected estree file content error: 2 != 6 + +tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesDeclarationEmitDynamicImportWithPackageExports.ts +Unexpected estree file content error: 4 != 12 + +tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesDeclarationEmitWithPackageExports.ts +Unexpected estree file content error: 2 != 6 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesDynamicImport.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesExportAssignments.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesExportsBlocksSpecifierResolution.ts +tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesExportsBlocksTypesVersions.ts +Unexpected estree file content error: 2 != 5 + +tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesExportsDoubleAsterisk.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesExportsSourceTs.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesExportsSpecifierGenerationConditions.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesExportsSpecifierGenerationDirectory.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesExportsSpecifierGenerationPattern.ts +tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesForbidenSyntax.ts +Unexpected estree file content error: 4 != 12 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesGeneratedNameCollisions.ts +tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesImportAssertions.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesImportAssignments.ts +tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesImportAttributes.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesImportAttributesModeDeclarationEmit1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesImportAttributesModeDeclarationEmit2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesImportAttributesModeDeclarationEmitErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesImportAttributesTypeModeDeclarationEmit.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesImportHelpersCollisions.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesImportHelpersCollisions2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesImportHelpersCollisions3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesImportMeta.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesImportModeDeclarationEmit1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesImportModeDeclarationEmit2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesImportModeDeclarationEmitErrors1.ts +tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesImportResolutionIntoExport.ts +Unexpected estree file content error: 1 != 3 + +tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesImportResolutionNoCycle.ts +Unexpected estree file content error: 1 != 3 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesImportTypeModeDeclarationEmit1.ts +tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesJson.ts +Unexpected estree file content error: 2 != 4 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesNoDirectoryModule.ts +tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesPackageExports.ts +Unexpected estree file content error: 2 != 6 + +tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesPackageImports.ts +Unexpected estree file content error: 1 != 3 + +tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesPackagePatternExports.ts +Unexpected estree file content error: 2 != 6 + +tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesPackagePatternExportsExclude.ts +Unexpected estree file content error: 3 != 9 + +tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesPackagePatternExportsTrailers.ts +Unexpected estree file content error: 2 != 6 + +tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesResolveJsonModule.ts +Unexpected estree file content error: 1 != 3 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesSynchronousCallErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesTopLevelAwait.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesTripleSlashReferenceModeDeclarationEmit1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesTripleSlashReferenceModeDeclarationEmit2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesTripleSlashReferenceModeDeclarationEmit3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesTripleSlashReferenceModeDeclarationEmit4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesTripleSlashReferenceModeDeclarationEmit5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesTripleSlashReferenceModeDeclarationEmit6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesTripleSlashReferenceModeDeclarationEmit7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesTripleSlashReferenceModeOverride1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesTripleSlashReferenceModeOverride2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesTripleSlashReferenceModeOverride3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesTripleSlashReferenceModeOverride4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesTripleSlashReferenceModeOverride5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesTripleSlashReferenceModeOverrideOldResolutionError.ts +tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesTypesVersionPackageExports.ts +Unexpected estree file content error: 5 != 9 + +tasks/coverage/typescript/tests/cases/conformance/node/nodePackageSelfName.ts +Unexpected estree file content error: 1 != 3 + +tasks/coverage/typescript/tests/cases/conformance/node/nodePackageSelfNameScoped.ts +Unexpected estree file content error: 1 != 3 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/nonjsExtensions/declarationFileForHtmlFileWithinDeclarationFile.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/nonjsExtensions/declarationFileForHtmlImport.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/nonjsExtensions/declarationFileForJsonImport.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/nonjsExtensions/declarationFileForTsJsImport.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/nonjsExtensions/declarationFilesForNodeNativeModules.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/override/override1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/override/override10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/override/override11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/override/override12.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/override/override13.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/override/override14.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/override/override15.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/override/override16.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/override/override17.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/override/override18.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/override/override19.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/override/override2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/override/override20.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/override/override21.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/override/override3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/override/override4.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/override/override5.ts +override' modifier already seen. +Mismatch: tasks/coverage/typescript/tests/cases/conformance/override/override6.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/override/override7.ts +override' modifier already seen. +Mismatch: tasks/coverage/typescript/tests/cases/conformance/override/override8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/override/overrideDynamicName1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/override/overrideKeywordOrder.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/override/overrideLateBindableIndexSignature1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/override/overrideLateBindableName1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/override/overrideWithoutNoImplicitOverride1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript2021/numericSeparators/parser.numericSeparators.binary.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript2021/numericSeparators/parser.numericSeparators.decimal.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript2021/numericSeparators/parser.numericSeparators.hex.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript2021/numericSeparators/parser.numericSeparators.octal.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript3/Accessors/parserES3Accessors1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript3/Accessors/parserES3Accessors2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript3/Accessors/parserES3Accessors3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript3/Accessors/parserES3Accessors4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Accessors/parserAccessors1.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Accessors/parserAccessors10.ts +'public' modifier cannot be used here. +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Accessors/parserAccessors2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Accessors/parserAccessors3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Accessors/parserAccessors4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Accessors/parserAccessors5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Accessors/parserAccessors6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Accessors/parserAccessors7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Accessors/parserAccessors8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Accessors/parserAccessors9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Accessors/parserGetAccessorWithTypeParameters1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Accessors/parserSetAccessorWithTypeAnnotation1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Accessors/parserSetAccessorWithTypeParameters1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression12.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression13.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression14.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression15.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression9.ts +tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ArrowFunctionExpressions/parserArrowFunctionExpression10.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ArrowFunctionExpressions/parserArrowFunctionExpression11.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ArrowFunctionExpressions/parserArrowFunctionExpression12.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ArrowFunctionExpressions/parserArrowFunctionExpression13.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ArrowFunctionExpressions/parserArrowFunctionExpression14.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ArrowFunctionExpressions/parserArrowFunctionExpression15.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ArrowFunctionExpressions/parserArrowFunctionExpression16.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ArrowFunctionExpressions/parserArrowFunctionExpression17.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ArrowFunctionExpressions/parserArrowFunctionExpression4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ArrowFunctionExpressions/parserArrowFunctionExpression5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ArrowFunctionExpressions/parserArrowFunctionExpression6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ArrowFunctionExpressions/parserArrowFunctionExpression7.ts +tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ArrowFunctionExpressions/parserArrowFunctionExpression8.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ArrowFunctionExpressions/parserArrowFunctionExpression9.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/AutomaticSemicolonInsertion/parserAutomaticSemicolonInsertion1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/CatchClauses/parserCatchClauseWithTypeAnnotation1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ClassDeclarations/parserClass1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ClassDeclarations/parserClass2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ClassDeclarations/parserClassDeclaration10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ClassDeclarations/parserClassDeclaration11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ClassDeclarations/parserClassDeclaration12.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ClassDeclarations/parserClassDeclaration13.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ClassDeclarations/parserClassDeclaration14.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ClassDeclarations/parserClassDeclaration15.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ClassDeclarations/parserClassDeclaration16.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ClassDeclarations/parserClassDeclaration17.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ClassDeclarations/parserClassDeclaration18.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ClassDeclarations/parserClassDeclaration19.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ClassDeclarations/parserClassDeclaration20.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ClassDeclarations/parserClassDeclaration21.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ClassDeclarations/parserClassDeclaration22.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ClassDeclarations/parserClassDeclaration23.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ClassDeclarations/parserClassDeclaration24.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ClassDeclarations/parserClassDeclaration25.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ClassDeclarations/parserClassDeclaration26.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ClassDeclarations/parserClassDeclaration7.d.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ClassDeclarations/parserClassDeclaration7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ClassDeclarations/parserClassDeclaration8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ClassDeclarations/parserClassDeclaration9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ClassDeclarations/parserClassDeclarationIndexSignature1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ComputedPropertyNames/parserES5ComputedPropertyName1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ComputedPropertyNames/parserES5ComputedPropertyName10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ComputedPropertyNames/parserES5ComputedPropertyName11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ComputedPropertyNames/parserES5ComputedPropertyName2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ComputedPropertyNames/parserES5ComputedPropertyName3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ComputedPropertyNames/parserES5ComputedPropertyName4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ComputedPropertyNames/parserES5ComputedPropertyName5.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ComputedPropertyNames/parserES5ComputedPropertyName6.ts +Computed property names are not allowed in enums. +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ComputedPropertyNames/parserES5ComputedPropertyName7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ComputedPropertyNames/parserES5ComputedPropertyName8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ComputedPropertyNames/parserES5ComputedPropertyName9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ConstructorDeclarations/parserConstructorDeclaration1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ConstructorDeclarations/parserConstructorDeclaration10.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ConstructorDeclarations/parserConstructorDeclaration11.ts +Type parameters cannot appear on a constructor declaration +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ConstructorDeclarations/parserConstructorDeclaration2.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ConstructorDeclarations/parserConstructorDeclaration3.ts +Expected a semicolon or an implicit semicolon after a statement, but found none +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ConstructorDeclarations/parserConstructorDeclaration5.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ConstructorDeclarations/parserConstructorDeclaration9.ts +Type parameters cannot appear on a constructor declaration +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/EnumDeclarations/parserEnum1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/EnumDeclarations/parserEnum2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/EnumDeclarations/parserEnum3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/EnumDeclarations/parserEnum6.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/EnumDeclarations/parserEnum7.ts +An enum member cannot have a numeric name. +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/EnumDeclarations/parserEnumDeclaration1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/EnumDeclarations/parserEnumDeclaration2.d.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/EnumDeclarations/parserEnumDeclaration2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/EnumDeclarations/parserEnumDeclaration3.d.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/EnumDeclarations/parserEnumDeclaration3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/EnumDeclarations/parserEnumDeclaration5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/EnumDeclarations/parserEnumDeclaration6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/EnumDeclarations/parserInterfaceKeywordInEnum.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/EnumDeclarations/parserInterfaceKeywordInEnum1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ErrorRecovery/AccessibilityAfterStatic/parserAccessibilityAfterStatic1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ErrorRecovery/AccessibilityAfterStatic/parserAccessibilityAfterStatic10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ErrorRecovery/AccessibilityAfterStatic/parserAccessibilityAfterStatic11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ErrorRecovery/AccessibilityAfterStatic/parserAccessibilityAfterStatic14.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ErrorRecovery/AccessibilityAfterStatic/parserAccessibilityAfterStatic2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ErrorRecovery/AccessibilityAfterStatic/parserAccessibilityAfterStatic3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ErrorRecovery/AccessibilityAfterStatic/parserAccessibilityAfterStatic4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ErrorRecovery/AccessibilityAfterStatic/parserAccessibilityAfterStatic5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ErrorRecovery/AccessibilityAfterStatic/parserAccessibilityAfterStatic7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ErrorRecovery/ArrowFunctions/ArrowFunction4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ErrorRecovery/ArrowFunctions/parserX_ArrowFunction4.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ErrorRecovery/ExtendsOrImplementsClauses/parserErrorRecovery_ExtendsOrImplementsClause2.ts +Expected `{` but found `EOF` +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ErrorRecovery/ExtendsOrImplementsClauses/parserErrorRecovery_ExtendsOrImplementsClause5.ts +Expected `{` but found `Identifier` +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ErrorRecovery/ExtendsOrImplementsClauses/parserErrorRecovery_ExtendsOrImplementsClause6.ts +Expected `{` but found `EOF` +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ErrorRecovery/IncompleteMemberVariables/parserErrorRecovery_IncompleteMemberVariable1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ErrorRecovery/ParameterLists/parserErrorRecovery_ParameterList6.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ErrorRecovery/VariableLists/parserErrorRecovery_VariableList1.ts +Identifier expected. 'return' is a reserved word that cannot be used here. +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ErrorRecovery/VariableLists/parserVariableStatement1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ErrorRecovery/VariableLists/parserVariableStatement2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ErrorRecovery/VariableLists/parserVariableStatement3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ErrorRecovery/VariableLists/parserVariableStatement4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ErrorRecovery/parserCommaInTypeMemberList1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ErrorRecovery/parserCommaInTypeMemberList2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ErrorRecovery/parserErrantSemicolonInClass1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ErrorRecovery/parserModifierOnPropertySignature2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ErrorRecovery/parserModifierOnStatementInBlock1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ErrorRecovery/parserModifierOnStatementInBlock3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ErrorRecovery/parserModifierOnStatementInBlock4.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ErrorRecovery/parserStatementIsNotAMemberVariableDeclaration1.ts +A 'return' statement can only be used within a function body. +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ExportAssignments/parserExportAssignment1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ExportAssignments/parserExportAssignment2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ExportAssignments/parserExportAssignment5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ExportAssignments/parserExportAssignment6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ExportAssignments/parserExportAssignment7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ExportAssignments/parserExportAssignment8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ExportAssignments/parserExportAssignment9.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Expressions/parserAssignmentExpression1.ts +Cannot assign to this expression +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Expressions/parserConditionalExpression1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Expressions/parserInvocationOfMemberAccessOffOfObjectCreationExpression1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Expressions/parserObjectCreation2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/FunctionDeclarations/parserFunctionDeclaration1.d.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/FunctionDeclarations/parserFunctionDeclaration1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/FunctionDeclarations/parserFunctionDeclaration2.d.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/FunctionDeclarations/parserFunctionDeclaration3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/FunctionDeclarations/parserFunctionDeclaration4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/FunctionDeclarations/parserFunctionDeclaration5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/FunctionDeclarations/parserFunctionDeclaration6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/FunctionDeclarations/parserFunctionDeclaration7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/FunctionDeclarations/parserFunctionDeclaration8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Fuzz/parser768531.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Generics/parserAmbiguity1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Generics/parserAmbiguity2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Generics/parserAmbiguity3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Generics/parserAmbiguityWithBinaryOperator1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Generics/parserAmbiguityWithBinaryOperator2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Generics/parserAmbiguityWithBinaryOperator3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Generics/parserAmbiguityWithBinaryOperator4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Generics/parserCastVersusArrowFunction1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Generics/parserConstructorAmbiguity1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Generics/parserConstructorAmbiguity2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Generics/parserConstructorAmbiguity3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Generics/parserConstructorAmbiguity4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Generics/parserGenericClass1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Generics/parserGenericClass2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Generics/parserGenericConstraint1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Generics/parserGenericConstraint2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Generics/parserGenericConstraint3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Generics/parserGenericConstraint4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Generics/parserGenericConstraint5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Generics/parserGenericConstraint6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Generics/parserGenericConstraint7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Generics/parserGenericsInInterfaceDeclaration1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Generics/parserGenericsInTypeContexts1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Generics/parserGenericsInTypeContexts2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Generics/parserGenericsInVariableDeclaration1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity10.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity11.ts +Cannot assign to this expression +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity15.ts +Cannot assign to this expression +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity16.ts +Cannot assign to this expression +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity20.ts +Cannot assign to this expression +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Generics/parserObjectCreation1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/IndexMemberDeclarations/parserIndexMemberDeclaration1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/IndexMemberDeclarations/parserIndexMemberDeclaration2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/IndexMemberDeclarations/parserIndexMemberDeclaration3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/IndexMemberDeclarations/parserIndexMemberDeclaration4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/IndexMemberDeclarations/parserIndexMemberDeclaration6.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/IndexSignatures/parserIndexSignature1.ts +Unexpected token +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/IndexSignatures/parserIndexSignature10.ts +Expected `]` but found `,` +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/IndexSignatures/parserIndexSignature11.ts +Unexpected token +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/IndexSignatures/parserIndexSignature3.ts +Unexpected token +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/IndexSignatures/parserIndexSignature4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/IndexSignatures/parserIndexSignature5.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/IndexSignatures/parserIndexSignature6.ts +Unexpected token +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/IndexSignatures/parserIndexSignature7.ts +Unexpected token +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/IndexSignatures/parserIndexSignature8.ts +Unexpected token +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/IndexSignatures/parserIndexSignature9.ts +Unexpected token +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/InterfaceDeclarations/parserInterfaceDeclaration1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/InterfaceDeclarations/parserInterfaceDeclaration5.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/InterfaceDeclarations/parserInterfaceDeclaration6.ts +'export' modifier cannot be used here. +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/InterfaceDeclarations/parserInterfaceDeclaration7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/InterfaceDeclarations/parserInterfaceDeclaration8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/InterfaceDeclarations/parserInterfaceDeclaration9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessor1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration1.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration10.ts +Expected a semicolon or an implicit semicolon after a statement, but found none +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration12.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration13.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration14.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration16.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration17.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration18.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MemberFunctionDeclarations/parserMemberFunctionDeclaration3.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MemberFunctionDeclarations/parserMemberFunctionDeclaration4.ts +Expected a semicolon or an implicit semicolon after a statement, but found none +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MemberFunctionDeclarations/parserMemberFunctionDeclarationAmbiguities1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MemberVariableDeclarations/parserMemberVariableDeclaration3.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MemberVariableDeclarations/parserMemberVariableDeclaration4.ts +Expected a semicolon or an implicit semicolon after a statement, but found none +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MemberVariableDeclarations/parserMemberVariableDeclaration5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MethodSignatures/parserMethodSignature1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MethodSignatures/parserMethodSignature10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MethodSignatures/parserMethodSignature11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MethodSignatures/parserMethodSignature12.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MethodSignatures/parserMethodSignature2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MethodSignatures/parserMethodSignature3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MethodSignatures/parserMethodSignature4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MethodSignatures/parserMethodSignature5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MethodSignatures/parserMethodSignature6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MethodSignatures/parserMethodSignature7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MethodSignatures/parserMethodSignature8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MethodSignatures/parserMethodSignature9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ModuleDeclarations/parserModule1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration1.d.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration12.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration2.d.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration3.d.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration4.d.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ObjectLiterals/parserObjectLiterals1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ObjectTypes/parserObjectType1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ObjectTypes/parserObjectType2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ObjectTypes/parserObjectType3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ObjectTypes/parserObjectType4.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ObjectTypes/parserObjectType6.ts +Unexpected token +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ParameterLists/parserParameterList1.ts +A rest parameter must be last in a parameter list +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ParameterLists/parserParameterList10.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ParameterLists/parserParameterList11.ts +A rest parameter cannot be optional +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ParameterLists/parserParameterList12.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ParameterLists/parserParameterList14.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ParameterLists/parserParameterList15.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ParameterLists/parserParameterList16.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ParameterLists/parserParameterList17.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ParameterLists/parserParameterList2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ParameterLists/parserParameterList3.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ParameterLists/parserParameterList9.ts +A rest parameter cannot be optional +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertyAssignments/parserFunctionPropertyAssignment1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertyAssignments/parserFunctionPropertyAssignment2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertyAssignments/parserFunctionPropertyAssignment3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertyAssignments/parserFunctionPropertyAssignment4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertySignatures/parserPropertySignature1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertySignatures/parserPropertySignature10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertySignatures/parserPropertySignature11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertySignatures/parserPropertySignature12.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertySignatures/parserPropertySignature2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertySignatures/parserPropertySignature3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertySignatures/parserPropertySignature4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertySignatures/parserPropertySignature5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertySignatures/parserPropertySignature6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertySignatures/parserPropertySignature7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertySignatures/parserPropertySignature8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertySignatures/parserPropertySignature9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Protected/Protected3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Protected/Protected5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Protected/Protected6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Protected/Protected8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Protected/Protected9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RealWorld/parserindenter.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegressionTests/parser509534.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegressionTests/parser509546.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegressionTests/parser509546_1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegressionTests/parser509546_2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegressionTests/parser509618.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegressionTests/parser509668.ts +Unexpected token +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegressionTests/parser509677.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegressionTests/parser509693.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegressionTests/parser509698.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegressionTests/parser536727.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegressionTests/parser553699.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegressionTests/parser579071.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegressionTests/parser596700.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegressionTests/parser618973.ts +'export' modifier cannot be used here. +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegressionTests/parser630933.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegressionTests/parser642331.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegressionTests/parser642331_1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegressionTests/parser643728.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegressionTests/parser645086_3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegressionTests/parser645086_4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegressionTests/parser645484.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegressionTests/parserNotHexLiteral1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegressionTests/parserTernaryAndCommaOperators1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegularExpressions/parseRegularExpressionMixedWithComments.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegularExpressions/parserRegularExpression1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegularExpressions/parserRegularExpression2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegularExpressions/parserRegularExpression3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegularExpressions/parserRegularExpression4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegularExpressions/parserRegularExpression5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegularExpressions/parserRegularExpression6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegularExpressions/parserRegularExpressionDivideAmbiguity1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegularExpressions/parserRegularExpressionDivideAmbiguity2.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegularExpressions/parserRegularExpressionDivideAmbiguity3.ts +Unexpected flag a in regular expression literal +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegularExpressions/parserRegularExpressionDivideAmbiguity5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegularExpressions/parserRegularExpressionDivideAmbiguity6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/BreakStatements/parser_breakInIterationOrSwitchStatement1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/BreakStatements/parser_breakInIterationOrSwitchStatement2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/BreakStatements/parser_breakInIterationOrSwitchStatement3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/BreakStatements/parser_breakInIterationOrSwitchStatement4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/BreakStatements/parser_breakNotInIterationOrSwitchStatement2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/BreakStatements/parser_breakTarget1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/BreakStatements/parser_breakTarget2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/BreakStatements/parser_breakTarget3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/BreakStatements/parser_breakTarget4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/BreakStatements/parser_breakTarget5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/BreakStatements/parser_breakTarget6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/ContinueStatements/parser_continueInIterationStatement1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/ContinueStatements/parser_continueInIterationStatement2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/ContinueStatements/parser_continueInIterationStatement3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/ContinueStatements/parser_continueInIterationStatement4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/ContinueStatements/parser_continueLabel.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/ContinueStatements/parser_continueNotInIterationStatement2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/ContinueStatements/parser_continueNotInIterationStatement3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/ContinueStatements/parser_continueNotInIterationStatement4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/ContinueStatements/parser_continueTarget1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/ContinueStatements/parser_continueTarget2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/ContinueStatements/parser_continueTarget3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/ContinueStatements/parser_continueTarget4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/ContinueStatements/parser_continueTarget5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/ContinueStatements/parser_continueTarget6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/LabeledStatements/parser_duplicateLabel1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/LabeledStatements/parser_duplicateLabel2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/LabeledStatements/parser_duplicateLabel3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/LabeledStatements/parser_duplicateLabel4.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/ReturnStatements/parserReturnStatement1.ts +A 'return' statement can only be used within a function body. +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/ReturnStatements/parserReturnStatement2.ts +A 'return' statement can only be used within a function body. +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/ReturnStatements/parserReturnStatement3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/ReturnStatements/parserReturnStatement4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/parserDoStatement1.d.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/parserDoStatement2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/parserES5ForOfStatement1.d.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/parserES5ForOfStatement10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/parserES5ForOfStatement11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/parserES5ForOfStatement12.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/parserES5ForOfStatement13.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/parserES5ForOfStatement14.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/parserES5ForOfStatement15.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/parserES5ForOfStatement16.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/parserES5ForOfStatement17.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/parserES5ForOfStatement18.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/parserES5ForOfStatement19.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/parserES5ForOfStatement8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/parserES5ForOfStatement9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/parserExpressionStatement1.d.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/parserForInStatement1.d.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/parserForInStatement8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/parserForStatement1.d.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/parserForStatement2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/parserForStatement3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/parserForStatement5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/parserForStatement9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/parserIfStatement1.d.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/parserIfStatement2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/parserLabeledStatement1.d.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/parserReturnStatement1.d.ts +A 'return' statement can only be used within a function body. +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/parserSwitchStatement1.d.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/parserThrowStatement1.d.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/parserTryStatement1.d.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/parserVariableStatement1.d.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/parserVariableStatement2.d.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/parserWhileStatement1.d.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/parserWithStatement1.d.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Statements/parserWithStatement2.ts +A 'return' statement can only be used within a function body. +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/StrictMode/parserStrictMode1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/StrictMode/parserStrictMode10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/StrictMode/parserStrictMode11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/StrictMode/parserStrictMode12.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/StrictMode/parserStrictMode13.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/StrictMode/parserStrictMode14.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/StrictMode/parserStrictMode15-negative.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/StrictMode/parserStrictMode15.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/StrictMode/parserStrictMode16.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/StrictMode/parserStrictMode2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/StrictMode/parserStrictMode3-negative.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/StrictMode/parserStrictMode3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/StrictMode/parserStrictMode4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/StrictMode/parserStrictMode5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/StrictMode/parserStrictMode6-negative.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/StrictMode/parserStrictMode6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/StrictMode/parserStrictMode7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/StrictMode/parserStrictMode8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/StrictMode/parserStrictMode9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/SuperExpressions/parserSuperExpression1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/SuperExpressions/parserSuperExpression3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/SuperExpressions/parserSuperExpression4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Symbols/parserES5SymbolIndexer1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Symbols/parserES5SymbolIndexer2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Symbols/parserES5SymbolIndexer3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Symbols/parserES5SymbolProperty1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Symbols/parserES5SymbolProperty2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Symbols/parserES5SymbolProperty3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Symbols/parserES5SymbolProperty4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Symbols/parserES5SymbolProperty5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Symbols/parserES5SymbolProperty6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Symbols/parserES5SymbolProperty7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Symbols/parserES5SymbolProperty8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Symbols/parserES5SymbolProperty9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/TupleTypes/TupleType1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/TupleTypes/TupleType2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/TupleTypes/TupleType3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/TupleTypes/TupleType5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Types/parserTypeQuery1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Types/parserTypeQuery2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Types/parserTypeQuery5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Types/parserTypeQuery6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Types/parserTypeQuery7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Types/parserTypeQuery8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Types/parserTypeQuery9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/VariableDeclarations/parserVariableDeclaration1.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/VariableDeclarations/parserVariableDeclaration10.ts +Unexpected token +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/VariableDeclarations/parserVariableDeclaration11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/VariableDeclarations/parserVariableDeclaration2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/VariableDeclarations/parserVariableDeclaration3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/VariableDeclarations/parserVariableDeclaration4.d.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/VariableDeclarations/parserVariableDeclaration4.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/VariableDeclarations/parserVariableDeclaration5.ts +Unexpected token +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/VariableDeclarations/parserVariableDeclaration7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/VariableDeclarations/parserVariableDeclaration9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parser10.1.1-8gs.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parser15.4.4.14-9-2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserAdditiveExpression1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserArgumentList1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserAstSpans1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserEmptyStatement1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserExportAsFunctionIdentifier.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserImportDeclaration1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserInExpression1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserKeywordsAsIdentifierName1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserNoASIOnCallAfterFunctionExpression1.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserNotRegex1.ts +A 'return' statement can only be used within a function body. +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserNotRegex2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserObjectCreationArrayLiteral2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserObjectCreationArrayLiteral4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserOptionalTypeMembers1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserOverloadOnConstants1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserParenthesizedVariableAndFunctionInTernary.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserParenthesizedVariableAndParenthesizedFunctionInTernary.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserRealSource1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserRealSource12.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserRealSource13.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserRealSource14.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserRealSource2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserRealSource3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserRealSource5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserRealSource6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserRealSource8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserS7.2_A1.5_T2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserS7.3_A1.1_T2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserS7.6.1.1_A1.10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserS7.6_A4.2_T1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserSbp_7.9_A9_T3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserSyntaxWalker.generated.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserUnicode1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserUnicode2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserUnicode3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserUnicodeWhitespaceCharacter1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserUsingConstructorAsIdentifier.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserVoidExpression1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parservoidInQualifiedName0.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parservoidInQualifiedName2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName12.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName13.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName14.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName15.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName16.ts +Computed property names are not allowed in enums. +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName17.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName18.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName19.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName20.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName21.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName22.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName23.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName24.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName25.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName26.ts +Computed property names are not allowed in enums. +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName28.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName29.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName31.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName32.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName34.ts +Computed property names are not allowed in enums. +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName35.ts +Expected `]` but found `,` +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName36.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName37.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName38.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName39.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName40.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName41.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName5.ts +'public' modifier cannot be used here. +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Iterators/parserForOfStatement1.d.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Iterators/parserForOfStatement10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Iterators/parserForOfStatement11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Iterators/parserForOfStatement12.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Iterators/parserForOfStatement13.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Iterators/parserForOfStatement14.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Iterators/parserForOfStatement15.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Iterators/parserForOfStatement16.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Iterators/parserForOfStatement17.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Iterators/parserForOfStatement18.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Iterators/parserForOfStatement19.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Iterators/parserForOfStatement22.ts +The left-hand side of a `for...of` statement may not be `async` +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Iterators/parserForOfStatement23.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Iterators/parserForOfStatement24.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Iterators/parserForOfStatement25.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Iterators/parserForOfStatement8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Iterators/parserForOfStatement9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Symbols/parserSymbolIndexer1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Symbols/parserSymbolIndexer2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Symbols/parserSymbolIndexer3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Symbols/parserSymbolIndexer4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Symbols/parserSymbolProperty1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Symbols/parserSymbolProperty2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Symbols/parserSymbolProperty3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Symbols/parserSymbolProperty4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Symbols/parserSymbolProperty5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Symbols/parserSymbolProperty6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Symbols/parserSymbolProperty7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Symbols/parserSymbolProperty8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Symbols/parserSymbolProperty9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/pedantic/noUncheckedIndexedAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/pedantic/noUncheckedIndexedAccessDestructuring.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/references/library-reference-1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/references/library-reference-10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/references/library-reference-11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/references/library-reference-12.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/references/library-reference-13.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/references/library-reference-14.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/references/library-reference-15.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/references/library-reference-2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/references/library-reference-3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/references/library-reference-4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/references/library-reference-5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/references/library-reference-6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/references/library-reference-7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/references/library-reference-8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/references/library-reference-scoped-packages.ts +tasks/coverage/typescript/tests/cases/conformance/salsa/chainedPrototypeAssignment.ts +Unexpected estree file content error: 1 != 3 + +tasks/coverage/typescript/tests/cases/conformance/salsa/classCanExtendConstructorFunction.ts +Unexpected estree file content error: 1 != 3 + +tasks/coverage/typescript/tests/cases/conformance/salsa/constructorFunctions2.ts +Unexpected estree file content error: 1 != 3 + +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/salsa/constructorNameInAccessor.ts +Constructor can't have get/set modifier +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/salsa/constructorNameInGenerator.ts +Constructor can't be a generator +Mismatch: tasks/coverage/typescript/tests/cases/conformance/salsa/constructorNameInObjectLiteralAccessor.ts +tasks/coverage/typescript/tests/cases/conformance/salsa/enumMergeWithExpando.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/salsa/importingExportingTypes.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/salsa/inferingFromAny.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/salsa/inferringClassMembersFromAssignments.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/salsa/inferringClassMembersFromAssignments8.ts +tasks/coverage/typescript/tests/cases/conformance/salsa/inferringClassStaticMembersFromAssignments.ts +Unexpected estree file content error: 1 != 3 + +tasks/coverage/typescript/tests/cases/conformance/salsa/jsContainerMergeTsDeclaration.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/salsa/jsContainerMergeTsDeclaration2.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/salsa/jsContainerMergeTsDeclaration3.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/salsa/jsObjectsMarkedAsOpenEnded.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/salsa/mixedPropertyElementAccessAssignmentDeclaration.ts +tasks/coverage/typescript/tests/cases/conformance/salsa/moduleExportAlias.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/salsa/moduleExportAlias2.ts +Unexpected estree file content error: 1 != 3 + +tasks/coverage/typescript/tests/cases/conformance/salsa/moduleExportAssignment7.ts +Unexpected estree file content error: 1 != 3 + +tasks/coverage/typescript/tests/cases/conformance/salsa/moduleExportWithExportPropertyAssignment.ts +Unexpected estree file content error: 1 != 3 + +tasks/coverage/typescript/tests/cases/conformance/salsa/moduleExportWithExportPropertyAssignment2.ts +Unexpected estree file content error: 1 != 3 + +tasks/coverage/typescript/tests/cases/conformance/salsa/moduleExportWithExportPropertyAssignment3.ts +Unexpected estree file content error: 1 != 3 + +tasks/coverage/typescript/tests/cases/conformance/salsa/moduleExportWithExportPropertyAssignment4.ts +Unexpected estree file content error: 1 != 3 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/salsa/propertyAssignmentUseParentType1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/salsa/propertyAssignmentUseParentType3.ts +tasks/coverage/typescript/tests/cases/conformance/salsa/prototypePropertyAssignmentMergeWithInterfaceMethod.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/salsa/reExportJsFromTs.ts +Unexpected estree file content error: 1 != 2 + +tasks/coverage/typescript/tests/cases/conformance/salsa/requireAssertsFromTypescript.ts +Unexpected estree file content error: 2 != 3 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/salsa/sourceFileMergeWithFunction.ts +tasks/coverage/typescript/tests/cases/conformance/salsa/typeFromParamTagForFunction.ts +Unexpected estree file content error: 1 != 14 + +tasks/coverage/typescript/tests/cases/conformance/salsa/typeFromPropertyAssignment17.ts +Unexpected estree file content error: 1 != 3 + +tasks/coverage/typescript/tests/cases/conformance/salsa/typeFromPropertyAssignment19.ts +Unexpected estree file content error: 1 != 3 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/salsa/typeFromPropertyAssignment29.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/salsa/typeFromPropertyAssignment30.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/salsa/typeFromPropertyAssignment31.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/salsa/typeFromPropertyAssignment32.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/salsa/typeFromPropertyAssignment33.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/salsa/typeFromPropertyAssignment36.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/salsa/typeFromPropertyAssignment38.ts +tasks/coverage/typescript/tests/cases/conformance/salsa/varRequireFromTypescript.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/scanner/ecmascript3/scannerES3NumericLiteral1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/scanner/ecmascript3/scannerES3NumericLiteral5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/scanner/ecmascript3/scannerES3NumericLiteral7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/scanner/ecmascript5/scanner10.1.1-8gs.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/scanner/ecmascript5/scannerAdditiveExpression1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/scanner/ecmascript5/scannerClass2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/scanner/ecmascript5/scannerEnum1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/scanner/ecmascript5/scannerImportDeclaration1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/scanner/ecmascript5/scannerNonAsciiHorizontalWhitespace.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/scanner/ecmascript5/scannerNumericLiteral1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/scanner/ecmascript5/scannerNumericLiteral5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/scanner/ecmascript5/scannerNumericLiteral7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/scanner/ecmascript5/scannerS7.2_A1.5_T2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/scanner/ecmascript5/scannerS7.3_A1.1_T2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/scanner/ecmascript5/scannerS7.6_A4.2_T1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/scanner/ecmascript5/scannerStringLiteralWithContainingNullCharacter1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/scanner/ecmascript5/scannertest1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/everyTypeWithAnnotationAndInitializer.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/everyTypeWithAnnotationAndInvalidInitializer.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/everyTypeWithInitializer.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/invalidMultipleVariableDeclarations.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/recursiveInitializer.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/awaitUsingDeclarations.1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/awaitUsingDeclarations.10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/awaitUsingDeclarations.12.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/awaitUsingDeclarations.13.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/awaitUsingDeclarations.14.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/awaitUsingDeclarations.15.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/awaitUsingDeclarations.2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/awaitUsingDeclarations.3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/awaitUsingDeclarations.9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/awaitUsingDeclarationsInForAwaitOf.2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/awaitUsingDeclarationsInForAwaitOf.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/awaitUsingDeclarationsInForOf.1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/awaitUsingDeclarationsInForOf.2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/awaitUsingDeclarationsInForOf.4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/awaitUsingDeclarationsTopLevelOfModule.1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/awaitUsingDeclarationsWithAsyncIteratorObject.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/awaitUsingDeclarationsWithImportHelpers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/awaitUsingDeclarationsWithIteratorObject.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarations.1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarations.10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarations.11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarations.12.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarations.14.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarations.15.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarations.2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarations.3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarations.4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarations.9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarationsDeclarationEmit.1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarationsDeclarationEmit.2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarationsInForAwaitOf.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarationsInForOf.1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarationsNamedEvaluationDecoratorsAndClassFields.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarationsTopLevelOfModule.1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarationsTopLevelOfModule.2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarationsTopLevelOfModule.3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarationsWithESClassDecorators.1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarationsWithESClassDecorators.10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarationsWithESClassDecorators.11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarationsWithESClassDecorators.12.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarationsWithESClassDecorators.2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarationsWithESClassDecorators.3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarationsWithESClassDecorators.4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarationsWithESClassDecorators.5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarationsWithESClassDecorators.6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarationsWithESClassDecorators.7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarationsWithESClassDecorators.8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarationsWithESClassDecorators.9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarationsWithImportHelpers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarationsWithIteratorObject.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarationsWithLegacyClassDecorators.1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarationsWithLegacyClassDecorators.10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarationsWithLegacyClassDecorators.11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarationsWithLegacyClassDecorators.12.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarationsWithLegacyClassDecorators.2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarationsWithLegacyClassDecorators.3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarationsWithLegacyClassDecorators.4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarationsWithLegacyClassDecorators.5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarationsWithLegacyClassDecorators.6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarationsWithLegacyClassDecorators.7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarationsWithLegacyClassDecorators.8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarationsWithLegacyClassDecorators.9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarationsWithObjectLiterals1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarationsWithObjectLiterals2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/validMultipleVariableDeclarations.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/breakStatements/doWhileBreakStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/breakStatements/forBreakStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/breakStatements/forInBreakStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/breakStatements/invalidDoWhileBreakStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/breakStatements/invalidForBreakStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/breakStatements/invalidForInBreakStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/breakStatements/invalidSwitchBreakStatement.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/breakStatements/invalidWhileBreakStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/breakStatements/switchBreakStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/breakStatements/whileBreakStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/continueStatements/doWhileContinueStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/continueStatements/forContinueStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/continueStatements/forInContinueStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/continueStatements/invalidDoWhileContinueStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/continueStatements/invalidForContinueStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/continueStatements/invalidForInContinueStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/continueStatements/invalidSwitchContinueStatement.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/continueStatements/invalidWhileContinueStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/continueStatements/whileContinueStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-await-ofStatements/emitter.forAwait.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-await-ofStatements/forAwaitPerIterationBindingDownlevel.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-inStatements/for-inStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-inStatements/for-inStatementsArray.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-inStatements/for-inStatementsArrayErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-inStatements/for-inStatementsAsyncIdentifier.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-inStatements/for-inStatementsDestructuring.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-inStatements/for-inStatementsDestructuring2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-inStatements/for-inStatementsDestructuring3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-inStatements/for-inStatementsDestructuring4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES3For-ofTypeCheck1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES3For-ofTypeCheck2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES3For-ofTypeCheck4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES3For-ofTypeCheck6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-of1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-of10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-of11.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-of12.ts +Unexpected token +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-of13.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-of14.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-of15.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-of16.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-of17.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-of18.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-of19.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-of2.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-of20.ts +Missing initializer in const declaration +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-of21.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-of22.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-of23.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-of24.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-of25.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-of26.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-of27.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-of28.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-of29.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-of3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-of30.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-of31.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-of33.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-of34.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-of35.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-of36.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-of37.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-of4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-of5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-of6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-of7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-of8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-of9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-ofTypeCheck1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-ofTypeCheck10.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-ofTypeCheck11.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-ofTypeCheck12.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-ofTypeCheck13.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-ofTypeCheck14.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-ofTypeCheck2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-ofTypeCheck3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-ofTypeCheck4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-ofTypeCheck5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-ofTypeCheck6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-ofTypeCheck7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-ofTypeCheck8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5For-ofTypeCheck9.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofStatements/ES5for-of32.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/forStatements/forStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/forStatements/forStatementsMultipleInvalidDecl.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/forStatements/forStatementsMultipleValidDecl.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/ifDoWhileStatements/ifDoWhileStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/labeledStatements/labeledStatementDeclarationListInLoopNoCrash2.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/statements/labeledStatements/labeledStatementExportDeclarationNoCrash1.ts +Missing initializer in const declaration +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/statements/labeledStatements/labeledStatementWithLabel.ts +Generators can only be declared at the top level or inside a block +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/statements/labeledStatements/labeledStatementWithLabel_es2015.ts +Generators can only be declared at the top level or inside a block +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/statements/labeledStatements/labeledStatementWithLabel_strict.ts +Generators can only be declared at the top level or inside a block +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/returnStatements/invalidReturnStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/returnStatements/returnStatementNoAsiAfterTransform.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/returnStatements/returnStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/switchStatements/switchStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/throwStatements/throwInEnclosingStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/throwStatements/throwStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/tryStatements/catchClauseWithTypeAnnotation.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/tryStatements/tryStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/withStatements/withStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/any/anyAsConstructor.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/any/anyAsFunctionCall.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/any/anyAsGenericFunctionCall.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/any/anyPropertyAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/any/assignAnyToEveryType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/any/assignEveryTypeToAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/any/narrowExceptionVariableInCatchClause.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/any/narrowFromAnyWithInstanceof.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/any/narrowFromAnyWithTypePredicate.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/asyncGenerators/types.asyncGenerators.es2018.1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/asyncGenerators/types.asyncGenerators.es2018.2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/conditional/conditionalTypes1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/conditional/conditionalTypes2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/conditional/conditionalTypesExcessProperties.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/conditional/inferTypes1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/conditional/inferTypes2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/conditional/inferTypesInvalidExtendsDeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/conditional/inferTypesWithExtends1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/conditional/inferTypesWithExtends2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/conditional/inferTypesWithExtendsDependingOnTypeVariables.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/conditional/variance.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/contextualTypes/asyncFunctions/contextuallyTypeAsyncFunctionAwaitOperand.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/contextualTypes/asyncFunctions/contextuallyTypeAsyncFunctionReturnType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/contextualTypes/commaOperator/contextuallyTypeCommaOperator01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/contextualTypes/commaOperator/contextuallyTypeCommaOperator02.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/contextualTypes/commaOperator/contextuallyTypeCommaOperator03.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/contextualTypes/jsxAttributes/contextuallyTypedStringLiteralsInJsxAttributes01.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/contextualTypes/jsxAttributes/contextuallyTypedStringLiteralsInJsxAttributes02.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/contextualTypes/logicalAnd/contextuallyTypeLogicalAnd01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/contextualTypes/logicalAnd/contextuallyTypeLogicalAnd02.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/contextualTypes/logicalAnd/contextuallyTypeLogicalAnd03.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/contextualTypes/methodDeclarations/contextuallyTypedBindingInitializer.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/contextualTypes/methodDeclarations/contextuallyTypedBindingInitializerNegative.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/contextualTypes/methodDeclarations/contextuallyTypedClassExpressionMethodDeclaration01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/contextualTypes/methodDeclarations/contextuallyTypedClassExpressionMethodDeclaration02.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/contextualTypes/methodDeclarations/contextuallyTypedObjectLiteralMethodDeclaration01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/contextualTypes/partiallyAnnotatedFunction/partiallyAnnotatedFunctionInferenceError.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/contextualTypes/partiallyAnnotatedFunction/partiallyAnnotatedFunctionInferenceWithTypeParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/contextualTypes/partiallyAnnotatedFunction/partiallyAnnotatedFunctionWitoutTypeParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/forAwait/types.forAwait.es2018.1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/forAwait/types.forAwait.es2018.2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/forAwait/types.forAwait.es2018.3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/import/importTypeAmbient.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/import/importTypeAmbientMissing.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/import/importTypeAmdBundleRewrite.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/import/importTypeGeneric.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/import/importTypeGenericTypes.ts +tasks/coverage/typescript/tests/cases/conformance/types/import/importTypeInJSDoc.ts +Unexpected estree file content error: 1 != 2 + +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/import/importTypeLocal.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/import/importTypeLocalMissing.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/import/importTypeNested.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/import/importTypeNestedNoRef.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/import/importTypeNonString.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/types/import/importWithTypeArguments.ts +Expected `from` but found `<` +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/intersection/commonTypeIntersection.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/intersection/contextualIntersectionType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectionAndUnionTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectionAsWeakTypeSource.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectionMemberOfUnionNarrowsCorrectly.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectionNarrowing.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectionOfUnionNarrowing.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectionOfUnionOfUnitTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectionReduction.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectionReductionStrict.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectionThisTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectionTypeAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectionTypeEquivalence.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectionTypeInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectionTypeInference2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectionTypeInference3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectionTypeMembers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectionTypeOverloading.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectionTypeReadonly.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectionWithIndexSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectionWithUnionConstraint.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectionsAndEmptyObjects.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/intersection/operatorsAndIntersectionTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/intersection/recursiveIntersectionTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/keyof/circularIndexedAccessErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/keyof/keyofAndForIn.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/keyof/keyofAndIndexedAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/keyof/keyofAndIndexedAccess2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/keyof/keyofAndIndexedAccessErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/keyof/keyofIntersection.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/booleanLiteralTypes1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/booleanLiteralTypes2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/enumLiteralTypes1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/enumLiteralTypes2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/enumLiteralTypes3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/literalTypeWidening.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/literalTypes1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/literalTypes2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/literalTypes3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/literalTypesAndDestructuring.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/literalTypesAndTypeAssertions.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/literalTypesWidenInParameterPosition.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/numericLiteralTypes1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/numericLiteralTypes2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/numericLiteralTypes3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/numericStringLiteralTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/stringEnumLiteralTypes1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/stringEnumLiteralTypes2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/stringEnumLiteralTypes3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/stringLiteralsAssertionsInEqualityComparisons01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/stringLiteralsAssertionsInEqualityComparisons02.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/stringLiteralsAssignedToStringMappings.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/stringLiteralsWithEqualityChecks01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/stringLiteralsWithEqualityChecks02.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/stringLiteralsWithEqualityChecks03.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/stringLiteralsWithEqualityChecks04.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/stringLiteralsWithSwitchStatements01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/stringLiteralsWithSwitchStatements02.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/stringLiteralsWithSwitchStatements03.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/stringLiteralsWithSwitchStatements04.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/stringLiteralsWithTypeAssertions01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/stringMappingDeferralInConditionalTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/stringMappingOverPatternLiterals.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/stringMappingReduction.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/templateLiteralTypes1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/templateLiteralTypes2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/templateLiteralTypes3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/templateLiteralTypes4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/templateLiteralTypes5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/templateLiteralTypes6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/templateLiteralTypes7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/templateLiteralTypes8.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/templateLiteralTypesPatterns.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/literal/templateLiteralTypesPatternsPrefixSuffixAssignability.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/localTypes/localTypes1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/localTypes/localTypes2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/localTypes/localTypes3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/localTypes/localTypes4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/localTypes/localTypes5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/mapped/isomorphicMappedTypeInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypeAsClauseRelationships.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypeAsClauses.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypeConstraints.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypeConstraints2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypeErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypeErrors2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypeIndexSignatureModifiers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypeInferenceErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypeModifiers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypeOverlappingStringEnumKeys.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypeRelationships.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypeWithAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypes1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypes2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypes3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypes4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypes5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypes6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypesAndObjects.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypesArraysTuples.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypesGenericTuples.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypesGenericTuples2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/mapped/recursiveMappedTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/members/augmentedTypeAssignmentCompatIndexSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/members/augmentedTypeBracketAccessIndexSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/members/classWithPrivateProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/members/classWithProtectedProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/members/classWithPublicProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/members/duplicateNumericIndexers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/members/duplicatePropertyNames.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/members/duplicateStringIndexers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/members/indexSignatures1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/members/objectTypeHidingMembersOfExtendedObject.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/members/objectTypeHidingMembersOfObject.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/members/objectTypeHidingMembersOfObjectAssignmentCompat.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/members/objectTypeHidingMembersOfObjectAssignmentCompat2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/members/objectTypePropertyAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/members/objectTypeWithCallSignatureAppearsToBeFunctionType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/members/objectTypeWithCallSignatureHidingMembersOfExtendedFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/members/objectTypeWithCallSignatureHidingMembersOfFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/members/objectTypeWithCallSignatureHidingMembersOfFunctionAssignmentCompat.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/members/objectTypeWithConstructSignatureAppearsToBeFunctionType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/members/objectTypeWithConstructSignatureHidingMembersOfExtendedFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/members/objectTypeWithConstructSignatureHidingMembersOfFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/members/objectTypeWithConstructSignatureHidingMembersOfFunctionAssignmentCompat.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/members/objectTypeWithDuplicateNumericProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/members/objectTypeWithNumericProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/members/objectTypeWithStringAndNumberIndexSignatureToAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/members/objectTypeWithStringIndexerHidingObjectIndexer.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/members/objectTypeWithStringNamedPropertyOfIllegalCharacters.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/members/typesWithOptionalProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/members/typesWithPrivateConstructor.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/members/typesWithProtectedConstructor.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/members/typesWithPublicConstructor.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/members/typesWithSpecializedCallSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/members/typesWithSpecializedConstructSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/namedTypes/classWithOnlyPublicMembersEquivalentToInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/namedTypes/classWithOnlyPublicMembersEquivalentToInterface2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/namedTypes/classWithOptionalParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/namedTypes/genericInstantiationEquivalentToObjectLiteral.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/namedTypes/optionalMethods.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/never/neverInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/never/neverIntersectionNotCallable.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/never/neverType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/never/neverTypeErrors1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/never/neverTypeErrors2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/never/neverUnionIntersection.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/nonPrimitive/assignObjectToNonPrimitive.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/nonPrimitive/nonPrimitiveAccessProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/nonPrimitive/nonPrimitiveAndEmptyObject.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/nonPrimitive/nonPrimitiveAndTypeVariables.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/nonPrimitive/nonPrimitiveAsProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/nonPrimitive/nonPrimitiveAssignError.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/nonPrimitive/nonPrimitiveConstraintOfIndexAccessType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/nonPrimitive/nonPrimitiveInFunction.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/nonPrimitive/nonPrimitiveInGeneric.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/nonPrimitive/nonPrimitiveIndexingWithForIn.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/nonPrimitive/nonPrimitiveIndexingWithForInNoImplicitAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/nonPrimitive/nonPrimitiveIndexingWithForInSupressError.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/nonPrimitive/nonPrimitiveNarrow.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/nonPrimitive/nonPrimitiveRhsSideOfInExpression.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/nonPrimitive/nonPrimitiveStrictNull.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/nonPrimitive/nonPrimitiveUnionIntersection.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/callSignatureWithOptionalParameterAndInitializer.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/callSignatureWithoutAnnotationsOrBody.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/callSignatureWithoutReturnTypeAnnotationInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/callSignaturesThatDifferOnlyByReturnType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/callSignaturesThatDifferOnlyByReturnType2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/callSignaturesThatDifferOnlyByReturnType3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/callSignaturesWithDuplicateParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/callSignaturesWithOptionalParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/callSignaturesWithOptionalParameters2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/callSignaturesWithParameterInitializers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/identicalCallSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/identicalCallSignatures2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/identicalCallSignatures3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/parametersWithNoAnnotationAreAny.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/restParameterWithoutAnnotationIsAnyArray.ts +A rest parameter must be last in a parameter list +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/restParametersOfNonArrayTypes.ts +A rest parameter must be last in a parameter list +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/restParametersOfNonArrayTypes2.ts +A rest parameter must be last in a parameter list +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/restParametersWithArrayTypeAnnotations.ts +A rest parameter must be last in a parameter list +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/specializedSignatureIsNotSubtypeOfNonSpecializedSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/specializedSignatureIsSubtypeOfNonSpecializedSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/specializedSignatureWithOptional.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/stringLiteralTypesInImplementationSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/stringLiteralTypesInImplementationSignatures2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/typeParameterAsTypeArgument.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/typeParameterUsedAsTypeParameterConstraint.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/typeParameterUsedAsTypeParameterConstraint2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/typeParameterUsedAsTypeParameterConstraint3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/typeParameterUsedAsTypeParameterConstraint4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/constructSignatures/constructSignaturesWithIdenticalOverloads.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/constructSignatures/constructSignaturesWithOverloads.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/constructSignatures/constructSignaturesWithOverloads2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/constructSignatures/constructSignaturesWithOverloadsThatDifferOnlyByReturnType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/indexSignatures/multipleNumericIndexers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/indexSignatures/multipleStringIndexers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/indexSignatures/numericIndexerConstrainsPropertyDeclarations.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/indexSignatures/numericIndexerConstrainsPropertyDeclarations2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/indexSignatures/numericIndexingResults.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/indexSignatures/stringIndexerConstrainsPropertyDeclarations.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/indexSignatures/stringIndexerConstrainsPropertyDeclarations2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/indexSignatures/stringIndexingResults.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/methodSignatures/functionLiterals.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/methodSignatures/methodSignaturesWithOverloads.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/methodSignatures/methodSignaturesWithOverloads2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/objectTypeLiteralSyntax.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/propertySignatures/numericStringNamedPropertyEquivalence.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/propertySignatures/propertyNameWithoutTypeAnnotation.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/propertySignatures/propertyNamesOfReservedWords.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/propertySignatures/stringNamedPropertyAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/primitives/boolean/assignFromBooleanInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/primitives/boolean/assignFromBooleanInterface2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/primitives/boolean/boolInsteadOfBoolean.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/primitives/boolean/booleanPropertyAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/primitives/boolean/extendBooleanInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/primitives/boolean/invalidBooleanAssignments.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/primitives/boolean/validBooleanAssignments.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/primitives/enum/invalidEnumAssignments.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/primitives/enum/validEnumAssignments.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/primitives/null/directReferenceToNull.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/primitives/null/validNullAssignments.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/primitives/number/assignFromNumberInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/primitives/number/assignFromNumberInterface2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/primitives/number/extendNumberInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/primitives/number/invalidNumberAssignments.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/primitives/number/numberPropertyAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/primitives/number/validNumberAssignments.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/primitives/string/assignFromStringInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/primitives/string/assignFromStringInterface2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/primitives/string/extendStringInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/primitives/string/invalidStringAssignments.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/primitives/string/stringPropertyAccess.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/primitives/string/stringPropertyAccessWithError.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/primitives/string/validStringAssignments.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/primitives/stringLiteral/stringLiteralType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/primitives/undefined/directReferenceToUndefined.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/primitives/undefined/invalidUndefinedAssignments.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/primitives/undefined/invalidUndefinedValues.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/primitives/undefined/validUndefinedAssignments.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/primitives/undefined/validUndefinedValues.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/primitives/void/invalidAssignmentsToVoid.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/primitives/void/invalidVoidAssignments.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/primitives/void/invalidVoidValues.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/primitives/void/validVoidAssignments.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/primitives/void/validVoidValues.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/rest/genericObjectRest.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/rest/genericRestArity.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/rest/genericRestArityStrict.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/rest/genericRestParameters1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/rest/genericRestParameters2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/rest/genericRestParameters3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/rest/objectRest.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/rest/objectRest2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/rest/objectRestAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/rest/objectRestCatchES5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/rest/objectRestForOf.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/types/rest/objectRestNegative.ts +A rest element must be last in a destructuring pattern +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/rest/objectRestParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/rest/objectRestParameterES5.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/types/rest/objectRestPropertyMustBeLast.ts +A rest element must be last in a destructuring pattern +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/rest/objectRestReadonly.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/types/rest/restElementMustBeLast.ts +A rest element must be last in a destructuring pattern +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/rest/restTuplesFromContextualTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/predefinedTypes/objectTypesWithPredefinedTypesAsName.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeLiterals/arrayLiteral.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeLiterals/arrayOfFunctionTypes3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeLiterals/arrayTypeOfFunctionTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeLiterals/arrayTypeOfFunctionTypes2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeLiterals/arrayTypeOfTypeOf.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeLiterals/functionLiteral.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeLiterals/functionLiteralForOverloads.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeLiterals/functionLiteralForOverloads2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeLiterals/parenthesizedTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeLiterals/unionTypeLiterals.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeQueries/circularTypeofWithVarOrFunc.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeQueries/recursiveTypesWithTypeof.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeQueries/typeQueryOnClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeQueries/typeQueryWithReservedWords.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeQueries/typeofANonExportedType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeQueries/typeofAnExportedType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeQueries/typeofClass2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeQueries/typeofClassWithPrivates.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeQueries/typeofModuleWithoutExports.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeQueries/typeofThis.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeQueries/typeofThisWithImplicitThis.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeQueries/typeofTypeParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeReferences/genericTypeReferenceWithoutTypeArgument.d.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeReferences/genericTypeReferenceWithoutTypeArgument.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeReferences/genericTypeReferenceWithoutTypeArgument2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeReferences/genericTypeReferenceWithoutTypeArgument3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeReferences/nonGenericTypeReferenceWithTypeArguments.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/spread/objectSpread.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/spread/objectSpreadComputedProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/spread/objectSpreadIndexSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/spread/objectSpreadNegative.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/spread/objectSpreadNoTransform.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/spread/objectSpreadRepeatedComplexity.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/spread/objectSpreadRepeatedNullCheckPerf.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/spread/objectSpreadSetonlyAccessor.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/spread/objectSpreadStrictNull.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/spread/spreadContextualTypedBindingPattern.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/spread/spreadDuplicate.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/spread/spreadDuplicateExact.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/spread/spreadExcessProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/spread/spreadMethods.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/spread/spreadNonObject1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/spread/spreadNonPrimitive.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/spread/spreadObjectOrFalsy.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/spread/spreadOverwritesProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/spread/spreadOverwritesPropertyStrict.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/spread/spreadTypeVariable.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/spread/spreadUnion.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/spread/spreadUnion2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/spread/spreadUnion3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/spread/spreadUnion4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralCheckedInIf01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralCheckedInIf02.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralMatchedInSwitch01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypeAssertion01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesAndLogicalOrExpressions01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesAndParenthesizedExpressions01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesAndTuples01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesAsTags01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesAsTags02.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesAsTags03.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesAsTypeParameterConstraint01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesAsTypeParameterConstraint02.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesInUnionTypes01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesInUnionTypes02.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesInUnionTypes03.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesInUnionTypes04.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesInVariableDeclarations01.ts +Missing initializer in const declaration +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesOverloadAssignability01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesOverloadAssignability02.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesOverloadAssignability03.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesOverloadAssignability04.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesOverloadAssignability05.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesOverloads01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesOverloads02.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesOverloads03.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesOverloads04.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesOverloads05.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesTypePredicates01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesWithTemplateStrings01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesWithTemplateStrings02.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesWithVariousOperators01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesWithVariousOperators02.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/typeArgumentsWithStringLiteralTypes01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/thisType/contextualThisType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/thisType/declarationFiles.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/thisType/fluentClasses.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/thisType/fluentInterfaces.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/thisType/inferThisType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/thisType/looseThisTypeInFunctions.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeAccessibility.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeAndConstraints.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeErrors2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeInAccessors.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeInAccessorsNegative.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeInBasePropertyAndDerivedContainerOfBase01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeInClasses.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeInFunctions.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeInFunctions2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeInFunctions3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeInFunctions4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeInInterfaces.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeInObjectLiterals.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeInObjectLiterals2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeInTaggedTemplateCall.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeInTuples.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeInTypePredicate.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeOptionalCall.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeSyntacticContext.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/thisType/typeRelationships.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/thisType/unionThisTypeInFunctions.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/tuple/arityAndOrderCompatibility01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/tuple/castingTuple.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/tuple/contextualTypeTupleEnd.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/tuple/contextualTypeWithTuple.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/tuple/emptyTuples/emptyTuplesTypeAssertion01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/tuple/emptyTuples/emptyTuplesTypeAssertion02.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/tuple/indexerWithTuple.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/tuple/named/namedTupleMembers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/tuple/named/namedTupleMembersErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/tuple/named/partiallyNamedTuples.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/tuple/named/partiallyNamedTuples2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/tuple/named/partiallyNamedTuples3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/tuple/optionalTupleElements1.ts +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/types/tuple/readonlyArraysAndTuples.ts +'readonly' type modifier is only permitted on array and tuple literal types. +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/tuple/readonlyArraysAndTuples2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/tuple/restTupleElements1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/tuple/strictTupleLength.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/tuple/tupleElementTypes1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/tuple/tupleElementTypes2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/tuple/tupleElementTypes3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/tuple/tupleElementTypes4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/tuple/tupleLengthCheck.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/tuple/typeInferenceWithTupleType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/tuple/unionsOfTupleTypes1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/tuple/variadicTuples1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/tuple/variadicTuples2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/tuple/variadicTuples3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/tuple/wideningTuples1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/tuple/wideningTuples2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/tuple/wideningTuples3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/tuple/wideningTuples4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/tuple/wideningTuples5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/tuple/wideningTuples6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/tuple/wideningTuples7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeAliases/asiPreventsParsingAsTypeAlias01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeAliases/asiPreventsParsingAsTypeAlias02.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeAliases/builtinIteratorReturn.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeAliases/circularTypeAliasForUnionWithClass.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeAliases/circularTypeAliasForUnionWithInterface.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeAliases/classDoesNotDependOnBaseTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeAliases/directDependenceBetweenTypeAliases.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeAliases/genericTypeAliases.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeAliases/interfaceDoesNotDependOnBaseTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeAliases/intrinsicKeyword.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeAliases/intrinsicTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeAliases/typeAliases.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeAliases/typeAliasesDoNotMerge.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeAliases/typeAliasesForObjectTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/recurringTypeParamForContainerOfBase01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/callGenericFunctionWithIncorrectNumberOfTypeArguments.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/callGenericFunctionWithZeroTypeArguments.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/callNonGenericFunctionWithTypeArguments.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/constraintSatisfactionWithAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/constraintSatisfactionWithAny2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/constraintSatisfactionWithEmptyObject.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/functionConstraintSatisfaction.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/functionConstraintSatisfaction2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/functionConstraintSatisfaction3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/instantiateGenericClassWithWrongNumberOfTypeArguments.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/instantiateGenericClassWithZeroTypeArguments.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/instantiateNonGenericTypeWithTypeArguments.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/instantiationExpressions.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/typeParameterAsTypeParameterConstraint.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/typeParameterAsTypeParameterConstraint2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/typeParameterAsTypeParameterConstraintTransitively.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/typeParameterAsTypeParameterConstraintTransitively2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/wrappedAndRecursiveConstraints.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/wrappedAndRecursiveConstraints2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/wrappedAndRecursiveConstraints3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/wrappedAndRecursiveConstraints4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParameterAsBaseType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParameterLists/innerTypeParameterShadowingOuterOne.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParameterLists/innerTypeParameterShadowingOuterOne2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParameterLists/propertyAccessOnTypeParameterWithConstraints.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParameterLists/propertyAccessOnTypeParameterWithConstraints2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParameterLists/propertyAccessOnTypeParameterWithConstraints3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParameterLists/propertyAccessOnTypeParameterWithConstraints4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParameterLists/propertyAccessOnTypeParameterWithConstraints5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParameterLists/propertyAccessOnTypeParameterWithoutConstraints.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParameterLists/staticMembersUsingClassTypeParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParameterLists/typeParameterConstModifiers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParameterLists/typeParameterConstModifiersReverseMappedTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParameterLists/typeParameterConstModifiersWithIntersection.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParameterLists/typeParameterDirectlyConstrainedToItself.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParameterLists/typeParameterIndirectlyConstrainedToItself.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParameterLists/typeParameterUsedAsConstraint.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParameterLists/typeParametersAvailableInNestedScope.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParameterLists/typeParametersAvailableInNestedScope2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParameterLists/typeParametersAvailableInNestedScope3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParameterLists/typesWithDuplicateTypeParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/apparentType/apparentTypeSubtyping.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/apparentType/apparentTypeSupertype.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/anyAssignabilityInInheritance.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/anyAssignableToEveryType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/anyAssignableToEveryType2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatBetweenTupleAndArray.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithCallSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithCallSignatures2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithCallSignatures3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithCallSignatures4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithCallSignatures5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithCallSignatures6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithCallSignaturesWithOptionalParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithCallSignaturesWithRestParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithConstructSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithConstructSignatures2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithConstructSignatures3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithConstructSignatures4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithConstructSignatures5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithConstructSignatures6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithConstructSignaturesWithOptionalParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithDiscriminatedUnion.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithEnumIndexer.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithGenericCallSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithGenericCallSignatures2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithGenericCallSignatures3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithGenericCallSignatures4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithGenericCallSignaturesWithOptionalParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithNumericIndexer.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithNumericIndexer2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithNumericIndexer3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithObjectMembers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithObjectMembers2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithObjectMembers3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithObjectMembers4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithObjectMembers5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithObjectMembersAccessibility.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithObjectMembersNumericNames.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithObjectMembersOptionality.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithObjectMembersOptionality2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithObjectMembersStringNumericNames.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithStringIndexer.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithStringIndexer2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithStringIndexer3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/callSignatureAssignabilityInInheritance.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/callSignatureAssignabilityInInheritance2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/callSignatureAssignabilityInInheritance3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/callSignatureAssignabilityInInheritance4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/callSignatureAssignabilityInInheritance5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/callSignatureAssignabilityInInheritance6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/constructSignatureAssignabilityInInheritance.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/constructSignatureAssignabilityInInheritance2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/constructSignatureAssignabilityInInheritance3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/constructSignatureAssignabilityInInheritance4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/constructSignatureAssignabilityInInheritance5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/constructSignatureAssignabilityInInheritance6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/covariantCallbacks.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/enumAssignability.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/enumAssignabilityInInheritance.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/everyTypeAssignableToAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/genericCallWithObjectTypeArgsAndInitializers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/intersectionIncludingPropFromGlobalAugmentation.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/nullAssignableToEveryType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/nullAssignedToUndefined.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/numberAssignableToEnum.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/optionalPropertyAssignableToStringIndexSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/typeParameterAssignability.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/typeParameterAssignability2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/typeParameterAssignability3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/undefinedAssignableToEveryType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/unionTypesAssignability.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/bestCommonType/arrayLiteralWithMultipleBestCommonTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/bestCommonType/bestCommonTypeOfConditionalExpressions.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/bestCommonType/bestCommonTypeOfConditionalExpressions2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/bestCommonType/bestCommonTypeOfTuple.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/bestCommonType/bestCommonTypeOfTuple2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/bestCommonType/functionWithMultipleReturnStatements.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/bestCommonType/functionWithMultipleReturnStatements2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/bestCommonType/heterogeneousArrayLiterals.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/comparable/equalityStrictNulls.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/comparable/equalityWithEnumTypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/comparable/equalityWithIntersectionTypes01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/comparable/equalityWithUnionTypes01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/comparable/equalityWithtNullishCoalescingAssignment.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/comparable/independentPropertyVariance.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/comparable/optionalProperties01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/comparable/optionalProperties02.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/comparable/switchCaseWithIntersectionTypes01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/comparable/switchCaseWithUnionTypes01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/comparable/typeAssertionsWithIntersectionTypes01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/comparable/typeAssertionsWithUnionTypes01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/comparable/weakTypesAndLiterals01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/instanceOf/narrowingConstrainedTypeVariable.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/instanceOf/narrowingGenericTypeFromInstanceof01.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/recursiveTypes/arrayLiteralsWithRecursiveGenerics.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/recursiveTypes/infiniteExpansionThroughInstantiation.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/recursiveTypes/infiniteExpansionThroughInstantiation2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/recursiveTypes/infiniteExpansionThroughTypeInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/recursiveTypes/nominalSubtypeCheckOfTypeParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/recursiveTypes/nominalSubtypeCheckOfTypeParameter2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/recursiveTypes/objectTypeWithRecursiveWrappedProperty.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/recursiveTypes/objectTypeWithRecursiveWrappedProperty2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/recursiveTypes/objectTypeWithRecursiveWrappedPropertyCheckedNominally.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/recursiveTypes/recursiveTypeInGenericConstraint.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/recursiveTypes/recursiveTypeReferences1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/recursiveTypes/recursiveTypesUsedAsFunctionParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/enumIsNotASubtypeOfAnythingButNumber.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/nullIsSubtypeOfEverythingButUndefined.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/stringLiteralTypeIsSubtypeOfString.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypesOfAny.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypesOfTypeParameter.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypesOfTypeParameterWithConstraints.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypesOfTypeParameterWithConstraints2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypesOfTypeParameterWithConstraints3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypesOfTypeParameterWithConstraints4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypesOfTypeParameterWithRecursiveConstraints.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypesOfUnion.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithCallSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithCallSignatures2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithCallSignatures3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithCallSignatures4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithCallSignaturesA.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithCallSignaturesWithOptionalParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithCallSignaturesWithRestParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithCallSignaturesWithSpecializedSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithConstructSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithConstructSignatures2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithConstructSignatures3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithConstructSignatures4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithConstructSignatures5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithConstructSignatures6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithConstructSignaturesWithOptionalParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithConstructSignaturesWithSpecializedSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithGenericCallSignaturesWithOptionalParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithGenericConstructSignaturesWithOptionalParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithNumericIndexer.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithNumericIndexer2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithNumericIndexer3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithNumericIndexer4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithNumericIndexer5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithObjectMembers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithObjectMembers2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithObjectMembers3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithObjectMembers4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithObjectMembers5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithObjectMembersAccessibility.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithObjectMembersAccessibility2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithObjectMembersOptionality.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithObjectMembersOptionality2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithObjectMembersOptionality3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithObjectMembersOptionality4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithOptionalProperties.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithStringIndexer.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithStringIndexer2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithStringIndexer3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithStringIndexer4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/undefinedIsSubtypeOfEverything.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/unionSubtypeIfEveryConstituentTypeIsSubtype.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentity.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentity2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithCallSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithCallSignatures2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithCallSignatures3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithCallSignaturesDifferingParamCounts.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithCallSignaturesDifferingParamCounts2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithCallSignaturesWithOverloads.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithComplexConstraints.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithConstructSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithConstructSignatures2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithConstructSignaturesDifferingParamCounts.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignatures2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesDifferingByConstraints.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesDifferingByConstraints2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesDifferingByConstraints3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesDifferingByReturnType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesDifferingByReturnType2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesDifferingTypeParameterCounts.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesDifferingTypeParameterCounts2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesDifferingTypeParameterNames.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesOptionalParams.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesOptionalParams2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesOptionalParams3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesDifferingByConstraints.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesDifferingByConstraints2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesDifferingByConstraints3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesDifferingByReturnType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesDifferingByReturnType2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesDifferingTypeParameterCounts.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesDifferingTypeParameterNames.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesOptionalParams.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesOptionalParams2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesOptionalParams3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithNumericIndexers1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithNumericIndexers2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithNumericIndexers3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithOptionality.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithPrivates.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithPrivates2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithPrivates3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithPublics.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithStringIndexers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithStringIndexers2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/primtiveTypesAreIdentical.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/typeParametersAreIdenticalToThemselves.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/unionTypeIdentity.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/bivariantInferences.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/contextualSignatureInstantiation.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/discriminatedUnionInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallToOverloadedMethodWithOverloadedArguments.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallTypeArgumentInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithArrayLiteralArgs.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithConstraintsTypeArgumentInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithConstraintsTypeArgumentInference2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithConstructorTypedArguments5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithFunctionTypedArguments.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithFunctionTypedArguments2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithFunctionTypedArguments3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithFunctionTypedArguments4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithFunctionTypedArguments5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithGenericSignatureArguments.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithGenericSignatureArguments2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithGenericSignatureArguments3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithNonSymmetricSubtypes.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithObjectLiteralArgs.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithObjectTypeArgs.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithObjectTypeArgs2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithObjectTypeArgsAndConstraints.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithObjectTypeArgsAndConstraints2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithObjectTypeArgsAndConstraints3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithObjectTypeArgsAndConstraints4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithObjectTypeArgsAndConstraints5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithObjectTypeArgsAndIndexers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithObjectTypeArgsAndIndexersErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithObjectTypeArgsAndNumericIndexer.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithObjectTypeArgsAndStringIndexer.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithOverloadedConstructorTypedArguments.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithOverloadedConstructorTypedArguments2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithOverloadedFunctionTypedArguments.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithOverloadedFunctionTypedArguments2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithTupleType.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericClassWithFunctionTypedMemberArguments.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericClassWithObjectTypeArgsAndConstraints.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericContextualTypes1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericContextualTypes2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericContextualTypes3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericFunctionParameters.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/indexSignatureTypeInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/intraExpressionInferences.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/intraExpressionInferencesJsx.tsx +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/keyofInferenceIntersectsResults.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/keyofInferenceLowerPriorityThanReturn.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/noInfer.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/noInferRedeclaration.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/unionAndIntersectionInference1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/unionAndIntersectionInference2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/unionAndIntersectionInference3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/unionTypeInference.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/widenedTypes/arrayLiteralWidened.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/widenedTypes/initializersWidened.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/widenedTypes/objectLiteralWidened.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/widenedTypes/strictNullChecksNoWidening.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/union/contextualTypeWithUnionTypeCallSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/union/contextualTypeWithUnionTypeIndexSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/union/contextualTypeWithUnionTypeMembers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/union/contextualTypeWithUnionTypeObjectLiteral.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/union/discriminatedUnionTypes1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/union/discriminatedUnionTypes2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/union/discriminatedUnionTypes3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/union/unionTypeCallSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/union/unionTypeCallSignatures2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/union/unionTypeCallSignatures3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/union/unionTypeCallSignatures4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/union/unionTypeCallSignatures5.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/union/unionTypeCallSignatures6.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/union/unionTypeCallSignatures7.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/union/unionTypeConstructSignatures.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/union/unionTypeEquivalence.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/union/unionTypeFromArrayLiteral.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/union/unionTypeIndexSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/union/unionTypeMembers.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/union/unionTypePropertyAccessibility.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/union/unionTypeReadonly.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/union/unionTypeReduction.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/union/unionTypeReduction2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/union/unionTypeWithIndexSignature.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/uniqueSymbol/uniqueSymbols.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/uniqueSymbol/uniqueSymbolsDeclarations.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/uniqueSymbol/uniqueSymbolsDeclarationsErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/uniqueSymbol/uniqueSymbolsErrors.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/uniqueSymbol/uniqueSymbolsPropertyNames.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/unknown/unknownControlFlow.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/unknown/unknownType1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/unknown/unknownType2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/witness/witness.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/typings/typingsLookup1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/typings/typingsLookup3.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/typings/typingsLookup4.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/typings/typingsLookupAmd.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/typings/typingsSuggestion1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/typings/typingsSuggestion2.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/typings/typingsSuggestionBun1.ts +Mismatch: tasks/coverage/typescript/tests/cases/conformance/typings/typingsSuggestionBun2.ts diff --git a/tasks/coverage/src/lib.rs b/tasks/coverage/src/lib.rs index 22fac43ded5bc..e847d845492d4 100644 --- a/tasks/coverage/src/lib.rs +++ b/tasks/coverage/src/lib.rs @@ -16,7 +16,7 @@ use std::{path::PathBuf, process::Command}; use oxc_tasks_common::project_root; use runtime::Test262RuntimeCase; -use tools::estree::{AcornJsxCase, AcornJsxSuite}; +use tools::estree::{AcornJsxCase, AcornJsxSuite, EstreeTypescriptCase}; use crate::{ babel::{BabelCase, BabelSuite}, @@ -115,6 +115,7 @@ impl AppArgs { } pub fn run_estree(&self) { + TypeScriptSuite::::new().run("estree_typescript", self); AcornJsxSuite::::new().run("estree_acorn_jsx", self); Test262Suite::::new().run("estree_test262", self); } diff --git a/tasks/coverage/src/tools/estree.rs b/tasks/coverage/src/tools/estree.rs index d89c1287858fb..e37338e4726d3 100644 --- a/tasks/coverage/src/tools/estree.rs +++ b/tasks/coverage/src/tools/estree.rs @@ -12,6 +12,7 @@ use oxc::{ use crate::{ suite::{Case, Suite, TestResult}, test262::Test262Case, + typescript::TypeScriptCase, workspace_root, }; @@ -313,3 +314,104 @@ impl Case for AcornJsxCase { self.result = TestResult::Mismatch("Mismatch", oxc_json, acorn_json); } } + +pub struct EstreeTypescriptCase { + path: PathBuf, + base: TypeScriptCase, + estree_file_path: PathBuf, +} + +impl Case for EstreeTypescriptCase { + fn new(path: PathBuf, code: String) -> Self { + let estree_file_path = workspace_root() + .join("./acorn-test262/test-typescript") + .join(path.strip_prefix("typescript").unwrap()) + .with_extension(format!("{}.md", path.extension().unwrap().to_str().unwrap())); + Self { path: path.clone(), base: TypeScriptCase::new(path, code), estree_file_path } + } + + fn code(&self) -> &str { + self.base.code() + } + + fn path(&self) -> &Path { + self.base.path() + } + + fn test_result(&self) -> &TestResult { + self.base.test_result() + } + + fn skip_test_case(&self) -> bool { + matches!(fs::exists(&self.estree_file_path), Ok(false)) + } + + fn run(&mut self) { + let estree_file_content = fs::read_to_string(&self.estree_file_path).unwrap(); + + let estree_units: Vec = estree_file_content + .split("__ESTREE_TEST__") + .skip(1) + .map(|s| { + let s = s.strip_prefix(":PASS:\n```json\n").unwrap(); + let s = s.strip_suffix("\n```\n").unwrap(); + s.to_string() + }) + .collect(); + + if estree_units.len() != self.base.units.len() { + // likely a bug in acorn-test262 script + self.base.result = TestResult::GenericError( + "Unexpected estree file content", + format!("{} != {}", estree_units.len(), self.base.units.len()), + ); + return; + } + + for (unit, estree_json) in self.base.units.iter().zip(estree_units.into_iter()) { + let source_text = &unit.content; + let allocator = Allocator::new(); + let ret = Parser::new(&allocator, source_text, unit.source_type).parse(); + + if ret.panicked || !ret.errors.is_empty() { + let error = ret + .errors + .first() + .map_or_else(|| "Panicked".to_string(), OxcDiagnostic::to_string); + self.base.result = TestResult::ParseError(error + "\n", ret.panicked); + return; + } + + let mut program = ret.program; + Utf8ToUtf16::new(source_text).convert_program(&mut program); + + let oxc_json = program.to_pretty_estree_ts_json(); + + if oxc_json == estree_json { + continue; + } + + // Mismatch found. + // Write diff to `acorn-test262-diff` directory only when SAVE_DIFF=true since it's slow + if std::option_env!("SAVE_DIFF") == Some("true") { + let diff_path = Path::new("./tasks/coverage/acorn-test262-diff") + .join(&self.path) + .with_extension("diff"); + std::fs::create_dir_all(diff_path.parent().unwrap()).unwrap(); + write!( + std::fs::File::create(diff_path).unwrap(), + "{}", + similar::TextDiff::from_lines(&estree_json, &oxc_json) + .unified_diff() + .missing_newline_hint(false) + ) + .unwrap(); + } + + self.base.result = TestResult::Mismatch("Mismatch", oxc_json, estree_json); + return; + } + + self.base.result = TestResult::Passed; + } +}