web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
314 B

  1. "use strict";
  2. exports.__generic = function (t, a) { a(t.call(this), this[this.length - 1]); };
  3. exports[""] = function (t, a) {
  4. var x;
  5. a(t.call([]), undefined, "Empty");
  6. a(t.call(new Array(234), undefined, "Sparse empty"));
  7. x = new Array(2342);
  8. x[434] = {};
  9. x[450] = {};
  10. a(t.call(x), x[450], "Sparse");
  11. };