-
Notifications
You must be signed in to change notification settings - Fork 6k
[web] Make window.locale(s) non-null; upgrade to null safe deps #24922
Conversation
| // found in the LICENSE file. | ||
|
|
||
| // @dart = 2.6 | ||
| // @dart = 2.12 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
complains about history and matchers.dart not being null safe to make this change.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We're probably just importing a helper or a constant from history_test.dart. We could move that to another history_helper.dart.
But matchers.dart may require more work since it has even more dependencies.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done (migrated the helper test libs to null-safety)
00a4ff6 to
3ff9889
Compare
mdebbar
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
| @override | ||
| String get pathname => throw UnimplementedError(); | ||
|
|
||
| @override | ||
| String get search => throw UnimplementedError(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
ferhatb
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
…ter#24922) * Make window.locale(s) non-null * upgrade deps to null-safe; migrate some test libs
…ter#24922) * Make window.locale(s) non-null * upgrade deps to null-safe; migrate some test libs
|
Will it be merged into stable 2.0.x or should I wait for the next major stable release? |
…ter#24922) * Make window.locale(s) non-null * upgrade deps to null-safe; migrate some test libs
Fixes flutter/flutter#77817