Skip to content
This repository has been archived by the owner on Oct 26, 2018. It is now read-only.

Commit

Permalink
Note on required Clojure version
Browse files Browse the repository at this point in the history
  • Loading branch information
frenchy64 committed Oct 28, 2012
1 parent a831116 commit 4a15f07
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Expand Up @@ -4,6 +4,8 @@ Clojure's analysis compilation phase holds rich information about Clojure forms,

_analyze_ provides an interface to this phase, callable a la carte. The output is similar to ClojureScript's analyzer.

*Clojure 1.5.0-beta1 only.*

# Contributing

Pull requests accepted from registered Clojure contributers
Expand Down
3 changes: 2 additions & 1 deletion src/analyze/core.clj
Expand Up @@ -52,7 +52,8 @@
;; Utils

(defmacro field
"Call a private field, must be known at compile time"
"Call a private field, must be known at compile time. Throws an error
if field is already publicly accessible."
([class-obj field] `(field ~class-obj ~field nil))
([class-obj field obj]
(let [{class-flags :flags :keys [members]} (reflect/reflect (resolve class-obj))
Expand Down

0 comments on commit 4a15f07

Please sign in to comment.