7 references to AlwaysForClarity
Microsoft.CodeAnalysis.CodeStyle (5)
AbstractAddRequiredParenthesesDiagnosticAnalyzer.cs (1)
117if (preference.Value != ParenthesesPreference.AlwaysForClarity)
AbstractRemoveUnnecessaryParenthesesDiagnosticAnalyzer.cs (1)
94if (preference.Value == ParenthesesPreference.AlwaysForClarity &&
CodeStyleOptions2.cs (2)
238KeyValuePairUtil.Create("always_for_clarity", ParenthesesPreference.AlwaysForClarity), 261var value = s_parenthesesPreferenceMap.GetKeyOrDefault(option.Value) ?? s_parenthesesPreferenceMap.GetKeyOrDefault(ParenthesesPreference.AlwaysForClarity);
IdeCodeStyleOptions.cs (1)
20new(ParenthesesPreference.AlwaysForClarity, NotificationOption2.Silent);
Microsoft.CodeAnalysis.CodeStyle.UnitTestUtilities (2)
ParenthesesOptionsProvider.cs (2)
24new CodeStyleOption2<ParenthesesPreference>(ParenthesesPreference.AlwaysForClarity, NotificationOption2.None); 27new CodeStyleOption2<ParenthesesPreference>(ParenthesesPreference.AlwaysForClarity, NotificationOption2.Suggestion);