Lines Matching refs:script
85 testArguments(dcp, '{"type":"script"}', false);
106 testArguments(dcp, '{"type":"script","target":"test"}', true, true);
107 testArguments(dcp, '{"type":"script","target":"test"}', true, true);
108 testArguments(dcp, '{"type":"script","target":"test","line":1}', true, true);
109 testArguments(dcp, '{"type":"script","target":"test","column":1}', true, true);
120 testArguments(dcp, '{"type":"script","target":"sourceUrlScript","line":0}', true, true);
153 // Check the script ids for the test functions.
159 assertTrue(f_script_id > 0, "invalid script id for f");
160 assertTrue(g_script_id > 0, "invalid script id for g");
161 assertTrue(h_script_id > 0, "invalid script id for h");
162 assertTrue(sourceURL_script_id > 0, "invalid script id for sourceUrlFunc");
197 // Breakpoint in a script with no statements test case. If breakpoint is set
198 // to the script body, its actual position is taken from the nearest statement
199 // below or like in this case is reset to the very end of the script.
203 // Gets a script of 'i1' function and sets the breakpoint at line #4 which
207 assertTrue(!!i_script, "invalid script for i1");
212 // Creates the eval script and tries to set the breakpoint.
213 // The tricky part is that the script function must be strongly reachable at the
215 // we run this code while the script function is being activated on stack.