Tags: mstang/clojurescript
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
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.
PreviousNext