5 references to OtherParentheses
Microsoft.CodeAnalysis.CodeStyle (3)
AnalyzerOptionsProvider.cs (1)
92public CodeStyleOption2<ParenthesesPreference> OtherParentheses => GetOption(CodeStyleOptions2.OtherParentheses, FallbackCodeStyleOptions.OtherParentheses);
IdeCodeStyleOptions.cs (1)
88OtherParentheses = options.GetOption(CodeStyleOptions2.OtherParentheses, language, fallbackOptions.OtherParentheses);
ParenthesesDiagnosticAnalyzersHelper.cs (1)
16internal static ImmutableHashSet<IOption2> Options = ImmutableHashSet.Create<IOption2>(CodeStyleOptions2.ArithmeticBinaryParentheses, CodeStyleOptions2.RelationalBinaryParentheses, CodeStyleOptions2.OtherBinaryParentheses, CodeStyleOptions2.OtherParentheses);
Microsoft.CodeAnalysis.CodeStyle.UnitTestUtilities (2)
ParenthesesOptionsProvider.cs (2)
49=> GetAllExceptOtherParenthesesOptions().Concat(CodeStyleOptions2.OtherParentheses); 89optionsCollection.Add(CodeStyleOptions2.OtherParentheses, RemoveIfUnnecessaryPreference);