aboutsummaryrefslogtreecommitdiff
path: root/clojurescript/PersistentVector-proto.js
diff options
context:
space:
mode:
authorChouser <chouser@n01se.net>2008-09-21 03:09:01 +0000
committerChouser <chouser@n01se.net>2008-09-21 03:09:01 +0000
commite71a98675ced585d9253e0dd7a8b1452ae3e6165 (patch)
tree1c949c993eb614a20a5f2bb2c376318997034efd /clojurescript/PersistentVector-proto.js
parent20d1ba5d710e1f9c86887484092154101f0017c7 (diff)
ClojureScript: Added: RT.conj, ASeq, Cons, EmptyList, PersistentList.
boot.js now loads in Rhino and browsers.
Diffstat (limited to 'clojurescript/PersistentVector-proto.js')
-rw-r--r--clojurescript/PersistentVector-proto.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/clojurescript/PersistentVector-proto.js b/clojurescript/PersistentVector-proto.js
index cbfdbee4..ef5e93ef 100644
--- a/clojurescript/PersistentVector-proto.js
+++ b/clojurescript/PersistentVector-proto.js
@@ -25,7 +25,7 @@ function PersistentVector( _meta, cnt, shift, root, tail ) {
}
PersistentVector.prototype = new APersistentVector( null );
-PersistentVector.contraction = PersistentVector;
+PersistentVector.constructor = PersistentVector;
PersistentVector.prototype.tailoff = function() {
return this.cnt - this.tail.length;