Examples of Backtrace


Examples of airbrake.Backtrace

                    traceLine.getStackTraceElement().getLineNumber(),
                    traceLine.getStackTraceElement().getMethodName()
            );
            lines.add(btLine.toString());
        }
        return new Backtrace(lines);
    }
View Full Code Here

Examples of org.jruby.truffle.runtime.backtrace.Backtrace

        public Object caller(int omit) {
            notDesignedForCompilation();

            omit += 1; // Always ignore this node

            Backtrace backtrace = RubyCallStack.getBacktrace(this);
            List<Activation> activations = backtrace.getActivations();
            int size = activations.size() - omit;

            if (size < 0) {
                return getContext().getCoreLibrary().getNilObject();
            }
View Full Code Here

Examples of org.jruby.truffle.runtime.backtrace.Backtrace

            });

        }

        return new Backtrace(activations.toArray(new Activation[activations.size()]));
    }
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.