@@ -442,7 +442,7 @@ export function createMdxLanguageService(ts, host, plugins) {
442
442
snapshot ?. getShadowPosition ( position ) ?? position ,
443
443
findInStrings ,
444
444
findInComments ,
445
- providePrefixAndSuffixTextForRename
445
+ /** @type { boolean } */ ( providePrefixAndSuffixTextForRename )
446
446
)
447
447
448
448
if ( ! locations ) {
@@ -649,6 +649,12 @@ export function createMdxLanguageService(ts, host, plugins) {
649
649
getImplementationAtPosition : notImplemented ( 'getImplementationAtPosition' ) ,
650
650
getIndentationAtPosition : notImplemented ( 'getIndentationAtPosition' ) ,
651
651
getJsxClosingTagAtPosition : notImplemented ( 'getJsxClosingTagAtPosition' ) ,
652
+ getLinkedEditingRangeAtPosition : notImplemented (
653
+ 'getLinkedEditingRangeAtPosition'
654
+ ) ,
655
+ getMoveToRefactoringFileSuggestions : notImplemented (
656
+ 'getMoveToRefactoringFileSuggestions'
657
+ ) ,
652
658
getNameOrDottedNameSpan : notImplemented ( 'getNameOrDottedNameSpan' ) ,
653
659
654
660
getNavigateToItems ( searchValue , maxResultCount , fileName , excludeDtsFiles ) {
@@ -676,7 +682,6 @@ export function createMdxLanguageService(ts, host, plugins) {
676
682
} ,
677
683
678
684
getNavigationTree : notImplemented ( 'getNavigationTree' ) ,
679
- getOccurrencesAtPosition : notImplemented ( 'getOccurrencesAtPosition' ) ,
680
685
681
686
getOutliningSpans ( fileName ) {
682
687
const snapshot = syncSnapshot ( fileName )
0 commit comments