3 writes to Language
Microsoft.CodeAnalysis.Workspaces (3)
OptionKey2.cs (3)
26Language = language; 38this.Language = language; 45this.Language = null;
14 references to Language
Microsoft.CodeAnalysis.EditorFeatures.DiagnosticsTests.Utilities (1)
CodeActions\CodeFixVerifierHelper.cs (1)
129EditorConfigFileGenerator.AppendNamingStylePreferencesToEditorConfig(namingStylePreferences, optionKey.Language!, analyzerConfig);
Microsoft.CodeAnalysis.Workspaces (8)
OptionKey2.cs (5)
55=> Option.Equals(other.Option) && Language == other.Language; 61if (Language != null) 63hash = unchecked((hash * (int)0xA5555529) + Language.GetHashCode()); 77? $"({Language}) "
Options\OptionChangedEventArgs.cs (1)
21public string? Language => OptionKey.Language;
Options\OptionKey.cs (1)
18/// <inheritdoc cref="OptionKey2.Language"/>
Options\OptionSet.cs (1)
89value = (T)GetInternalOptionValue(new OptionKey(optionKey.Option, optionKey.Language))!;
Microsoft.CodeAnalysis.Workspaces.Test.Utilities (1)
OptionsCollection.cs (1)
85=> new TestOptionSet(_options.ToImmutableDictionary(entry => new OptionKey(entry.Key.Option, entry.Key.Language), entry => entry.Value));
Microsoft.VisualStudio.LanguageServices (3)
Options\VisualStudioOptionStorage.cs (2)
70=> persister.PersistAsync(GetKey(optionKey.Language), value); 73=> persister.TryFetch(optionKey, GetKey(optionKey.Language), out value);
Options\VisualStudioSettingsOptionPersister.cs (1)
89optionKey.Language,
Microsoft.VisualStudio.LanguageServices.Implementation (1)
Options\OptionLogger.cs (1)
31m[Language] = optionKey.Language ?? All;