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

Editorial: Pass Duration Records rather than individual components #2290

Merged
merged 8 commits into from
Sep 11, 2024

Conversation

gibson042
Copy link
Collaborator

Many operations seem to be simplified by dealing with Duration Records rather than individual fields.

And I suspect that even further reform in this direction remains possible.

@gibson042 gibson042 requested a review from ptomato June 12, 2022 23:32
@codecov
Copy link

codecov bot commented Jun 12, 2022

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 91.08%. Comparing base (1d42297) to head (9370ef0).
Report is 886 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #2290   +/-   ##
=======================================
  Coverage   91.08%   91.08%           
=======================================
  Files          19       19           
  Lines       10566    10566           
  Branches     1695     1695           
=======================================
  Hits         9624     9624           
  Misses        932      932           
  Partials       10       10           
Flag Coverage Δ
test262 83.94% <ø> (ø)
tests 81.83% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

spec/duration.html Outdated Show resolved Hide resolved
spec/duration.html Outdated Show resolved Hide resolved
spec/duration.html Outdated Show resolved Hide resolved
spec/duration.html Outdated Show resolved Hide resolved
Copy link
Collaborator

@ptomato ptomato left a comment

Choose a reason for hiding this comment

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

I'm not in favour of this change because I find it makes the rendered spec text less readable in two ways:

  • The sticky highlighting becomes less useful. When auditing the uses of BalanceDuration, for example, I found it a lifesaver to be able to highlight years, months, weeks, days, etc. in different colors. If they become durationFieldsRecord.[[Years]] etc., that's no longer possible.
  • Records with as many fields as Duration Records have are rendered in a kind of jumbled-up way. e.g.
1. Let _record_ be the Record {
    [[Years]]: _foo_,
    [[Months]]: _bar_,
    [[Weeks]]: 0,
  }.

is easy to scan visually in the ecmarkup source, but when rendered it becomes

Let record be the Record { [[Years]]: foo, [[Months]]: bar, [[Weeks]]: 0, ... }.

which in my opinion is much harder to visually scan, and makes it hard to notice discrepancies (whether accidental or intentional) between the way the fields are assigned. (for example, the 0 above)

@gibson042
Copy link
Collaborator Author

I find the current spec to be hard to read precisely because there are so many aliases, especially in operation signatures (cf. tc39/ecmarkup#459 for a relevant consequence). But perhaps there's a compromise position in which the operations deal in Records but those Records theirselves are never constructed manually but rather always through a single (or small handful of) operations that have a distinct parameter for each unit?

And it's also conceivable that spec highlighting should be extended to include [[…]] contents.

@ptomato
Copy link
Collaborator

ptomato commented Jul 4, 2022

Is highlighting of e.g. record.[[Foo]] something that the ecmarkup maintainers would be interested in implementing? I don't think I will have time to do it myself.

@ptomato
Copy link
Collaborator

ptomato commented Jan 5, 2023

@gibson042 Are you planning to continue this PR?

@justingrant
Copy link
Collaborator

Is this PR still moving fwd? Seems like we should either close it or merge it somewhat soon so we can have a clean plate in preparation for Stage 4.

@gibson042
Copy link
Collaborator Author

Yes, and (for my own future reference) @ptomato recommends rebasing on #2519.

@justingrant
Copy link
Collaborator

Is this PR going to move fwd?

@ptomato - do you have an opinion about whether we should continue to do wide-ranging editorial changes like this one, or should pause for a while to give implementers a more stable spec to work on?

@ptomato
Copy link
Collaborator

ptomato commented Jul 24, 2023

I'd prefer we try to get them in quickly after merging the normative changes, and only then stop doing them.

@ptomato
Copy link
Collaborator

ptomato commented Sep 11, 2024

Now that we have sticky highlighting of record fields, I'm much more positive about this.

I've rebased the PR. Unfortunately a lot of it refactored AOs that no longer exist (because they were substantially rewritten in #2758.) I've kept what still applies, dropped the rest, and written the corresponding code for the reference polyfill. I think we should merge this now before it gets stale again.

I see where it is going, however, and have a bunch of ideas for continued simplifications of this type, which I will pursue as part of #2308.

@ptomato ptomato merged commit 4799a4f into tc39:main Sep 11, 2024
5 checks passed
This pull request was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants