-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[pigeon]: added generation of empty classes in dart #8337
Conversation
5571ae9
to
f9a3a92
Compare
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.
You'll need to run the generate command dart run tools/generate.dart
in the pigeon root folder before I can review this pr.
Thanks for putting this together!
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.
No real issues with the implementation here. Thanks for putting this together.
We will need an integration test for this though, you should be able to add it to the already existing 'event channel handles extended sealed classes'
test in packages/pigeon/platform_tests/shared_test_plugin_code/lib/integration_tests.dart
The new version needs to be added to the pubspec and generator_tools.dart files as well. I assume those changes got lost during a merge from main.
We should land this one before your other pr to avoid having to update it again.
packages/pigeon/CHANGELOG.md
Outdated
@@ -6,6 +6,7 @@ | |||
|
|||
* [swift] Adds support for platform checks of imports of ProxyApis. | |||
* Updates minimum supported SDK version to Flutter 3.22/Dart 3.4. | |||
* [dart] fixes [160501](https://github.com/flutter/flutter/issues/160501). |
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.
This should be it's own version update 22.7.3
I think it should read Adds support for empty data classes
This shouldn't be added to dart if it isn't supported on all platforms also, so no [dart] needed
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
Also added generating @Suppress("UNUSED_PARAMETER")
for fromList()
method of empty classes (Kotlin) as tests were failing due to linter
However I am facing issues at some CI steps:
Infra Failure: Step('Run package tests.reset XCode') (canceled) (retcode: None)
Task timed out.
UPD: It worked
version bump and integration tests added
…into fix-160501
(cherry picked from commit 1ed4032)
data
class in Kotlin if class has no fieldscloses 160501
Pre-launch Checklist
dart format
.)[shared_preferences]
pubspec.yaml
with an appropriate new version according to the pub versioning philosophy, or this PR is exempt from version changes.CHANGELOG.md
to add a description of the change, following repository CHANGELOG style, or this PR is exempt from CHANGELOG changes.///
).If you need help, consider asking for advice on the #hackers-new channel on Discord.