OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 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. |
| 4 |
| 5 #ifndef INCLUDE_DART_DAPI_H_ |
| 6 #define INCLUDE_DART_DAPI_H_ |
| 7 |
| 8 |
| 9 #include "include/dart_api.h" |
| 10 |
| 11 typedef struct _Dart_Breakpoint* Dart_Breakpoint; |
| 12 |
| 13 |
| 14 DART_EXPORT void Dart_InitDebugger(); |
| 15 |
| 16 DART_EXPORT Dart_Handle Dart_SetBreakpointAtEntry( |
| 17 Dart_Handle library, |
| 18 Dart_Handle class_name, |
| 19 Dart_Handle function_name, |
| 20 Dart_Breakpoint* breakpoint); |
| 21 |
| 22 #endif // INCLUDE_DART_DAPI_H_ |
OLD | NEW |