1 write to Value
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
300
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)
3642
VisitRvalue(node.
Value
);
3648
VisitRvalue(node.
Value
);
3654
VisitRvalue(node.
Value
);
FlowAnalysis\DefiniteAssignment.cs (1)
1898
VisitRvalue(boundValue.
Value
);
FlowAnalysis\NullableWalker.cs (2)
2911
equalsValue.
Value
,
2919
CheckDisallowedNullAssignment(resultType, parameterAnnotations, equalsValue.
Value
.Syntax);
Generated\BoundNodes.xml.Generated.cs (15)
327
if (!Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(field, this.Field) || locals != this.Locals || value != this.
Value
)
357
if (!Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(property, this.Property) || locals != this.Locals || value != this.
Value
)
387
if (!Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(parameter, this.Parameter) || locals != this.Locals || value != this.
Value
)
9815
this.Visit(node.
Value
);
9820
this.Visit(node.
Value
);
9825
this.Visit(node.
Value
);
10838
BoundExpression value = (BoundExpression)this.Visit(node.
Value
);
10843
BoundExpression value = (BoundExpression)this.Visit(node.
Value
);
10848
BoundExpression value = (BoundExpression)this.Visit(node.
Value
);
12269
BoundExpression value = (BoundExpression)this.Visit(node.
Value
);
12277
BoundExpression value = (BoundExpression)this.Visit(node.
Value
);
12285
BoundExpression value = (BoundExpression)this.Visit(node.
Value
);
15005
new TreeDumperNode("value", null, new TreeDumperNode[] { Visit(node.
Value
, null) }),
15013
new TreeDumperNode("value", null, new TreeDumperNode[] { Visit(node.
Value
, null) }),
15021
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)
268
VerifyParamDefaultValueMatchesAttributeIfAny(_lazyDefaultSyntaxValue, parameterEqualsValue.
Value
.Syntax, diagnostics);
277
parameterEqualsValue.
Value
.Syntax.Location);
390
BoundExpression convertedExpression = parameterEqualsValue.
Value
;
Symbols\Synthesized\SynthesizedStaticConstructor.cs (1)
416
if (!(initializer is BoundFieldEqualsValue {
Value
: { } value }))