Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(363)

Side by Side Diff: runtime/include/dart_dapi.h

Issue 8826007: First bits of external debugger API (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:executable
+ *
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698