5 references to TryGetSectionForLanguage
Microsoft.CodeAnalysis.Workspaces (1)
EditorConfigFile.cs (1)
33
=>
TryGetSectionForLanguage
(language, SectionMatch.ExactLanguageMatch, out sectionResult);
Microsoft.CodeAnalysis.Workspaces.UnitTests (4)
EditorConfigParsing\EditorConfigFileParserTests.cs (4)
79
Assert.True(parseResults.
TryGetSectionForLanguage
(Language.CSharp, SectionMatch.ExactLanguageMatchWithOthers, out var section));
95
Assert.True(parseResults.
TryGetSectionForLanguage
(Language.CSharp, SectionMatch.Any, out var section));
99
Assert.True(parseResults.
TryGetSectionForLanguage
(Language.VisualBasic, SectionMatch.Any, out section));
103
Assert.True(parseResults.
TryGetSectionForLanguage
((Language.CSharp | Language.VisualBasic), SectionMatch.Any, out section));