OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 // Flags: --harmony-arrow-functions |
| 6 |
| 7 // Arrow functions are like functions, except they throw when using the |
| 8 // "new" operator on them. |
| 9 assertEquals("function", typeof (() => {})); |
| 10 assertEquals(Function.prototype, Object.getPrototypeOf(() => {})); |
| 11 assertThrows("new (() => {})", TypeError); |
| 12 |
| 13 // Check the different syntax variations |
| 14 assertEquals(1, (() => 1)()); |
| 15 assertEquals(2, (a => a + 1)(1)); |
| 16 assertEquals(3, (() => { return 3; })()); |
| 17 assertEquals(4, (a => { return a + 3; })(1)); |
| 18 assertEquals(5, ((a, b) => a + b)(1, 4)); |
| 19 assertEquals(6, ((a, b) => { return a + b; })(1, 5)); |
| 20 |
| 21 // The following are tests from: |
| 22 // http://wiki.ecmascript.org/doku.php?id=harmony:arrow_function_syntax |
| 23 |
| 24 // Empty arrow function returns undefined |
| 25 var empty = () => {}; |
| 26 assertEquals(undefined, empty()); |
| 27 |
| 28 // Single parameter case needs no parentheses around parameter list |
| 29 var identity = x => x; |
| 30 assertEquals(empty, identity(empty)); |
| 31 |
| 32 // No need for parentheses even for lower-precedence expression body |
| 33 var square = x => x * x; |
| 34 assertEquals(9, square(3)); |
| 35 |
| 36 // Parenthesize the body to return an object literal expression |
| 37 var key_maker = val => ({key: val}); |
| 38 assertEquals(empty, key_maker(empty).key); |
| 39 |
| 40 // Statement body needs braces, must use 'return' explicitly if not void |
| 41 var evens = [0, 2, 4, 6, 8]; |
| 42 assertEquals([1, 3, 5, 7, 9], evens.map(v => v + 1)); |
| 43 |
| 44 var fives = []; |
| 45 [1, 2, 3, 4, 5, 6, 7, 8, 9, 10].forEach(v => { |
| 46 if (v % 5 === 0) fives.push(v); |
| 47 }); |
| 48 assertEquals([5, 10], fives); |
OLD | NEW |