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