[dart2js] Update TODO with issue number

Change-Id: I0191298058f8ceb68eaec91c0c00c8576799a634
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/298180
Commit-Queue: Stephen Adams <sra@google.com>
Reviewed-by: Nate Biggs <natebiggs@google.com>
This commit is contained in:
Stephen Adams 2023-04-25 18:19:06 +00:00 committed by Commit Queue
parent e8832a643e
commit 70615d5970

View file

@ -668,7 +668,9 @@ class _SyncStarIterator<T> implements Iterator<T> {
}
throw StateError('sync*');
}
return false; // TODO(sra): Fix type inference so that this is not needed.
// TODO(http://dartbug.com/52166): Fix type inference so that this return
// statement is not needed.
return false;
}
static _terminatedBody(_1, _2, _3) => async_status_codes.SYNC_STAR_DONE;