@@ -1906,6 +1906,26 @@ export class Session<TMessage = string> implements EventSender {
1906
1906
} ) ;
1907
1907
}
1908
1908
1909
+ private mapCode ( args : protocol . MapCodeRequestArgs ) : protocol . FileCodeEdits [ ] {
1910
+ const formatOptions = this . getHostFormatOptions ( ) ;
1911
+ const preferences = this . getHostPreferences ( ) ;
1912
+ const { file, languageService } = this . getFileAndLanguageServiceForSyntacticOperation ( args ) ;
1913
+ const scriptInfo = this . projectService . getScriptInfoForNormalizedPath ( file ) ! ;
1914
+ const focusLocations = args . mapping . focusLocations ?. map ( spans => {
1915
+ return spans . map ( loc => {
1916
+ const start = scriptInfo . lineOffsetToPosition ( loc . start . line , loc . start . offset ) ;
1917
+ const end = scriptInfo . lineOffsetToPosition ( loc . end . line , loc . end . offset ) ;
1918
+ return {
1919
+ start,
1920
+ length : end - start ,
1921
+ } ;
1922
+ } ) ;
1923
+ } ) ;
1924
+
1925
+ const changes = languageService . mapCode ( file , args . mapping . contents , focusLocations , formatOptions , preferences ) ;
1926
+ return this . mapTextChangesToCodeEdits ( changes ) ;
1927
+ }
1928
+
1909
1929
private setCompilerOptionsForInferredProjects ( args : protocol . SetCompilerOptionsForInferredProjectsArgs ) : void {
1910
1930
this . projectService . setCompilerOptionsForInferredProjects ( args . options , args . projectRootPath ) ;
1911
1931
}
@@ -3610,6 +3630,9 @@ export class Session<TMessage = string> implements EventSender {
3610
3630
[ protocol . CommandTypes . ProvideInlayHints ] : ( request : protocol . InlayHintsRequest ) => {
3611
3631
return this . requiredResponse ( this . provideInlayHints ( request . arguments ) ) ;
3612
3632
} ,
3633
+ [ protocol . CommandTypes . MapCode ] : ( request : protocol . MapCodeRequest ) => {
3634
+ return this . requiredResponse ( this . mapCode ( request . arguments ) ) ;
3635
+ } ,
3613
3636
} ) ) ;
3614
3637
3615
3638
public addProtocolHandler ( command : string , handler : ( request : protocol . Request ) => HandlerResponse ) {
0 commit comments