1 write to AfterThisLocation
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
CodeGenerationContext.cs (1)
157AfterThisLocation = afterThisLocation;
6 references to AfterThisLocation
Microsoft.CodeAnalysis.CodeStyle.Fixes (6)
CodeGenerationContext.cs (4)
34/// This option is not necessary if <see cref="AfterThisLocation"/> or <see cref="BeforeThisLocation"/> are 54/// If this option is provided, neither <see cref="ContextLocation"/> nor <see cref="AfterThisLocation"/> are 181=> this.AfterThisLocation ?? this.BeforeThisLocation ?? this.ContextLocation; 200var newAfterThisLocation = afterThisLocation.HasValue ? afterThisLocation.Value : this.AfterThisLocation;
CodeGenerationHelpers.cs (2)
203if (info.Context.AfterThisLocation?.SourceTree is { } afterSourceTree && 206var afterMember = declarationList.LastOrDefault(m => m.SpanStart <= info.Context.AfterThisLocation.SourceSpan.Start);