Tags: mstang/clojurescript

r1.7.122

Toggle r1.7.122's commit message
CLJS-1434: clojure.walk no longer preserves meta on vectors

Remove redundant IMapEntry case which was capturing vectors and not preserving meta. Instead rely on coll?

r1.7.107

Toggle r1.7.107's commit message
CLJS-1299: Add support for more literals in reader

Adds support for rich character literals like `\space`, `\return` and
unicode literals like `\u1234`. The implementation is a port of the JVM's
`CharacterReader`.

See http://dev.clojure.org/jira/browse/CLJS-1299

r1.7.58

Toggle r1.7.58's commit message
when compiled need local eval

r1.7.48

Toggle r1.7.48's commit message
bump Google Closure Library dependency

r1.7.28

Toggle r1.7.28's commit message
eval hack is only required in Node.js + :simple because of modules

r1.7.10

Toggle r1.7.10's commit message
update uberjar script

r3308

Toggle r3308's commit message
bump to Clojure 1.7.0-RC1

r3297

Toggle r3297's commit message
CLJS-1284: IndexedSeq -seq implementation incorrect for i >= alength …

…of internal array

for performance reasons we sometimes inline calls to the IndexedSeq constructor,
however this bypasses the validation offered by prim-seq and array-seq.

Fix IndexedSeq -seq so that it checks current index to length of array.

Fix IndexedSeq -count so that negative values are never returned.

Add tests.

r3291

Toggle r3291's commit message
Merge branch 'master' of .com:clojure/clojurescript