Lines Matching refs:dcp
47 function testArguments(dcp, arguments, success) { argument
55 var response = safeEval(dcp.processDebugJSONRequest(request));
69 var dcp = exec_state.debugCommandProcessor();
72 testArguments(dcp, void 0, true);
75 testArguments(dcp, '{"stepaction":"maybe"}', false);
76 testArguments(dcp, '{"stepcount":-1}', false);
79 testArguments(dcp, '{"stepaction":"in"}', true);
80 testArguments(dcp, '{"stepaction":"min"}', true);
81 testArguments(dcp, '{"stepaction":"next"}', true);
82 testArguments(dcp, '{"stepaction":"out"}', true);
83 testArguments(dcp, '{"stepcount":1}', true);
84 testArguments(dcp, '{"stepcount":10}', true);
85 testArguments(dcp, '{"stepcount":"10"}', true);
86 testArguments(dcp, '{"stepaction":"next","stepcount":10}', true);