https://chromiumcodereview.appspot.com/11338048/diff/10002/src/accessors.cc
File src/accessors.cc (right):

https://chromiumcodereview.appspot.com/11338048/diff/10002/src/accessors.cc#newcode108
src/accessors.cc:108: for (uint32_t len = old_length; len > new_length;
--len) {
If you want to avoid the off-by-one nuisance below, I think you could
make this

for (uint32_t len = old_length-1; len+1 > new_length; --len)

https://chromiumcodereview.appspot.com/11338048/

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to