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