X-Git-Url: http://git.megacz.com/?p=org.ibex.core.git;a=blobdiff_plain;f=src%2Forg%2Fibex%2Fjs%2FJSExn.java;h=8c1362ddf2029825b39b0978c9ab96bfe4c59a42;hp=8d1a758ee1c6aa503f3e3e7e7f29cc2014fd8a0a;hb=b1a58aeb4adfade0697650583ec5801fa6e88d5e;hpb=1e2ac9c2eef012a3e77133817803878bacfa91b8 diff --git a/src/org/ibex/js/JSExn.java b/src/org/ibex/js/JSExn.java index 8d1a758..8c1362d 100644 --- a/src/org/ibex/js/JSExn.java +++ b/src/org/ibex/js/JSExn.java @@ -2,22 +2,46 @@ package org.ibex.js; import org.ibex.util.*; +import java.io.*; /** An exception which can be thrown and caught by JavaScript code */ public class JSExn extends Exception { private Vec backtrace = new Vec(); private Object js = null; - public JSExn(Object js) { this.js = js; } + public JSExn(Object js) { + this.js = js; + if (Interpreter.current() != null) + fill(Interpreter.current().stack, Interpreter.current().f, Interpreter.current().pc, Interpreter.current().scope); + } + public JSExn(Object js, Vec stack, JSFunction f, int pc, JSScope scope) { this.js = js; fill(stack, f, pc, scope); } + private void fill(Vec stack, JSFunction f, int pc, JSScope scope) { + addBacktrace(f.sourceName + ":" + f.line[pc]); + if (scope != null && scope instanceof Trap.TrapScope) + addBacktrace("trap on property \"" + ((Trap.TrapScope)scope).t.name + "\""); + for(int i=stack.size()-1; i>=0; i--) { + Object element = stack.elementAt(i); + if (element instanceof Interpreter.CallMarker) { + Interpreter.CallMarker cm = (Interpreter.CallMarker)element; + if (cm.f != null) + addBacktrace(cm.f.sourceName + ":" + cm.f.line[cm.pc]); + if (cm.scope != null && cm.scope instanceof Trap.TrapScope) + addBacktrace("trap on property \"" + ((Trap.TrapScope)cm.scope).t.name + "\""); + } + } + } + public void printStackTrace() { printStackTrace(System.err); } + public void printStackTrace(PrintWriter pw) { + for(int i=0; i