Add more reflection classes (#1360)
This commit is contained in:
parent
267646fbe7
commit
e1094e1529
2 changed files with 10 additions and 1 deletions
|
|
@ -20,7 +20,7 @@
|
|||
"reify/src"],
|
||||
:deps {org.clojure/clojure {:mvn/version "1.11.1"},
|
||||
org.babashka/sci {:local/root "sci"}
|
||||
org.babashka/babashka.impl.reify {:mvn/version "0.1.2"}
|
||||
org.babashka/babashka.impl.reify {:mvn/version "0.1.3"}
|
||||
org.babashka/sci.impl.types {:mvn/version "0.0.2"}
|
||||
babashka/babashka.curl {:local/root "babashka.curl"}
|
||||
babashka/fs {:local/root "fs"}
|
||||
|
|
|
|||
|
|
@ -79,7 +79,16 @@
|
|||
;; this fixes clojure.lang.Reflector for Java 11
|
||||
java.lang.reflect.AccessibleObject
|
||||
{:methods [{:name "canAccess"}]}
|
||||
java.lang.Package
|
||||
{:methods [{:name "getName"}]}
|
||||
java.lang.reflect.Method
|
||||
{:methods [{:name "getName"}
|
||||
{:name "getModifiers"}
|
||||
{:name "getParameterTypes"}
|
||||
{:name "getReturnType"}]}
|
||||
java.lang.reflect.Modifier
|
||||
{:methods [{:name "isStatic"}]}
|
||||
java.lang.reflect.Field
|
||||
{:methods [{:name "getName"}]}
|
||||
java.lang.reflect.Array
|
||||
{:methods [{:name "newInstance"}
|
||||
|
|
|
|||
Loading…
Reference in a new issue