Sign in
webkit
/
WebKit
/
c6951ff6f7d972427c05df8e7c39e3f2d74bf29c
/
.
/
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"
);