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

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

Issue 1393523002: Support tab completion of line:col in the debugger. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Fix warnings and other issues Created 5 years, 2 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/step_into_async_no_await_test.dart
diff --git a/runtime/observatory/tests/service/step_into_async_no_await_test.dart b/runtime/observatory/tests/service/step_into_async_no_await_test.dart
index f2a8a23837ed9e4541ba755a5630180f4ceab914..f9dddd564e97173c4cb66f0dc0a61705d0117cc0 100644
--- a/runtime/observatory/tests/service/step_into_async_no_await_test.dart
+++ b/runtime/observatory/tests/service/step_into_async_no_await_test.dart
@@ -3,7 +3,6 @@
// BSD-style license that can be found in the LICENSE file.
// VMOptions=--error_on_bad_type --error_on_bad_override --verbose_debug
-import 'package:observatory/service_io.dart';
import 'test_helper.dart';
import 'dart:developer';
@@ -15,12 +14,12 @@ asyncWithoutAwait() async {
testMain() {
debugger();
- asyncWithoutAwait();
+ asyncWithoutAwait(); // Line 17
}
var tests = [
hasStoppedAtBreakpoint,
- stoppedAtLine(18),
+ stoppedAtLine(17),
(isolate) => isolate.stepInto(),
hasStoppedAtBreakpoint,
(isolate) => isolate.getStack(), // Should not crash.

Powered by Google App Engine
This is Rietveld 408576698