summaryrefslogtreecommitdiffstats
path: root/third_party/webkit/PerformanceTests/six-speed/tests/destructuring.es6
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--third_party/webkit/PerformanceTests/six-speed/tests/destructuring.es613
1 files changed, 13 insertions, 0 deletions
diff --git a/third_party/webkit/PerformanceTests/six-speed/tests/destructuring.es6 b/third_party/webkit/PerformanceTests/six-speed/tests/destructuring.es6
new file mode 100644
index 0000000000..50e9b75bb3
--- /dev/null
+++ b/third_party/webkit/PerformanceTests/six-speed/tests/destructuring.es6
@@ -0,0 +1,13 @@
+var data = {
+ a: 'foo',
+ b: {c: 'd'},
+ arr: [1, 2, 3]
+};
+
+function fn() {
+ var {a, b:{c:b}, arr:[, c]} = data;
+ return c;
+}
+
+assertEqual(fn(), 2);
+test(fn);