We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3a9006 commit 60b72cbCopy full SHA for 60b72cb
sdk/lib/async/future.dart
@@ -718,6 +718,7 @@ abstract interface class Future<T> {
718
/// // Outputs: 'Finished with 3'
719
/// ```
720
static Future<void> doWhile(FutureOr<bool> action()) {
721
+ @pragma('vm:awaiter-link')
722
_Future<void> doneSignal = _Future<void>();
723
late void Function(bool) nextIteration;
724
// Bind this callback explicitly so that each iteration isn't bound in the
0 commit comments