1 implementation of Alignment
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
8070
public IOperation?
Alignment
{ get; }
8 references to Alignment
Microsoft.CodeAnalysis (3)
Operations\ControlFlowGraphBuilder.cs (3)
6800
if (interpolation.
Alignment
!= null)
6802
PushOperand(VisitRequired(interpolation.
Alignment
));
6826
var rewrittenAlignment = interpolation.
Alignment
!= null ? PopOperand() : null;
Microsoft.CodeAnalysis.CodeStyle (1)
AbstractSimplifyInterpolationHelpers.cs (1)
40
if (interpolation.
Alignment
== null)
Microsoft.CodeAnalysis.Features (1)
AbstractSimplifyInterpolationHelpers.cs (1)
40
if (interpolation.
Alignment
== null)
Microsoft.CodeAnalysis.Test.Utilities (3)
Compilation\OperationTreeVerifier.cs (1)
1886
Visit(operation.
Alignment
, "Alignment");
Compilation\TestOperationVisitor.cs (2)
1283
if (operation.
Alignment
!= null)
1285
children = children.Concat(new[] { operation.
Alignment
});