コード例 #1
0
 public static IYieldReturnStatement YieldReturn(this IBlockStatementParent blockParent, ulong returnValue)
 {
     return(blockParent.YieldReturn((IExpression)returnValue.ToPrimitive()));
 }
コード例 #2
0
 public static IYieldReturnStatement YieldReturn(this IBlockStatementParent blockParent, IParameterReferenceExpression returnValue)
 {
     return(blockParent.YieldReturn((IExpression)returnValue));
 }
コード例 #3
0
 public static IYieldReturnStatement YieldReturn(this IBlockStatementParent blockParent, INaryOperandExpression returnValue)
 {
     return(blockParent.YieldReturn((IExpression)returnValue));
 }
コード例 #4
0
 public static IYieldReturnStatement YieldReturn(this IBlockStatementParent blockParent, IStructPropertyMember returnValue)
 {
     return(blockParent.YieldReturn((IExpression)returnValue.GetReference()));
 }