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