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