summaryrefslogtreecommitdiff
path: root/src/clj
AgeCommit message (Collapse)Author
2009-12-31Merge branch 'master' into newnewRich Hickey
2009-12-31only append non-blank qualifier to clojure-versionRich Hickey
2009-12-29Merge branch 'master' into newRich Hickey
2009-12-29throw AssertionError from assertRich Hickey
2009-12-17Merge branch 'master' into newRich Hickey
2009-12-17Slight clean-ups to a few doc stringsTom Faulhaber
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-12-17fix name conflict - bound-fn. fixes #225Rich Hickey
2009-12-17main.clj: deprecation warning w/ usage for legacy repl/script; refs #218Stuart Sierra
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-12-17removed add/remove watcher, added alpha designation to watches, promises, ↵Rich Hickey
transients
2009-12-08merge masterRich Hickey
2009-12-08clojure.test/run-tests: return summary, add successful?; refs #193Stuart Sierra
Reformatted patch. Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-12-08Reinstated lost doc string for filterTom Faulhaber
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-12-04update example in reify docRich Hickey
2009-12-04merge masterRich Hickey
2009-12-04new formats for defprotocol, reify, deftypeRich Hickey
defprotocol no longer groups multiple arities in list reify and deftype now take :as this-name option, protocols/interfaces interleaved, no longer [P1 P2] (method [this] ...)*, now P1 (method[]...)* P2 (method[]...)* - see doc
2009-12-03Add :doc and :author metadata to core namespaces; fixes #216, fixes #217Stuart Sierra
Signed-off-by: Chouser <chouser@n01se.net>
2009-12-03deprecate add-classpath in docstring, print warning; fixes #214Stuart Sierra
Signed-off-by: Chouser <chouser@n01se.net>
2009-12-03Remove deprecated ^ reader macro from core sources; refs #215Stuart Sierra
Signed-off-by: Chouser <chouser@n01se.net>
2009-12-02doc fixRich Hickey
2009-12-02Add branch name "master" to version.propertiesChouser
2009-12-02Add branch name "new" to version.propertiesChouser
2009-12-01gen one-off names for dynamic deftypeRich Hickey
2009-11-30add :on-interface for code requiring class, since :on now symbolRich Hickey
2009-11-30doc updateRich Hickey
2009-11-30deftype and reify support direct implementation of protocolsRich Hickey
no more . in deftype/reify methods no more implicit this, must be first param
2009-11-30protocols gen interface of same name, e.g. my.ns/Protocol gens ↵Rich Hickey
my.ns.Protocol interface names get munged reify, deftype, protocol callsites and . calling munge gen-interface is dynamic (undocumented as yet, interface TBD)
2009-11-30restore filter docRich Hickey
2009-11-25Merge branch 'master' into newRich Hickey
2009-11-24#209 Unifying array support for primativesunknown
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-11-24add type-hint to defmethod to avoid spurious reflection warningsChas Emerick
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-11-24fixed zip/down on leaves, refs #185Achim Passen
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-11-24Add clojure.test.junit; refs #160Stuart Sierra
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-11-24Add char? fn to test for Character.Drew Raines
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-11-24give meaningful names to inline expanders, fix #136Mike Hinchey
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-11-24zip/children now checks whether the node is a branchMeikel Brandmeyer
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-11-24*-seq should return nil if the LazySeq is empty.Drew Raines
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-11-24direct linking of var calls, inlining of self callsRich Hickey
Granularity and control options for these still TBD, right now all of clojure* is direct linked, and contrib.mock known failing
2009-11-21direct calls through to on interface methodsRich Hickey
2009-11-16added extend-protocolRich Hickey
2009-11-16added extend-type and extend-classRich Hickey
2009-11-15got rid of :on interfaceRich Hickey
2009-11-15perf tweaksRich Hickey
2009-11-14put method impl cache on fns themselves, get rid of boxRich Hickey
2009-11-14tie ILookup and IKeywordLookup to valAtRich Hickey
2009-11-13defprotocol now warns when it overwrites an exising method varChouser
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-11-13fix some's doc stringRich Hickey
2009-11-12make protocol cache/satisfies? nil-tolerant, ditto supers/basesRich Hickey
2009-11-12use hierarchy to determine impl given multiple extends in superclasses of ↵Rich Hickey
target, now: target type, target class, superclasses (not interfaces) of target (in reverse derivation order, not including Object), interfaces (in arbitrary order for now), Object
2009-11-12got rid of defclass. deftype now can refer to self-type, will emit ↵Rich Hickey
same-named class when AOT compiling, thus replacing defclass.
2009-11-12throw on protocol sig with no args, must be at least oneRich Hickey