projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
8d051bc8d2f5dfebbb68af05a2aeec8e1ed98ea8
[platform/framework/web/crosswalk-tizen.git]
/
1
'use strict';
2
3
exports.__generic = function (t, a) {
4
a(t.call(this), this[this.length - 1]);
5
};
6
7
exports[''] = function (t, a) {
8
var x;
9
a(t.call([]), undefined, "Empty");
10
a(t.call(new Array(234), undefined, "Sparse empty"));
11
x = new Array(2342);
12
x[434] = {};
13
x[450] = {};
14
a(t.call(x), x[450], "Sparse");
15
};