9 references to SpaceAfterSemicolonsInForStatement
Microsoft.CodeAnalysis.CSharp.Workspaces (3)
CSharpSyntaxFormattingOptions.cs (1)
83
(options.GetOption(CSharpFormattingOptions2.
SpaceAfterSemicolonsInForStatement
, fallbackOptions.Spacing.HasFlag(SpacePlacement.AfterSemicolonsInForStatement)) ? SpacePlacement.AfterSemicolonsInForStatement : 0) |
Formatting\CSharpFormattingOptions.cs (2)
121
/// <inheritdoc cref="CSharpFormattingOptions2.
SpaceAfterSemicolonsInForStatement
"/>
122
public static Option<bool> SpaceAfterSemicolonsInForStatement { get; } = CSharpFormattingOptions2.
SpaceAfterSemicolonsInForStatement
.ToPublicOption();
Microsoft.CodeAnalysis.CSharp.Workspaces.UnitTests (2)
Formatting\FormattingTests.cs (2)
8283
{ CSharpFormattingOptions2.
SpaceAfterSemicolonsInForStatement
, false },
8315
{ CSharpFormattingOptions2.
SpaceAfterSemicolonsInForStatement
, false },
Microsoft.VisualStudio.LanguageServices.CSharp (4)
EditorConfigSettings\DataProvider\Whitespace\CSharpWhitespaceSettingsProvider.cs (1)
70
yield return Setting.Create(CSharpFormattingOptions2.
SpaceAfterSemicolonsInForStatement
, CSharpVSResources.Insert_space_after_semicolon_in_for_statement, options, updaterService);
Options\AutomationObject\AutomationObject.Formatting.cs (2)
182
get { return GetBooleanOption(CSharpFormattingOptions2.
SpaceAfterSemicolonsInForStatement
); }
183
set { SetBooleanOption(CSharpFormattingOptions2.
SpaceAfterSemicolonsInForStatement
, value); }
Options\Formatting\SpacingViewModel.cs (1)
146
Items.Add(new CheckBoxOptionViewModel(CSharpFormattingOptions2.
SpaceAfterSemicolonsInForStatement
, CSharpVSResources.Insert_space_after_semicolon_in_for_statement, s_forDelimiterPreview, this, optionStore));