Status: New
Owner: ----
New issue 3300 by [email protected]: Display of array does not include
prototype entries.
http://code.google.com/p/v8/issues/detail?id=3300
v8
V8 version 3.26.27.1 [console: dumb]
d8> Array.prototype[1] = 3; var a = [,,,];
3
d8> print(a);
,3,
undefined
d8> a
[, , ] // MISSING VALUE
d8> quit();
rhino
Rhino 1.7 release 5 PRERELEASE 2013 07 05
js> Array.prototype[1] = 3; var a=[]; a.length=3; print(a);
,3,
js> a
,3, // VALUE PRESENT
js> quit();
js
jjs> Array.prototype[1] = 3; var a=[]; a.length=3; print(a);
,3,
jjs> a
,3, // VALUE PRESENT
jjs> quit();
v8
V8 version 3.26.27.1 [console: dumb]
d8> Array.prototype[1] = 3; var a=[]; a.length=3; print(a);
,3,
undefined
d8> a
[, , ] // ALTERNATE FORM, VALUE STILL MISSING
d8> quit();
--
You received this message because this project is configured to send all
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.