| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef VM_DEBUGGER_H_ | 5 #ifndef VM_DEBUGGER_H_ |
| 6 #define VM_DEBUGGER_H_ | 6 #define VM_DEBUGGER_H_ |
| 7 | 7 |
| 8 #include "include/dart_debugger_api.h" | 8 #include "include/dart_debugger_api.h" |
| 9 | 9 |
| 10 #include "vm/object.h" | 10 #include "vm/object.h" |
| (...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 371 | 371 |
| 372 // If >= 0, last_bpt_line contains the line number of the last breakpoint | 372 // If >= 0, last_bpt_line contains the line number of the last breakpoint |
| 373 // location for which the breakpoint callback function was called. | 373 // location for which the breakpoint callback function was called. |
| 374 intptr_t last_bpt_line_; | 374 intptr_t last_bpt_line_; |
| 375 | 375 |
| 376 // Do not call back to breakpoint handler if this flag is set. | 376 // Do not call back to breakpoint handler if this flag is set. |
| 377 // Effectively this means ignoring breakpoints. Set when Dart code may | 377 // Effectively this means ignoring breakpoints. Set when Dart code may |
| 378 // be run as a side effect of getting values of fields. | 378 // be run as a side effect of getting values of fields. |
| 379 bool ignore_breakpoints_; | 379 bool ignore_breakpoints_; |
| 380 | 380 |
| 381 intptr_t exc_pause_info_; | 381 Dart_ExceptionPauseInfo exc_pause_info_; |
| 382 | 382 |
| 383 static BreakpointHandler* bp_handler_; | 383 static BreakpointHandler* bp_handler_; |
| 384 static EventHandler* event_handler_; | 384 static EventHandler* event_handler_; |
| 385 | 385 |
| 386 friend class Isolate; | 386 friend class Isolate; |
| 387 friend class SourceBreakpoint; | 387 friend class SourceBreakpoint; |
| 388 DISALLOW_COPY_AND_ASSIGN(Debugger); | 388 DISALLOW_COPY_AND_ASSIGN(Debugger); |
| 389 }; | 389 }; |
| 390 | 390 |
| 391 | 391 |
| 392 } // namespace dart | 392 } // namespace dart |
| 393 | 393 |
| 394 #endif // VM_DEBUGGER_H_ | 394 #endif // VM_DEBUGGER_H_ |
| OLD | NEW |