5 references to ForceSpacesIfOnSingleLine
Metrics.Legacy (5)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\Rules\Operations\AdjustSpacesOption.cs (1)
25
/// <see cref="
ForceSpacesIfOnSingleLine
"/> means forcing the specified spaces between two tokens if two
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\Rules\Operations\FormattingOperations.cs (4)
19
private static readonly AdjustSpacesOperation s_forceOneSpaceIfOnSingleLine = new(1, AdjustSpacesOption.
ForceSpacesIfOnSingleLine
);
20
private static readonly AdjustSpacesOperation s_forceZeroSpaceIfOnSingleLine = new(0, AdjustSpacesOption.
ForceSpacesIfOnSingleLine
);
127
else if (space == 0 && option == AdjustSpacesOption.
ForceSpacesIfOnSingleLine
)
131
else if (space == 1 && option == AdjustSpacesOption.
ForceSpacesIfOnSingleLine
)