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 fb16239 commit 6934216Copy full SHA for 6934216
src/main/clojure/cljs/analyzer.cljc
@@ -2863,10 +2863,13 @@
2863
:numeric numeric})))
2864
2865
(defn analyzed
2866
+ "Mark a form as being analyzed. Assumes x satisfies IMeta. Useful to suppress
2867
+ warnings that will have been caught by a first compiler pass."
2868
[x]
2869
(vary-meta x assoc ::analyzed true))
2870
-(defn- analyzed?
2871
+(defn analyzed?
2872
+ "Returns boolean if the form has already been marked as analyzed."
2873
#?(:cljs {:tag boolean})
2874
2875
(boolean (::analyzed (meta x))))
0 commit comments