Implemented interface member:
27 references to Report
Microsoft.CodeAnalysis.LanguageServer (20)
LanguageServer\Handler\Restore\RestoreHandler.cs (4)
36
progress.
Report
(new RestorePartialResult(LanguageServerResources.Restore, LanguageServerResources.Restore_started));
42
progress.
Report
(new RestorePartialResult(LanguageServerResources.Restore, LanguageServerResources.Nothing_found_to_restore));
49
progress.
Report
(new RestorePartialResult(LanguageServerResources.Restore, $"{LanguageServerResources.Restore_complete}{Environment.NewLine}"));
100
progress.
Report
(new RestorePartialResult(stage, restoreOutput));
Testing\RunTestsHandler.cs (4)
151
progress.
Report
(new RunTestsPartialResult(LanguageServerResources.Building_project, buildOutput, Progress: null));
181
progress.
Report
(new(LanguageServerResources.Discovering_tests, message, Progress: null));
188
progress.
Report
(new(LanguageServerResources.Discovering_tests, message, Progress: null));
193
progress.
Report
(new(LanguageServerResources.Discovering_tests, message, Progress: null));
Testing\TestDiscoverer.cs (4)
43
progress.
Report
(partialResult);
51
progress.
Report
(partialResult with { Message = LanguageServerResources.No_test_methods_found_in_requested_range });
66
progress.
Report
(partialResult with { Message = LanguageServerResources.Test_discovery_aborted });
75
progress.
Report
(partialResult with { Message = string.Format(LanguageServerResources.Found_0_tests_in_1, matchedTests.Length, RunTestsHandler.GetShortTimespan(elapsed)) });
Testing\TestDiscoverer.DiscoveryHandler.cs (1)
41
_progress.
Report
(new RunTestsPartialResult(LanguageServerResources.Discovering_tests, message, Progress: null));
Testing\TestRunner.cs (1)
42
progress.
Report
(new RunTestsPartialResult(LanguageServerResources.Running_tests, $"{Environment.NewLine}{LanguageServerResources.Starting_test_run}", initialProgress));
Testing\TestRunner.DebugTestHostLauncher.cs (2)
48
progress.
Report
(new RunTestsPartialResult(LanguageServerResources.Debugging_tests, string.Format(LanguageServerResources.Attaching_debugger_to_process_0, processId), Progress: null));
62
progress.
Report
(new RunTestsPartialResult(LanguageServerResources.Debugging_tests, LanguageServerResources.Client_failed_to_attach_the_debugger, Progress: null));
Testing\TestRunner.TestRunHandler.cs (4)
51
_progress.
Report
(partialResult);
56
_progress.
Report
(partialResult with { Message = string.Format(LanguageServerResources.Test_run_error, testRunCompleteArgs.Error) });
77
_progress.
Report
(partialResult with { Message = message });
87
_progress.
Report
(new RunTestsPartialResult(LanguageServerResources.Running_tests, message, stats));
Microsoft.CodeAnalysis.LanguageServer.Protocol (7)
Handler\BufferedProgress.cs (3)
60
/// all calls to <see cref="
Report
(T)"/> have been made. Not safe to call concurrently with any call to <see
61
/// cref="
Report
(T)"/>.
80
progress.
Report
([item]);
Handler\Diagnostics\AbstractPullDiagnosticHandler.cs (4)
182
progress.
Report
(report);
200
progress.
Report
(CreateRemovedReport(previousDiagnosticParams.TextDocument));
293
progress.
Report
(report);
306
progress.
Report
(CreateRemovedReport(removedResult.TextDocument));