1 write to NamedSections
Microsoft.CodeAnalysis (1)
CommandLine\AnalyzerConfig.cs (1)
165NamedSections = namedSections;
11 references to NamedSections
Microsoft.CodeAnalysis (7)
CommandLine\AnalyzerConfigSet.cs (7)
40/// corresponds to each <see cref="AnalyzerConfig.NamedSections"/>. 147var builder = ArrayBuilder<SectionNameMatcher?>.GetInstance(config.NamedSections.Length); 148foreach (var section in config.NamedSections) 154Debug.Assert(builder.Count == config.NamedSections.Length); 232var section = config.NamedSections[sectionIndex]; 277if (sectionKey[sectionKeyIndex] == config.NamedSections[matcherIndex]) 492foreach (var section in config.NamedSections)
Microsoft.CodeAnalysis.UnitTests (4)
Analyzers\AnalyzerConfigTests.cs (4)
49var namedSections = config.NamedSections; 76var namedSections = config.NamedSections; 173Assert.Equal(0, config.NamedSections.Length); 185Assert.Equal(0, config.NamedSections.Length);