// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using Microsoft.CodeAnalysis.CodeStyle; using Microsoft.CodeAnalysis.Options; namespace Microsoft.CodeAnalysis.Editor.UnitTests { internal static class OptionExtensions { #if false internal static IDictionary With(this IDictionary options, OptionKey option, object value) { options.Add(option, value); return options; } internal static IDictionary With(this IDictionary options, PerLanguageOption> option, object value, string language) { options.Add(new OptionKey(option, language), value); return options; } #endif } }