Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign upJP22: "20.3.2.2 Date (value)" uses thisTimeValue() defined later #198
Comments
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Show comment
Hide comment
hueitan
commented
Dec 1, 2015
|
what is |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Show comment
Hide comment
bterlson
Dec 2, 2015
Member
thisTimeValue is an abstract operation that takes some ECMAScript value and if it's a date, returns its DateValue slot, and otherwise throws a TypeError exception.
I've committed a fix that will make thisTimeValue be a link you can click to find its definition.
|
I've committed a fix that will make thisTimeValue be a link you can click to find its definition. |
bterlson
closed this
in
c35897c
Dec 2, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
akr commentedNov 17, 2015
In the section, 20.3.2.2 Date (value), the step 3.a.i uses thisTimeValue() which is defined later (20.3.4).
It is better to define thisTimeValue() first, or add a forward reference such as "(thisTimeValue() is defined in 20.3.4.)".