-
Notifications
You must be signed in to change notification settings - Fork 66
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
[native_assets_cli] Validate tagged union syntax #2123
Conversation
PR HealthBreaking changes ✔️
Changelog Entry ✔️
Changes to files need to be accounted for in their respective changelogs. API leaks ✔️The following packages contain symbols visible in the public API, but not exported by the library. Export these symbols or remove them from your publicly visible API.
License Headers ✔️
All source files should start with a license header. Unrelated files missing license headers
|
@@ -649,7 +660,30 @@ class LinkMode { | |||
|
|||
JsonReader get _reader => JsonReader(json, path); | |||
|
|||
LinkMode.fromJson(this.json, {this.path = const []}); | |||
factory LinkMode.fromJson( |
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.
Do we also want these classes like LinkMode
to be sealed?
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 is an interesting question. The question is whether we do want to allow generated syntaxes to extend other syntaxes.
Before, I was reusing class Asset
from the base protocol syntax in the extensions syntax. But then I realized that we don't want to expose the syntax from package:hook
, and import it in package:code_assets
. So, instead now we're also generating a class Asset
in the syntax for the extensions.
So now we kind of depend syntax classes not being extended anywhere else. So we could consider making every class final.
Sealed doesn't work because we do actually want objects of the class: E.g. Asset
doesn't have to be a CodeAsset
. So we're kind of expecting these tagged unions to be open tagged unions.
For LinkMode
we could have a closed tagged union, but we currently don't distinguish between open and closed tagged unions.
Tracking in #2124
Thanks @HosseinYousefi ! 🙏 |
Bug: #1826
Changes the constructors of tagged union super classes to be factories and to branch on the known sub classes. This fixes the syntax validation for tagged unions.
This PR also:
ClassInfo
to only support subclassing inNormalClassInfo
(the enum classes don't allow subclassing),andNormalClassGenerator
in multiple methods for better readability, and-d
(dump) parameter to the generator to dump the representation halfway in the pipeline as a text file.