Skip to content

Commit

Permalink
CLJS-3245: self-host: cljs.analyzer namespace unconditionally require…
Browse files Browse the repository at this point in the history
…s clojure.java.io
  • Loading branch information
mfikes authored and swannodette committed May 4, 2020
1 parent 7b136b0 commit 615b1f7
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/main/clojure/cljs/analyzer/api.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,13 @@
to the analyzer."
(:refer-clojure :exclude [all-ns ns-interns ns-resolve resolve find-ns
ns-publics remove-ns])
(:require [cljs.analyzer :as ana]
[cljs.env :as env]
[cljs.util :as util]
[clojure.edn :as edn]
[clojure.java.io :as io]))
#?(:clj (:require [cljs.analyzer :as ana]
[cljs.env :as env]
[cljs.util :as util]
[clojure.edn :as edn]
[clojure.java.io :as io])
:cljs (:require [cljs.analyzer :as ana]
[cljs.env :as env])))

;; =============================================================================
;; Useful Utilities
Expand Down

0 comments on commit 615b1f7

Please sign in to comment.