testing: rename FunctionCoverage -> DeclarationCoverage for finalization (#204667)

This commit is contained in:
Connor Peet
2024-02-07 16:24:33 -08:00
committed by GitHub
parent f6a5654dbf
commit 2eb66826bd
9 changed files with 94 additions and 95 deletions

View File

@@ -1615,7 +1615,6 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I
TestResultState: extHostTypes.TestResultState,
TestRunRequest: extHostTypes.TestRunRequest,
TestMessage: extHostTypes.TestMessage,
TestMessage2: extHostTypes.TestMessage, // back compat for Oct 2023
TestTag: extHostTypes.TestTag,
TestRunProfileKind: extHostTypes.TestRunProfileKind,
TextSearchCompleteMessageType: TextSearchCompleteMessageType,
@@ -1625,7 +1624,8 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I
FileCoverage: extHostTypes.FileCoverage,
StatementCoverage: extHostTypes.StatementCoverage,
BranchCoverage: extHostTypes.BranchCoverage,
FunctionCoverage: extHostTypes.FunctionCoverage,
DeclarationCoverage: extHostTypes.DeclarationCoverage,
FunctionCoverage: extHostTypes.DeclarationCoverage, // back compat for Feb 2024
WorkspaceTrustState: extHostTypes.WorkspaceTrustState,
LanguageStatusSeverity: extHostTypes.LanguageStatusSeverity,
QuickPickItemKind: extHostTypes.QuickPickItemKind,