6 references to CreateCast
Microsoft.CSharp (6)
Microsoft\CSharp\RuntimeBinder\Semantics\ExpressionBinder.cs (2)
338
=> ExprFactory.
CreateCast
(flags, type, argument);
358
ExprCast exprCast = ExprFactory.
CreateCast
(exprFlags, typeDest, exprSrc);
Microsoft\CSharp\RuntimeBinder\Semantics\ExprFactory.cs (2)
41
public static ExprCast CreateCast(CType type, Expr argument) =>
CreateCast
(0, type, argument);
120
return
CreateCast
(0, type, CreateNull());
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExpressionTreeRewriter.cs (2)
866
newIndex = ExprFactory.
CreateCast
(EXPRFLAG.EXF_INDEXEXPR, intType, newIndex);
894
ExprCast cast = ExprFactory.
CreateCast
(flags, pObject, expr);