v8/test/inspector/debugger/restore-breakpoint-expected.txt

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

77 lines
847 B
Plaintext
Raw Normal View History

Checks that debugger agent uses source content to restore breakpoints.
Running test: testSameSource
function foo() {
#boo();
}
function foo() {
#boo();
}
Running test: testOneLineOffset
function foo() {
#boo();
}
function foo() {
#boo();
boo();
}
Running test: testTwoSimilarLinesCloseToOriginalLocation1
function foo() {
#boo();
}
function foo() {
#boo();
newCode();
boo();
boo();
}
Running test: testTwoSimilarLinesCloseToOriginalLocation2
function foo() {
#boo();
}
function foo() {
boo();
newLongCode();
newCode();
#boo();
boo();
}
Running test: testHintIgnoreWhiteSpaces
function foo() {
#boo();
}
function foo() {
foo();
#boo();
}
Running test: testCheckOnlyLimitedOffsets
function foo() {
#boo();
}
function foo() {
#newCode();
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;...
boo();
}