2026-03-17 13:31:18 -07:00

10 lines
283 B
Java

package org.mozilla.javascript.debug;
import org.mozilla.javascript.Context;
public interface Debugger {
DebugFrame getFrame(Context context, DebuggableScript debuggableScript);
void handleCompilationDone(Context context, DebuggableScript debuggableScript, String str);
}