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)
59Debug.Assert(binOp.OptionalLeftChild != null); 62rewriter.Visit(binOp.OptionalLeftChild); 76ExprCall call = (ExprCall)pExpr.OptionalLeftChild;
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExpressionTreeRewriter.cs (4)
403Expr origL = expr.OptionalLeftChild; 540Expr p1 = expr.OptionalLeftChild; 648Expr p1 = expr.OptionalLeftChild; 982Expr orig1 = expr.OptionalLeftChild;
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExprVisitorBase.cs (1)
288exprRet = Visit((pExpr as ExprBinOp).OptionalLeftChild);