3 writes to OptionalLeftChild
Microsoft.CSharp (3)
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\BinaryOperator.cs (2)
17OptionalLeftChild = left; 29OptionalLeftChild = left;
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExprVisitorBase.cs (1)
289(pExpr as ExprBinOp).OptionalLeftChild = exprRet;
8 references to OptionalLeftChild
Microsoft.CSharp (8)
Microsoft\CSharp\RuntimeBinder\ExpressionTreeCallRewriter.cs (3)
60Debug.Assert(binOp.OptionalLeftChild != null); 63rewriter.Visit(binOp.OptionalLeftChild); 77ExprCall call = (ExprCall)pExpr.OptionalLeftChild;
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExpressionTreeRewriter.cs (4)
404Expr origL = expr.OptionalLeftChild; 541Expr p1 = expr.OptionalLeftChild; 649Expr p1 = expr.OptionalLeftChild; 983Expr orig1 = expr.OptionalLeftChild;
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExprVisitorBase.cs (1)
288exprRet = Visit((pExpr as ExprBinOp).OptionalLeftChild);