Sign in
webkit
/
WebKit
/
56b894cf3d88d931dd6ddc67d6c4d9e352030ab4
/
.
/
JSTests
/
es6
/
object_literal_extensions_shorthand_methods.js
blob: d90f5380decbd63198bf4f2c9e56cd388b8b2b4c [
file
] [
log
] [
blame
]
function
test
()
{
return
({
y
()
{
return
2
;
}
}).
y
()
===
2
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);