Index: runtime/observatory/tests/service/get_stack_rpc_test.dart |
diff --git a/runtime/observatory/tests/service/get_stack_rpc_test.dart b/runtime/observatory/tests/service/get_stack_rpc_test.dart |
index 550a3da9915f98193454b1a5d17d5803fa5d1d6c..e3a04d3929b20c80752b3691d2be7cf811de0997 100644 |
--- a/runtime/observatory/tests/service/get_stack_rpc_test.dart |
+++ b/runtime/observatory/tests/service/get_stack_rpc_test.dart |
@@ -8,7 +8,7 @@ import 'package:unittest/unittest.dart'; |
import 'test_helper.dart'; |
import 'dart:async'; |
import 'dart:isolate' as isolate; |
-import 'dart:debugger' as debugger; |
+import 'dart:developer' as developer; |
int counter = 0; |
const stoppedAtLine = 23; |
@@ -19,7 +19,7 @@ void msgHandler(_) { } |
void periodicTask(_) { |
port.sendPort.send(34); |
- debugger.Debugger.breakHere(); // We will be at a breakpoint at the next line. |
+ developer.breakHere(); // We will be at a breakpoint at the next line. |
counter++; |
if (counter % 300 == 0) { |
print('counter = $counter'); |