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

Unified Diff: test/generated_sdk/lib/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/generated_sdk/lib/async/future.dart
diff --git a/test/generated_sdk/lib/async/future.dart b/test/generated_sdk/lib/async/future.dart
index 7f4050cf8cb6dc661af812fb51bb6f0267b9de57..78ba2b88e658c019f3d4669153d6d3a39155a90e 100644
--- a/test/generated_sdk/lib/async/future.dart
+++ b/test/generated_sdk/lib/async/future.dart
@@ -95,7 +95,7 @@ part of dart.async;
*/
abstract class Future<T> {
// The `_nullFuture` is a completed Future with the value `null`.
- static final _Future _nullFuture = new Future.value(null);
+ static final _Future _nullFuture = new _Future.immediate(null);
/**
* Creates a future containing the result of calling [computation]

Powered by Google App Engine
This is Rietveld 408576698