30 lines
795 B
Java
30 lines
795 B
Java
package com.squareup.duktape;
|
|
|
|
/* part of tachiyomi-extensions which is licensed under Apache License Version 2.0 */
|
|
|
|
import java.io.Closeable;
|
|
import java.io.IOException;
|
|
|
|
/** This is the reference Duktape stub that tachiyomi's extensions depend on.
|
|
* Intended to be used as a reference.
|
|
*/
|
|
public class DuktapeStub implements Closeable {
|
|
|
|
public static Duktape create() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override
|
|
public synchronized void close() throws IOException {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public synchronized Object evaluate(String script) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public synchronized <T> void set(String name, Class<T> type, T object) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
} |