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

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

Issue 1133733005: Use words please. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: also rename service rpc 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
Index: runtime/observatory/tests/service/debugging_test.dart
diff --git a/runtime/observatory/tests/service/debugging_test.dart b/runtime/observatory/tests/service/debugging_test.dart
index a98702169656303aa3aea2a4d29b09a9e907a7f0..a4ce042f4bef98a74a08a4ed10fe945bcb87b8a2 100644
--- a/runtime/observatory/tests/service/debugging_test.dart
+++ b/runtime/observatory/tests/service/debugging_test.dart
@@ -55,7 +55,7 @@ var tests = [
// Add breakpoint
(Isolate isolate) async {
- await isolate.rootLib.load();
+ await isolate.rootLibrary.load();
// Set up a listener to wait for breakpoint events.
Completer completer = new Completer();
@@ -68,7 +68,7 @@ var tests = [
}
});
- var script = isolate.rootLib.scripts[0];
+ var script = isolate.rootLibrary.scripts[0];
await script.load();
// Add the breakpoint.
@@ -170,7 +170,7 @@ var tests = [
});
// Find a specific function.
- ServiceFunction function = isolate.rootLib.functions.firstWhere(
+ ServiceFunction function = isolate.rootLibrary.functions.firstWhere(
(f) => f.name == 'periodicTask');
expect(function, isNotNull);
« no previous file with comments | « runtime/observatory/tests/service/debugger_inspect_test.dart ('k') | runtime/observatory/tests/service/eval_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698