1 write to Alignment
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
7919this.Alignment = alignment;
19 references to Alignment
Microsoft.CodeAnalysis.CSharp (19)
Binder\Binder_InterpolatedString.cs (11)
305fillin.Alignment != null || 324p is BoundStringInsert { Alignment.ConstantValueOpt: null or { IsBad: true } } or 385if (fillin.Alignment != null && !fillin.Alignment.HasErrors) 387Debug.Assert(fillin.Alignment.ConstantValueOpt is { }); 388stringBuilder.Append(',').Append(fillin.Alignment.ConstantValueOpt.Int64Value); 436=> parts.All(p => p is BoundLiteral or BoundStringInsert { Value.Type.SpecialType: SpecialType.System_String, Alignment: null, Format: null }); 878partsBuilder.Add(insert.Update(newValue, insert.Alignment, insert.Format, isInterpolatedStringHandlerAppendCall: false)); 935if (insert.Alignment is not null) 938argumentsBuilder.Add(insert.Alignment); 939parameterNamesAndLocationsBuilder.Add(("alignment", insert.Alignment.Syntax.Location));
FlowAnalysis\AbstractFlowPass.cs (2)
1216if (node.Alignment != null) 1218VisitRvalue(node.Alignment);
Generated\BoundNodes.xml.Generated.cs (5)
7935if (value != this.Value || alignment != this.Alignment || format != this.Format || isInterpolatedStringHandlerAppendCall != this.IsInterpolatedStringHandlerAppendCall) 10671this.Visit(node.Alignment); 12040BoundExpression? alignment = (BoundExpression?)this.Visit(node.Alignment); 14675BoundExpression? alignment = (BoundExpression?)this.Visit(node.Alignment); 16886new TreeDumperNode("alignment", null, new TreeDumperNode[] { Visit(node.Alignment, null) }),
Operations\CSharpOperationFactory.cs (1)
2402IOperation? alignment = Create(boundStringInsert.Alignment);