(1) Is there already a form that does this?

or

(2) If not, how can the following be better/simpler:

(use 'clojure.contrib.with-ns)
(defmacro wall-hack-var
   "Return the value of a var in a namespace, even
    if it is private. Intended for test automation."
   [ns v]
   `(with-ns '~ns
      (if-let [a-var# (resolve '~v)]
        @a-var#
        (throw (RuntimeException. (str "No var " '~ns "/" '~v))))))

Stu

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to