node/deps/v8/test/inspector/debugger/break-location-function-calls-expected.txt
Michaël Zasso d82e1075db
deps: update V8 to 6.1.534.36
PR-URL: https://github.com/nodejs/node/pull/14730
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Ali Ijaz Sheikh <ofrobots@google.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
2017-09-13 16:15:18 +02:00

220 lines
2.8 KiB
Plaintext

Break locations around function calls
Running test: testFunctionCallAsArgument
Break locations in expression:
function test() {
|C|foo2(|C|foo1())
}
Breakpoint at:
function test() {
#foo2(foo1())
}
Break at:
function test() {
#foo2(foo1())
}
Debugger.stepInto called
function foo1() {#}
function foo2() {}
Breakpoint at:
function test() {
foo2(#foo1())
}
Break at:
function test() {
foo2(#foo1())
}
Debugger.stepInto called
function foo1() {#}
function foo2() {}
Breakpoint at expression line.
function test() {
#foo2(foo1())
}
Debugger.stepInto called
function foo1() {#}
function foo2() {}
Running test: testFunctionCallAsArgument
Break locations in expression:
function test() {
|C|foo2(|C|foo1());
}
Breakpoint at:
function test() {
#foo2(foo1());
}
Break at:
function test() {
#foo2(foo1());
}
Debugger.stepInto called
function foo1() {#}
function foo2() {}
Breakpoint at:
function test() {
foo2(#foo1());
}
Break at:
function test() {
foo2(#foo1());
}
Debugger.stepInto called
function foo1() {#}
function foo2() {}
Breakpoint at expression line.
function test() {
#foo2(foo1());
}
Debugger.stepInto called
function foo1() {#}
function foo2() {}
Running test: testFunctionCallAsArguments
Break locations in expression:
function test() {
|C|foo3(|C|foo1(), |C|foo2());
}
Breakpoint at:
function test() {
#foo3(foo1(), foo2());
}
Break at:
function test() {
#foo3(foo1(), foo2());
}
Debugger.stepInto called
function foo1() {#}
function foo2() {}
Breakpoint at:
function test() {
foo3(#foo1(), foo2());
}
Break at:
function test() {
foo3(#foo1(), foo2());
}
Debugger.stepInto called
function foo1() {#}
function foo2() {}
Breakpoint at:
function test() {
foo3(foo1(), #foo2());
}
Break at:
function test() {
foo3(foo1(), #foo2());
}
Debugger.stepInto called
function foo1() {}
function foo2() {#}
function foo3() {}
Breakpoint at expression line.
function test() {
#foo3(foo1(), foo2());
}
Debugger.stepInto called
function foo1() {#}
function foo2() {}
Running test: testFunctionCallInBinaryExpression
Break locations in expression:
function test() {
|C|foo3(|C|foo1() + |C|foo2());
}
Breakpoint at:
function test() {
#foo3(foo1() + foo2());
}
Break at:
function test() {
#foo3(foo1() + foo2());
}
Debugger.stepInto called
function foo1() {#}
function foo2() {}
Breakpoint at:
function test() {
foo3(#foo1() + foo2());
}
Break at:
function test() {
foo3(#foo1() + foo2());
}
Debugger.stepInto called
function foo1() {#}
function foo2() {}
Breakpoint at:
function test() {
foo3(foo1() + #foo2());
}
Break at:
function test() {
foo3(foo1() + #foo2());
}
Debugger.stepInto called
function foo1() {}
function foo2() {#}
function foo3() {}
Breakpoint at expression line.
function test() {
#foo3(foo1() + foo2());
}
Debugger.stepInto called
function foo1() {#}
function foo2() {}