Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Microsoft.CodeAnalysis.Razor.AutoInsert;

internal interface IOnAutoInsertProvider : IOnAutoInsertTriggerCharacterProvider
{
public bool TryResolveInsertion(
bool TryResolveInsertion(
Position position,
RazorCodeDocument codeDocument,
bool enableAutoClosingTags,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace Microsoft.CodeAnalysis.Razor.Completion.Delegation;

internal interface IDelegatedCSharpCompletionResponseRewriter
{
public Task<VSInternalCompletionList> RewriteAsync(
Task<VSInternalCompletionList> RewriteAsync(
VSInternalCompletionList completionList,
int hostDocumentIndex,
DocumentContext hostDocumentContext,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ namespace Microsoft.CodeAnalysis.Razor.Workspaces;

internal interface IFileSystem
{
public IEnumerable<string> GetFiles(string workspaceDirectory, string searchPattern, SearchOption searchOption);
IEnumerable<string> GetFiles(string workspaceDirectory, string searchPattern, SearchOption searchOption);

public IEnumerable<string> GetDirectories(string workspaceDirectory);
IEnumerable<string> GetDirectories(string workspaceDirectory);

bool FileExists(string filePath);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ namespace Microsoft.CodeAnalysis.Razor.Protocol;
/// </summary>
internal interface IDelegatedParams
{
public TextDocumentIdentifierAndVersion Identifier { get; }
public RazorLanguageKind ProjectedKind { get; }
TextDocumentIdentifierAndVersion Identifier { get; }
RazorLanguageKind ProjectedKind { get; }
}
Loading