25 writes to _exprDest
Microsoft.CSharp (25)
Microsoft\CSharp\RuntimeBinder\Semantics\ImplicitConversion.cs (25)
27
_exprDest
= null;
102
_exprDest
= _exprSrc;
123
_exprDest
= _exprSrc;
200
_binder.bindSimpleCast(_exprSrc, _typeDest, out
_exprDest
, _exprSrc.Flags & EXPRFLAG.EXF_CANTBENULL);
218
return _binder.bindUserDefinedConversion(_exprSrc, _typeSrc, _typeDest, _needsExprDest, out
_exprDest
, true);
291
_binder.bindSimpleCast(_exprSrc, _typeDest, out
_exprDest
, EXPRFLAG.EXF_UNBOX);
316
_exprDest
= _exprSrc is ExprConstant
350
_exprDest
= exprTmp;
356
return 0 == (_flags & CONVERTTYPE.NOUDC) && _binder.bindUserDefinedConversion(_exprSrc, _typeSrc, nubDst, _needsExprDest, out
_exprDest
, 0 == (_flags & CONVERTTYPE.ISEXPLICIT));
361
if (typeSrcBase != typeDstBase && !pfn(null, typeSrcBase, typeDstBase, false, out
_exprDest
, _flags | CONVERTTYPE.NOUDC))
364
return 0 == (_flags & CONVERTTYPE.NOUDC) && _binder.bindUserDefinedConversion(_exprSrc, _typeSrc, nubDst, _needsExprDest, out
_exprDest
, 0 == (_flags & CONVERTTYPE.ISEXPLICIT));
391
_exprDest
= exprDst;
415
_exprDest
= _exprSrc is ExprConstant
445
_exprDest
= _exprSrc;
453
_binder.bindSimpleCast(_exprSrc, _typeDest, out
_exprDest
, EXPRFLAG.EXF_BOX);
459
_binder.bindSimpleCast(_exprDest, _typeDest, out
_exprDest
, EXPRFLAG.EXF_FORCE_UNBOX);
464
return 0 == (_flags & CONVERTTYPE.NOUDC) && _binder.bindUserDefinedConversion(_exprSrc, nubSrc, _typeDest, _needsExprDest, out
_exprDest
, true);
509
_binder.bindSimpleCast(_exprSrc, _typeDest, out
_exprDest
, grfex);
528
_binder.bindSimpleCast(_exprSrc, _typeDest, out
_exprDest
);
598
_binder.bindSimpleCast(_exprSrc, _typeDest, out
_exprDest
, flags);
618
_binder.bindSimpleCast(_exprSrc, _typeDest, out
_exprDest
, EXPRFLAG.EXF_BOX | EXPRFLAG.EXF_CANTBENULL);
662
_exprDest
= ExprFactory.CreateConstant(_typeDest, ConstVal.GetDefaultValue(_typeDest.ConstValKind));
724
ConstCastResult result = _binder.bindConstantCast(_exprSrc, _typeDest, _needsExprDest, out
_exprDest
, false);
740
return _binder.bindUserDefinedConversion(_exprSrc, aggTypeSrc, _typeDest, _needsExprDest, out
_exprDest
, true);
743
_binder.bindSimpleCast(_exprSrc, _typeDest, out
_exprDest
);
2 references to _exprDest
Microsoft.CSharp (2)
Microsoft\CSharp\RuntimeBinder\Semantics\ImplicitConversion.cs (2)
29
public Expr ExprDest { get { return
_exprDest
; } }
459
_binder.bindSimpleCast(
_exprDest
, _typeDest, out _exprDest, EXPRFLAG.EXF_FORCE_UNBOX);