Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(264)

Side by Side Diff: test/inspector/debugger/step-into-arrow-expected.txt

Issue 2721633004: [inspector] fixed crash on attempt to access empty scope_info on break (Closed)
Patch Set: better test Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « test/inspector/debugger/step-into-arrow.js ('k') | test/inspector/protocol-test.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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
OLDNEW
« no previous file with comments | « test/inspector/debugger/step-into-arrow.js ('k') | test/inspector/protocol-test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698