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

Unified Diff: runtime/observatory/tests/service/eval_test.dart

Issue 1237203002: Insert debug step check at the beginning of a function. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 5 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
Index: runtime/observatory/tests/service/eval_test.dart
diff --git a/runtime/observatory/tests/service/eval_test.dart b/runtime/observatory/tests/service/eval_test.dart
index 8414aa7e18e0d9b3b96732f048a8befa3fe20688..7a535f401bdd39933b3387147511c7bff683f2f6 100644
--- a/runtime/observatory/tests/service/eval_test.dart
+++ b/runtime/observatory/tests/service/eval_test.dart
@@ -14,7 +14,7 @@ class MyClass {
static int staticVar = 1000;
static void printValue(int value) {
- print(value); // line 16
+ print(value); // line 17
}
}
@@ -47,7 +47,7 @@ var tests = [
// Add the breakpoint.
var script = isolate.rootLibrary.scripts[0];
- var line = 16;
+ var line = 17;
return isolate.addBreakpoint(script, line).then((ServiceObject bpt) {
return completer.future; // Wait for breakpoint reached.
});

Powered by Google App Engine
This is Rietveld 408576698