1 write to Value
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
7918
this.
Value
= value;
19 references to Value
Microsoft.CodeAnalysis.CSharp (19)
Binder\Binder_InterpolatedString.cs (11)
304
fillin.
Value
.Type?.SpecialType != SpecialType.System_String ||
396
var value = fillin.
Value
;
433
&& unconvertedInterpolatedString.Parts.All(p => p is not BoundStringInsert {
Value
.Type.TypeKind: TypeKind.Dynamic });
436
=> parts.All(p => p is BoundLiteral or BoundStringInsert {
Value
.Type.SpecialType: SpecialType.System_String, Alignment: null, Format: null });
682
var value = insert.
Value
;
860
if (insert.
Value
.Type is null)
862
newValue = GenerateConversionForAssignment(objectType, insert.
Value
, diagnostics);
866
newValue = BindToNaturalType(insert.
Value
, diagnostics);
867
_ = GenerateConversionForAssignment(objectType, insert.
Value
, diagnostics);
870
if (insert.
Value
!= newValue)
929
argumentsBuilder.Add(insert.
Value
);
FlowAnalysis\AbstractFlowPass.cs (1)
1215
VisitRvalue(node.
Value
);
Generated\BoundNodes.xml.Generated.cs (5)
7935
if (value != this.
Value
|| alignment != this.Alignment || format != this.Format || isInterpolatedStringHandlerAppendCall != this.IsInterpolatedStringHandlerAppendCall)
10670
this.Visit(node.
Value
);
12039
BoundExpression value = (BoundExpression)this.Visit(node.
Value
);
14674
BoundExpression value = (BoundExpression)this.Visit(node.
Value
);
16885
new TreeDumperNode("value", null, new TreeDumperNode[] { Visit(node.
Value
, null) }),
Lowering\LocalRewriter\LocalRewriter_StringInterpolation.cs (1)
172
part = fillin.
Value
;
Operations\CSharpOperationFactory.cs (1)
2401
IOperation expression = Create(boundStringInsert.
Value
);