Home | History | Annotate | Download | only in mjsunit

Lines Matching full:testarguments

47 function testArguments(exec_state, arguments, success) {
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);