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 void set(String name, Class type, T object) { throw new RuntimeException("Stub!"); } }