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

Unified Diff: runtime/observatory/tests/service/async_generator_breakpoint_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/async_generator_breakpoint_test.dart
diff --git a/runtime/observatory/tests/service/async_generator_breakpoint_test.dart b/runtime/observatory/tests/service/async_generator_breakpoint_test.dart
index dbdd0459608426bebadb3501f4241fb847d6a2d5..123edcd83c14031391320e927cd89e85e7332794 100644
--- a/runtime/observatory/tests/service/async_generator_breakpoint_test.dart
+++ b/runtime/observatory/tests/service/async_generator_breakpoint_test.dart
@@ -42,8 +42,8 @@ testeeDo() {
}
testAsync(Isolate isolate) async {
- await isolate.rootLib.load();
- var script = isolate.rootLib.scripts[0];
+ await isolate.rootLibrary.load();
+ var script = isolate.rootLibrary.scripts[0];
var bp1 = await isolate.addBreakpoint(script, 10);
expect(bp1, isNotNull);
@@ -64,7 +64,7 @@ testAsync(Isolate isolate) async {
var hits = [];
- isolate.eval(isolate.rootLib, 'testerReady = true;')
+ isolate.rootLibrary.evaluate('testerReady = true;')
.then((Instance result) {
expect(result.valueAsString, equals('true'));
});
« no previous file with comments | « runtime/observatory/tests/service/allocations_test.dart ('k') | runtime/observatory/tests/service/caching_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698