Home | History | Annotate | Download | only in src

Lines Matching defs:Break

40 Debug.DebugEvent = { Break: 1,
69 // The different script break point types.
116 // Create a new break point object and add it to the list of break points.
124 // Object representing a break point.
125 // NOTE: This object does not have a reference to the function having break
127 // not used any more. We do not want break points to keep functions alive.
209 // Break point not active - not triggered.
212 // Check for conditional break point.
214 // If break point has condition try to evaluate it in the top frame.
217 // If no sensible mirror or non true value break point not triggered.
233 // If the break point has an ignore count it is not triggered.
239 // Break point triggered.
244 // Function called from the runtime when a break point is hit. Returns true if
245 // the break point is triggered and supposed to break execution.
251 // Object representing a script break point. The script is referenced by its
252 // script name or script id and the break point is represented as line and
385 // Set ignore count on all break points created from this script break point.
392 // Check whether a script matches this script break point. Currently this is
414 // Set the script break point in a script.
418 // If the column is undefined the break is on the line. To help locate the
444 // Create a break point object and set the break point.
460 // Clear all the break points created from this script break point
477 // break points set in this script.
510 %Break();
606 // Remove the break point from the list if requested.
610 break;
636 // Break points in API functions are not supported.
638 throw new Error('Cannot set break point in native code.');
646 // Break in builtin JavaScript code is not supported.
648 throw new Error('Cannot set break point in native code.');
650 // If the script for the function has a name convert this to a script break
656 // break point from that.
662 // Set a break point directly on the function.
690 break;
768 // Remove the break point from the list if requested.
773 break;
785 // Create script break point object.
790 // Assign number to the new script break point and add it.
795 // Run through all scripts to see if this script break point matches any
1006 return Debug.DebugEvent.Break;
1038 event: "break",
1052 // Add an Array of break points hit if any.
1056 // Find the break point number. For break points originating from a
1057 // script break point supply the script break point number.
1406 } else if (request.command == 'break') {
1561 // Ignore as break command does not do anything when broken.
1590 // Either function or script break point.
1593 // Handle function break point.
1612 // Set function break point.
1625 // Set function break point.
1629 // set script break point.
1645 // Set additional break point properties.
1654 // Add the break point number to the response.
1658 // Add break point information to the response.
1754 // Add the cleared break point numbers to the response.
1776 // Clear break point.
1779 // Add the cleared break point number to the response.
1864 // Now set the exception break state:
1873 // Add the cleared break point number to the response.
2604 break;
2610 break;