14 references to CreateList
Microsoft.CSharp (14)
Microsoft\CSharp\RuntimeBinder\RuntimeBinder.cs (1)
914pList = pList == null ? pArg : ExprFactory.CreateList(pArg, pList);
Microsoft\CSharp\RuntimeBinder\Semantics\ExpressionBinder.cs (1)
1270argsPtr = ExprFactory.CreateList(argsPtr, exprArrayInit);
Microsoft\CSharp\RuntimeBinder\Semantics\ExprFactory.cs (7)
246first = CreateList(first, newItem); 253list.OptionalNextListNode = CreateList(list.OptionalNextListNode, newItem); 259public static ExprList CreateList(Expr op1, Expr op2, Expr op3) => CreateList(op1, CreateList(op2, op3)); 262CreateList(op1, CreateList(op2, CreateList(op3, op4)));
Microsoft\CSharp\RuntimeBinder\Semantics\Operators.cs (3)
2617ExprList args = ExprFactory.CreateList(arg1, arg2); 2651ExprList args = ExprFactory.CreateList(arg1, arg2); 2727ExprList args = ExprFactory.CreateList(exprVal1, exprVal2);
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExpressionTreeRewriter.cs (2)
103Expr args = ExprFactory.CreateList(body, parameters); 924Expr args = ExprFactory.CreateList(arg1, arg2);