Package org.mozilla.javascript.debug
Interface Debugger
- 
 public interface DebuggerInterface to implement if the application is interested in receiving debug information.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description DebugFramegetFrame(Context cx, DebuggableScript fnOrScript)Called when execution entered a particular function or script.voidhandleCompilationDone(Context cx, DebuggableScript fnOrScript, java.lang.String source)Called when compilation of a particular function or script into internal bytecode is done.
 
- 
- 
- 
Method Detail- 
handleCompilationDonevoid handleCompilationDone(Context cx, DebuggableScript fnOrScript, java.lang.String source) Called when compilation of a particular function or script into internal bytecode is done.- Parameters:
- cx- current Context for this thread
- fnOrScript- object describing the function or script
- source- the function or script source
 
 - 
getFrameDebugFrame getFrame(Context cx, DebuggableScript fnOrScript) Called when execution entered a particular function or script.- Returns:
- implementation of DebugFrame which receives debug information during the function or script execution or null otherwise
 
 
- 
 
-