18 references to Value
Microsoft.CodeAnalysis.CSharp (18)
CodeGen\Optimizer.cs (18)
452
result = VisitExpression(expr, ExprContext.
Value
);
485
case ExprContext.
Value
:
597
ExprContext.
Value
;
606
ExprContext.
Value
;
886
case ExprContext.
Value
:
939
Debug.Assert(_context == ExprContext.
Value
||
943
rhsContext = ExprContext.
Value
;
987
(_context == ExprContext.Address || _context == ExprContext.
Value
))
1243
context = ExprContext.
Value
;
1274
ExprContext context = (argRefKind == RefKind.None) ? ExprContext.
Value
: ExprContext.Address;
1331
_context = ExprContext.
Value
;
1366
receiver = VisitExpression(receiver, ExprContext.
Value
);
1454
BoundExpression condition = this.VisitExpression(node.Condition, ExprContext.
Value
);
1458
var context = node.IsRef ? ExprContext.Address : ExprContext.
Value
;
1537
PushEvalStack(binary, ExprContext.
Value
);
1658
PushEvalStack(new BoundDefaultExpression(node.Syntax, node.Operand.Type), ExprContext.
Value
);
1769
var rewrittenInitializer = this.VisitExpression(initializer, ExprContext.
Value
);
1935
return top.Item2 == (local.RefKind == RefKind.None ? ExprContext.
Value
: ExprContext.Address) &&