10 references to SpaceAfterMethodCallName
Microsoft.CodeAnalysis.CSharp.Workspaces (3)
Formatting\CSharpFormattingOptions.cs (2)
80/// <inheritdoc cref="CSharpFormattingOptions2.SpaceAfterMethodCallName"/> 81public static Option<bool> SpaceAfterMethodCallName { get; } = CSharpFormattingOptions2.SpaceAfterMethodCallName.ToPublicOption();
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Formatting\CSharpSyntaxFormattingOptions.cs (1)
78(options.GetOption(CSharpFormattingOptions2.SpaceAfterMethodCallName) ? SpacePlacement.AfterMethodCallName : 0) |
Microsoft.CodeAnalysis.CSharp.Workspaces.UnitTests (3)
Formatting\FormattingTests.cs (3)
5395{ CSharpFormattingOptions2.SpaceAfterMethodCallName, true } 8420{ CSharpFormattingOptions2.SpaceAfterMethodCallName, true }, 8464{ CSharpFormattingOptions2.SpaceAfterMethodCallName, true },
Microsoft.VisualStudio.LanguageServices.CSharp (4)
EditorConfigSettings\DataProvider\Whitespace\CSharpWhitespaceSettingsProvider.cs (1)
45yield return Setting.Create(CSharpFormattingOptions2.SpaceAfterMethodCallName, CSharpVSResources.Insert_space_between_called_method_name_and_its_opening_parenthesis, options, updaterService);
Options\AutomationObject\AutomationObject.Formatting.cs (2)
170get { return GetBooleanOption(CSharpFormattingOptions2.SpaceAfterMethodCallName); } 171set { SetBooleanOption(CSharpFormattingOptions2.SpaceAfterMethodCallName, value); }
Options\Formatting\SpacingViewModel.cs (1)
134Items.Add(new CheckBoxOptionViewModel(CSharpFormattingOptions2.SpaceAfterMethodCallName, CSharpVSResources.Insert_space_between_called_method_name_and_its_opening_parenthesis, s_methodPreview, this, optionStore));