1 write to Value
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
299
this.
Value
= value;
31 references to Value
Microsoft.CodeAnalysis.CSharp (31)
Compilation\InitializerSemanticModel.cs (1)
168
return new BoundPropertyEqualsValue(result.Syntax, property, result.Locals, result.
Value
);
FlowAnalysis\AbstractFlowPass.cs (3)
3638
VisitRvalue(node.
Value
);
3644
VisitRvalue(node.
Value
);
3650
VisitRvalue(node.
Value
);
FlowAnalysis\DefiniteAssignment.cs (1)
1898
VisitRvalue(boundValue.
Value
);
FlowAnalysis\NullableWalker.cs (2)
2850
equalsValue.
Value
,
2858
CheckDisallowedNullAssignment(resultType, parameterAnnotations, equalsValue.
Value
.Syntax);
Generated\BoundNodes.xml.Generated.cs (15)
326
if (!Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(field, this.Field) || locals != this.Locals || value != this.
Value
)
356
if (!Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(property, this.Property) || locals != this.Locals || value != this.
Value
)
386
if (!Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(parameter, this.Parameter) || locals != this.Locals || value != this.
Value
)
9778
this.Visit(node.
Value
);
9783
this.Visit(node.
Value
);
9788
this.Visit(node.
Value
);
10801
BoundExpression value = (BoundExpression)this.Visit(node.
Value
);
10806
BoundExpression value = (BoundExpression)this.Visit(node.
Value
);
10811
BoundExpression value = (BoundExpression)this.Visit(node.
Value
);
12232
BoundExpression value = (BoundExpression)this.Visit(node.
Value
);
12240
BoundExpression value = (BoundExpression)this.Visit(node.
Value
);
12248
BoundExpression value = (BoundExpression)this.Visit(node.
Value
);
14968
new TreeDumperNode("value", null, new TreeDumperNode[] { Visit(node.
Value
, null) }),
14976
new TreeDumperNode("value", null, new TreeDumperNode[] { Visit(node.
Value
, null) }),
14984
new TreeDumperNode("value", null, new TreeDumperNode[] { Visit(node.
Value
, null) }),
Lowering\InitializerRewriter.cs (1)
104
fieldInit.
Value
,
Operations\CSharpOperationFactory.cs (3)
1727
IOperation value = Create(boundFieldEqualsValue.
Value
);
1736
IOperation value = Create(boundPropertyEqualsValue.
Value
);
1745
IOperation value = Create(boundParameterEqualsValue.
Value
);
Symbols\ConstantValueUtils.cs (1)
49
var value = GetAndValidateConstantValue(boundValue.
Value
, symbol, symbol.Type, equalsValueNode.Value, diagnostics);
Symbols\Source\SourceComplexParameterSymbol.cs (3)
267
VerifyParamDefaultValueMatchesAttributeIfAny(_lazyDefaultSyntaxValue, parameterEqualsValue.
Value
.Syntax, diagnostics);
276
parameterEqualsValue.
Value
.Syntax.Location);
389
BoundExpression convertedExpression = parameterEqualsValue.
Value
;
Symbols\Synthesized\SynthesizedStaticConstructor.cs (1)
416
if (!(initializer is BoundFieldEqualsValue {
Value
: { } value }))