Fix attributes of length property for builtin objects (#3556)

* length property has the attributes {[[Writable]]: false, [[Enumerable]]: false, [[Configurable]]: true} based on ECMA-262 v6, 19.2.4.1

JerryScript-DCO-1.0-Signed-off-by: HyukWoo Park hyukwoo.park@samsung.com
This commit is contained in:
Hyukwoo Park
2020-02-14 18:25:26 +09:00
committed by GitHub
parent 4d67ac3225
commit 54e4de39ab
34 changed files with 140 additions and 58 deletions
@@ -13,4 +13,4 @@
* limitations under the License.
*/
assert (Promise.prototype.length === 1);
assert (Promise.length === 1);