2 writes to FirstArgument
Microsoft.CSharp (2)
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Concatenate.cs (1)
17FirstArgument = first;
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExprVisitorBase.cs (1)
264(pExpr as ExprConcat).FirstArgument = exprRet;
3 references to FirstArgument
Microsoft.CSharp (3)
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExpressionTreeRewriter.cs (2)
188if (expr.FirstArgument.Type.IsPredefType(PredefinedType.PT_STRING) && expr.SecondArgument.Type.IsPredefType(PredefinedType.PT_STRING)) 196Expr p1 = Visit(expr.FirstArgument);
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExprVisitorBase.cs (1)
262exprRet = Visit((pExpr as ExprConcat).FirstArgument);