1 write to FileSpan
Microsoft.CodeAnalysis.Features (1)
EditAndContinue\ActiveStatement.cs (1)
44FileSpan = span;
11 references to FileSpan
Microsoft.CodeAnalysis.Features (11)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (1)
1514if (mappedLineSpan.HasMappedPath && mappedLineSpan.Path != oldStatement.Statement.FileSpan.Path)
EditAndContinue\ActiveStatement.cs (4)
52=> WithFileSpan(FileSpan.WithSpan(span)); 58=> new(Id, flags, FileSpan, InstructionId); 61=> FileSpan.Span; 64=> FileSpan.Path;
EditAndContinue\ActiveStatementsMap.cs (2)
26Comparer<ActiveStatement>.Create((x, y) => x.FileSpan.Start.CompareTo(y.FileSpan.Start));
EditAndContinue\EditAndContinueDocumentAnalysesCache.cs (1)
148var mappedFilePath = oldActiveStatement.Statement.FileSpan.Path;
EditAndContinue\EditSession.cs (2)
1708AddNonRemappableRegion(oldActiveStatement.FileSpan, newActiveStatement.FileSpan, isExceptionRegion: false);
EditAndContinue\UnmappedActiveStatement.cs (1)
18/// Active statement - its <see cref="ActiveStatement.FileSpan"/> is mapped.