Index: sdk/lib/_internal/compiler/implementation/lib/isolate_helper.dart |
diff --git a/sdk/lib/_internal/compiler/implementation/lib/isolate_helper.dart b/sdk/lib/_internal/compiler/implementation/lib/isolate_helper.dart |
index 9609dd8bf7695def083aa6d8d9bd10b765a29b55..39ff5f129cbb609dd2765d15f3266b4ebdad8efd 100644 |
--- a/sdk/lib/_internal/compiler/implementation/lib/isolate_helper.dart |
+++ b/sdk/lib/_internal/compiler/implementation/lib/isolate_helper.dart |
@@ -833,7 +833,7 @@ class ReceivePortImpl implements ReceivePort { |
_waitForPendingPorts(var message, void callback()) { |
final finder = new _PendingSendPortFinder(); |
finder.traverse(message); |
- Futures.wait(finder.ports).then((_) => callback()); |
+ Future.wait(finder.ports).then((_) => callback()); |
} |