Skip to content
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

Merged
merged 1 commit into from
Mar 21, 2025
Merged

Conversation

dcharkes
Copy link
Collaborator

@dcharkes dcharkes commented Mar 21, 2025

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:

  1. splits the ClassInfo to only support subclassing in NormalClassInfo (the enum classes don't allow subclassing),and
  2. refactors the NormalClassGenerator in multiple methods for better readability, and
  3. adds a -d (dump) parameter to the generator to dump the representation halfway in the pipeline as a text file.

Copy link

PR Health

Breaking changes ✔️
Package Change Current Version New Version Needed Version Looking good?
Changelog Entry ✔️
Package Changed Files

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.

Package Leaked API symbols
License Headers ✔️
// Copyright (c) 2025, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
Files
no missing headers

All source files should start with a license header.

Unrelated files missing license headers
Files
pkgs/jni/lib/src/third_party/generated_bindings.dart
pkgs/objective_c/lib/src/ns_input_stream.dart

@coveralls
Copy link

Coverage Status

coverage: 86.091% (+0.1%) from 85.96%
when pulling 303a735 on syntax-tagged-union
into 763c3ce on main.

@@ -649,7 +660,30 @@ class LinkMode {

JsonReader get _reader => JsonReader(json, path);

LinkMode.fromJson(this.json, {this.path = const []});
factory LinkMode.fromJson(
Copy link
Member

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?

Copy link
Collaborator Author

@dcharkes dcharkes Mar 21, 2025

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

@dcharkes dcharkes merged commit 2fc2bab into main Mar 21, 2025
42 checks passed
@dcharkes dcharkes deleted the syntax-tagged-union branch March 21, 2025 10:10
@dcharkes
Copy link
Collaborator Author

Thanks @HosseinYousefi ! 🙏

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants