Package hu.sztaki.ilab.longneck.process

Examples of hu.sztaki.ilab.longneck.process.FrameAddress


     * @param kernelState The current kernel state.
     * @param ex The exception that triggered the redirection.
     */
    private void handleRedirect(KernelState kernelState, RedirectException ex) {
        ExecutionFrame currentFrame = kernelState.getLastExecutionFrame();
        FrameAddress redirectAddress = ex.getAddress();
       
        // Resolve symbolic address
        if (FrameAddress.RETURN.equals(redirectAddress)) {
            // Set to end of compound
            currentFrame.setPosition((currentFrame.getHostBlock().getBlocks() != null)?currentFrame.getHostBlock().getBlocks().size():0);
View Full Code Here

TOP

Related Classes of hu.sztaki.ilab.longneck.process.FrameAddress

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.