Home | History | Annotate | Download | only in mjsunit

Lines Matching full:testarguments

48 function testArguments(dcp, arguments, success) {
70 testArguments(dcp, '{}', false);
71 testArguments(dcp, '{"breakpoint":0,"condition":"false"}', false);
72 testArguments(dcp, '{"breakpoint":' + (breakpoint + 1) + ',"condition":"false"}', false);
73 testArguments(dcp, '{"breakpoint":"xx","condition":"false"}', false);
77 testArguments(dcp, '{' + bp_str + '}', true);
78 testArguments(dcp, '{' + bp_str + ',"enabled":"true"}', true);
79 testArguments(dcp, '{' + bp_str + ',"enabled":"false"}', true);
80 testArguments(dcp, '{' + bp_str + ',"condition":"1==2"}', true);
81 testArguments(dcp, '{' + bp_str + ',"condition":"false"}', true);
82 testArguments(dcp, '{' + bp_str + ',"ignoreCount":7}', true);
83 testArguments(dcp, '{' + bp_str + ',"ignoreCount":0}', true);
84 testArguments(