-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
[[TypedArrayConstructorName]] no longer needed #271
Comments
No objections or concerns from me :-) but just in case, I wanted to point to my which-typed-array module whose behavior indirectly depends on the |
anba
added a commit
to anba/ecma262
that referenced
this issue
Dec 22, 2015
bterlson
pushed a commit
that referenced
this issue
Dec 28, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The [[TypedArrayConstructorName]] internal slot of TypedArray constructors is no longer needed now that the secondary prototype walk has been eliminated by the changes made in the 2015-12-20 draft.
[[TypedArrayConstructorName]] was formally needed because each of the individual TypedArray constructors
super
called to %TypedArray% and that shared constructor algorithm needed a way to identify the element type of the instance being constructed.However, with the recent changes, each TypedArray constructor is a distinct function. Hence, the desired element type can be literally coded within each constructor.
Here is sketch of the changes that need to be make:
The text was updated successfully, but these errors were encountered: