Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Fix the Dart language version for Fuchsia's build of the args package #52083

Merged
merged 1 commit into from
Apr 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion shell/platform/fuchsia/dart/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ dart_library("args") {
package_root = "$dart_src/third_party/pkg/args"
package_name = "args"

pubspec = "$package_root/pubspec.yaml"
language_version = "2.17"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm curious about this change. The upstream dart sdk CL brought in a version of package:args that now has an sdk requirement of ^3.0.0. Previously it had been '>=2.19.0 <4.0.0'.

Is this file generally auto-maintained / generated as package metadata changes? Manually maintained w/ duplicate info? Should it be parsing the required sdk version out of the pubspec?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a Fuchsia-specific build script for package:args.

I don't know its history, but AFAIK it's manually maintained.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Gotcha; thanks for the fix!

It looks like the parser does not handle the caret syntax for sdk constraints (^3.0.0):https://github.com/flutter/engine/blob/main/tools/fuchsia/dart/gen_dart_package_config.py#L55

And, the script defaults to Dart 2.8, which is super old. 3.0 might be a better default? Or 2.12? Or no default at all, and just failing, which may be more predictable.


deps = []

Expand Down