-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Use dotted intrinsic form from ecma262 #5655
Conversation
In the ecma262 spec, we've added a [new intrinsic notation form](tc39/ecma262#1376) that will avoid unbounded growth of our list of intrinsics. Specifically, things like `%ArrayPrototype%` and `%ObjProto_valueOf%` should now be represented as `%Array.prototype%` and `%Object.prototype.valueOf%`, respectively. Our intention is to delete the "legacy" forms entirely in favor of the dotted forms. See whatwg/webidl#898 and whatwg/webidl#897.
What other repos will I need to update? |
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 LGTM (and note that this change is self-contained and has no dependency on Web IDL or other specs). I'll hold off on merging a bit to give others time to look at it, but thank you!
The only other spec I can think of that uses ES intrinsics directly is https://infra.spec.whatwg.org/#json
Can you or your employer sign the participant agreement at https://participate.whatwg.org/agreement? |
Thanks, I just signed the participation agreement; seems like it's awaiting verification. |
All uses of these have been removed from HTML: - whatwg/webidl#898 - whatwg/html#5655 - whatwg/infra#316
All uses of these have been removed from HTML: - whatwg/webidl#898 - whatwg/html#5655 - whatwg/infra#316
All uses of these have been removed from HTML: - whatwg/webidl#898 - whatwg/html#5655 - whatwg/infra#316
All uses of these have been removed from HTML: - whatwg/webidl#898 - whatwg/html#5655 - whatwg/infra#316
All uses of these have been removed from HTML: - whatwg/webidl#898 - whatwg/html#5655 - whatwg/infra#316
All uses of these have been removed from HTML: - whatwg/webidl#898 - whatwg/html#5655 - whatwg/infra#316
All uses of these have been removed from HTML: - whatwg/webidl#898 - whatwg/html#5655 - whatwg/infra#316
All uses of these have been removed from HTML: - whatwg/webidl#898 - whatwg/html#5655 - whatwg/infra#316
All uses of these have been removed from HTML: - whatwg/webidl#898 - whatwg/html#5655 - whatwg/infra#316
In the ecma262 spec, we've added a new intrinsic notation form that will avoid unbounded growth of our list of intrinsics.
Specifically, things like
%ArrayPrototype%
and%ObjProto_valueOf%
should now be represented as%Array.prototype%
and%Object.prototype.valueOf%
, respectively.Our intention is to delete the "legacy" forms entirely in favor of the dotted forms.
See whatwg/webidl#898 and whatwg/webidl#897.