11 references to SpaceWithinMethodCallParentheses
Microsoft.CodeAnalysis.CSharp.Workspaces (3)
CSharpSyntaxFormattingOptions.cs (1)
79(options.GetOption(CSharpFormattingOptions2.SpaceWithinMethodCallParentheses, fallbackOptions.Spacing.HasFlag(SpacePlacement.WithinMethodCallParentheses)) ? SpacePlacement.WithinMethodCallParentheses : 0) |
Formatting\CSharpFormattingOptions.cs (2)
84/// <inheritdoc cref="CSharpFormattingOptions2.SpaceWithinMethodCallParentheses"/> 85public static Option<bool> SpaceWithinMethodCallParentheses { get; } = CSharpFormattingOptions2.SpaceWithinMethodCallParentheses.ToPublicOption();
Microsoft.CodeAnalysis.CSharp.Workspaces.UnitTests (4)
Formatting\FormattingTests.cs (4)
5106{ CSharpFormattingOptions2.SpaceWithinMethodCallParentheses, true } 5153changingOptions.Add(CSharpFormattingOptions2.SpaceWithinMethodCallParentheses, true); 8121{ CSharpFormattingOptions2.SpaceWithinMethodCallParentheses, true } 8182{ CSharpFormattingOptions2.SpaceWithinMethodCallParentheses, true },
Microsoft.VisualStudio.LanguageServices.CSharp (4)
EditorConfigSettings\DataProvider\Whitespace\CSharpWhitespaceSettingsProvider.cs (1)
50yield return Setting.Create(CSharpFormattingOptions2.SpaceWithinMethodCallParentheses, CSharpVSResources.Insert_space_within_argument_list_parentheses, options, updaterService);
Options\AutomationObject\AutomationObject.Formatting.cs (2)
266get { return GetBooleanOption(CSharpFormattingOptions2.SpaceWithinMethodCallParentheses); } 267set { SetBooleanOption(CSharpFormattingOptions2.SpaceWithinMethodCallParentheses, value); }
Options\Formatting\SpacingViewModel.cs (1)
120Items.Add(new CheckBoxOptionViewModel(CSharpFormattingOptions2.SpaceWithinMethodCallParentheses, CSharpVSResources.Insert_space_within_argument_list_parentheses, s_methodPreview, this, optionStore));