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