We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 727c29e commit e30c287Copy full SHA for e30c287
src/orchard/java/legacy_parser.clj
@@ -84,7 +84,7 @@
84
.getKind
85
.asInterface)
86
ClassTree))
87
- (into-array)
+ ^"[Ljava.lang.Object;" (into-array)
88
(List/from))]
89
(.main enter (List/of tree))
90
(RootDocImpl. docenv classes (List/nil) (List/nil)))))
src/orchard/xref.clj
@@ -31,7 +31,7 @@
31
(defn- fn->sym
32
"Convert a function value `f` to symbol."
33
[f]
34
- (symbol (Compiler/demunge (.getName (type f)))))
+ (symbol (Compiler/demunge (.getName ^Class (type f)))))
35
36
(defn- as-var
37
"Convert `thing` to a var."
0 commit comments