Keep dart:debugger comments in sync

BUG=
R=johnmccutchan@google.com, skybrian@google.com

Review URL: https://codereview.chromium.org//1130043002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@45578 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
alanknight@google.com 2015-05-06 23:14:38 +00:00
parent 6fe25b0578
commit dd9150542d

View file

@ -9,11 +9,13 @@ library dart.debugger;
class Debugger {
/// Stop the program as if a breakpoint where hit at the following statement.
/// 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.
/// continues execution. When running in the Dart VM the behaviour is the same
/// regardless of whether or not a debugger is connected. When compiled to
/// JavaScript, this uses the "debugger" statement, and behaves exactly as
/// that does.
external static void breakHere();
/// If [expr] is true, stop the program as if a breakpoint where hit at the
/// following statement.
/// following statement. See [breakHere].
external static void breakHereIf(bool expr);
}