mirror of https://github.com/axmolengine/axmol.git
66 lines
2.0 KiB
JavaScript
66 lines
2.0 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
/**
|
|
* Check that stepping over a function call does not pause inside the function.
|
|
*/
|
|
|
|
var gDebuggee;
|
|
var gClient;
|
|
var gThreadClient;
|
|
|
|
function run_test()
|
|
{
|
|
initTestDebuggerServer();
|
|
gDebuggee = addTestGlobal("test-stack");
|
|
gClient = new DebuggerClient(DebuggerServer.connectPipe());
|
|
gClient.connect(function () {
|
|
attachTestTabAndResume(gClient, "test-stack", function (aResponse, aTabClient, aThreadClient) {
|
|
gThreadClient = aThreadClient;
|
|
test_simple_stepping();
|
|
});
|
|
});
|
|
do_test_pending();
|
|
}
|
|
|
|
function test_simple_stepping()
|
|
{
|
|
gThreadClient.addOneTimeListener("paused", function (aEvent, aPacket) {
|
|
gThreadClient.addOneTimeListener("paused", function (aEvent, aPacket) {
|
|
// Check the return value.
|
|
do_check_eq(aPacket.type, "paused");
|
|
do_check_eq(aPacket.frame.where.line, gDebuggee.line0 + 5);
|
|
do_check_eq(aPacket.why.type, "resumeLimit");
|
|
// Check that stepping worked.
|
|
do_check_eq(gDebuggee.a, undefined);
|
|
do_check_eq(gDebuggee.b, undefined);
|
|
|
|
gThreadClient.addOneTimeListener("paused", function (aEvent, aPacket) {
|
|
// Check the return value.
|
|
do_check_eq(aPacket.type, "paused");
|
|
do_check_eq(aPacket.frame.where.line, gDebuggee.line0 + 6);
|
|
do_check_eq(aPacket.why.type, "resumeLimit");
|
|
// Check that stepping worked.
|
|
do_check_eq(gDebuggee.a, 1);
|
|
do_check_eq(gDebuggee.b, undefined);
|
|
|
|
gThreadClient.resume(function () {
|
|
finishClient(gClient);
|
|
});
|
|
});
|
|
gThreadClient.stepOver();
|
|
|
|
});
|
|
gThreadClient.stepOver();
|
|
|
|
});
|
|
|
|
gDebuggee.eval("var line0 = Error().lineNumber;\n" +
|
|
"function f() {\n" + // line0 + 1
|
|
" this.a = 1;\n" + // line0 + 2
|
|
"}\n" + // line0 + 3
|
|
"debugger;\n" + // line0 + 4
|
|
"f();\n" + // line0 + 5
|
|
"let b = 2;\n"); // line0 + 6
|
|
}
|