Author: Andrews Medina <[email protected]>
Branch:
Changeset: r395:7a721786be34
Date: 2013-05-27 01:31 -0300
http://bitbucket.org/pypy/lang-js/changeset/7a721786be34/
Log: fixed get attribute indexes for indexOf and lastIndexOf.
diff --git a/js/builtins/array.py b/js/builtins/array.py
--- a/js/builtins/array.py
+++ b/js/builtins/array.py
@@ -56,12 +56,9 @@
o = this.ToObject()
from_index = get_arg(args, 0).ToUInt32()
to_index = get_arg(args, 1).ToUInt32()
-
n = []
-
for k in xrange(from_index, to_index):
n.append(o.get(unicode(str(k))))
-
return _w(n)
@@ -221,7 +218,7 @@
from js.jsobj import W_IntNumber
for i in xrange(from_index, -1, -1):
- y = obj.get(unicode(i))
+ y = obj.get(unicode(str(i)))
if elem == y:
return W_IntNumber(i)
return W_IntNumber(-1)
@@ -236,7 +233,7 @@
from js.jsobj import W_IntNumber
for i in xrange(from_index, length):
- y = obj.get(unicode(i))
+ y = obj.get(unicode(str(i)))
if elem == y:
return W_IntNumber(i)
return W_IntNumber(-1)
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit