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

Unified Diff: test/dart_codegen/expect/async/schedule_microtask.dart

Issue 967933005: rename ddc -> dev_compiler, fixes #84 (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 10 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
« no previous file with comments | « test/dart_codegen/expect/async/future_impl.dart ('k') | test/dart_codegen/expect/async/stream.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/dart_codegen/expect/async/schedule_microtask.dart
diff --git a/test/dart_codegen/expect/async/schedule_microtask.dart b/test/dart_codegen/expect/async/schedule_microtask.dart
index 003706d7f3d98c8e527f0e8739d3051bfa601cac..0d4cd89f9884609e1a4a17c7ed329a0d0574cd13 100644
--- a/test/dart_codegen/expect/async/schedule_microtask.dart
+++ b/test/dart_codegen/expect/async/schedule_microtask.dart
@@ -30,19 +30,19 @@ _isInCallbackLoop = true;
}
void _scheduleAsyncCallback(callback) {
if (_nextCallback == null) {
- _nextCallback = _lastCallback = new _AsyncCallbackEntry(DDC$RT.cast(callback, dynamic, __t36, "CastGeneral", """line 66, column 61 of dart:async/schedule_microtask.dart: """, callback is __t36, false));
+ _nextCallback = _lastCallback = new _AsyncCallbackEntry(DEVC$RT.cast(callback, dynamic, __t36, "CastGeneral", """line 66, column 61 of dart:async/schedule_microtask.dart: """, callback is __t36, false));
if (!_isInCallbackLoop) {
_AsyncRun._scheduleImmediate(_asyncRunCallback);
}
}
else {
- _AsyncCallbackEntry newEntry = new _AsyncCallbackEntry(DDC$RT.cast(callback, dynamic, __t36, "CastGeneral", """line 71, column 60 of dart:async/schedule_microtask.dart: """, callback is __t36, false));
+ _AsyncCallbackEntry newEntry = new _AsyncCallbackEntry(DEVC$RT.cast(callback, dynamic, __t36, "CastGeneral", """line 71, column 60 of dart:async/schedule_microtask.dart: """, callback is __t36, false));
_lastCallback.next = newEntry;
_lastCallback = newEntry;
}
}
void _schedulePriorityAsyncCallback(callback) {
-_AsyncCallbackEntry entry = new _AsyncCallbackEntry(DDC$RT.cast(callback, dynamic, __t36, "CastGeneral", """line 84, column 55 of dart:async/schedule_microtask.dart: """, callback is __t36, false));
+_AsyncCallbackEntry entry = new _AsyncCallbackEntry(DEVC$RT.cast(callback, dynamic, __t36, "CastGeneral", """line 84, column 55 of dart:async/schedule_microtask.dart: """, callback is __t36, false));
if (_nextCallback == null) {
_scheduleAsyncCallback(callback);
_lastPriorityCallback = _lastCallback;
@@ -62,7 +62,7 @@ _AsyncCallbackEntry entry = new _AsyncCallbackEntry(DDC$RT.cast(callback, dynami
}
void scheduleMicrotask(void callback()) {
if (identical(_ROOT_ZONE, Zone.current)) {
- _rootScheduleMicrotask(null, null, DDC$RT.cast(_ROOT_ZONE, dynamic, Zone, "CastGeneral", """line 130, column 40 of dart:async/schedule_microtask.dart: """, _ROOT_ZONE is Zone, true), callback);
+ _rootScheduleMicrotask(null, null, DEVC$RT.cast(_ROOT_ZONE, dynamic, Zone, "CastGeneral", """line 130, column 40 of dart:async/schedule_microtask.dart: """, _ROOT_ZONE is Zone, true), callback);
return;}
Zone.current.scheduleMicrotask(Zone.current.bindCallback(callback, runGuarded: true));
}
« no previous file with comments | « test/dart_codegen/expect/async/future_impl.dart ('k') | test/dart_codegen/expect/async/stream.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698