|
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 | |
siva
2011/12/07 05:44:48
extra blank line?
hausner
2011/12/07 22:14:26
Done.
| |
9 #include "include/dart_api.h" | |
10 | |
11 typedef struct _Dart_Breakpoint* Dart_Breakpoint; | |
12 | |
13 | |
14 DART_EXPORT void Dart_InitDebugger(); | |
siva
2011/12/07 05:44:48
Is Dart_InitDebugger guaranteed not to fail?
hausner
2011/12/07 22:14:26
At this point, it always succeeds. But it makes se
| |
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); | |
siva
2011/12/07 05:44:48
Todd has been adding some documentation on top of
hausner
2011/12/07 22:14:26
Added proper function comment.
| |
21 | |
22 #endif // INCLUDE_DART_DAPI_H_ | |
OLD | NEW |