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

Unified Diff: runtime/observatory/tests/service/code_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/code_test.dart
diff --git a/runtime/observatory/tests/service/code_test.dart b/runtime/observatory/tests/service/code_test.dart
index 5090eb58516901f3c81d6e0d5cf2a8f12a9a8bc5..99c5f16abd53bf16e25b0b0d55b332b650cffab2 100644
--- a/runtime/observatory/tests/service/code_test.dart
+++ b/runtime/observatory/tests/service/code_test.dart
@@ -31,7 +31,7 @@ var tests = [
// Go to breakpoint at line 13.
(Isolate isolate) {
- return isolate.rootLib.load().then((_) {
+ return isolate.rootLibrary.load().then((_) {
// Set up a listener to wait for breakpoint events.
Completer completer = new Completer();
isolate.vm.events.stream.listen((ServiceEvent event) {
@@ -42,7 +42,7 @@ var tests = [
});
// Add the breakpoint.
- var script = isolate.rootLib.scripts[0];
+ var script = isolate.rootLibrary.scripts[0];
var line = 13;
return isolate.addBreakpoint(script, line).then((ServiceObject bpt) {
return completer.future; // Wait for breakpoint reached.
« no previous file with comments | « runtime/observatory/tests/service/call_site_data_test.dart ('k') | runtime/observatory/tests/service/contexts_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698