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