@@ -85,6 +85,7 @@ import {
85
85
LineAndCharacter ,
86
86
LinkedEditingInfo ,
87
87
map ,
88
+ MapCodeDocumentMapping ,
88
89
mapDefined ,
89
90
mapDefinedIterator ,
90
91
mapIterator ,
@@ -1899,6 +1900,71 @@ export class Session<TMessage = string> implements EventSender {
1899
1900
} ) ;
1900
1901
}
1901
1902
1903
+ private mapCode ( args : protocol . MapCodeRequestArgs ) : protocol . FileCodeEdits [ ] {
1904
+ const formatOptions = this . getHostFormatOptions ( ) ;
1905
+ const preferences = this . getHostPreferences ( ) ;
1906
+ const projects = new Map < Project , MapCodeDocumentMapping [ ] > ( ) ;
1907
+ args . mappings . forEach ( mapping => {
1908
+ if ( ! mapping . file ) {
1909
+ return { contents : mapping . contents } ;
1910
+ }
1911
+ const { file, project } = this . getFileAndProjectWorker ( mapping . file , mapping . projectFileName ) ;
1912
+ const scriptInfo = this . projectService . getScriptInfoForNormalizedPath ( file ) ! ;
1913
+ const focusLocations = mapping . focusLocations ?. map ( spans => {
1914
+ return spans . map ( loc => {
1915
+ const start = scriptInfo . lineOffsetToPosition ( loc . start . line , loc . start . offset ) ;
1916
+ const end = scriptInfo . lineOffsetToPosition ( loc . end . line , loc . end . offset ) ;
1917
+ return {
1918
+ start,
1919
+ length : end - start ,
1920
+ } ;
1921
+ } ) ;
1922
+ } ) ;
1923
+ if ( ! projects . has ( project ) ) {
1924
+ projects . set ( project , [ ] ) ;
1925
+ }
1926
+ projects . get ( project ) ! . push ( {
1927
+ contents : mapping . contents ,
1928
+ fileName : file ,
1929
+ focusLocations
1930
+ } ) ;
1931
+ } ) ;
1932
+ const updates = args . updates ?. map ( edit => {
1933
+ const file = this . getFileAndProjectWorker ( edit . fileName , /*projectFileName*/ undefined ) . file ;
1934
+ const scriptInfo = this . projectService . getScriptInfoForNormalizedPath ( file ) ! ;
1935
+ return {
1936
+ fileName : edit . fileName ,
1937
+ textChanges : edit . textChanges . map ( ( { start, end, newText } ) => {
1938
+ const newStart = scriptInfo . lineOffsetToPosition ( start . line , start . offset ) ;
1939
+ const newEnd = scriptInfo . lineOffsetToPosition ( end . line , end . offset ) ;
1940
+ return {
1941
+ span : { start : newStart , length : newEnd - newStart } ,
1942
+ newText,
1943
+ } ;
1944
+ } ) ,
1945
+ } ;
1946
+ } ) ;
1947
+
1948
+ return [ ...projects . entries ( ) ] . map ( ( [ project , mappings ] ) => {
1949
+ return project . getLanguageService ( ) . mapCode ( mappings , formatOptions , preferences , updates ) ;
1950
+ } ) . filter ( x => x ) . flatMap ( ( changes ) => {
1951
+ return changes . map ( change => {
1952
+ const scriptInfo = this . projectService . getScriptInfoForNormalizedPath ( toNormalizedPath ( change . fileName ) ) ! ;
1953
+ return {
1954
+ fileName : change . fileName ,
1955
+ textChanges : change . textChanges . map ( ( { span, newText } ) => {
1956
+ const newSpan = toProtocolTextSpan ( span , scriptInfo ) ;
1957
+ return {
1958
+ start : newSpan . start ,
1959
+ end : newSpan . end ,
1960
+ newText
1961
+ } ;
1962
+ } ) ,
1963
+ } ;
1964
+ } ) ;
1965
+ } ) ;
1966
+ }
1967
+
1902
1968
private setCompilerOptionsForInferredProjects ( args : protocol . SetCompilerOptionsForInferredProjectsArgs ) : void {
1903
1969
this . projectService . setCompilerOptionsForInferredProjects ( args . options , args . projectRootPath ) ;
1904
1970
}
@@ -3575,6 +3641,9 @@ export class Session<TMessage = string> implements EventSender {
3575
3641
[ protocol . CommandTypes . ProvideInlayHints ] : ( request : protocol . InlayHintsRequest ) => {
3576
3642
return this . requiredResponse ( this . provideInlayHints ( request . arguments ) ) ;
3577
3643
} ,
3644
+ [ protocol . CommandTypes . MapCode ] : ( request : protocol . MapCodeRequest ) => {
3645
+ return this . requiredResponse ( this . mapCode ( request . arguments ) ) ;
3646
+ } ,
3578
3647
} ) ) ;
3579
3648
3580
3649
public addProtocolHandler ( command : string , handler : ( request : protocol . Request ) => HandlerResponse ) {
0 commit comments