Debugger is now called by exception handling.
Added 'pass' command to pass exceptions to the app.
diff --git a/debugger/debug.l b/debugger/debug.l
index 669f652..d8f96a9 100644
--- a/debugger/debug.l
+++ b/debugger/debug.l
@@ -135,6 +135,7 @@
<INITIAL>where|wher|whe { BEGIN(NOCMD); return tBACKTRACE; }
<INITIAL>cont|con|co|c { BEGIN(NOCMD); return tCONT; }
+<INITIAL>pass|pas|pa { BEGIN(NOCMD); return tPASS; }
<INITIAL>condition|conditio|conditi|condit|condi|cond { BEGIN(NOCMD); return tCOND; }
<INITIAL>step|ste|st|s { BEGIN(NOCMD); return tSTEP; }
<INITIAL>next|nex|ne|n { BEGIN(NOCMD); return tNEXT; }