6 references to CreateCast
Microsoft.CSharp (6)
Microsoft\CSharp\RuntimeBinder\Semantics\ExpressionBinder.cs (2)
344
=> ExprFactory.
CreateCast
(flags, type, argument);
366
ExprCast exprCast = ExprFactory.
CreateCast
(exprFlags, typeDest, exprSrc);
Microsoft\CSharp\RuntimeBinder\Semantics\ExprFactory.cs (2)
44
public static ExprCast CreateCast(CType type, Expr argument) =>
CreateCast
(0, type, argument);
137
return
CreateCast
(0, type, CreateNull());
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExpressionTreeRewriter.cs (2)
867
newIndex = ExprFactory.
CreateCast
(EXPRFLAG.EXF_INDEXEXPR, intType, newIndex);
895
ExprCast cast = ExprFactory.
CreateCast
(flags, pObject, expr);