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 6048bc9 commit abf4e78Copy full SHA for abf4e78
src/main/clojure/cljs/analyzer.cljc
@@ -181,9 +181,7 @@
181
"synchronized" "this" "throw" "throws"
182
"transient" "try" "typeof" "var" "void"
183
"volatile" "while" "with" "yield" "methods"
184
- "null" "constructor"
185
- "com" ;; for Rhino
186
- })
+ "null" "constructor"})
187
188
(def es5-allowed
189
#{"default"})
@@ -2603,8 +2601,7 @@
2603
2601
(when (= 1 (count segments))
2604
2602
(warning :single-segment-namespace env {:name name}))
2605
(let [segment (some js-reserved segments)]
2606
- ;; don't complain about "com", for Rhino
2607
- (when (and (some? segment) (not= "com" segment))
+ (when (some? segment)
2608
(warning :munged-namespace env {:name name})))
2609
(find-def-clash env name segments)
2610
#?(:clj
0 commit comments