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

Unified Diff: sdk/lib/debugger/debugger.dart

Issue 1121293003: Provide a dart2js implementation of dart:debugger (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Review fixes Created 5 years, 7 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sdk/lib/_internal/libraries.dart ('k') | tools/create_sdk.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/debugger/debugger.dart
diff --git a/sdk/lib/debugger/debugger.dart b/sdk/lib/debugger/debugger.dart
index 33cf81b9e2f07e10f1947693a3715957dc1e77e7..7135d443165bbcab10c03e903a876dc7b0918fdd 100644
--- a/sdk/lib/debugger/debugger.dart
+++ b/sdk/lib/debugger/debugger.dart
@@ -11,13 +11,9 @@ class Debugger {
/// NOTE: When invoked, the isolate will not return until a debugger
/// continues execution. The behaviour is the same regardless of whether or
/// not a debugger is connected.
Cutch 2015/05/06 19:50:10 DBC: Update comment here.
Alan Knight 2015/05/06 22:30:50 Already done from an earlier comment.
skybrian 2015/05/06 22:51:56 There are doc comments in two places, here and in
- static void breakHere() {
- print('Debugger.breakHere not supported on this platform.');
- }
+ external static void breakHere();
/// If [expr] is true, stop the program as if a breakpoint where hit at the
/// following statement.
- static void breakHereIf(bool expr) {
- print('Debugger.breakHereIf not supported on this platform.');
- }
+ external static void breakHereIf(bool expr);
}
« no previous file with comments | « sdk/lib/_internal/libraries.dart ('k') | tools/create_sdk.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698