Files
sdk/pkg
Paul Berry 280f639fda Allow uninitialized final local variables to be assigned in null safety mode
This allows code such as the following (which is permitted in null
safety mode, since flow analysis can ensure that the final variable is
set exactly once before it is used):

  final x;
  if (...) {
    x = ...;
  } else {
    x = ...;
  }
  use(x);

Change-Id: I8e5d83ad7cd4202ac1498faa5f699a56db1108f6
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/164242
Reviewed-by: Johnni Winther <johnniwinther@google.com>
Commit-Queue: Paul Berry <paulberry@google.com>
2020-09-25 18:22:44 +00:00
..
2020-09-25 17:04:14 +00:00
2020-09-24 00:25:29 +00:00
2020-09-16 19:24:28 +00:00