17 lines
466 B
Java
17 lines
466 B
Java
package org.mozilla.javascript.debug;
|
|
|
|
import org.mozilla.javascript.Context;
|
|
import org.mozilla.javascript.Scriptable;
|
|
|
|
public interface DebugFrame {
|
|
void onDebuggerStatement(Context context);
|
|
|
|
void onEnter(Context context, Scriptable scriptable, Scriptable scriptable2, Object[] objArr);
|
|
|
|
void onExceptionThrown(Context context, Throwable th);
|
|
|
|
void onExit(Context context, boolean z, Object obj);
|
|
|
|
void onLineChange(Context context, int i);
|
|
}
|