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