Lines Matching refs:exec_state
47 function testArguments(exec_state, arguments, success) { argument
49 var dcp = exec_state.debugCommandProcessor(false);
68 function listener(event, exec_state, event_data, data) { argument
73 testArguments(exec_state, void 0, true);
76 testArguments(exec_state, '{"stepaction":"maybe"}', false);
77 testArguments(exec_state, '{"stepcount":-1}', false);
80 testArguments(exec_state, '{"stepaction":"in"}', true);
81 testArguments(exec_state, '{"stepaction":"min"}', true);
82 testArguments(exec_state, '{"stepaction":"next"}', true);
83 testArguments(exec_state, '{"stepaction":"out"}', true);
84 testArguments(exec_state, '{"stepcount":1}', true);
85 testArguments(exec_state, '{"stepcount":10}', true);
86 testArguments(exec_state, '{"stepcount":"10"}', true);
87 testArguments(exec_state, '{"stepaction":"next","stepcount":10}', true);