public static IYieldReturnStatement YieldReturn(this IBlockStatementParent blockParent, ulong returnValue)
 {
     return(blockParent.YieldReturn((IExpression)returnValue.ToPrimitive()));
 }
 public static IYieldReturnStatement YieldReturn(this IBlockStatementParent blockParent, IParameterReferenceExpression returnValue)
 {
     return(blockParent.YieldReturn((IExpression)returnValue));
 }
 public static IYieldReturnStatement YieldReturn(this IBlockStatementParent blockParent, INaryOperandExpression returnValue)
 {
     return(blockParent.YieldReturn((IExpression)returnValue));
 }
 public static IYieldReturnStatement YieldReturn(this IBlockStatementParent blockParent, IStructPropertyMember returnValue)
 {
     return(blockParent.YieldReturn((IExpression)returnValue.GetReference()));
 }