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

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

Issue 1112403004: SDK fixes (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Formatting fix Created 5 years, 8 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: test/dart_codegen/expect/async/future.dart
diff --git a/test/dart_codegen/expect/async/future.dart b/test/dart_codegen/expect/async/future.dart
index adedaa74106e94b878b87d8d17bb1c0a91d08e04..d5bcf60cb3ad1579f7ebf9cfc3e77f345ac7450c 100644
--- a/test/dart_codegen/expect/async/future.dart
+++ b/test/dart_codegen/expect/async/future.dart
@@ -1,5 +1,5 @@
part of dart.async;
- abstract class Future<T> {static final _Future _nullFuture = new Future.value(null);
+ abstract class Future<T> {static final _Future _nullFuture = new _Future.immediate(null);
factory Future(computation()) {
_Future result = new _Future<T>();
Timer.run(() {

Powered by Google App Engine
This is Rietveld 408576698