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)
72get { return _operand; } 92bool operandIsNullable = TypeUtils.IsNullableType(_operand.Type); 95return (operandIsNullable && !TypeUtils.AreEquivalent(_method.GetParametersCached()[0].ParameterType, _operand.Type)) || 144switch (_operand.NodeType) { 175return Assign(_operand, FunctionalOp(_operand)); 182var temp = Parameter(_operand.Type, null); 185Assign(temp, _operand), 186Assign(_operand, FunctionalOp(temp)), 192var member = (MemberExpression)_operand; 244var index = (IndexExpression)_operand;