Skip to content

Commit 540d743

Browse files
committed
Implement interface
1 parent 1bed9ee commit 540d743

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/Razor/test/Microsoft.VisualStudio.LanguageServices.Razor.Test/Cohost/CohostRoslynRenameTest.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,10 @@ internal void SetInvoker(TestRemoteServiceInvoker remoteServiceInvoker)
202202
_remoteServiceInvoker = remoteServiceInvoker;
203203
}
204204

205+
public ValueTask InitializeAsync() => throw new NotImplementedException();
206+
205207
public ValueTask<TResult?> TryInvokeAsync<TService, TResult>(Solution solution, Func<TService, RazorPinnedSolutionInfoWrapper, CancellationToken, ValueTask<TResult>> invocation, CancellationToken cancellationToken, [CallerFilePath] string? callerFilePath = null, [CallerMemberName] string? callerMemberName = null) where TService : class
206208
=> _remoteServiceInvoker.AssumeNotNull().TryInvokeAsync(solution, invocation, cancellationToken, callerFilePath, callerMemberName);
209+
207210
}
208211
}

0 commit comments

Comments
 (0)