2 writes to EditSession
Microsoft.CodeAnalysis.Features (2)
EditAndContinue\DebuggingSession.cs (2)
152EditSession = new EditSession( 249EditSession = new EditSession(
16 references to EditSession
Microsoft.CodeAnalysis.Features (16)
EditAndContinue\DebuggingSession.cs (16)
221var editSessionTelemetryData = EditSession.Telemetry.GetDataAndClear(); 251nonRemappableRegions ?? EditSession.NonRemappableRegions, 252EditSession.Telemetry, 253(inBreakState == null) ? EditSession.BaseActiveStatements : null, 254inBreakState ?? EditSession.InBreakState); 495var analysis = await EditSession.Analyses.GetDocumentAnalysisAsync(LastCommittedSolution, document.Project.Solution, oldDocument, document, activeStatementSpanProvider, cancellationToken).ConfigureAwait(false); 513EditSession.Telemetry.LogRudeEditDiagnostics(analysis.RudeEdits, project.State.Attributes.TelemetryId); 520EditSession.Log.Write($"Exception while analyzing document '{document.FilePath}': {e}"); 538var solutionUpdate = await EditSession.EmitSolutionUpdateAsync(solution, activeStatementSpanProvider, updateId, runningProjects, cancellationToken).ConfigureAwait(false); 695if (_isDisposed || !EditSession.InBreakState) 700var baseActiveStatements = await EditSession.BaseActiveStatements.GetValueAsync(cancellationToken).ConfigureAwait(false); 774EditSession.BaseActiveStatements, 776EditSession.Capabilities, 851if (_isDisposed || !EditSession.InBreakState || !mappedDocument.State.SupportsEditAndContinue() || !mappedDocument.Project.SupportsEditAndContinue()) 868var baseActiveStatements = await EditSession.BaseActiveStatements.GetValueAsync(cancellationToken).ConfigureAwait(false); 900var analysis = await EditSession.Analyses.GetDocumentAnalysisAsync(LastCommittedSolution, newUnmappedDocument.Project.Solution, oldUnmappedDocument, newUnmappedDocument, activeStatementSpanProvider, cancellationToken).ConfigureAwait(false);