* @throws UserCanceledException
*/
public static JSConsoleInterpreter createDefaultJSInterpreter() throws Exception, UserCanceledException {
JSIProcessFactory iprocessFactory = new JSIProcessFactory();
JSConsoleLaunchInfo launchAndProcess = iprocessFactory.createInteractiveLaunch();
if (launchAndProcess == null) {
return null;
}
return createJSInterpreter(launchAndProcess);