This commit is contained in:
Michael Bebenita 2013-03-29 15:39:59 -07:00
Родитель a7a96307d1
Коммит a7939df2cf
2 изменённых файлов: 7 добавлений и 1 удалений

Двоичные данные
examples/games/slime.swf Normal file

Двоичный файл не отображается.

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

@ -564,7 +564,13 @@ var natives = (function () {
_forEach: TAp.forEach,
_map: TAp.map,
_some: TAp.some,
_sort: TAp.sort
_sort: TAp.sort,
newThisType: function newThisType() {
return c.instance();
},
_spliceHelper: function _spliceHelper(insertPoint, insertCount, deleteCount, args, offset) {
somewhatImplemented("_spliceHelper");
}
}
};
c.vectorType = type;