28 lines
455 B
Java
28 lines
455 B
Java
package org.mozilla.javascript.debug;
|
|
|
|
public interface DebuggableScript {
|
|
DebuggableScript getFunction(int i);
|
|
|
|
int getFunctionCount();
|
|
|
|
String getFunctionName();
|
|
|
|
int[] getLineNumbers();
|
|
|
|
int getParamAndVarCount();
|
|
|
|
int getParamCount();
|
|
|
|
String getParamOrVarName(int i);
|
|
|
|
DebuggableScript getParent();
|
|
|
|
String getSourceName();
|
|
|
|
boolean isFunction();
|
|
|
|
boolean isGeneratedScript();
|
|
|
|
boolean isTopLevel();
|
|
}
|