blob: 5eb725730a22cfc8a6d3bcc585fb25364114d343 [file] [log] [blame]
package org.eclipse.e4.internal.languages.javascript.junit;
import org.eclipse.wst.jsdt.debug.rhino.debugger.RhinoDebugger;
import org.mozilla.javascript.ContextFactory;
public class DebugUtil {
public static void debug(String rhinoDebug) {
RhinoDebugger debugger = new RhinoDebugger(rhinoDebug);
try {
debugger.start();
} catch (Exception e) {
throw new RuntimeException(e);
}
ContextFactory.getGlobal().addListener(debugger);
}
}