14 references to CreateList
Microsoft.CSharp (14)
Microsoft\CSharp\RuntimeBinder\RuntimeBinder.cs (1)
891pList = pList == null ? pArg : ExprFactory.CreateList(pArg, pList);
Microsoft\CSharp\RuntimeBinder\Semantics\ExpressionBinder.cs (1)
1245argsPtr = ExprFactory.CreateList(argsPtr, exprArrayInit);
Microsoft\CSharp\RuntimeBinder\Semantics\ExprFactory.cs (7)
227first = CreateList(first, newItem); 234list.OptionalNextListNode = CreateList(list.OptionalNextListNode, newItem); 240public static ExprList CreateList(Expr op1, Expr op2, Expr op3) => CreateList(op1, CreateList(op2, op3)); 243CreateList(op1, CreateList(op2, CreateList(op3, op4)));
Microsoft\CSharp\RuntimeBinder\Semantics\Operators.cs (3)
2554ExprList args = ExprFactory.CreateList(arg1, arg2); 2587ExprList args = ExprFactory.CreateList(arg1, arg2); 2662ExprList args = ExprFactory.CreateList(exprVal1, exprVal2);
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExpressionTreeRewriter.cs (2)
102Expr args = ExprFactory.CreateList(body, parameters); 923Expr args = ExprFactory.CreateList(arg1, arg2);