10 references to SpaceBetweenEmptyMethodCallParentheses
Microsoft.CodeAnalysis.CSharp.Workspaces (3)
CSharpSyntaxFormattingOptions.cs (1)
78
(options.GetOption(CSharpFormattingOptions2.
SpaceBetweenEmptyMethodCallParentheses
, fallbackOptions.Spacing.HasFlag(SpacePlacement.BetweenEmptyMethodCallParentheses)) ? SpacePlacement.BetweenEmptyMethodCallParentheses : 0) |
Formatting\CSharpFormattingOptions.cs (2)
87
/// <inheritdoc cref="CSharpFormattingOptions2.
SpaceBetweenEmptyMethodCallParentheses
"/>
88
public static Option<bool> SpaceBetweenEmptyMethodCallParentheses { get; } = CSharpFormattingOptions2.
SpaceBetweenEmptyMethodCallParentheses
.ToPublicOption();
Microsoft.CodeAnalysis.CSharp.Workspaces.UnitTests (3)
Formatting\FormattingTests.cs (3)
5130
{ CSharpFormattingOptions2.
SpaceBetweenEmptyMethodCallParentheses
, true }
8120
{ CSharpFormattingOptions2.
SpaceBetweenEmptyMethodCallParentheses
, true },
8184
{ CSharpFormattingOptions2.
SpaceBetweenEmptyMethodCallParentheses
, true },
Microsoft.VisualStudio.LanguageServices.CSharp (4)
EditorConfigSettings\DataProvider\Whitespace\CSharpWhitespaceSettingsProvider.cs (1)
51
yield return Setting.Create(CSharpFormattingOptions2.
SpaceBetweenEmptyMethodCallParentheses
, CSharpVSResources.Insert_space_within_empty_argument_list_parentheses, options, updaterService);
Options\AutomationObject\AutomationObject.Formatting.cs (2)
224
get { return GetBooleanOption(CSharpFormattingOptions2.
SpaceBetweenEmptyMethodCallParentheses
); }
225
set { SetBooleanOption(CSharpFormattingOptions2.
SpaceBetweenEmptyMethodCallParentheses
, value); }
Options\Formatting\SpacingViewModel.cs (1)
121
Items.Add(new CheckBoxOptionViewModel(CSharpFormattingOptions2.
SpaceBetweenEmptyMethodCallParentheses
, CSharpVSResources.Insert_space_within_empty_argument_list_parentheses, s_methodPreview, this, optionStore));