mirror of
https://github.com/nodejs/node.git
synced 2025-05-16 21:03:46 +00:00

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>
220 lines
2.8 KiB
Plaintext
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() {}
|
|
|