mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
17 lines
364 B
Java
Generated
17 lines
364 B
Java
Generated
package javax.script;
|
|
|
|
public abstract class CompiledScript {
|
|
|
|
public abstract Object eval(ScriptContext context) throws ScriptException;
|
|
|
|
public Object eval(Bindings bindings) throws ScriptException {
|
|
return null;
|
|
}
|
|
|
|
public Object eval() throws ScriptException {
|
|
return null;
|
|
}
|
|
|
|
public abstract ScriptEngine getEngine();
|
|
|
|
} |