1 implementation of Alignment
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
8443public IOperation? Alignment { get; }
8 references to Alignment
Microsoft.CodeAnalysis (3)
Operations\ControlFlowGraphBuilder.cs (3)
7038if (interpolation.Alignment != null) 7040PushOperand(VisitRequired(interpolation.Alignment)); 7064var rewrittenAlignment = interpolation.Alignment != null ? PopOperand() : null;
Microsoft.CodeAnalysis.CodeStyle (1)
src\Analyzers\Core\Analyzers\SimplifyInterpolation\AbstractSimplifyInterpolationHelpers.cs (1)
40if (interpolation.Alignment == null)
Microsoft.CodeAnalysis.Features (1)
src\Analyzers\Core\Analyzers\SimplifyInterpolation\AbstractSimplifyInterpolationHelpers.cs (1)
40if (interpolation.Alignment == null)
Microsoft.CodeAnalysis.Test.Utilities (3)
Compilation\OperationTreeVerifier.cs (1)
1924Visit(operation.Alignment, "Alignment");
Compilation\TestOperationVisitor.cs (2)
1301if (operation.Alignment != null) 1303children = children.Concat(new[] { operation.Alignment });