5 references to OtherParentheses
Microsoft.CodeAnalysis.CodeStyle (3)
AnalyzerOptionsProvider.cs (1)
92
public CodeStyleOption2<ParenthesesPreference> OtherParentheses => GetOption(CodeStyleOptions2.
OtherParentheses
, FallbackCodeStyleOptions.OtherParentheses);
IdeCodeStyleOptions.cs (1)
88
OtherParentheses = options.GetOption(CodeStyleOptions2.
OtherParentheses
, language, fallbackOptions.OtherParentheses);
ParenthesesDiagnosticAnalyzersHelper.cs (1)
16
internal 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
);
89
optionsCollection.Add(CodeStyleOptions2.
OtherParentheses
, RemoveIfUnnecessaryPreference);