31
31
using Microsoft . CodeAnalysis . Text ;
32
32
using Microsoft . CommonLanguageServerProtocol . Framework ;
33
33
using Nerdbank . Streams ;
34
+ using Roslyn . LanguageServer . Protocol ;
34
35
using Roslyn . Utilities ;
35
36
using StreamJsonRpc ;
36
37
using Xunit ;
@@ -74,7 +75,7 @@ internal class TestSpanMapper : ISpanMappingService
74
75
internal static readonly LSP . Location MappedFileLocation = new LSP . Location
75
76
{
76
77
Range = ProtocolConversions . LinePositionToRange ( s_mappedLinePosition ) ,
77
- Uri = ProtocolConversions . CreateAbsoluteUri ( s_mappedFilePath )
78
+ Uri = ProtocolConversions . CreateAbsoluteDocumentUri ( s_mappedFilePath )
78
79
} ;
79
80
80
81
/// <summary>
@@ -159,7 +160,7 @@ private protected static int CompareLocations(LSP.Location? l1, LSP.Location? l2
159
160
if ( l2 is null )
160
161
return 1 ;
161
162
162
- var compareDocument = l1 . Uri . AbsoluteUri . CompareTo ( l2 . Uri . AbsoluteUri ) ;
163
+ var compareDocument = l1 . Uri . UriString . CompareTo ( l2 . Uri . UriString ) ;
163
164
var compareRange = CompareRange ( l1 . Range , l2 . Range ) ;
164
165
return compareDocument != 0 ? compareDocument : compareRange ;
165
166
}
@@ -206,7 +207,7 @@ internal static LSP.SymbolInformation CreateSymbolInformation(LSP.SymbolKind kin
206
207
return info ;
207
208
}
208
209
209
- private protected static LSP . TextDocumentIdentifier CreateTextDocumentIdentifier ( Uri uri , ProjectId ? projectContext = null )
210
+ private protected static LSP . TextDocumentIdentifier CreateTextDocumentIdentifier ( DocumentUri uri , ProjectId ? projectContext = null )
210
211
{
211
212
var documentIdentifier = new LSP . VSTextDocumentIdentifier { Uri = uri } ;
212
213
@@ -474,7 +475,7 @@ protected static async Task RemoveGeneratorAsync(AnalyzerReference reference, Ed
474
475
475
476
return locations ;
476
477
477
- static LSP . Location ConvertTextSpanWithTextToLocation ( TextSpan span , SourceText text , Uri documentUri )
478
+ static LSP . Location ConvertTextSpanWithTextToLocation ( TextSpan span , SourceText text , DocumentUri documentUri )
478
479
{
479
480
var location = new LSP . Location
480
481
{
@@ -500,7 +501,7 @@ private static string GetDocumentFilePathFromName(string documentName)
500
501
=> "C:\\ " + documentName ;
501
502
502
503
private static LSP . DidChangeTextDocumentParams CreateDidChangeTextDocumentParams (
503
- Uri documentUri ,
504
+ DocumentUri documentUri ,
504
505
ImmutableArray < ( LSP . Range Range , string Text ) > changes )
505
506
{
506
507
var changeEvents = changes . Select ( change => new LSP . TextDocumentContentChangeEvent
@@ -519,7 +520,7 @@ private static LSP.DidChangeTextDocumentParams CreateDidChangeTextDocumentParams
519
520
} ;
520
521
}
521
522
522
- private static LSP . DidOpenTextDocumentParams CreateDidOpenTextDocumentParams ( Uri uri , string source , string languageId = "" )
523
+ private static LSP . DidOpenTextDocumentParams CreateDidOpenTextDocumentParams ( DocumentUri uri , string source , string languageId = "" )
523
524
=> new LSP . DidOpenTextDocumentParams
524
525
{
525
526
TextDocument = new LSP . TextDocumentItem
@@ -530,7 +531,7 @@ private static LSP.DidOpenTextDocumentParams CreateDidOpenTextDocumentParams(Uri
530
531
}
531
532
} ;
532
533
533
- private static LSP . DidCloseTextDocumentParams CreateDidCloseTextDocumentParams ( Uri uri )
534
+ private static LSP . DidCloseTextDocumentParams CreateDidCloseTextDocumentParams ( DocumentUri uri )
534
535
=> new LSP . DidCloseTextDocumentParams ( )
535
536
{
536
537
TextDocument = new LSP . TextDocumentIdentifier
@@ -650,14 +651,14 @@ private static RoslynLanguageServer CreateLanguageServer(Stream inputStream, Str
650
651
return languageServer ;
651
652
}
652
653
653
- public async Task < Document > GetDocumentAsync ( Uri uri )
654
+ public async Task < Document > GetDocumentAsync ( DocumentUri uri )
654
655
{
655
656
var document = await GetCurrentSolution ( ) . GetDocumentAsync ( new LSP . TextDocumentIdentifier { Uri = uri } , CancellationToken . None ) . ConfigureAwait ( false ) ;
656
657
Contract . ThrowIfNull ( document , $ "Unable to find document with { uri } in solution") ;
657
658
return document ;
658
659
}
659
660
660
- public async Task < SourceText > GetDocumentTextAsync ( Uri uri )
661
+ public async Task < SourceText > GetDocumentTextAsync ( DocumentUri uri )
661
662
{
662
663
var document = await GetDocumentAsync ( uri ) . ConfigureAwait ( false ) ;
663
664
return await document . GetTextAsync ( CancellationToken . None ) . ConfigureAwait ( false ) ;
@@ -692,7 +693,7 @@ public Task ExecutePreSerializedRequestAsync(string methodName, JsonDocument ser
692
693
return _clientRpc . InvokeWithParameterObjectAsync ( methodName , serializedRequest ) ;
693
694
}
694
695
695
- public async Task OpenDocumentAsync ( Uri documentUri , string ? text = null , string languageId = "" )
696
+ public async Task OpenDocumentAsync ( DocumentUri documentUri , string ? text = null , string languageId = "" )
696
697
{
697
698
if ( text == null )
698
699
{
@@ -706,15 +707,15 @@ public async Task OpenDocumentAsync(Uri documentUri, string? text = null, string
706
707
await ExecuteRequestAsync < LSP . DidOpenTextDocumentParams , object > ( LSP . Methods . TextDocumentDidOpenName , didOpenParams , CancellationToken . None ) ;
707
708
}
708
709
709
- public Task ReplaceTextAsync ( Uri documentUri , params ( LSP . Range Range , string Text ) [ ] changes )
710
+ public Task ReplaceTextAsync ( DocumentUri documentUri , params ( LSP . Range Range , string Text ) [ ] changes )
710
711
{
711
712
var didChangeParams = CreateDidChangeTextDocumentParams (
712
713
documentUri ,
713
714
[ .. changes ] ) ;
714
715
return ExecuteRequestAsync < LSP . DidChangeTextDocumentParams , object > ( LSP . Methods . TextDocumentDidChangeName , didChangeParams , CancellationToken . None ) ;
715
716
}
716
717
717
- public Task InsertTextAsync ( Uri documentUri , params ( int Line , int Column , string Text ) [ ] changes )
718
+ public Task InsertTextAsync ( DocumentUri documentUri , params ( int Line , int Column , string Text ) [ ] changes )
718
719
{
719
720
return ReplaceTextAsync ( documentUri , [ .. changes . Select ( change => ( new LSP . Range
720
721
{
@@ -723,7 +724,7 @@ public Task InsertTextAsync(Uri documentUri, params (int Line, int Column, strin
723
724
} , change . Text ) ) ] ) ;
724
725
}
725
726
726
- public Task DeleteTextAsync ( Uri documentUri , params ( int StartLine , int StartColumn , int EndLine , int EndColumn ) [ ] changes )
727
+ public Task DeleteTextAsync ( DocumentUri documentUri , params ( int StartLine , int StartColumn , int EndLine , int EndColumn ) [ ] changes )
727
728
{
728
729
return ReplaceTextAsync ( documentUri , [ .. changes . Select ( change => ( new LSP . Range
729
730
{
@@ -732,7 +733,7 @@ public Task DeleteTextAsync(Uri documentUri, params (int StartLine, int StartCol
732
733
} , string . Empty ) ) ] ) ;
733
734
}
734
735
735
- public Task CloseDocumentAsync ( Uri documentUri )
736
+ public Task CloseDocumentAsync ( DocumentUri documentUri )
736
737
{
737
738
var didCloseParams = CreateDidCloseTextDocumentParams ( documentUri ) ;
738
739
return ExecuteRequestAsync < LSP . DidCloseTextDocumentParams , object > ( LSP . Methods . TextDocumentDidCloseName , didCloseParams , CancellationToken . None ) ;
@@ -790,7 +791,7 @@ internal async Task WaitForDiagnosticsAsync()
790
791
791
792
internal T GetRequiredLspService < T > ( ) where T : class , ILspService => LanguageServer . GetTestAccessor ( ) . GetRequiredLspService < T > ( ) ;
792
793
793
- internal ImmutableArray < SourceText > GetTrackedTexts ( ) => [ .. GetManager ( ) . GetTrackedLspText ( ) . Values . Select ( v => v . Text ) ] ;
794
+ internal ImmutableArray < SourceText > GetTrackedTexts ( ) => [ .. GetManager ( ) . GetTrackedLspText ( ) . Values . Select ( v => v . SourceText ) ] ;
794
795
795
796
internal Task RunCodeAnalysisAsync ( ProjectId ? projectId )
796
797
=> _codeAnalysisService . RunAnalysisAsync ( GetCurrentSolution ( ) , projectId , onAfterProjectAnalyzed : _ => { } , CancellationToken . None ) ;
0 commit comments