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)
385Debug.Assert(exprCast.Argument != null);
Microsoft\CSharp\RuntimeBinder\Semantics\Operators.cs (2)
2141Debug.Assert(((ExprCast)arg).Argument.Type.IsEnumType); 2142CType 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)
155Expr pArgument = pExpr.Argument; 298pObject = cast.Argument;
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExprVisitorBase.cs (1)
175exprRet = Visit((pExpr as ExprCast).Argument);