Fix processing of elision in array literal.

JerryScript-DCO-1.0-Signed-off-by: Andrey Shitov a.shitov@samsung.com
This commit is contained in:
Andrey Shitov
2015-08-24 13:37:14 +03:00
parent 01604974e3
commit e4843ece76
9 changed files with 45 additions and 1 deletions
+3
View File
@@ -152,3 +152,6 @@ for (i = 0; i < 1024; i++)
{
assert (arr[i] === i + 1);
}
var elision = [0,,2 ,3];
assert (elision.hasOwnProperty(1) == false);