| org.mozilla.javascript.debug.Debugger
Debugger | public interface Debugger (Code) | | Interface to implement if the application is interested in receiving debug
information.
|
getFrame | DebugFrame getFrame(Context cx, DebuggableScript fnOrScript)(Code) | | Called when execution entered a particular function or script.
implementation of DebugFrame which receives debug information duringthe function or script execution or null otherwise |
handleCompilationDone | void handleCompilationDone(Context cx, DebuggableScript fnOrScript, String source)(Code) | | Called when compilation of a particular function or script into internal
bytecode is done.
Parameters: cx - current Context for this thread Parameters: fnOrScript - object describing the function or script Parameters: source - the function or script source |
|
|