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
))
1242
context = ExprContext.
Value
;
1273
ExprContext context = (argRefKind == RefKind.None) ? ExprContext.
Value
: ExprContext.Address;
1330
_context = ExprContext.
Value
;
1365
receiver = VisitExpression(receiver, ExprContext.
Value
);
1453
BoundExpression condition = this.VisitExpression(node.Condition, ExprContext.
Value
);
1457
var context = node.IsRef ? ExprContext.Address : ExprContext.
Value
;
1536
PushEvalStack(binary, ExprContext.
Value
);
1657
PushEvalStack(new BoundDefaultExpression(node.Syntax, node.Operand.Type), ExprContext.
Value
);
1768
var rewrittenInitializer = this.VisitExpression(initializer, ExprContext.
Value
);
1934
return top.Item2 == (local.RefKind == RefKind.None ? ExprContext.
Value
: ExprContext.Address) &&