зеркало из https://github.com/dotnet/razor.git
Call the new mapping method when formatting
This commit is contained in:
Родитель
51f53e0609
Коммит
30258ab875
|
@ -110,13 +110,9 @@ namespace Microsoft.AspNetCore.Razor.LanguageServer.Formatting
|
|||
var actualEdits = new List<TextEdit>();
|
||||
foreach (var edit in csharpEdits)
|
||||
{
|
||||
if (_documentMappingService.TryMapFromProjectedDocumentRange(codeDocument, edit.Range, out var newRange))
|
||||
if (_documentMappingService.TryMapFromProjectedDocumentEdit(codeDocument, edit, out var newEdit))
|
||||
{
|
||||
actualEdits.Add(new TextEdit()
|
||||
{
|
||||
NewText = edit.NewText,
|
||||
Range = newRange,
|
||||
});
|
||||
actualEdits.Add(newEdit);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче