2 writes to Argument
Microsoft.CSharp (2)
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Cast.cs (1)
16Argument = argument;
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExprVisitorBase.cs (1)
177(pExpr as ExprCast).Argument = exprRet;
8 references to Argument
Microsoft.CSharp (8)
Microsoft\CSharp\RuntimeBinder\Semantics\ExpressionBinder.cs (1)
377Debug.Assert(exprCast.Argument != null);
Microsoft\CSharp\RuntimeBinder\Semantics\Operators.cs (2)
2090Debug.Assert(((ExprCast)arg).Argument.Type.IsEnumType); 2091CType typeEnum = ((ExprCast)arg).Argument.Type;
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Cast.cs (2)
29Expr arg = Argument; 32arg = castArg.Argument;
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExpressionTreeRewriter.cs (2)
154Expr pArgument = pExpr.Argument; 297pObject = cast.Argument;
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExprVisitorBase.cs (1)
175exprRet = Visit((pExpr as ExprCast).Argument);