Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid passing a nullable value to Completer<nn-type>.complete
This is cleanup work required to start enforcing this with static analysis, as per #53253. Real quick this issue is that this code is unsafe: ```dart void f(Completer<int> c, int? i) { Future<int>.value(i); // Ouch! c.complete(i); // Ouch! } ``` Change-Id: I12c4f0a92a2071fb47759d9626689e00cfa42f8d Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/324763 Reviewed-by: Konstantin Shcheglov <[email protected]> Auto-Submit: Samuel Rawlins <[email protected]> Commit-Queue: Samuel Rawlins <[email protected]> Commit-Queue: Konstantin Shcheglov <[email protected]>
- Loading branch information