1 instantiation of Section
Microsoft.CodeAnalysis.CodeStyle (1)
EditorConfigParser.cs (1)
123var previousSection = new Section(pathToFile, isGlobal, sectionSpan, activeSectionName, fullText);
23 references to Section
Microsoft.CodeAnalysis.CodeStyle (23)
EditorConfigFile.cs (6)
23private readonly Lazy<ImmutableArray<Section>> _sections = new(() => Options.SelectAsArray(x => x.Section).Distinct()); 25public ImmutableArray<Section> Sections => _sections.Value; 32[NotNullWhen(true)] out Section? sectionResult) 41[NotNullWhen(true)] out Section? sectionResult) 58[NotNullWhen(true)] out Section? sectionResult) 74[NotNullWhen(true)] out Section? sectionResult)
EditorConfigNamingStyleParser_NamingStyle.cs (1)
19Section section,
EditorConfigNamingStyleParser_SymbolSpec.cs (1)
22Section section,
EditorConfigOption.cs (1)
12internal record class EditorConfigOption(Section Section, TextSpan? Span);
EditorConfigOption`1.cs (3)
12internal record class EditorConfigOption<T>(Section Section, TextSpan? Span, T Value) 16public static implicit operator EditorConfigOption<T>((Section section, TextSpan? span, T value) tuple) 18public static implicit operator EditorConfigOption<T>((Section section, T value) tuple)
EditorConfigParser.cs (1)
123var previousSection = new Section(pathToFile, isGlobal, sectionSpan, activeSectionName, fullText);
IEditorConfigOptionAccumulator.cs (1)
15void ProcessSection(Section section, IReadOnlyDictionary<string, (string value, TextLine? line)> properties);
NamingStyleOption.cs (1)
21Section Section,
NamingStyleOptionAccumulator.cs (1)
25public void ProcessSection(Section section, IReadOnlyDictionary<string, (string value, TextLine? line)> properties)
Section.cs (7)
12internal sealed class Section : IEquatable<Section> 170public static bool operator !=(Section left, Section right) 173public static bool operator ==(Section left, Section right) 178=> Equals(obj as Section); 180public bool Equals(Section? other)