Sign in
webkit
/
WebKit
/
8c551616acce2c42251182c7abaffe8c5bfc0fe5
/
.
/
JSTests
/
es6
/
well-known_symbols_Symbol.split.js
blob: e57cb3d7bbe47dbe4ca2b585e9ca716430d4179e [
file
] [
log
] [
blame
]
function
test
()
{
var
O
=
{};
O
[
Symbol
.
split
]
=
function
(){
return
42
;
};
return
''
.
split
(
O
)
===
42
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);