Sign in
webkit
/
WebKit
/
2ab9dfaee5c791e0d7b2c0893a55ced8677e2e2a
/
.
/
JSTests
/
es6
/
destructuring_computed_properties.js
blob: 2966b5c5c1e94ef0c74e408b3052e03b4bc974f1 [
file
] [
log
] [
blame
]
function
test
()
{
var
qux
=
"corge"
;
var
{
[
qux
]:
grault
}
=
{
corge
:
"garply"
};
return
grault
===
"garply"
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);