@@ -1887,6 +1887,51 @@ export class Session<TMessage = string> implements EventSender {
1887
1887
} ) ;
1888
1888
}
1889
1889
1890
+ private mapCode ( args : protocol . MapCodeRequestArgs ) : protocol . FileCodeEdits [ ] {
1891
+ const { file, project } = this . getFileAndProject ( args ) ;
1892
+ const scriptInfo = this . projectService . getScriptInfoForNormalizedPath ( file ) ! ;
1893
+ const formatOptions = this . getHostFormatOptions ( ) ;
1894
+ const preferences = this . getHostPreferences ( ) ;
1895
+ const selected = args . focusLocations ?. map ( loc => {
1896
+ const start = scriptInfo . lineOffsetToPosition ( loc . start . line , loc . start . offset ) ;
1897
+ const end = scriptInfo . lineOffsetToPosition ( loc . end . line , loc . end . offset ) ;
1898
+ return {
1899
+ fileName : loc . file ,
1900
+ priority : loc . priority ,
1901
+ textSpan : {
1902
+ start,
1903
+ length : end - start ,
1904
+ }
1905
+ } ;
1906
+ } ) ;
1907
+ const updates = args . updates ?. map ( edit => {
1908
+ return {
1909
+ fileName : edit . fileName ,
1910
+ textChanges : edit . textChanges . map ( ( { start, end, newText } ) => {
1911
+ const newStart = scriptInfo . lineOffsetToPosition ( start . line , start . offset ) ;
1912
+ const newEnd = scriptInfo . lineOffsetToPosition ( end . line , end . offset ) ;
1913
+ return {
1914
+ span : { start : newStart , length : newEnd - newStart } ,
1915
+ newText,
1916
+ } ;
1917
+ } ) ,
1918
+ } ;
1919
+ } ) ;
1920
+ return project . getLanguageService ( ) . mapCode ( file , args . contents , formatOptions , preferences , selected , updates ) ?. map ( change => {
1921
+ return {
1922
+ fileName : change . fileName ,
1923
+ textChanges : change . textChanges . map ( ( { span, newText } ) => {
1924
+ const newSpan = toProtocolTextSpan ( span , scriptInfo ) ;
1925
+ return {
1926
+ start : newSpan . start ,
1927
+ end : newSpan . end ,
1928
+ newText
1929
+ } ;
1930
+ } ) ,
1931
+ } ;
1932
+ } ) ;
1933
+ }
1934
+
1890
1935
private setCompilerOptionsForInferredProjects ( args : protocol . SetCompilerOptionsForInferredProjectsArgs ) : void {
1891
1936
this . projectService . setCompilerOptionsForInferredProjects ( args . options , args . projectRootPath ) ;
1892
1937
}
@@ -3556,6 +3601,9 @@ export class Session<TMessage = string> implements EventSender {
3556
3601
[ protocol . CommandTypes . ProvideInlayHints ] : ( request : protocol . InlayHintsRequest ) => {
3557
3602
return this . requiredResponse ( this . provideInlayHints ( request . arguments ) ) ;
3558
3603
} ,
3604
+ [ protocol . CommandTypes . MapCode ] : ( request : protocol . MapCodeRequest ) => {
3605
+ return this . requiredResponse ( this . mapCode ( request . arguments ) ) ;
3606
+ } ,
3559
3607
} ) ) ;
3560
3608
3561
3609
public addProtocolHandler ( command : string , handler : ( request : protocol . Request ) => HandlerResponse ) {
0 commit comments