6 references to WithinOtherParentheses
Microsoft.CodeAnalysis.CSharp.Workspaces (4)
SpacingFormattingRule.cs (2)
195return AdjustSpacesOperationZeroOrOne(_options.Spacing.HasFlag(SpacePlacement.WithinOtherParentheses)); 200return AdjustSpacesOperationZeroOrOne(_options.Spacing.HasFlag(SpacePlacement.WithinOtherParentheses));
SpacingWithinParentheses.cs (2)
24(placement.HasFlag(SpacePlacement.WithinOtherParentheses) ? SpacePlacementWithinParentheses.ControlFlowStatements : 0); 29(placement.HasFlag(SpacePlacementWithinParentheses.ControlFlowStatements) ? SpacePlacement.WithinOtherParentheses : 0);
Microsoft.CodeAnalysis.ExternalAccess.OmniSharp.CSharp (1)
Formatting\OmniSharpSyntaxFormattingOptionsFactory.cs (1)
105(spaceWithinOtherParentheses ? SpacePlacement.WithinOtherParentheses : 0) |
Microsoft.CodeAnalysis.Workspaces.UnitTests (1)
Formatter\FormatterTests.cs (1)
164Assert.True(formattingOptions.Spacing.HasFlag(SpacePlacement.WithinOtherParentheses));