Package Rakudo.Runtime.Exceptions

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


    /// <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

Related Classes of Rakudo.Runtime.Exceptions.LeaveStackUnwinderException

Copyright © 2018 www.massapicom. 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.