@@ -13,7 +13,6 @@ import * as modes from 'vs/editor/common/modes';
1313import matches from 'vs/editor/common/modes/languageSelector' ;
1414import { IMarkerService , IMarkerData } from 'vs/platform/markers/common/markers' ;
1515import { IModelService } from 'vs/editor/common/services/modelService' ;
16- import { ParameterHintsRegistry } from 'vs/editor/contrib/parameterHints/common/parameterHints' ;
1716import { OccurrencesRegistry } from 'vs/editor/contrib/wordHighlighter/common/wordHighlighter' ;
1817import { ExtraInfoRegistry } from 'vs/editor/contrib/hover/common/hover' ;
1918import { DeclarationRegistry } from 'vs/editor/contrib/goToDeclaration/common/goToDeclaration' ;
@@ -27,7 +26,7 @@ export function register(modelService: IModelService, markerService: IMarkerServ
2726
2827 const disposables : lifecycle . IDisposable [ ] = [ ] ;
2928 disposables . push ( modes . SuggestRegistry . register ( selector , new SuggestAdapter ( modelService , worker ) ) ) ;
30- disposables . push ( ParameterHintsRegistry . register ( selector , new ParameterHintsAdapter ( modelService , worker ) ) ) ;
29+ disposables . push ( modes . ParameterHintsRegistry . register ( selector , new ParameterHintsAdapter ( modelService , worker ) ) ) ;
3130 disposables . push ( ExtraInfoRegistry . register ( selector , new QuickInfoAdapter ( modelService , worker ) ) ) ;
3231 disposables . push ( OccurrencesRegistry . register ( selector , new OccurrencesAdapter ( modelService , worker ) ) ) ;
3332 disposables . push ( DeclarationRegistry . register ( selector , new DeclarationAdapter ( modelService , worker ) ) ) ;
0 commit comments