@@ -226,6 +226,11 @@ import { IIntegrityService } from 'vs/workbench/services/integrity/common/integr
226
226
import { IntegrityTestResult } from 'vs/workbench/services/integrity/common/integrity'
227
227
import { ITrustedDomainService } from 'vs/workbench/contrib/url/browser/trustedDomainService.service'
228
228
import { ILanguageModelToolsService } from 'vs/workbench/contrib/chat/common/languageModelToolsService.service'
229
+ import { PortsEnablement } from 'vs/workbench/services/remote/common/remoteExplorerService'
230
+ import { ICodeMapperService } from 'vs/workbench/contrib/chat/common/chatCodeMapperService.service'
231
+ import { IChatEditingService } from 'vs/workbench/contrib/chat/common/chatEditingService.service'
232
+ import { IActionViewItemService } from 'vs/platform/actions/browser/actionViewItemService.service'
233
+ import { ITreeSitterTokenizationFeature } from 'vs/workbench/services/treeSitter/browser/treeSitterTokenizationFeature.service'
229
234
import { getBuiltInExtensionTranslationsUris , getExtensionIdProvidingCurrentLocale } from './l10n'
230
235
import { unsupported } from './tools'
231
236
@@ -969,9 +974,10 @@ registerSingleton(IExtensionHostDebugService, class ExtensionHostDebugService im
969
974
} , InstantiationType . Eager )
970
975
971
976
registerSingleton ( IViewsService , class ViewsService implements IViewsService {
977
+ _serviceBrand : undefined
978
+ isViewContainerActive = ( ) => false
972
979
getFocusedViewName = unsupported
973
980
onDidChangeFocusedView = Event . None
974
- _serviceBrand : undefined
975
981
onDidChangeViewContainerVisibility = Event . None
976
982
isViewContainerVisible = ( ) => false
977
983
openViewContainer = unsupported
@@ -1106,6 +1112,7 @@ registerSingleton(ICustomEndpointTelemetryService, NullEndpointTelemetryService,
1106
1112
class MonacoSearchService implements ISearchService {
1107
1113
_serviceBrand : undefined
1108
1114
constructor ( @IModelService private modelService : IModelService ) { }
1115
+ getAIName = async ( ) => undefined
1109
1116
aiTextSearch = unsupported
1110
1117
textSearchSplitSyncAsync = unsupported
1111
1118
@@ -1166,6 +1173,11 @@ registerSingleton(ITimerService, class TimerService implements ITimerService {
1166
1173
1167
1174
registerSingleton ( IExtensionsWorkbenchService , class ExtensionsWorkbenchService implements IExtensionsWorkbenchService {
1168
1175
_serviceBrand : undefined
1176
+ updateAutoUpdateForAllExtensions = unsupported
1177
+ openSearch = unsupported
1178
+ getExtensionRuntimeStatus = ( ) => undefined
1179
+ onDidChangeExtensionsNotification = Event . None
1180
+ getExtensionsNotification = ( ) => undefined
1169
1181
shouldRequireConsentToUpdate = async ( ) => undefined
1170
1182
updateAutoUpdateValue = unsupported
1171
1183
getResourceExtensions = unsupported
@@ -2315,6 +2327,9 @@ registerSingleton(IAccessibleViewInformationService, class AccessibleViewInforma
2315
2327
2316
2328
registerSingleton ( IWorkbenchExtensionManagementService , class WorkbenchExtensionManagementService implements IWorkbenchExtensionManagementService {
2317
2329
_serviceBrand : undefined
2330
+ onProfileAwareDidInstallExtensions = Event . None
2331
+ onProfileAwareDidUninstallExtension = Event . None
2332
+ onProfileAwareDidUpdateExtensionMetadata = Event . None
2318
2333
uninstallExtensions = unsupported
2319
2334
resetPinnedStateForAllUserExtensions = unsupported
2320
2335
getInstalledWorkspaceExtensionLocations = ( ) => [ ]
@@ -2435,6 +2450,7 @@ registerSingleton(IExtensionUrlHandler, class ExtensionUrlHandler implements IEx
2435
2450
2436
2451
registerSingleton ( ICommentService , class CommentService implements ICommentService {
2437
2452
_serviceBrand : undefined
2453
+ lastActiveCommentcontroller = undefined
2438
2454
2439
2455
get commentsModel ( ) {
2440
2456
return unsupported ( )
@@ -2605,7 +2621,7 @@ registerSingleton(IRemoteExplorerService, class RemoteExplorerService implements
2605
2621
restore = unsupported
2606
2622
enablePortsFeatures = unsupported
2607
2623
onEnabledPortsFeatures = Event . None
2608
- portsFeaturesEnabled = false
2624
+ portsFeaturesEnabled = PortsEnablement . Disabled
2609
2625
namedProcesses = new Map ( )
2610
2626
} , InstantiationType . Delayed )
2611
2627
@@ -2640,6 +2656,10 @@ registerSingleton(IAuthenticationAccessService, class AuthenticationAccessServic
2640
2656
2641
2657
registerSingleton ( IAuthenticationExtensionsService , class AuthenticationExtensionsService implements IAuthenticationExtensionsService {
2642
2658
_serviceBrand : undefined
2659
+ onDidChangeAccountPreference = Event . None
2660
+ getAccountPreference = ( ) => undefined
2661
+ updateAccountPreference = unsupported
2662
+ removeAccountPreference = unsupported
2643
2663
updateSessionPreference = unsupported
2644
2664
getSessionPreference = ( ) => undefined
2645
2665
removeSessionPreference = unsupported
@@ -2650,6 +2670,8 @@ registerSingleton(IAuthenticationExtensionsService, class AuthenticationExtensio
2650
2670
2651
2671
registerSingleton ( IAuthenticationUsageService , class AuthenticationUsageService implements IAuthenticationUsageService {
2652
2672
_serviceBrand : undefined
2673
+ initializeExtensionUsageCache = unsupported
2674
+ extensionUsesAuth = async ( ) => false
2653
2675
readAccountUsages = unsupported
2654
2676
removeAccountUsage = unsupported
2655
2677
addAccountUsage = unsupported
@@ -2744,6 +2766,10 @@ registerSingleton(IWorkbenchIssueService, class WorkbenchIssueService implements
2744
2766
2745
2767
registerSingleton ( ISCMViewService , class SCMViewService implements ISCMViewService {
2746
2768
_serviceBrand : undefined
2769
+ get activeRepository ( ) {
2770
+ return unsupported ( )
2771
+ }
2772
+
2747
2773
get menus ( ) {
2748
2774
return unsupported ( )
2749
2775
}
@@ -3200,6 +3226,7 @@ registerSingleton(IUserDataSyncUtilService, class UserDataSyncUtilService implem
3200
3226
3201
3227
registerSingleton ( IUserDataProfileManagementService , class UserDataProfileManagementService implements IUserDataProfileManagementService {
3202
3228
_serviceBrand : undefined
3229
+ getDefaultProfileToUse = unsupported
3203
3230
createProfile = unsupported
3204
3231
createAndEnterProfile = unsupported
3205
3232
createAndEnterTransientProfile = unsupported
@@ -3371,3 +3398,27 @@ registerSingleton(IIssueFormService, class IssueFormService implements IIssueFor
3371
3398
sendReporterMenu = unsupported
3372
3399
closeReporter = unsupported
3373
3400
} , InstantiationType . Delayed )
3401
+
3402
+ registerSingleton ( ICodeMapperService , class CodeMapperService implements ICodeMapperService {
3403
+ _serviceBrand : undefined
3404
+ registerCodeMapperProvider = unsupported
3405
+ mapCode = async ( ) => undefined
3406
+ } , InstantiationType . Delayed )
3407
+
3408
+ registerSingleton ( IChatEditingService , class ChatEditingService implements IChatEditingService {
3409
+ _serviceBrand : undefined
3410
+ onDidCreateEditingSession = Event . None
3411
+ currentEditingSession = null
3412
+ startOrContinueEditingSession = unsupported
3413
+ } , InstantiationType . Delayed )
3414
+
3415
+ registerSingleton ( IActionViewItemService , class ActionViewItemService implements IActionViewItemService {
3416
+ _serviceBrand : undefined
3417
+ onDidChange = Event . None
3418
+ register = unsupported
3419
+ lookUp = ( ) => undefined
3420
+ } , InstantiationType . Delayed )
3421
+
3422
+ registerSingleton ( ITreeSitterTokenizationFeature , class TreeSitterTokenizationFeature implements ITreeSitterTokenizationFeature {
3423
+ _serviceBrand : undefined
3424
+ } , InstantiationType . Delayed )
0 commit comments