Examples of LeaveStackUnwinderException


Examples of Rakudo.Runtime.Exceptions.LeaveStackUnwinderException

        }
        else
        {
            // Not resumable, so stack unwind out of the block containing
            // the handler.
            throw new LeaveStackUnwinderException(
                ((RakudoCodeRef.Instance)Handler).OuterBlock,
                Returned);
        }
    }
View Full Code Here

Examples of Rakudo.Runtime.Exceptions.LeaveStackUnwinderException

    /// <param name="Block"></param>
    /// <param name="ReturnValue"></param>
    /// <returns></returns>
    public static RakudoObject leave_block(ThreadContext tc, RakudoObject block, RakudoObject returnValue)
    {
        throw new LeaveStackUnwinderException((RakudoCodeRef.Instance)block, returnValue);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.