1 override of Envelope
Microsoft.CodeAnalysis.Features (1)
EditAndContinue\AbstractSimpleMemberBody.cs (1)
25public sealed override TextSpan Envelope
6 references to Envelope
Microsoft.CodeAnalysis.Features (6)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (2)
889var adjustedOldStatementStart = oldBody.ContainsActiveStatementSpan(oldStatementSpan) ? oldStatementSpan.Start : oldBody.Envelope.Start; 1383if (!body.Envelope.Contains(trackedSpan))
EditAndContinue\DeclarationBody.cs (1)
53/// and its span covers the entire <see cref="MemberBody.Envelope"/>.
EditAndContinue\MemberBody.cs (3)
23=> Envelope.Contains(span) && !IsExcludedActiveStatementSpanWithinEnvelope(span); 26/// True for <paramref name="span"/> within <see cref="Envelope"/> does not belong to the body. 56var envelope = Envelope;