File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -130,10 +130,10 @@ case."
130
130
(-requires [this] " A list of namespaces that this JavaScript requires." )
131
131
(-source [this] [this opts] " The JavaScript source string." ))
132
132
133
- (defn get-file [libspec index]
134
- (or (:file libspec )
133
+ (defn get-file [lib-spec index]
134
+ (or (:file lib-spec )
135
135
(some (fn [provide] (get-in index [provide :file ]))
136
- (:provides libspec ))))
136
+ (:provides lib-spec ))))
137
137
138
138
(defn build-index
139
139
" Index a list of dependencies by namespace and file name. There can
@@ -168,7 +168,7 @@ case."
168
168
(update-in index' [file] merge dep)
169
169
(throw
170
170
(Exception.
171
- (str " No :file provided for foreign libspec " (pr-str dep)))))
171
+ (str " No :file provided for : foreign-libs spec " (pr-str dep)))))
172
172
(assoc index' (:file dep) dep))))
173
173
{} deps))
174
174
You can’t perform that action at this time.
0 commit comments