Home | History | Annotate | Download | only in debug

Lines Matching refs:breakpoint

83 // The different types of breakpoint position alignments.
133 var break_point = new BreakPoint(source_position, opt_script_break_point);
143 function BreakPoint(source_position, opt_script_break_point) {
157 BreakPoint.prototype.number = function() {
162 BreakPoint.prototype.func = function() {
167 BreakPoint.prototype.source_position = function() {
172 BreakPoint.prototype.hit_count = function() {
177 BreakPoint.prototype.active = function() {
185 BreakPoint.prototype.condition = function() {
193 BreakPoint.prototype.ignoreCount = function() {
198 BreakPoint.prototype.script_break_point = function() {
203 BreakPoint.prototype.enable = function() {
208 BreakPoint.prototype.disable = function() {
213 BreakPoint.prototype.setCondition = function(condition) {
218 BreakPoint.prototype.setIgnoreCount = function(ignoreCount) {
223 BreakPoint.prototype.isTriggered = function(exec_state) {
279 throw MakeError(kDebugger, "Unexpected breakpoint type " + type);
294 // Creates a clone of script breakpoint that is linked to another script.
426 throw MakeError(kDebugger, "Unexpected breakpoint type " + this.type_);
707 // Only enable if the breakpoint hasn't been deleted:
716 // Only enable if the breakpoint hasn't been deleted:
742 if (!break_point) throw MakeError(kDebugger, 'Invalid breakpoint');
784 // Sets a breakpoint in a script identified through id or name at the
1060 var breakpoint = this.breakPointsHit()[i];
1061 var script_break_point = breakpoint.script_break_point();
1066 number = breakpoint.number();
1581 breakpoint: break_point_number };
1596 "Unexpected breakpoint type: " + break_point.type());
1617 var break_point = TO_NUMBER(request.arguments.breakpoint);
1624 response.failed('Missing argument "breakpoint"');
1693 var break_point = TO_NUMBER(request.arguments.breakpoint);
1697 response.failed('Missing argument "breakpoint"');
1705 response.body = { breakpoint: break_point };
1738 "Unexpected breakpoint type: " + break_point.type());
2592 "BreakPoint", BreakPoint,