Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 Checks that stepInto nested arrow function doesn't produce crash. | |
| 2 const mult = (x) => (y) => | |
| 3 #y ? mult(x * y) : x; | |
| 4 | |
| 5 const mult = (x) => #(y) => | |
| 6 y ? mult(x * y) : x; | |
| 7 | |
| 8 const mult = (x) => (y) => | |
| 9 y ? mult(x * y) : x#; | |
| 10 | |
| 11 const mult = (x) => (y) => | |
| 12 y ? mult(x * y) : x#; | |
| 13 | |
| 14 mult(5)(4)#() | |
| 15 | |
| 16 const mult = (x) => (y) => | |
| 17 #y ? mult(x * y) : x; | |
| 18 | |
| 19 const mult = (x) => (y) => | |
| 20 y ? mult(x * y) : x#; | |
| 21 | |
| 22 mult(5)(4)(#) | |
| 23 | |
| OLD | NEW |