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

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();
}