2 types derived from EditorConfigOption
Microsoft.CodeAnalysis.Workspaces (2)
EditorConfigOption`1.cs (1)
13: EditorConfigOption(Section, Span)
NamingStyleOption.cs (1)
26: EditorConfigOption(Section, RuleName.Span);
1 instantiation of EditorConfigOption
Microsoft.CodeAnalysis.Workspaces.UnitTests (1)
EditorConfigParsing\EditorConfigFileParserTests.cs (1)
22var parseResult = new EditorConfigOption(section, null);
8 references to EditorConfigOption
Microsoft.CodeAnalysis.Workspaces (4)
EditorConfigFile.cs (1)
20where T : EditorConfigOption
EditorConfigParser.cs (2)
38where TResult : EditorConfigOption 46where TEditorConfigOption : EditorConfigOption
IEditorConfigOptionAccumulator.cs (1)
13where TResult : EditorConfigOption
Microsoft.CodeAnalysis.Workspaces.UnitTests (4)
EditorConfigParsing\EditorConfigFileParserTests.cs (4)
16internal static EditorConfigFile<EditorConfigOption> CreateParseResults(string editorconfigFilePath, params (string headerText, TextSpan span, bool isGlobal)[] sections) 18var list = new List<EditorConfigOption>(); 22var parseResult = new EditorConfigOption(section, null); 26return new EditorConfigFile<EditorConfigOption>(editorconfigFilePath, list.ToImmutableArray());