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