15 references to CreateCall
Microsoft.CSharp (15)
Microsoft\CSharp\RuntimeBinder\Semantics\Conversion.cs (3)
1024ExprCall call = ExprFactory.CreateCall(0, typeDst, exprSrc, pMemGroup, mwiBest); 1062ExprCall pConversionCall = ExprFactory.CreateCall(0, typeDst, pConversionArgument, pMemGroup, mwiBest); 1134ExprCall pCall = ExprFactory.CreateCall(0, pTypeTo, pTransformedArgument, pMemGroup, mwiBest);
Microsoft\CSharp\RuntimeBinder\Semantics\ExpressionBinder.cs (3)
420ExprCall pResult = ExprFactory.CreateCall(0, pReturnType, pArguments, pMemGroup, mwi); 686ExprCall call = ExprFactory.CreateCall(0, typeRet, arg, pMemGroup, null); 700ExprCall call = ExprFactory.CreateCall(0, typeRet, mustConvert(arg, typeArg), pMemGroup, null);
Microsoft\CSharp\RuntimeBinder\Semantics\ImplicitConversion.cs (1)
371ExprCall exprDst = ExprFactory.CreateCall(0, nubDst, _exprSrc, pMemGroup, null);
Microsoft\CSharp\RuntimeBinder\Semantics\Nullable.cs (1)
74return ExprFactory.CreateCall(EXPRFLAG.EXF_NEWOBJCALL | EXPRFLAG.EXF_CANTBENULL, pNubSourceType, exprSrc, memgroup, methwithinst);
Microsoft\CSharp\RuntimeBinder\Semantics\Operators.cs (2)
2659ExprCall call = ExprFactory.CreateCall(0, typeRet, args, pMemGroup, null); 2729ExprCall call = ExprFactory.CreateCall(0, typeRet, args, pMemGroup, null);
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExpressionTreeRewriter.cs (5)
106ExprCall call = ExprFactory.CreateCall(0, typeRet, args, pMemGroup, mwi); 912ExprCall call = ExprFactory.CreateCall(0, mwi.Meth().RetType, arg1, pMemGroup, mwi); 927ExprCall call = ExprFactory.CreateCall(0, mwi.Meth().RetType, args, pMemGroup, mwi); 942ExprCall call = ExprFactory.CreateCall(0, mwi.Meth().RetType, args, pMemGroup, mwi); 957ExprCall call = ExprFactory.CreateCall(0, mwi.Meth().RetType, args, pMemGroup, mwi);