summaryrefslogtreecommitdiff
path: root/src/clj
AgeCommit message (Collapse)Author
2009-01-08move to RT.classForName in importRich Hickey
don't gen stubs for package-private methods in gen-class and proxy (causes security violation in applets) Made root classloader create-on-demand, so no DynamicClassLoader unless dynamic code (eval/load, non-AOT proxy) AOT compiled applets should work
2009-01-07removed declare of atom and swap!Rich Hickey
2009-01-06fixed comments, patch from ChouserRich Hickey
2009-01-02fixed typo in add-watcher docs, explained var watchersRich Hickey
2009-01-02Added watcher support for agents/atoms/refs/varsRich Hickey
Watchers must be agents (add-watcher reference :send/:send-off an-agent an-action)
2009-01-01Added uniform metadata handling for atoms/refs/agents/vars/namespacesRich Hickey
Note - breaking change for agent/ref when supplying validator - validator must be passed using :validator option Added :validator and :meta options to agent/ref/atom Added alter-meta! and reset-meta! for reference types renamed set-validator to set-validator! Validators now can simply return false, or throw Refactoring, added IMeta, IReference Switched to longs for Ref ids
2008-12-29unified clojure.main, patch from Stephen C. GilardiRich Hickey
2008-12-29added back checkCasts before invokeInterface callsRich Hickey
2008-12-23added release-pending-sendsRich Hickey
2008-12-23~x not in syntax-quote yields (clojure.core/unquote x)Rich Hickey
clojure.core/unquote has no root binding
2008-12-23with-open accepts multiple bindings, patch from Meikel BrandmeyerRich Hickey
2008-12-21added condp, with input from Stuart Sierra and Meikel BrandmeyerRich Hickey
2008-12-21support single symbol imports, e.g. (import 'java.util.Date), patch from ↵Rich Hickey
Meikel Brandmeyer
2008-12-21fixed with-bindings to not hardwire compile-time compile pathRich Hickey
2008-12-14Moved to Eclipse Public License - see epl-v10.html orRich Hickey
http://opensource.org/licenses/eclipse-1.0.php
2008-12-13proxy perf tweaksRich Hickey
Note breaking change if you are using the proxy interface other than the proxy macro itself - proxy maps are now maps of (preferably interned) strings to fns, not symbols to fns, and if you construct a proxy manually you must establish initial map with init-proxy
2008-12-11added if-not, memoize, and io!Rich Hickey
io! blocks will throw exceptions when run in transactions made await and await-for use io!
2008-12-10releaxed namespace requirement for derives in private hierarchy, patch from ↵Rich Hickey
J. McConnell
2008-12-10added :exposes-methods to gen-class, patch from Matt RevelleRich Hickey
2008-12-09support :when and :while together in for, patch from ChouserRich Hickey
2008-12-08added unchecked-remainderRich Hickey
2008-12-05made RT.DEFAULT_COMPARATOR use Util.compareRich Hickey
2008-12-04swap! returns new valueRich Hickey
2008-12-03renamed clojure-print.clj, clojure-proxy.clj to clojure_...Rich Hickey
2008-12-03expose inherited protected fields that originate from fartherRich Hickey
up the hierarchy than the super class, patch from Matt Revelle
2008-12-03fixed doc for main/replRich Hickey
2008-12-02use prn as default print in mainRich Hickey
2008-12-02short print-dup for LazilyPersistenVectorsRich Hickey
made re-pattern identity for patterns, now find-doc works with patterns too
2008-12-02fixed typo in deref docRich Hickey
2008-12-02Enhanced bigdec/bigint, no op on same type, coerce floats and ints, support ↵Rich Hickey
single-args ctors, e.g. from String enhanced docs for deref/get- and set-validator for var/atom
2008-12-02added new reference type - Atom, with constructor function atom, swap!, and ↵Rich Hickey
compare-and-set! Atoms implement IRef, and thus deref/@ and validators Atoms provide independent, synchronous change of individual locations
2008-12-01AOT compilation of proxies, no interface changeRich Hickey
2008-11-30made nested load of already loading resource a no-op instead of a throwRich Hickey
2008-11-29added gen-interfaceRich Hickey
2008-11-29enhancements to AOT/gen-classRich Hickey
AOT now only produces __init.class by default, load uses that class only must have at least (:gen-class) ns clause to create named class for ns gen-class can now be called stand-alone new options allow for control of mapping to implementing namespace, name of class, loading of implementing namespace, and method name prefix (doc ns) and (doc gen-class) and http://clojure.org/compilation for details
2008-11-26added clojure.main, patch from Stephen C. GilardiRich Hickey
2008-11-26tweaked docsRich Hickey
added while
2008-11-26added internRich Hickey
2008-11-26made prefer-method and remove-method functionsRich Hickey
2008-11-25fixed doc string on trampoline, added support for passing argsRich Hickey
2008-11-25Added Fn marker interfaced, used on all true fnsRich Hickey
Breaking change - fn? now tests for Fn, not IFn Added ifn? which will test for anything callable (IFn) Added trampoline, implements trampoline protocol for TCO
2008-11-20enhanced bridge method handlingRich Hickey
2008-11-20made cond refer to itself explicitlyRich Hickey
2008-11-20got rid of scan and touchRich Hickey
2008-11-19prepRet on Array.get calls to fixup non-canonic BooleansRich Hickey
2008-11-19enhanced doto now supports functions as well as methodsRich Hickey
!! Note - breaking change - you must now use .method instead of just method: (def frame (doto (new JFrame) (add panel) pack show)) becomes: (def frame (doto (new JFrame) (.add panel) .pack .show))
2008-11-18Added AOT-based genclassRich Hickey
!!!Note - breaking change to gen-class!!! Do not move to this version if you use gen-and-xxx-class until you are ready to port to new system. Adds :gen-class clause to ns, which can be used to configure the class generated for the namespace
2008-11-18AOT init refinementsRich Hickey
2008-11-14added precompilation of base library .cljs into clojure.jar, patch from ↵Rich Hickey
Stuart Sierra
2008-11-14fixed print-dup on empty listRich Hickey