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