1 write to Alignment
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
7601
this.
Alignment
= alignment;
18 references to Alignment
Microsoft.CodeAnalysis.CSharp (18)
Binder\Binder_InterpolatedString.cs (5)
298
=> parts.All(p => p is BoundLiteral or BoundStringInsert { Value.Type.SpecialType: SpecialType.System_String,
Alignment
: null, Format: null });
710
partsBuilder.Add(insert.Update(newValue, insert.
Alignment
, insert.Format, isInterpolatedStringHandlerAppendCall: false));
767
if (insert.
Alignment
is not null)
770
argumentsBuilder.Add(insert.
Alignment
);
771
parameterNamesAndLocationsBuilder.Add(("alignment", insert.
Alignment
.Syntax.Location));
FlowAnalysis\AbstractFlowPass.cs (2)
1160
if (node.
Alignment
!= null)
1162
VisitRvalue(node.
Alignment
);
Generated\BoundNodes.xml.Generated.cs (5)
7617
if (value != this.Value || alignment != this.
Alignment
|| format != this.Format || isInterpolatedStringHandlerAppendCall != this.IsInterpolatedStringHandlerAppendCall)
10292
this.Visit(node.
Alignment
);
11606
BoundExpression? alignment = (BoundExpression?)this.Visit(node.
Alignment
);
14138
BoundExpression? alignment = (BoundExpression?)this.Visit(node.
Alignment
);
16266
new TreeDumperNode("alignment", null, new TreeDumperNode[] { Visit(node.
Alignment
, null) }),
Lowering\LocalRewriter\LocalRewriter_StringInterpolation.cs (5)
197
fillin.
Alignment
!= null ||
223
if (fillin.
Alignment
!= null && !fillin.
Alignment
.HasErrors)
225
Debug.Assert(fillin.
Alignment
.ConstantValueOpt is { });
226
stringBuilder.Append(',').Append(fillin.
Alignment
.ConstantValueOpt.Int64Value);
Operations\CSharpOperationFactory.cs (1)
2285
IOperation? alignment = Create(boundStringInsert.
Alignment
);