Sign in
webkit
/
WebKit
/
6fd57f0545e2ab789319dc828ca2e5959d39c256
/
.
/
JSTests
/
es6
/
Array_is_subclassable_length_property_accessing.js
blob: 9782375337868d1f121c4c9b171a2c28d0ad2313 [
file
] [
log
] [
blame
]
function
test
()
{
class
C extends
Array
{}
var
c
=
new
C
();
var
len1
=
c
.
length
;
c
[
2
]
=
'foo'
;
var
len2
=
c
.
length
;
return
len1
===
0
&&
len2
===
3
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);