You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
user=> (require '[jise.utils :as jise])
nil
user=> (jise/do (let [^java.io.Serializable s "foo"] (.toString s)))
Syntax error macroexpanding jise.core/class at (form-init7183457418990174559.clj:64:4).
Error: cannot find symbol
symbol: method toString(no arguments)
location: class java.io.Serializable (/private/var/folders/mr/bf82sldd78g9822yxqgzd12h0000gn/T/form-init7183457418990174559.clj:1:47)
user=>
Whereas:
user=> (jise/do (let [^String s "foo"] (.toString s)))
"foo"
user=>
This is essentially due to the fact that the current implementation of t/get-methods does not consider the Object class as a supertype of any interface type:
Whereas:
This is essentially due to the fact that the current implementation of
t/get-methods
does not consider theObject
class as a supertype of any interface type:The text was updated successfully, but these errors were encountered: