mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
219 lines
2.8 KiB
219 lines
2.8 KiB
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() {}
|
|
|
|
|