archives

« Bugzilla Issues Index

#4241 — 7.3.13 Invoke, 9.1.6.3 ValidateAndApplyPropertyDescriptor: Replace ad-hoc checks with IsPropertyKey


7.3.13 Invoke(O,P, [argumentsList])

> 1. Assert: P is a valid property key.

=> 1. Assert: IsPropertyKey(P) is true.


9.1.6.3 ValidateAndApplyPropertyDescriptor (O, P, extensible, Desc, current)

> 1. Assert: If O is not undefined then P is a valid property key.

=> 1. Assert: If O is not undefined then IsPropertyKey(P) is true.


fixed in rev37 editor's draft


In Rev37