add: jump, find, replace, copy, paste for editor

This commit is contained in:
hyb1996
2017-09-28 21:09:16 +08:00
parent 8f3d88c94c
commit e1f95c09f3
23 changed files with 721 additions and 123 deletions

View File

@@ -1,11 +1,13 @@
package com.stardust.autojs.runtime.exception;
import org.mozilla.javascript.EvaluatorException;
import org.mozilla.javascript.RhinoException;
/**
* Created by Stardust on 2017/1/29.
*/
public class ScriptException extends RuntimeException {
public ScriptException(String message, Throwable cause) {
super(message, cause);
}
@@ -15,7 +17,6 @@ public class ScriptException extends RuntimeException {
}
public ScriptException() {
}
public ScriptException(Throwable cause) {