Index: test/js-perf-test/SixSpeed/spread/spread__traceur.js |
diff --git a/test/js-perf-test/SixSpeed/spread/spread__traceur.js b/test/js-perf-test/SixSpeed/spread/spread__traceur.js |
new file mode 100644 |
index 0000000000000000000000000000000000000000..f1b6cc5dea44d8c013fcb13e4792b03ac8c3109f |
--- /dev/null |
+++ b/test/js-perf-test/SixSpeed/spread/spread__traceur.js |
@@ -0,0 +1,16 @@ |
+// Copyright 2016 the V8 project authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+// This benchmark is based on the six-speed benchmark build output. |
+// Copyright 2014 Kevin Decker <https://github.com/kpdecker/six-speed/> |
+ |
+"use strict"; |
+(function(test) { |
+ "use strict"; |
+ function fn() { |
+ var $__0; |
+ return ($__0 = Math).max.apply($__0, $traceurRuntime.spread([1, 2, 3])); |
+ } |
+ test("Spread", "Traceur", fn); |
+})(benchTest); |