* <p>
* When the continuable is resumed via {@link #run(Object)} later, the argument to the run method
* will become the return value from this method to the CPS-transformed program.
*/
public static Object suspend(final Object v) {
throw new CpsCallableInvocation(SuspendBlock.SUSPEND,null,v);
}