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