diff --git a/crates/oxc_ast/src/serialize.rs b/crates/oxc_ast/src/serialize.rs index c5871219bb771..d7db0f655cd93 100644 --- a/crates/oxc_ast/src/serialize.rs +++ b/crates/oxc_ast/src/serialize.rs @@ -1,12 +1,12 @@ use cow_utils::CowUtils; +use crate::ast::*; use oxc_ast_macros::ast_meta; use oxc_estree::{ CompactJSSerializer, CompactTSSerializer, ESTree, JsonSafeString, LoneSurrogatesString, PrettyJSSerializer, PrettyTSSerializer, SequenceSerializer, Serializer, StructSerializer, }; - -use crate::ast::*; +use oxc_span::GetSpan; /// Main serialization methods for `Program`. /// @@ -37,7 +37,16 @@ const JSON_CAPACITY_RATIO_PRETTY: usize = 80; impl Program<'_> { /// Serialize AST to ESTree JSON, including TypeScript fields. - pub fn to_estree_ts_json(&self) -> String { + pub fn to_estree_ts_json(&mut self) -> String { + // Set start span to first token of first directive or statement. This is required because + // unlike Acorn, TS-ESLint excludes whitespace and comments from the `Program` start span. + // See https://github.com/oxc-project/oxc/pull/10134 for more info. + if let Some(first_directive) = self.directives.first() { + self.span.start = first_directive.span.start; + } else if let Some(first_stmt) = self.body.first() { + self.span.start = first_stmt.span().start; + } + let capacity = self.source_text.len() * JSON_CAPACITY_RATIO_COMPACT; let mut serializer = CompactTSSerializer::with_capacity(capacity); self.serialize(&mut serializer); @@ -53,7 +62,16 @@ impl Program<'_> { } /// Serialize AST to pretty-printed ESTree JSON, including TypeScript fields. - pub fn to_pretty_estree_ts_json(&self) -> String { + pub fn to_pretty_estree_ts_json(&mut self) -> String { + // Set start span to first token of first directive or statement. This is required because + // unlike Acorn, TS-ESLint excludes whitespace and comments from the `Program` start span. + // See https://github.com/oxc-project/oxc/pull/10134 for more info. + if let Some(first_directive) = self.directives.first() { + self.span.start = first_directive.span.start; + } else if let Some(first_stmt) = self.body.first() { + self.span.start = first_stmt.span().start; + } + let capacity = self.source_text.len() * JSON_CAPACITY_RATIO_PRETTY; let mut serializer = PrettyTSSerializer::with_capacity(capacity); self.serialize(&mut serializer); diff --git a/tasks/coverage/snapshots/estree_typescript.snap b/tasks/coverage/snapshots/estree_typescript.snap index 809012c27df4a..c0ec2f06d7bad 100644 --- a/tasks/coverage/snapshots/estree_typescript.snap +++ b/tasks/coverage/snapshots/estree_typescript.snap @@ -1,16 +1,12 @@ commit: 15392346 estree_typescript Summary: -AST Parsed : 10619/10725 (99.01%) -Positive Passed: 5506/10725 (51.34%) -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 +AST Parsed : 10618/10725 (99.00%) +Positive Passed: 6658/10725 (62.08%) 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 Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/ClassDeclarationWithInvalidConstOnPropertyDeclaration.ts A class member cannot have the 'const' keyword. @@ -20,15 +16,12 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/ExportAssignment8.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/SystemModuleForStatementNoInitializer.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/abstractPropertyInConstructor.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/accessOverriddenBaseClassMember1.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/accessorInferredReturnTypeErrorInReturnStatement.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/accessorWithRestParam.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/aliasUsedAsNameValue.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/aliasesInSystemModule1.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/aliasesInSystemModule2.ts tasks/coverage/typescript/tests/cases/compiler/allowJsCrossMonorepoPackage.ts @@ -51,58 +44,40 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/ambientEnumElementIniti 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/ambientExternalModuleWithInternalImportDeclaration.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/ambientExternalModuleWithoutInternalImportDeclaration.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/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/anonymousClassDeclarationDoesntPrintWithReadonly.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/anonymousClassExpression2.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/anyMappedTypesError.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/argumentsSpreadRestIterables.tsx Mismatch: tasks/coverage/typescript/tests/cases/compiler/arityErrorRelatedSpanBindingPattern.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayAssignmentTest3.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayBestCommonTypes.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayCast.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayConcat3.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/arrayFind.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/arrayLiteralInNonVarArgParameter.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayLiteralTypeInference.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrayOfExportedClass.ts Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/arraySigChecking.ts Unexpected token Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/arrowFunctionErrorSpan.ts Line terminator not permitted before arrow -Mismatch: tasks/coverage/typescript/tests/cases/compiler/arrowFunctionParsingDoesNotConfuseParenthesizedObjectForArrowHead.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/asiAmbientFunctionDeclaration.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/asiBreak.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/asiContinue.ts @@ -120,34 +95,19 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability42.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/assignmentNonObjectTypeConstraints.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentRestElementWithErrorSourceType.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentToAnyArrayRestParameters.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/assignmentToExpandingArrayType.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. 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/asyncFunctionReturnType.2.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/asyncFunctionTempVariableScoping.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/asyncFunctionsAndStrictNullChecks.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/augmentExportEquals1_1.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/augmentExportEquals2_1.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/augmentExportEquals3_1.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_1.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 @@ -155,8 +115,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/augmentedTypesExternalM 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/augmentedTypesModules4.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/augmentedTypesVar.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/autoAsiForStaticsInClassDeclaration.ts @@ -166,31 +124,23 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/autonumberingInEnums.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/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/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/bangInModuleName.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/baseCheck.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/baseTypeAfterDerivedType.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/bestChoiceType.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/binaryArithmeticControlFlowGraphNotTooLarge.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/bindingPatternOmittedExpressionNesting.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/blockScopedBindingsReassignedInLoop2.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/blockScopedBindingsReassignedInLoop3.ts @@ -200,7 +150,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/blockScopedEnumVariable 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/blockScopedFunctionDeclarationInStrictModule.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/blockScopedNamespaceDifferentFile.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/breakTarget1.ts @@ -217,25 +166,16 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/cachedModuleResolution4 Mismatch: tasks/coverage/typescript/tests/cases/compiler/cachedModuleResolution5.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/callOfConditionalTypeWithConcreteBranches.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/capturedLetConstInLoop12.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/capturedLetConstInLoop13.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/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/castParentheses.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/cf.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/chainedAssignment1.ts @@ -243,9 +183,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/chainedAssignmentChecki 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/checkDestructuringShorthandAssigment2.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 @@ -265,26 +202,17 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/checkingObjectWithThisI 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/circularMappedTypeConstraint.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/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/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/classDeclaredBeforeClassFactory.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 @@ -294,39 +222,30 @@ tasks/coverage/typescript/tests/cases/compiler/classExtendingAny.ts Unexpected estree file content error: 1 != 2 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/classFunctionMerging.ts Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/classHeritageWithTrailingSeparator.ts Expected `{` but found `EOF` 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/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/classNameReferencesInStaticElements.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/classNonUniqueSymbolMethodHasSymbolIndexer.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/classPropInitializationInferenceWithElementAccess.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/classReferencedInContextualParameterWithinItsOwnBaseExpression.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/classStaticPropertyTypeGuard.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/classTypeParametersInStatics.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/classdecl.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/clinterfaces.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/cloduleTest1.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/clodulesDerivedClasses.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/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 @@ -362,18 +281,11 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionSuperAndProper Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionThisExpressionAndEnumInGlobal.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/collisionThisExpressionAndPropertyNameAsConstuctorParameter.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/commaOperatorLeftSideUnused.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/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 @@ -390,18 +302,10 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentOnArrayElement6. 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/commentOnBlock1.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/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/commentOnSignature1.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 @@ -411,40 +315,20 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsArgumentsOfCall 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/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/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/commentsOnPropertyOfObjectLiteral1.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsOnRequireStatement.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/commentsOverloads.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/commonSourceDirectory.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/commonSourceDirectory_dts.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/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/complicatedIndexedAccessKeyofReliesOnKeyofNeverUpperBound.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/computedEnumMemberSyntacticallyString.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/computedEnumMemberSyntacticallyString2.ts @@ -458,39 +342,26 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/computedPropertiesWithS 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/conditionalEqualityTestingNullability.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/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/conditionalTypeVarianceBigArrayConstraintsPerformance.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/conditionalTypesASI.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/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-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 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 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 @@ -515,35 +386,19 @@ 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/constraintCheckInGenericBaseTypeReference.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/constraintOfRecursivelyMappedTypeWithConditionalIsResolvable.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/constructorArgs.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/constructorOverloads9.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/constructorReturningAPrimitive.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/constructorStaticParamName.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/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/contextualSignatureInstantiation2.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualSignatureInstantiation4.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTupleTypeParameterReadonly.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypeAppliedToVarArgs.ts @@ -554,28 +409,20 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypeBasedOnIn 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/contextualTypeLogicalOr.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypeSelfReferencing.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/contextualTypingArrayDestructuringWithDefaults.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypingOfAccessors.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/contextualTypingOfTooShortOverloads.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/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/contextuallyTypingRestParameters.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/continueLabel.ts @@ -589,47 +436,31 @@ 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/controlFlowAliasedDiscriminants.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/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/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/controlFlowManyConsecutiveConditionsNoTimeout.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/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 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/correlatedUnions.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/covariance1.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/crashIntypeCheckInvocationExpression.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/crashIntypeCheckObjectCreationExpression.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/crashRegressionTest.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/declFileAccessors.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/declFileClassWithStaticMethodReturningConstructor.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileConstructSignatures.ts @@ -638,24 +469,18 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileEmitDeclaration 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/declFileForExportedImport.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileForInterfaceWithRestParams.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileFunctions.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/declFileMethods.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileModuleContinuation.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/declFileTypeAnnotationBuiltInType.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileTypeAnnotationTypeLiteral.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileTypeofEnum.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileTypeofInAnonymousType.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 @@ -663,14 +488,12 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/declFileWithInternalMod Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationAssertionNodeNotReusedWhenTypeNotEquivalent1.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitAliasFromIndirectFile.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/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 tasks/coverage/typescript/tests/cases/compiler/declarationEmitBundlerConditions.ts Unexpected estree file content error: 3 != 4 @@ -718,8 +541,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitDestruct 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/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/declarationEmitDuplicateParameterDestructuring.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitEnumReadonlyProperty.ts @@ -728,7 +549,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitExpandoW Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitExpressionInExtends3.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/declarationEmitFBoundedTypeParams.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 @@ -750,9 +570,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitInferred 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/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 @@ -783,7 +600,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitNoNonReq 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/declarationEmitOptionalMappedTypePropertyNoStrictNullChecks1.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitOptionalMappedTypePropertyNoStrictNullChecks2.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitOptionalMappedTypePropertyNoStrictNullChecks3.ts @@ -791,13 +607,11 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitOptional 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/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/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/declarationEmitRecursiveConditionalAliasPreserved.ts @@ -840,9 +654,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitUsingTyp Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitVarInElidedBlock.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/declarationFilesGeneratingTypeReferences.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/declarationImportTypeAliasInferredAndEmittable.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationMaps.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationMapsWithoutDeclaration.ts @@ -872,8 +683,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/decoratorReferenceOnOth Mismatch: tasks/coverage/typescript/tests/cases/compiler/decoratorReferences.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/deepKeysIndexing.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/deeplyNestedCheck.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 @@ -883,7 +692,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/defaultNamedExportWithT 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 tasks/coverage/typescript/tests/cases/compiler/defaultPropsEmptyCurlyBecomesAnyForJs.ts Unexpected estree file content error: 2 != 3 @@ -902,7 +710,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/destructureCatchClause. 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 @@ -932,24 +739,14 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/destructuringWithNewExp Mismatch: tasks/coverage/typescript/tests/cases/compiler/destructuringWithNumberLiteral.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/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/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/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/distributiveConditionalTypeNeverIntersection1.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/divergentAccessors1.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/divergentAccessorsTypes8.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/divideAndConquerIntersections.ts @@ -963,11 +760,9 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/doNotEmitPinnedCommentO 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/doNotemitTripleSlashComments.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/dottedModuleName2.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/dottedNamesInSystem.ts @@ -994,10 +789,7 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateDefaultExport. 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/duplicateIdentifierDifferentModifiers.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateIdentifierEnum.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/duplicateIdentifierShouldNotShortCircuitBaseTypeBinding.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateLabel1.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateLabel2.ts @@ -1009,23 +801,13 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateLocalVariable4 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/duplicatePackage_packageIdIncludesSubModule.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicatePackage_referenceTypes.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/duplicateVarAndImport.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/duplicateVarAndImport2.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/dynamicImportEvaluateSpecifier.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/dynamicImportInDefaultExportExpression.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/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/elaboratedErrorsOnNullableTargets01.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/elementAccessExpressionInternalComments.ts tasks/coverage/typescript/tests/cases/compiler/elidedJSImport1.ts Unexpected estree file content error: 1 != 2 @@ -1047,7 +829,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/emitHelpersWithLocalCol 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/emitPinnedCommentsOnTopOfFile.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 @@ -1112,13 +893,11 @@ 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/errorConstructorSubtypes.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/errorElaboration.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/errorForUsingPropertyOfTypeAsType03.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/errorForwardReferenceForwadingConstructor.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/errorInfoForRelatedIndexTypesNoConstraintElaboration.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/errorMessageOnIntersectionsWithDiscriminants01.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/errorOnEnumReferenceInCondition.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/errorsOnUnionsOfOverlappingObjects01.ts @@ -1127,7 +906,6 @@ 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/es5-asyncFunctionDoStatements.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-asyncFunctionForOfStatements.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-asyncFunctionWhileStatements.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-commonjs.ts @@ -1144,7 +922,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/es5-system2.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 @@ -1175,7 +952,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ExportDefaultFunctio 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 Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/es6ImportDefaultBindingFollowedWithNamedImport1WithExport.ts Expected `=` but found `,` Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/es6ImportDefaultBindingFollowedWithNamedImportWithExport.ts @@ -1207,28 +983,21 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/es6ModuleModuleDeclarat 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/esDecoratorsClassFieldsCrash.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/esModuleInteropImportDefaultWhenAllNamedAreDefaultAlias.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/esModuleInteropImportTSLibHasImport.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/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/evalOrArgumentsInDeclarationFunctions.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/eventEmitterPatternWithRecordOfFunction.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/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/excessPropertyCheckWithSpread.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/excessPropertyChecksWithNestedIntersections.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/exhaustiveSwitchWithWideningLiteralTypes.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/expandoFunctionBlockShadowing.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/expandoFunctionContextualTypesJSDocInTs.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/expandoFunctionContextualTypesNoValue.ts @@ -1243,13 +1012,9 @@ Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/exportAlreadySee 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/exportAssignClassAndModule.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportAssignValueAndType.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportAssignedTypeAsTypeAnnotation.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/exportAssignmentOfDeclaredExternalModule.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportAssignmentOfGenericType1.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 @@ -1279,11 +1044,9 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportDefaultInterfaceC Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportDefaultMissingName.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/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 @@ -1292,16 +1055,12 @@ 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/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/exportImportAndClodule.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/exportImportCanSubstituteConstEnumForValue.ts @@ -1329,13 +1088,9 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/extendBaseClassBeforeIt tasks/coverage/typescript/tests/cases/compiler/extendsUntypedModule.ts Unexpected estree file content error: 1 != 3 -Mismatch: tasks/coverage/typescript/tests/cases/compiler/externalModuleAssignToVar.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/externalModuleRefernceResolutionOrderInImportDeclaration.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/externalModuleWithoutCompilerFlag1.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/extractInferenceImprovement.ts tasks/coverage/typescript/tests/cases/compiler/fakeInfinity1.ts serde_json::from_str(oxc_json) error: number out of range at line 32 column 27 @@ -1351,19 +1106,14 @@ Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/fatarrowfunction 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/flatArrayNoExcessiveStackDepth.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/flowControlTypeGuardThenSwitch.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/forOfTransformsExpression.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/freshLiteralTypesInIntersections.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/funcdecl.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionAndInterfaceWithSeparateErrors.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionArgShadowing.ts @@ -1373,37 +1123,25 @@ 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/functionCallOnConstrainedTypeVariable.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/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/functionOverloadsOnGenericArity1.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionOverloadsRecursiveGenericReturnType.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionReturnTypeQuery.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/functionTypeArgumentArityErrors.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionWithAnyReturnTypeAndNoReturnExpression.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/functionWithDefaultParameterWithNoStatements4.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/fuzzy.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/generatorES6InAMDModule.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericArray1.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/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/genericClassImplementingGenericInterfaceFromAnotherModule.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericClassPropertyInheritanceSpecialization.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/genericClasses4.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericClassesInModule2.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericConditionalConstrainedToUnknownNotAssignableToConcreteObject.ts @@ -1419,8 +1157,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericFunctionInferenc 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/genericIndexedAccessMethodIntersectionCanBeAccessed.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 @@ -1434,48 +1170,28 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericRecursiveImplici 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/genericSignatureIdentity.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericSpecializationToTypeLiteral1.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/genericTypeParameterEquivalence2.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericTypeWithCallableMembers.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/genericWithCallSignatures1.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericWithIndexerOfTypeParameterType2.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/genericsAndHigherOrderFunctions.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/getParameterNameAtPosition.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/gettersAndSetters.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/globalThisCapture.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/higherOrderMappedIndexLookupInference.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/icomparable.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/identityRelationNeverTypes.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/ifStatementInternalComments.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/ignoredJsxAttributes.tsx 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/implementArrayInterface.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/implementGenericWithMismatchedTypes.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/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/implicitAnyGetAndSetAccessorWithAnyReturnType.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/implicitAnyInCatch.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/implicitAnyWidenToAny.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 @@ -1492,13 +1208,11 @@ Unexpected estree file content error: 3 != 10 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/importAnImport.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/importDeclWithExportModifier.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/importDeclWithExportModifierAndExportAssignment.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/importExportInternalComments.ts @@ -1513,7 +1227,6 @@ 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/importHelpersOutFile.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/importHelpersSystem.ts @@ -1546,25 +1259,18 @@ 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_noResolve.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/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/inKeywordAndUnknown.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/incorrectRecursiveMappedTypeConstraint.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexClassByNumber.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexSignatureAndMappedType.ts Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/indexSignatureMustHaveTypeAnnotation.ts Unexpected token 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 @@ -1583,7 +1289,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexedAccessNormalizat 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/indexedAccessTypeConstraints.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/indexedAccessWithVariableElement.ts Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/indexerAsOptional.ts Unexpected token Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/indexerConstraints2.ts @@ -1600,23 +1305,17 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferFromAnnotatedRetur 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/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/inferStringLiteralUnionForBindingElement.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferTInParentheses.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/inferenceDoesntCompareAgainstUninstantiatedTypeParameter.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferenceErasedSignatures.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/inferenceOptionalPropertiesToIndexSignatures.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferenceOuterResultNotIncorrectlyInstantiatedWithInnerResult.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferenceShouldFailOnEvolvingArrays.ts @@ -1628,24 +1327,16 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/inferredReturnTypeIncor Mismatch: tasks/coverage/typescript/tests/cases/compiler/infiniteConstraints.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/inheritedMembersAndIndexSignaturesFromDifferentBases.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/initializedParameterBeforeNonoptionalNotOptional.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/initializersInAmbientEnums.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/inlineMappedTypeModifierDeclarationEmit.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/inlineSourceMap2.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/innerExtern.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/instanceAndStaticDeclarations1.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/instanceOfInExternalModules.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/instanceofWithStructurallyIdenticalTypes.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/instantiatedTypeAliasDisplay.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/instantiationExpressionErrorNoCrash.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfaceAssignmentCompat.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/interfaceContextualType.ts @@ -1694,7 +1385,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/internalAliasVarInsideL 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/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 @@ -1703,17 +1393,12 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/intersectionTypeInferen Mismatch: tasks/coverage/typescript/tests/cases/compiler/intersectionTypeNormalization.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/intersectionType_useDefineForClassFields.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/intersectionWithConstructSignaturePrototypeResult.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/intersectionsAndOptionalProperties2.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/invalidTripleSlashReference.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/invalidTypeNames.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/invariantGenericErrorElaboration.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/ipromise2.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/ipromise4.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/isolatedDeclarationErrorsClasses.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedDeclarationErrorsClassesExpressions.ts @@ -1733,7 +1418,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedModulesAmbientC 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/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/isolatedModulesGlobalNamespacesAndEnums.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedModulesImportConstEnum.ts @@ -1742,14 +1426,11 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedModulesImportEx Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedModulesNoEmitOnError.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/isolatedModulesNonAmbientConstEnum.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/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/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 @@ -1867,21 +1548,16 @@ 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 tasks/coverage/typescript/tests/cases/compiler/jsdocReferenceGlobalTypeInCommonJs.ts Unexpected estree file content error: 2 != 3 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/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/jsxComplexSignatureHasApplicabilityError.tsx Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxComponentTypeErrors.tsx Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxElementClassTooManyParams.tsx @@ -1900,12 +1576,9 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxFragmentAndFactoryUs 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/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 @@ -1921,58 +1594,29 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/jsxNamespacedNameNotCom 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/keyRemappingKeyofResult.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/keyofIsLiteralContexualType.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/keywordExpressionInternalComments.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/knockout.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/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/letDeclarations-es5-1.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 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 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/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/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/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/literalWideningWithCompoundLikeAssignments.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/literals-negative.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/localImportNameVsGlobalName.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/localTypeParameterInferencePriority.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/mapOnTupleTypes01.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/mapOnTupleTypes02.ts @@ -1985,7 +1629,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/mappedTypeContextualTyp 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 @@ -1998,7 +1641,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/mappedTypeNoTypeNoCrash 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 @@ -2009,22 +1651,15 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/mappedTypeWithAsClauseA 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 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/memberOverride.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/memberVariableDeclarations1.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/mergeSymbolRexportFunction.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/mergeWithImportedType.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/mergedDeclarationExports.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/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 @@ -2033,10 +1668,8 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/mergedModuleDeclaration Mismatch: tasks/coverage/typescript/tests/cases/compiler/metadataImportType.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/metadataOfUnion.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/missingCommaInTemplateStringsArray.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/missingFunctionImplementation.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/missingImportAfterModuleImport.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/mixedTypeEnumComparison.ts @@ -2060,34 +1693,17 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/modularizeLibrary_Using Mismatch: tasks/coverage/typescript/tests/cases/compiler/modularizeLibrary_UsingES5LibAndES6FeatureLibs.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/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/moduleAugmentationDoesNamespaceEnumMergeOfReexport.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/moduleAugmentationGlobal2.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationGlobal3.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationGlobal5.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/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/moduleAugmentationNoNewNames.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/moduleCodeGenTest5.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleCodegenTest4.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleDuplicateIdentifiers.ts @@ -2098,11 +1714,8 @@ 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/moduleMemberWithoutTypeAnnotation1.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleMerge.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 @@ -2124,8 +1737,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/modulePrologueCommonjs. 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/moduleResolutionNoTsCJS.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleResolutionNoTsESM.ts tasks/coverage/typescript/tests/cases/compiler/moduleResolutionWithExtensions_notSupported.ts Unexpected estree file content error: 2 != 4 @@ -2159,11 +1770,7 @@ Unexpected estree file content error: 3 != 5 tasks/coverage/typescript/tests/cases/compiler/moduleResolutionWithSuffixes_one_jsModule.ts Unexpected estree file content error: 1 != 3 -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 tasks/coverage/typescript/tests/cases/compiler/moduleResolution_classicPrefersTs.ts Unexpected estree file content error: 2 != 3 @@ -2192,7 +1799,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleSharesNameWithImp 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/moduleVisibilityTest1.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/moduleVisibilityTest2.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/module_augmentUninstantiatedModule2.ts @@ -2203,44 +1809,28 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/multiSignatureTypeInfer Mismatch: tasks/coverage/typescript/tests/cases/compiler/multipleExportAssignments.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/multipleExports.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/multivar.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/mutuallyRecursiveCallbacks.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/mutuallyRecursiveInterfaceDeclaration.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/namespaceNotMergedWithFunctionDefaultExport.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowByClauseExpressionInSwitchTrue1.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowByClauseExpressionInSwitchTrue2.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowByClauseExpressionInSwitchTrue9.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowBySwitchDiscriminantUndefinedCase1.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowRefinedConstLikeParameterBIndingElementNameInInnerScope.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowTypeByInstanceof.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowedConstInMethod.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/narrowingPastLastAssignmentInModule.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowingRestGenericCall.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/narrowingTypeofParenthesized1.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/nestedExcessPropertyChecking.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/nestedHomomorphicMappedTypesWithArrayConstraint1.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedLoopTypeGuards.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedLoops.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedObjectRest.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/nestedSuperCallEmit.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/newFunctionImplicitAny.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/newNamesInGlobalAugmentations1.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/noAsConstNameLookup.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/noCheckDoesNotReportError.ts @@ -2250,14 +1840,11 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/noCircularDefinitionOnE 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/noDefaultLib.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 @@ -2282,28 +1869,21 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitAnyParameters 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/noImplicitReturnsExclusions.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/noImplicitReturnsInAsync2.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/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/noIterationTypeErrorsInCFA.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/noObjectKeysToKeyofT.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/noRepeatedPropertyNames.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/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_selfReference.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/noUnusedLocals_writeOnly.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/noUsedBeforeDefinedErrorInAmbientContext1.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/noUsedBeforeDefinedErrorInTypeContext.ts tasks/coverage/typescript/tests/cases/compiler/nodeNextImportModeImplicitIndexResolution2.ts Unexpected estree file content error: 4 != 6 @@ -2311,9 +1891,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/nodeNextModuleResolutio tasks/coverage/typescript/tests/cases/compiler/nodeNextModuleResolution2.ts Unexpected estree file content error: 1 != 2 -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/nodeResolution4.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/nodeResolution6.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/nodeResolution8.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/nonArrayRestArgs.ts @@ -2321,15 +1898,9 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/nonExportedElementsOfMe 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/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/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/nonNullableWithNullableGenericIndexedAccessArg.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/nongenericConditionalNotPartiallyComputed.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/numberAssignableToEnumInsideUnion.ts Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/numberVsBigIntOperations.ts Missing initializer in const declaration @@ -2338,10 +1909,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectBindingPatternCon Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectBindingPattern_restElementWithPropertyName.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectCreationOfElementAccessExpression.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/objectLitPropertyScoping.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectLitStructuralTypeMismatch.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectLiteralComputedNameNoDeclarationError.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectLiteralEnumPropertyNames.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectLiteralIndexerNoImplicitAny.ts @@ -2354,30 +1921,19 @@ Expected `,` but found `?` Mismatch: tasks/coverage/typescript/tests/cases/compiler/objectLiteralParameterResolution.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/observableInferenceCanBeMade.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/operatorAddNullUndefined.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/optionalChainWithInstantiationExpression2.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/optionalParamArgsTest.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/optionalTupleElementsAndUndefined.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/optionsOutAndNoModuleGen.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/out-flag.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/out-flag3.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/outModuleConcatCommonjs.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/outModuleConcatES6.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/outModuleConcatUmd.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/overloadAssignmentCompat.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadCrash.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/overloadResolutionOverNonCTLambdas.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/overloadedConstructorFixesInferencesAppropriately.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/overrideBaseIntersectionMethod.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/overshifts.ts @@ -2394,8 +1950,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/parameterReferenceInIni 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/parenthesizedAsyncArrowFunction.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/parenthesizedExpressionInternalComments.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/parseEntityNameWithReservedWord.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/parseInvalidNonNullableTypes.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/parseInvalidNullableTypes.ts @@ -2403,9 +1957,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/parseReplacementCharact 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/partialOfLargeAPIIsAbleToBeWorkedWith.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/partiallyDiscriminantedUnions.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution3_classic.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution3_node.ts tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution_rootImport_aliasWithRoot.ts Unexpected estree file content error: 2 != 3 @@ -2432,16 +1983,12 @@ Unexpected estree file content error: 1 != 2 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/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/preserveConstEnums.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/prespecializedGenericMembers1.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/primitiveUnionDetection.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 @@ -2453,7 +2000,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyCheckTypeOfFunct Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyClass.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyClassImplementsClauseDeclFile.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 @@ -2465,8 +2011,6 @@ Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/privacyImportPar Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyInterface.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 @@ -2478,7 +2022,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/privacyTypeParametersOf 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/privateFieldAssignabilityFromUnknown.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/promiseChaining.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/promiseChaining1.ts @@ -2489,18 +2032,11 @@ 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/promisePermutations2.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/promisePermutations3.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/promiseWithResolvers.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/propTypeValidatorInference.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/propertyAccessExpressionInnerComments.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/propertyIdentityWithPrivacyMismatch.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/propertyOrdering2.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/protoAsIndexInIndexExpression.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/quickinfoTypeAtReturnPositionsInaccurate.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/raiseErrorOnParameterProperty.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/ramdaToolsNoInfinite.ts @@ -2512,37 +2048,26 @@ 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/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/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/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/readonlyMembers.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/readonlyTupleAndArrayElaboration.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveArrayNotCircular.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveBaseCheck2.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveClassBaseType.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveClassReferenceTest.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/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/recursiveFieldSetting.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveGenericTypeHierarchy.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveMods.ts tasks/coverage/typescript/tests/cases/compiler/recursiveResolveDeclaredMembers.ts Unexpected estree file content error: 1 != 2 @@ -2552,21 +2077,16 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/recursiveReverseMappedT 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/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/recursiveTypeRelations.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/redeclareParameterInCatchBlock.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/reducibleIndexedAccessTypes.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/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/regularExpressionCharacterClassRangeOrder.ts Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/regularExpressionScanning.ts Unexpected flag a in regular expression literal Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/regularExpressionWithNonBMPFlags.ts @@ -2579,8 +2099,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/renamingDestructuredPro 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/requiredInitializedParameter1.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/requiredMappedTypeModifierTrumpsVariance.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/resolveInterfaceNameWithSameLetDeclarationName1.ts @@ -2617,7 +2135,6 @@ 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/returnTypeInferenceNotTooBroad.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/returnTypePredicateIsInstantiateInContextOfTarget.tsx -Mismatch: tasks/coverage/typescript/tests/cases/compiler/reuseInnerModuleMember.ts tasks/coverage/typescript/tests/cases/compiler/reuseTypeAnnotationImportTypeInGlobalThisTypeArgument.ts Unexpected estree file content error: 2 != 4 @@ -2636,11 +2153,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/reverseMappedTypeLimite 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/satisfiesEmit.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/shadowedFunctionScopedVariablesByBlockScopedOnes.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/shadowedReservedCompilerDeclarationsWithNoEmit.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/shadowingViaLocalValueOrBindingElement.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/shebang.ts @@ -2667,10 +2179,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/signatureCombiningRestP 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/signatureOverloadsWithComments.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/silentNeverPropagation.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/simplifyingConditionalWithInteriorConditionalIsRelated.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-FileWithComments.ts @@ -2729,13 +2237,7 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationExpo Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationFunctions.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/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/sourceMapWithNonCaseSensitiveFileNames.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/sourceMapWithNonCaseSensitiveFileNamesAndOutDir.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/specializeVarArgs1.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/specializedOverloadWithRestParameters.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/spellingSuggestionGlobal1.ts @@ -2744,8 +2246,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/spellingSuggestionGloba 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/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/spreadInvalidArgumentType.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/spreadOfParamsFromGeneratorMakesRequiredParams.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/spreadParameterTupleType.ts @@ -2753,12 +2253,7 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/spreadTupleAccessedByTy 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/staticAnonymousTypeNotReferencingTypeParameter.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/staticInitializersAndLegacyClassDecorators.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/staticInstanceResolution3.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/staticMethodReferencingTypeArgument1.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/staticMethodWithTypeParameterExtendsClauseDeclFile.ts Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/staticPrototypeProperty.ts @@ -2777,7 +2272,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/strictModeUseContextual 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 @@ -2785,8 +2279,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/strictOptionalPropertie Mismatch: tasks/coverage/typescript/tests/cases/compiler/strictSubtypeAndNarrowing.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/stringMatchAll.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/stringRawType.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/stripMembersOptionality.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/styleOptions.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/styledComponentsInstantiaionLimitNotReached.ts tasks/coverage/typescript/tests/cases/compiler/subclassThisTypeAssignable01.ts Unexpected estree file content error: 1 != 2 @@ -2798,8 +2290,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/subclassWithPolymorphic Mismatch: tasks/coverage/typescript/tests/cases/compiler/substitutionTypeNoMergeOfAssignableType.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/super1.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/super2.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/superCallArgsMustMatch.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/superCallFromClassThatDerivesFromGenericTypeButWithIncorrectNumberOfTypeArguments1.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/superCallFromClassThatDerivesFromGenericTypeButWithNoTypeArguments1.ts @@ -2807,7 +2297,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/superCallFromClassThatD Mismatch: tasks/coverage/typescript/tests/cases/compiler/superCallFromClassThatHasNoBaseType1.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/superCallWithCommentEmit01.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/superNewCall1.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/symbolLinkDeclarationEmitModuleNames.ts @@ -2823,7 +2312,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/systemJsForInNoExceptio 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 @@ -2857,8 +2345,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/taggedTemplateWithoutDe 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/targetTypeTest2.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/targetTypeTest3.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 @@ -2874,13 +2360,10 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/templateStringsArrayTyp Mismatch: tasks/coverage/typescript/tests/cases/compiler/templateStringsArrayTypeRedefinedInES6Mode.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/testContainerList.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisConditionalOnMethodReturnOfGenericInstance.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisInAccessors.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisInClassBodyStaticESNext.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisInConstructorParameter2.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisInGenericStaticMembers.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/thisInTupleTypeParameterConstraints.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisInTypeQuery.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/thisPredicateInObjectLiteral.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/this_inside-enum-should-not-be-allowed.ts @@ -2892,17 +2375,9 @@ Unexpected estree file content error: 1 != 2 Mismatch: tasks/coverage/typescript/tests/cases/compiler/topLevelExports.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/transformArrowInBlockScopedLoopVarInitializer.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/transformNestedGeneratorsWithTry.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/truthinessCallExpressionCoercion3.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/tryCatchFinallyControlFlow.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/tryStatementInternalComments.ts tasks/coverage/typescript/tests/cases/compiler/tslibMissingHelper.ts Unexpected estree file content error: 3 != 4 @@ -2920,7 +2395,6 @@ Unexpected estree file content error: 1 != 3 Mismatch: tasks/coverage/typescript/tests/cases/compiler/tsxAttributesHasInferrableIndex.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/tsxInvokeComponentType.tsx Mismatch: tasks/coverage/typescript/tests/cases/compiler/tsxNoTypeAnnotatedSFC.tsx Mismatch: tasks/coverage/typescript/tests/cases/compiler/tsxNotUsingApparentTypeOfSFC.tsx @@ -2930,21 +2404,12 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/tsxStatelessComponentDe 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/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/typeAliasFunctionTypeSharedSymbol.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeArgInference.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeArgInferenceWithNull.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeAssignabilityErrorMessage.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 @@ -2952,96 +2417,55 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeGuardNarrowsIndexed Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeGuardNarrowsIndexedAccessOfKnownProperty12.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeGuardNarrowsIndexedAccessOfKnownProperty7.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeGuardOnContainerTypeNoHang.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeInferenceCacheInvalidation.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeInferenceFBoundedTypeParams.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeInferenceLiteralUnion.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/typeInterfaceDeclarationsInBlockStatements1.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/typeOfYieldWithUnionInContextualReturnType.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterCompatibilityAccrossDeclarations.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterConstraintInstantiation.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterExtendsPrimitive.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeParameterLeak.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/typePredicatesInUnion3.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/typeReferenceDirectives12.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeReferenceDirectives13.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/typeReferenceDirectives9.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeResolution.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/typecheckIfCondition.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/typedArrayConstructorOverloads.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/typeofAmbientExternalModules.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeofEnum.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeofImportInstantiationExpression.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeofObjectInference.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeofThisInMethodSignature.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/typeofUnknownSymbol.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/unaryPlus.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/undefinedAssignableToGenericMappedIntersection.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/undefinedTypeArgument2.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/underscoreEscapedNameInEnum.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/unionCallMixedTypeParameterPresence.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/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/unionSignaturesWithThisParameter.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/unionTypeParameterInference.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/unionTypeWithLeadingOperator.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/unmatchedParameterPositions.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/unmetTypeConstraintInImportCall.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/unreachableDeclarations.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/unresolvableSelfReferencingAwaitedUnion.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/unspecializedConstraints.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/unusedDestructuring.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedDestructuringParameters.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 @@ -3051,13 +2475,10 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedLocalsAndParamete Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedLocalsAndParametersTypeAliases2.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/unusedLocalsStartingWithUnderscore.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/unusedParametersWithUnderscore.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedSetterInClass2.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedTypeParameters9.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedVariablesWithUnderscoreInBindingElement.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/unusedVariablesinModules1.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/unwitnessedTypeParameterVariance.ts @@ -3067,7 +2488,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/compiler/useBeforeDefinitionInDe Mismatch: tasks/coverage/typescript/tests/cases/compiler/useStrictLikePrologueString01.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 Expect to Parse: tasks/coverage/typescript/tests/cases/compiler/varArgConstructorMemberParameter.ts Unexpected token Mismatch: tasks/coverage/typescript/tests/cases/compiler/varArgParamTypeCheck.ts @@ -3076,32 +2496,19 @@ 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/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/varianceRepeatedlyPropegatesWithUnreliableFlag.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/verbatim-declarations-parameters.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/voidAsNonAmbiguousReturnType.ts Mismatch: tasks/coverage/typescript/tests/cases/compiler/voidReturnIndexUnionInference.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/webworkerIterable.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/whileStatementInnerComments.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/withStatementInternalComments.ts -Mismatch: tasks/coverage/typescript/tests/cases/compiler/yieldInForInInDownlevelGenerator.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/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/ambientEnumDeclaration1.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/ambient/ambientEnumDeclaration2.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/ambient/ambientExternalModuleInsideNonAmbient.ts @@ -3132,7 +2539,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/conformance/async/es5/asyncArrow 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/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/asyncMethodWithSuper_es5.ts Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/async/es5/functionDeclarations/asyncFunctionDeclaration12_es5.ts @@ -3159,29 +2565,20 @@ Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/async/es6/fun 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/classDeclarations/classAbstractKeyword/classAbstractInstantiations1.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/constructorFunctionTypeIsAssignableToBaseType2.ts -Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classWithPredefinedTypesAsNames.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/modifierOnClassDeclarationMemberInFunction.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/genericClassExpressionInFunction.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classExpressions/modifierOnClassExpressionMemberInFunction.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/classStaticBlock24.ts -Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/classStaticBlock/classStaticBlock27.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/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 @@ -3197,39 +2594,23 @@ Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/constructorD 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/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/indexMemberDeclarations/staticIndexers.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/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/protectedClassPropertyAccessibleWithinSubclass.ts -Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/accessibility/protectedStaticNotAccessibleInClodule.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/classWithStaticMembers.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/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/typeOfThisInStaticMembers5.ts -Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/instanceAndStaticMembers/typeOfThisInstanceMemberNarrowedWithLoopAntecedent.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameAccessorsCallExpression.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 @@ -3237,7 +2618,6 @@ Unexpected token 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/privateNameComputedPropertyName1.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/privateNameEmitHelpers.ts @@ -3262,9 +2642,7 @@ Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/priv Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameStaticMethodCallExpression.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameUnused.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-5.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateWriteOnlyAccessorRead.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 @@ -3278,20 +2656,13 @@ Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemb 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/autoAccessor9.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/autoAccessorAllowedModifiers.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/accessorsAreNotContextuallyTyped.ts -Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/memberAccessorDeclarations/ambientAccessors.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 @@ -3299,11 +2670,8 @@ Classes may not have a static property named prototype Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/propertyOverridesAccessors2.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/propertyOverridesAccessors5.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/redefinedPararameterProperty.ts -Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/staticAutoAccessors.ts -Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/staticAutoAccessorsWithDecorators.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 tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/thisPropertyOverridesAccessors.ts Unexpected estree file content error: 1 != 2 @@ -3311,7 +2679,6 @@ Unexpected estree file content error: 1 != 2 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/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 @@ -3329,8 +2696,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlF Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowInOperator.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowInstanceofExtendsFunction.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/controlFlowOptionalChain3.tsx Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowParameter.ts @@ -3340,7 +2705,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/conformance/controlFlow/dependen 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/typeGuardsTypeParameters.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/declarationEmit/declarationEmitWorkWithInlineComments.ts @@ -3348,8 +2712,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/conformance/declarationEmit/expo Mismatch: tasks/coverage/typescript/tests/cases/conformance/declarationEmit/exportDefaultNamespace.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/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 @@ -3370,20 +2732,13 @@ Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/dec 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/decoratorOnClass2.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/decoratorOnClass3.ts -Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/decoratorOnClassMethod19.ts -Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/parameter/decoratorOnClassMethodParameter3.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/decorators/class/property/decoratorOnClassProperty12.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/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 @@ -3445,15 +2800,13 @@ Mismatch: tasks/coverage/typescript/tests/cases/conformance/enums/enumExportMerg 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/useObjectValuesAndEntries1.ts -Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2018/es2018IntlAPIs.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2019/allowUnescapedParagraphAndLineSeparatorsInStringLiteral.ts -Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2019/globalThisGlobalExportAsGlobal.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 +Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/es2019/importMeta/importMeta.ts +The only valid meta property for import is import.meta Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2019/importMeta/importMetaNarrowing.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2020/es2020IntlAPIs.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2020/intlNumberFormatES2020.ts @@ -3461,12 +2814,10 @@ Mismatch: tasks/coverage/typescript/tests/cases/conformance/es2020/modules/expor 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/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/sharedMemory.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/symbolType20.ts Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/es6/arrowFunction/disallowLineTerminatorBeforeArrow.ts @@ -3597,8 +2948,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/de 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/destructuringArrayBindingPatternAndAssignment4.ts -Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringArrayBindingPatternAndAssignment5SiblingInitializer.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 @@ -3807,8 +3156,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/shorthandPropert Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesAssignmentErrorFromMissingIdentifier.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/spread/arraySpreadImportHelpers.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/spread/arraySpreadInCall.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/spread/iteratorSpreadInCall11.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/es6/spread/iteratorSpreadInCall12.ts @@ -4037,7 +3384,6 @@ Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpr A 'yield' expression is only allowed in a generator body. 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/generatorNoImplicitReturns.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/generatorTypeCheck62.ts @@ -4070,13 +3416,9 @@ Mismatch: tasks/coverage/typescript/tests/cases/conformance/es7/exponentiationOp 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 @@ -4110,15 +3452,12 @@ Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/esDecor 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-preservesThis.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/asOperator3.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/asOperator/asOperatorASI.ts -Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/asOperator/asOperatorContextualType.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/assignmentOperator/assignmentGenericLookupTypeNarrowing.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/assignmentOperator/assignmentTypeNarrowing.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/assignmentOperator/compoundAdditionAssignmentLHSCanBeAssigned.ts @@ -4127,24 +3466,16 @@ Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/assignme 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/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/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/comparisonOperatorWithIdenticalPrimitiveType.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithNoRelationshipObjectsOnCallSignature.ts @@ -4153,7 +3484,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOp Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithNoRelationshipObjectsOnInstantiatedConstructorSignature.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/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 @@ -4165,28 +3495,14 @@ Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOp Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/inOperator/inOperatorWithInvalidOperands.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/instanceofOperator/instanceofOperatorWithRHSHasSymbolHasInstance.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/commaOperator/commaOperatorOtherInvalidOperation.ts -Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/commaOperator/commaOperatorOtherValidOperation.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/parenthesizedContexualTyping2.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/contextualTyping/parenthesizedContexualTyping3.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/contextualTyping/superCallParameterContextualTyping1.ts @@ -4207,51 +3523,30 @@ Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/function 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/functionCalls.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/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/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/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/identifiers/scopeResolutionIdentifiers.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 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.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/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/optionalChainingInference.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/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/thisKeyword/thisInInvalidContexts.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/thisKeyword/thisInInvalidContextsExternalModule.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/typeGuards/TypeGuardWithEnumUnion.ts @@ -4260,76 +3555,33 @@ Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuar 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/typeGuardNarrowsToLiteralTypeUnion.ts -Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardOfFormInstanceOf.ts -Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardOfFormInstanceOfOnInterface.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/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/typeGuardsInExternalModule.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/typeGuardsObjectMethods.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardsOnClassProperty.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardsWithInstanceOf.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_asConstArrays.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeSatisfaction/typeSatisfaction_contextualTyping3.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeSatisfaction/typeSatisfaction_errorLocations1.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/expressions/typeSatisfaction/typeSatisfaction_propertyValueConformance3.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 @@ -4370,7 +3622,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/esne 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/exportAssignmentAndDeclaration.ts -Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/exportAssignmentOfExportNamespaceWithDefault.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/exportAssignmentTopLevelEnumdule.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/exportClassNameWithObjectAMD.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/exportClassNameWithObjectCommonJS.ts @@ -4404,10 +3655,8 @@ Unexpected estree file content error: 1 != 2 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/topLevelAmbientModule.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/topLevelAwait.1.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 @@ -4420,12 +3669,9 @@ Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/externalModul 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/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/enums.ts tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/grammarErrors.ts @@ -4439,15 +3685,6 @@ 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/namespaceMemberAccess.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/preserveValueImports_module.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/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/verbatimModuleSyntaxAmbientConstEnum.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/verbatimModuleSyntaxCompat.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/verbatimModuleSyntaxConstEnum.ts @@ -4455,10 +3692,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/conformance/externalModules/verb 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/verbatimModuleSyntaxRestrictionsCJS.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/functionOverloadErrors.ts Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/functions/functionOverloadErrorsSyntax.ts A rest parameter must be last in a parameter list @@ -4469,41 +3702,15 @@ Mismatch: tasks/coverage/typescript/tests/cases/conformance/functions/parameterI 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/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.4.ts -Mismatch: tasks/coverage/typescript/tests/cases/conformance/generators/generatorReturnTypeFallback.5.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/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/mergedInterfacesWithIndexers.ts -Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/mergedInterfacesWithIndexers2.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/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/interfaceDeclarations/derivedInterfaceDoesNotHideBaseSignatures.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/interfaceWithMultipleBaseTypes.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceWithPropertyOfEveryType.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMerging/AmbientModuleAndNonAmbientClassWithSameNameAndCommonRoot.ts -Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMerging/ClassAndModuleThatMergeWithModuleMemberThatUsesClassTypeParameter.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 @@ -4537,11 +3744,9 @@ Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/expo Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/exportDeclarations/ExportObjectLiteralAndObjectTypeLiteralWithAccessibleTypesInNestedMemberTypeAnnotations.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/exportDeclarations/ModuleWithExportedAndNonExportedEnums.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/exportDeclarations/ModuleWithExportedAndNonExportedImportAlias.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/asiPreventsParsingAsNamespace05.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/internalModules/moduleDeclarations/instantiatedModule.ts @@ -4614,7 +3819,6 @@ 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 @@ -4674,7 +3878,6 @@ 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 @@ -4696,9 +3899,6 @@ 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/seeTag2.ts tasks/coverage/typescript/tests/cases/conformance/jsdoc/syntaxErrors.ts Unexpected estree file content error: 1 != 2 @@ -4724,10 +3924,7 @@ Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/correctlyMarkAli 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 @@ -4741,7 +3938,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/jsxs/jsxJsxsCjsT 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 @@ -4749,16 +3945,11 @@ Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxAttributeReso 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/tsxCorrectlyParseLessThanComparison1.tsx -Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxElementResolution17.tsx -Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxElementResolution19.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/tsxGenericAttributesType9.tsx Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxLibraryManagedAttributes.tsx Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxOpeningClosingNames.tsx -Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxPreserveEmit1.tsx -Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxPreserveEmit3.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/tsxSpreadAttributesResolution13.tsx @@ -4774,7 +3965,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxStatelessFunc Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxStatelessFunctionComponents3.tsx Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/tsxStatelessFunctionComponentsWithTypeArguments5.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 @@ -4929,7 +4119,6 @@ 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 @@ -4940,22 +4129,15 @@ tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesDeclarationEmi 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 @@ -4963,13 +4145,10 @@ Mismatch: tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesImpo tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesImportAttributes.ts Unexpected estree file content error: 1 != 2 -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/nodeModulesImportModeDeclarationEmitErrors1.ts tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesImportResolutionIntoExport.ts Unexpected estree file content error: 1 != 3 @@ -4999,21 +4178,6 @@ 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 @@ -5023,8 +4187,6 @@ 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/override/override11.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/override/override19.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/override/override20.ts @@ -5170,7 +4332,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/R Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegressionTests/parser509546_2.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/parser509698.ts Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegressionTests/parser618973.ts 'export' modifier cannot be used here. Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegularExpressions/parserRegularExpressionDivideAmbiguity3.ts @@ -5210,15 +4371,11 @@ Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmasc A 'return' statement can only be used within a function body. Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/SuperExpressions/parserSuperExpression1.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/SuperExpressions/parserSuperExpression4.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 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/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/parserArgumentList1.ts -Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserAstSpans1.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/parserRealSource1.ts @@ -5231,14 +4388,11 @@ Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/p 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/parserUnicode2.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserUnicode3.ts -Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserUsingConstructorAsIdentifier.ts Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName16.ts Computed property names are not allowed in enums. Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName26.ts @@ -5257,17 +4411,8 @@ The left-hand side of a `for...of` statement may not be `async` Mismatch: tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Iterators/parserForOfStatement25.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-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 @@ -5294,7 +4439,6 @@ 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 @@ -5310,7 +4454,6 @@ 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 @@ -5333,7 +4476,6 @@ tasks/coverage/typescript/tests/cases/conformance/salsa/moduleExportWithExportPr 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 @@ -5343,7 +4485,6 @@ 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 @@ -5356,22 +4497,15 @@ Unexpected estree file content error: 1 != 3 tasks/coverage/typescript/tests/cases/conformance/salsa/varRequireFromTypescript.ts Unexpected estree file content error: 1 != 2 -Mismatch: tasks/coverage/typescript/tests/cases/conformance/scanner/ecmascript5/scanner10.1.1-8gs.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/scannerNonAsciiHorizontalWhitespace.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/scannertest1.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.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/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/awaitUsingDeclarationsWithImportHelpers.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarations.1.ts @@ -5410,14 +4544,12 @@ Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/VariableS 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 @@ -5427,7 +4559,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/continueS 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 @@ -5445,9 +4576,6 @@ Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/for-ofSta 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-of35.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-ofTypeCheck10.ts -Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/forStatements/forStatementsMultipleValidDecl.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 @@ -5457,14 +4585,8 @@ Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/statements/la 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/throwStatements/throwStatements.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/statements/tryStatements/catchClauseWithTypeAnnotation.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/assignAnyToEveryType.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/any/assignEveryTypeToAny.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/asyncGenerators/types.asyncGenerators.es2018.1.ts @@ -5473,16 +4595,12 @@ Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/conditional/co 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/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/contextuallyTypeAsyncFunctionReturnType.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/methodDeclarations/contextuallyTypedBindingInitializer.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/contextualTypes/methodDeclarations/contextuallyTypedBindingInitializerNegative.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/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 @@ -5501,15 +4619,12 @@ Expected `from` but found `<` 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/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/intersectionTypeEquivalence.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/intersectionWithIndexSignatures.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectionWithUnionConstraint.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectionsAndEmptyObjects.ts @@ -5579,51 +4694,17 @@ Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedT 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/classWithPrivateProperty.ts -Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/members/classWithProtectedProperty.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/objectTypeHidingMembersOfObject.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/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/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/typesWithOptionalProperty.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/optionalMethods.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/nonPrimitiveConstraintOfIndexAccessType.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 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 @@ -5632,28 +4713,6 @@ Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/types/objectT 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/specializedSignatureIsSubtypeOfNonSpecializedSignature.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/stringIndexerConstrainsPropertyDeclarations.ts -Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/indexSignatures/stringIndexerConstrainsPropertyDeclarations2.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/propertySignatures/numericStringNamedPropertyEquivalence.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/propertySignatures/propertyNamesOfReservedWords.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/primitives/boolean/invalidBooleanAssignments.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/primitives/enum/invalidEnumAssignments.ts @@ -5687,42 +4746,21 @@ Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/rest/objectRes 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/unionTypeLiterals.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/typeofANonExportedType.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeQueries/typeofAnExportedType.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/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/objectSpreadComputedProperty.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/spread/objectSpreadNoTransform.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/spreadNonObject1.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/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/stringLiteralTypesAsTags02.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesAsTypeParameterConstraint01.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesAsTypeParameterConstraint02.ts @@ -5768,262 +4806,78 @@ Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/tuple/restTupl 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/typeAliases/directDependenceBetweenTypeAliases.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/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/wrappedAndRecursiveConstraints3.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/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/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/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/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/numberAssignableToEnum.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/equalityWithEnumTypes.ts -Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/comparable/independentPropertyVariance.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/infiniteExpansionThroughInstantiation.ts -Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/recursiveTypes/infiniteExpansionThroughInstantiation2.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/recursiveTypeReferences1.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/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/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/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/subtypingWithObjectMembers4.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/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/genericCallTypeArgumentInference.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/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/genericContextualTypes2.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericContextualTypes3.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/keyofInferenceLowerPriorityThanReturn.ts Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/noInfer.ts -Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/unionAndIntersectionInference1.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/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 @@ -6041,14 +4895,9 @@ Mismatch: tasks/coverage/typescript/tests/cases/conformance/types/union/unionTyp 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/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/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/typingsLookupAmd.ts