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

Side by Side Diff: test/inspector/debugger/restore-breakpoint-expected.txt

Issue 2671193002: [inspector] restore provisional breakpoints smarter (Closed)
Patch Set: addressed comments 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
OLDNEW
(Empty)
1 Checks that debugger agent uses source content to restore breakpoints.
2
3 Running test: testSameSource
4 function foo() {
5 #boo();
6 }
7 function foo() {
8 #boo();
9 }
10
11 Running test: testOneLineOffset
12 function foo() {
13 #boo();
14 }
15 function foo() {
16 #boo();
17 boo();
18 }
19
20 Running test: testTwoSimilarLinesCloseToOriginalLocation1
21 function foo() {
22
23
24 #boo();
25 }
26 function foo() {
27 #boo();
28
29 newCode();
30 boo();
31
32
33
34 boo();
35 }
36
37 Running test: testTwoSimilarLinesCloseToOriginalLocation2
38 function foo() {
39
40
41 #boo();
42 }
43 function foo() {
44 boo();
45 newLongCode();
46 newCode();
47 #boo();
48
49
50
51 boo();
52 }
53
54 Running test: testHintIgnoreWhiteSpaces
55 function foo() {
56
57
58
59 #boo();
60 }
61 function foo() {
62 foo();
63
64
65 #boo();
66 }
67
68 Running test: testCheckOnlyLimitedOffsets
69 function foo() {
70 #boo();
71 }
72 function foo() {
73 #newCode();
74 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;...
75 boo();
76 }
OLDNEW
« src/inspector/v8-debugger-agent-impl.cc ('K') | « test/inspector/debugger/restore-breakpoint.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698