use the 'new' operator on *Array constructor for Chrome compat

This commit is contained in:
Myk Melez 2014-08-05 15:03:39 -07:00
Родитель e7bb2c28ac
Коммит 34c1c630de
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -210,7 +210,7 @@ Classes.prototype.newPrimitiveArray = function(type, size) {
}
Classes.prototype.newArray = function(typeName, size) {
return this.getClass(typeName).constructor.call(null, size);
return new (this.getClass(typeName).constructor)(size);
}
Classes.prototype.newMultiArray = function(typeName, lengths) {