public
Fork of sstephenson/prototype
Description: Prototype JavaScript framework
Homepage: http://prototypejs.org/
Clone URL: git://github.com/tobie/prototype.git
Uncomment redefining the valueOf method of Class methods as this is now 
supported by the cajoler.
tobie (author)
Mon Jul 14 00:51:00 -0700 2008
commit  45bcdfc65d646fbafa951067a4c68e7012e986d1
tree    d8bd2b4080d71c269adfd3ae8da95ac3655b2487
parent  758a33d397f7d79630b5091be334d831203f9011
...
67
68
69
70
 
71
72
73
...
67
68
69
 
70
71
72
73
0
@@ -67,7 +67,7 @@ Class.Methods = {
0
           return function() { return ancestor[m].apply(this, arguments) };
0
         })(property).wrap(method);
0
 
0
- // value.valueOf = method.valueOf.bind(method);
0
+ value.valueOf = method.valueOf.bind(method);
0
         // value.toString = method.toString.bind(method);
0
       }
0
       this.prototype[property] = value;

Comments

    No one has commented yet.