1 write to SymbolSpecifications
Microsoft.CodeAnalysis.Workspaces (1)
NamingStylePreferences.cs (1)
293SymbolSpecifications = symbolSpecifications;
35 references to SymbolSpecifications
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (22)
Diagnostics\NamingStyles\EditorConfigNamingStyleParserTests.cs (22)
41Assert.Single(result.SymbolSpecifications); 42var symbolSpec = result.SymbolSpecifications.Single(); 87var symbolSpec = Assert.Single(result.SymbolSpecifications); 111Assert.Single(result.SymbolSpecifications); 112var symbolSpec = result.SymbolSpecifications.Single(); 169Assert.Single(result.SymbolSpecifications); 170var symbolSpec = result.SymbolSpecifications.Single(); 217Assert.Single(result.SymbolSpecifications); 218var symbolSpec = result.SymbolSpecifications.Single(); 259Assert.Single(result.SymbolSpecifications); 261var symbolSpec = result.SymbolSpecifications.Single(); 302Assert.Single(result.SymbolSpecifications); 304var symbolSpec = result.SymbolSpecifications.Single(); 336Assert.Empty(result.SymbolSpecifications); 367Assert.Equal(kinds, result.SymbolSpecifications.SelectMany(x => x.ApplicableSymbolKindList)); 397Assert.Equal(accessibilities, result.SymbolSpecifications.SelectMany(x => x.ApplicableAccessibilityList)); 423Assert.Equal(csharpResult.SymbolSpecifications.SelectMany(x => x.RequiredModifierList.Select(y => y.Modifier)), 424vbResult.SymbolSpecifications.SelectMany(x => x.RequiredModifierList.Select(y => y.Modifier))); 425Assert.Equal(csharpResult.SymbolSpecifications.SelectMany(x => x.RequiredModifierList.Select(y => y.ModifierKindWrapper)), 426vbResult.SymbolSpecifications.SelectMany(x => x.RequiredModifierList.Select(y => y.ModifierKindWrapper))); 448Assert.Single(result.SymbolSpecifications); 449var symbolSpec = result.SymbolSpecifications.Single();
Microsoft.CodeAnalysis.CSharp.Features (1)
ExtractMethod\CSharpMethodExtractor.CSharpCodeGenerator.cs (1)
861var localFunctionPreferences = Options.NamingStyle.SymbolSpecifications.Where(symbol => symbol.AppliesTo(new SymbolSpecification.SymbolKindOrTypeKind(MethodKind.LocalFunction), CreateMethodModifiers(), null));
Microsoft.CodeAnalysis.EditorFeatures.DiagnosticsTests.Utilities (2)
NamingStyles\NamingStylesTestOptionSets.cs (2)
38firstPreferences.SymbolSpecifications.AddRange(secondPreferences.SymbolSpecifications),
Microsoft.CodeAnalysis.Workspaces (8)
EditorConfigFileGenerator_NamingStyles.cs (1)
43namingStylePreferences.SymbolSpecifications,
EditorConfigNamingStyleParser.cs (1)
92preferences.SymbolSpecifications,
NamingStylePreferences.cs (6)
306=> SymbolSpecifications.IsEmpty && NamingStyles.IsEmpty && NamingRules.IsEmpty; 312=> SymbolSpecifications.Single(s => s.ID == symbolSpecificationID); 323new XElement("SymbolSpecifications", SymbolSpecifications.Select(s => s.CreateXElement())), 349return SymbolSpecifications.SequenceEqual(other.SymbolSpecifications) 373return Hash.Combine(Hash.CombineValues(SymbolSpecifications),
Microsoft.VisualStudio.LanguageServices.Implementation (2)
Options\Style\NamingPreferences\NamingStyleOptionPageViewModel.cs (2)
47Specifications = new ObservableCollection<SymbolSpecification>(info.SymbolSpecifications), 59Specifications = new ObservableCollection<SymbolSpecification>(info.SymbolSpecifications);