Package org.jruby.runtime

Examples of org.jruby.runtime.Frame.updateFrame()


                // i.e. only name and backtrace data is copied...
                Stack<Frame> frames = new Stack<>();
                Stack<IRubyObject> selfs = new Stack<>();
                for (Frame cur = context.getCurrentFrame(); cur != null; ) {
                    Frame clone = new Frame();
                    clone.updateFrame(cur); // clone...
                    frames.push(clone);
                    selfs.push(context.getFrameSelf());
                    context.popFrame();
                    try {
                        cur = context.getCurrentFrame();
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.