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 5b1a7f0 commit 6abd05dCopy full SHA for 6abd05d
src/main/clojure/cljs/analyzer.cljc
@@ -176,7 +176,7 @@
176
"Returns false-y, :warn, or :error based on configuration and the
177
current value of *unchecked-arrays*."
178
[]
179
- (when (and (not (:advanced (compiler-options)))
+ (when (and (not= :advanced (:optimizations (compiler-options)))
180
(not *unchecked-arrays*))
181
*checked-arrays*))
182
@@ -4473,7 +4473,7 @@
4473
(defn build-affecting-options [opts]
4474
(select-keys opts
4475
[:static-fns :fn-invoke-direct :optimize-constants :elide-asserts :target :nodejs-rt
4476
- :cache-key :checked-arrays :language-out])))
+ :cache-key :checked-arrays :language-out :optimizations])))
4477
4478
#?(:clj
4479
(defn build-affecting-options-sha [path opts]
0 commit comments