1 write to _operand
System.Core (1)
Microsoft\Scripting\Ast\UnaryExpression.cs (1)
45
_operand
= expression;
11 references to _operand
System.Core (11)
Microsoft\Scripting\Ast\UnaryExpression.cs (11)
72
get { return
_operand
; }
92
bool operandIsNullable = TypeUtils.IsNullableType(
_operand
.Type);
95
return (operandIsNullable && !TypeUtils.AreEquivalent(_method.GetParametersCached()[0].ParameterType,
_operand
.Type)) ||
144
switch (
_operand
.NodeType) {
175
return Assign(
_operand
, FunctionalOp(
_operand
));
182
var temp = Parameter(
_operand
.Type, null);
185
Assign(temp,
_operand
),
186
Assign(
_operand
, FunctionalOp(temp)),
192
var member = (MemberExpression)
_operand
;
244
var index = (IndexExpression)
_operand
;