18 references to Value
Microsoft.CodeAnalysis.CSharp (18)
CodeGen\Optimizer.cs (18)
451
result = VisitExpression(expr, ExprContext.
Value
);
484
case ExprContext.
Value
:
596
ExprContext.
Value
;
605
ExprContext.
Value
;
885
case ExprContext.
Value
:
938
Debug.Assert(_context == ExprContext.
Value
||
942
rhsContext = ExprContext.
Value
;
986
(_context == ExprContext.Address || _context == ExprContext.
Value
))
1252
context = ExprContext.
Value
;
1283
ExprContext context = (argRefKind == RefKind.None) ? ExprContext.
Value
: ExprContext.Address;
1340
_context = ExprContext.
Value
;
1375
receiver = VisitExpression(receiver, ExprContext.
Value
);
1463
BoundExpression condition = this.VisitExpression(node.Condition, ExprContext.
Value
);
1467
var context = node.IsRef ? ExprContext.Address : ExprContext.
Value
;
1546
PushEvalStack(binary, ExprContext.
Value
);
1667
PushEvalStack(new BoundDefaultExpression(node.Syntax, node.Operand.Type), ExprContext.
Value
);
1778
var rewrittenInitializer = this.VisitExpression(initializer, ExprContext.
Value
);
1944
return top.Item2 == (local.RefKind == RefKind.None ? ExprContext.
Value
: ExprContext.Address) &&