Various fixes

This commit is contained in:
Anuken
2019-12-06 22:24:32 -05:00
parent 2b49c300f8
commit f3a5798a7f
7 changed files with 176 additions and 24 deletions
+5 -1
View File
@@ -2,6 +2,10 @@ const print = function(obj){
java.lang.System.out.println(obj ? String(obj) : "null")
}
const extend = function(classType, name, params){
const extendContent = function(classType, name, params){
return new JavaAdapter(classType, params, name)
}
const extend = function(classType, params){
return new JavaAdapter(classType, params)
}