Multisrc bugfix and genkan refactor (#5707)

* themesource bugfix, refactor genkan

* revert 3da46570aa
This commit is contained in:
Aria Moradi
2021-02-08 13:37:48 -08:00
committed by GitHub
parent f1a7a5aac2
commit 0ce4416f09
11 changed files with 57 additions and 31 deletions

View File

@ -0,0 +1,16 @@
plugins {
java
}
sourceSets {
main {
java {
srcDirs(listOf("src"))
}
}
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}

View File

@ -0,0 +1,26 @@
package com.squareup.duktape;
import java.io.Closeable;
import java.io.IOException;
@SuppressWarnings("all")
public class Duktape 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!");
}
}