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 c0ea680 commit 3c82c7bCopy full SHA for 3c82c7b
src/sci/impl/analyzer.cljc
@@ -575,11 +575,12 @@
575
closure-idx (get-in new-cb (conj parents :syms ob))]
576
closure-idx))
577
578
-(defn resolve-type-hint [ctx t]
579
- (or (interop/resolve-type-hint ctx t)
580
- (records/resolve-record-class ctx t)
581
- (throw-error-with-location
582
- (str "Unable to resolve classnamex: " t) t)))
+#?(:clj
+ (defn resolve-type-hint [ctx t]
+ (or (interop/resolve-type-hint ctx t)
+ (records/resolve-record-class ctx t)
+ (throw-error-with-location
583
+ (str "Unable to resolve classnamex: " t) t))))
584
585
(defn analyze-let*
586
[ctx expr destructured-let-bindings exprs]
0 commit comments