Renamed files
This commit is contained in:
committed by
Nicolò Ribaudo
parent
07e69c009b
commit
0f42accb87
@@ -0,0 +1,16 @@
|
||||
System.register([], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
function lazyLoadOperation() {
|
||||
return _context.import('./x').then(function (x) {
|
||||
x.y();
|
||||
});
|
||||
}
|
||||
|
||||
_export("lazyLoadOperation", lazyLoadOperation);
|
||||
|
||||
return {
|
||||
setters: [],
|
||||
execute: function () {}
|
||||
};
|
||||
});
|
||||
@@ -0,0 +1,14 @@
|
||||
System.register([], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
return {
|
||||
setters: [],
|
||||
execute: function () {
|
||||
const [foo, bar = 2] = [];
|
||||
|
||||
_export("foo", foo);
|
||||
|
||||
_export("bar", bar);
|
||||
}
|
||||
};
|
||||
});
|
||||
@@ -0,0 +1,16 @@
|
||||
System.register([], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
return {
|
||||
setters: [],
|
||||
execute: function () {
|
||||
const [foo, bar, ...baz] = [];
|
||||
|
||||
_export("foo", foo);
|
||||
|
||||
_export("bar", bar);
|
||||
|
||||
_export("baz", baz);
|
||||
}
|
||||
};
|
||||
});
|
||||
@@ -0,0 +1,14 @@
|
||||
System.register([], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
return {
|
||||
setters: [],
|
||||
execute: function () {
|
||||
const [foo, bar] = [];
|
||||
|
||||
_export("foo", foo);
|
||||
|
||||
_export("bar", bar);
|
||||
}
|
||||
};
|
||||
});
|
||||
@@ -0,0 +1,18 @@
|
||||
System.register([], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
return {
|
||||
setters: [],
|
||||
execute: function () {
|
||||
const {
|
||||
foo: {
|
||||
bar: [baz, qux]
|
||||
}
|
||||
} = {};
|
||||
|
||||
_export("baz", baz);
|
||||
|
||||
_export("qux", qux);
|
||||
}
|
||||
};
|
||||
});
|
||||
@@ -0,0 +1,17 @@
|
||||
System.register([], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
return {
|
||||
setters: [],
|
||||
execute: function () {
|
||||
const {
|
||||
foo,
|
||||
bar = 1
|
||||
} = {};
|
||||
|
||||
_export("foo", foo);
|
||||
|
||||
_export("bar", bar);
|
||||
}
|
||||
};
|
||||
});
|
||||
@@ -0,0 +1,17 @@
|
||||
System.register([], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
return {
|
||||
setters: [],
|
||||
execute: function () {
|
||||
const {
|
||||
foo,
|
||||
...bar
|
||||
} = {};
|
||||
|
||||
_export("foo", foo);
|
||||
|
||||
_export("bar", bar);
|
||||
}
|
||||
};
|
||||
});
|
||||
@@ -0,0 +1,17 @@
|
||||
System.register([], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
return {
|
||||
setters: [],
|
||||
execute: function () {
|
||||
const {
|
||||
foo: bar,
|
||||
baz
|
||||
} = {};
|
||||
|
||||
_export("bar", bar);
|
||||
|
||||
_export("baz", baz);
|
||||
}
|
||||
};
|
||||
});
|
||||
@@ -0,0 +1,10 @@
|
||||
System.register([], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
return {
|
||||
setters: [],
|
||||
execute: function () {
|
||||
_export("default", {});
|
||||
}
|
||||
};
|
||||
});
|
||||
@@ -0,0 +1,10 @@
|
||||
System.register([], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
return {
|
||||
setters: [],
|
||||
execute: function () {
|
||||
_export("default", []);
|
||||
}
|
||||
};
|
||||
});
|
||||
@@ -0,0 +1,10 @@
|
||||
System.register([], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
return {
|
||||
setters: [],
|
||||
execute: function () {
|
||||
_export("default", foo);
|
||||
}
|
||||
};
|
||||
});
|
||||
@@ -0,0 +1,10 @@
|
||||
System.register([], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
_export("default", function () {});
|
||||
|
||||
return {
|
||||
setters: [],
|
||||
execute: function () {}
|
||||
};
|
||||
});
|
||||
@@ -0,0 +1,10 @@
|
||||
System.register([], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
_export("default", class {});
|
||||
|
||||
return {
|
||||
setters: [],
|
||||
execute: function () {}
|
||||
};
|
||||
});
|
||||
@@ -0,0 +1,12 @@
|
||||
System.register([], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
function foo() {}
|
||||
|
||||
_export("default", foo);
|
||||
|
||||
return {
|
||||
setters: [],
|
||||
execute: function () {}
|
||||
};
|
||||
});
|
||||
@@ -0,0 +1,12 @@
|
||||
System.register([], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
return {
|
||||
setters: [],
|
||||
execute: function () {
|
||||
class Foo {}
|
||||
|
||||
_export("default", Foo);
|
||||
}
|
||||
};
|
||||
});
|
||||
@@ -0,0 +1,12 @@
|
||||
System.register([], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
return {
|
||||
setters: [],
|
||||
execute: function () {
|
||||
_export("default", function () {
|
||||
return "foo";
|
||||
}());
|
||||
}
|
||||
};
|
||||
});
|
||||
10
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/export-default/output.js
vendored
Normal file
10
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/export-default/output.js
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
System.register([], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
return {
|
||||
setters: [],
|
||||
execute: function () {
|
||||
_export("default", 42);
|
||||
}
|
||||
};
|
||||
});
|
||||
13
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/export-from-2/output.js
vendored
Normal file
13
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/export-from-2/output.js
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
System.register(["foo"], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
return {
|
||||
setters: [function (_foo) {
|
||||
var _exportObj = {};
|
||||
_exportObj.foo = _foo.foo;
|
||||
|
||||
_export(_exportObj);
|
||||
}],
|
||||
execute: function () {}
|
||||
};
|
||||
});
|
||||
14
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/export-from-3/output.js
vendored
Normal file
14
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/export-from-3/output.js
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
System.register(["foo"], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
return {
|
||||
setters: [function (_foo) {
|
||||
var _exportObj = {};
|
||||
_exportObj.foo = _foo.foo;
|
||||
_exportObj.bar = _foo.bar;
|
||||
|
||||
_export(_exportObj);
|
||||
}],
|
||||
execute: function () {}
|
||||
};
|
||||
});
|
||||
13
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/export-from-4/output.js
vendored
Normal file
13
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/export-from-4/output.js
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
System.register(["foo"], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
return {
|
||||
setters: [function (_foo) {
|
||||
var _exportObj = {};
|
||||
_exportObj.bar = _foo.foo;
|
||||
|
||||
_export(_exportObj);
|
||||
}],
|
||||
execute: function () {}
|
||||
};
|
||||
});
|
||||
13
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/export-from-5/output.js
vendored
Normal file
13
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/export-from-5/output.js
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
System.register(["foo"], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
return {
|
||||
setters: [function (_foo) {
|
||||
var _exportObj = {};
|
||||
_exportObj.default = _foo.foo;
|
||||
|
||||
_export(_exportObj);
|
||||
}],
|
||||
execute: function () {}
|
||||
};
|
||||
});
|
||||
14
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/export-from-6/output.js
vendored
Normal file
14
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/export-from-6/output.js
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
System.register(["foo"], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
return {
|
||||
setters: [function (_foo) {
|
||||
var _exportObj = {};
|
||||
_exportObj.default = _foo.foo;
|
||||
_exportObj.bar = _foo.bar;
|
||||
|
||||
_export(_exportObj);
|
||||
}],
|
||||
execute: function () {}
|
||||
};
|
||||
});
|
||||
16
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/export-from/output.js
vendored
Normal file
16
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/export-from/output.js
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
System.register(["foo"], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
return {
|
||||
setters: [function (_foo) {
|
||||
var _exportObj = {};
|
||||
|
||||
for (var _key in _foo) {
|
||||
if (_key !== "default" && _key !== "__esModule") _exportObj[_key] = _foo[_key];
|
||||
}
|
||||
|
||||
_export(_exportObj);
|
||||
}],
|
||||
execute: function () {}
|
||||
};
|
||||
});
|
||||
12
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/export-named-2/output.js
vendored
Normal file
12
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/export-named-2/output.js
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
System.register([], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
return {
|
||||
setters: [],
|
||||
execute: function () {
|
||||
_export("foo", foo);
|
||||
|
||||
_export("bar", bar);
|
||||
}
|
||||
};
|
||||
});
|
||||
10
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/export-named-3/output.js
vendored
Normal file
10
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/export-named-3/output.js
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
System.register([], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
return {
|
||||
setters: [],
|
||||
execute: function () {
|
||||
_export("bar", foo);
|
||||
}
|
||||
};
|
||||
});
|
||||
10
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/export-named-4/output.js
vendored
Normal file
10
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/export-named-4/output.js
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
System.register([], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
return {
|
||||
setters: [],
|
||||
execute: function () {
|
||||
_export("default", foo);
|
||||
}
|
||||
};
|
||||
});
|
||||
12
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/export-named-5/output.js
vendored
Normal file
12
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/export-named-5/output.js
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
System.register([], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
return {
|
||||
setters: [],
|
||||
execute: function () {
|
||||
_export("default", foo);
|
||||
|
||||
_export("bar", bar);
|
||||
}
|
||||
};
|
||||
});
|
||||
12
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/export-named-6/output.js
vendored
Normal file
12
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/export-named-6/output.js
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
System.register([], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
function foo() {}
|
||||
|
||||
_export("foo", foo);
|
||||
|
||||
return {
|
||||
setters: [],
|
||||
execute: function () {}
|
||||
};
|
||||
});
|
||||
12
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/export-named-7/output.js
vendored
Normal file
12
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/export-named-7/output.js
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
System.register([], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
function foo2(bar) {}
|
||||
|
||||
_export("foo2", foo2);
|
||||
|
||||
return {
|
||||
setters: [],
|
||||
execute: function () {}
|
||||
};
|
||||
});
|
||||
10
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/export-named/output.js
vendored
Normal file
10
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/export-named/output.js
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
System.register([], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
return {
|
||||
setters: [],
|
||||
execute: function () {
|
||||
_export("foo", foo);
|
||||
}
|
||||
};
|
||||
});
|
||||
@@ -0,0 +1,42 @@
|
||||
System.register([], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
return {
|
||||
setters: [],
|
||||
execute: function () {
|
||||
var foo = 1;
|
||||
|
||||
_export("foo", foo);
|
||||
|
||||
var foo2 = function () {};
|
||||
|
||||
_export("foo2", foo2);
|
||||
|
||||
var foo3;
|
||||
|
||||
_export("foo3", foo3);
|
||||
|
||||
let foo4 = 2;
|
||||
|
||||
_export("foo4", foo4);
|
||||
|
||||
let foo5;
|
||||
|
||||
_export("foo5", foo5);
|
||||
|
||||
const foo6 = 3;
|
||||
|
||||
_export("foo6", foo6);
|
||||
|
||||
function foo7() {}
|
||||
|
||||
_export("foo7", foo7);
|
||||
|
||||
class foo8 {}
|
||||
|
||||
_export("foo8", foo8);
|
||||
|
||||
_export("foo3", foo3 = 5);
|
||||
}
|
||||
};
|
||||
});
|
||||
@@ -0,0 +1,8 @@
|
||||
System.register("my custom module name", [], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
return {
|
||||
setters: [],
|
||||
execute: function () {}
|
||||
};
|
||||
});
|
||||
@@ -0,0 +1,34 @@
|
||||
System.register(["./evens"], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
var isEven, p, a, i, j, isOdd;
|
||||
|
||||
function nextOdd(n) {
|
||||
return _export("p", p = isEven(n) ? n + 1 : n + 2);
|
||||
}
|
||||
|
||||
_export("nextOdd", nextOdd);
|
||||
|
||||
return {
|
||||
setters: [function (_evens) {
|
||||
isEven = _evens.isEven;
|
||||
}],
|
||||
execute: function () {
|
||||
_export("p", p = 5);
|
||||
|
||||
_export("p", p);
|
||||
|
||||
for (a in b);
|
||||
|
||||
for (i = 0, j = 0;;);
|
||||
|
||||
_export("isOdd", isOdd = function (isEven) {
|
||||
return function (n) {
|
||||
return !isEven(n);
|
||||
};
|
||||
}(isEven));
|
||||
|
||||
_export("isOdd", isOdd);
|
||||
}
|
||||
};
|
||||
});
|
||||
@@ -0,0 +1,27 @@
|
||||
System.register([], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
var c;
|
||||
|
||||
function a() {
|
||||
alert("a");
|
||||
_export("c", c + 1), c++;
|
||||
}
|
||||
|
||||
_export("a", a);
|
||||
|
||||
function b() {
|
||||
a();
|
||||
}
|
||||
|
||||
return {
|
||||
setters: [],
|
||||
execute: function () {
|
||||
_export("c", c = 5);
|
||||
|
||||
_export("c", c);
|
||||
|
||||
b();
|
||||
}
|
||||
};
|
||||
});
|
||||
@@ -0,0 +1,12 @@
|
||||
System.register(["foo"], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
var foo, foo2;
|
||||
return {
|
||||
setters: [function (_foo) {
|
||||
foo = _foo.default;
|
||||
foo2 = _foo.default;
|
||||
}],
|
||||
execute: function () {}
|
||||
};
|
||||
});
|
||||
11
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/imports-glob/output.js
vendored
Normal file
11
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/imports-glob/output.js
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
System.register(["foo"], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
var foo;
|
||||
return {
|
||||
setters: [function (_foo) {
|
||||
foo = _foo;
|
||||
}],
|
||||
execute: function () {}
|
||||
};
|
||||
});
|
||||
12
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/imports-mixing/output.js
vendored
Normal file
12
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/imports-mixing/output.js
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
System.register(["foo"], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
var foo, xyz;
|
||||
return {
|
||||
setters: [function (_foo) {
|
||||
foo = _foo.default;
|
||||
xyz = _foo.baz;
|
||||
}],
|
||||
execute: function () {}
|
||||
};
|
||||
});
|
||||
16
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/imports-named/output.js
vendored
Normal file
16
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/imports-named/output.js
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
System.register(["foo"], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
var bar, bar2, baz, baz2, baz3, xyz;
|
||||
return {
|
||||
setters: [function (_foo) {
|
||||
bar = _foo.bar;
|
||||
bar2 = _foo.bar2;
|
||||
baz = _foo.baz;
|
||||
baz2 = _foo.bar;
|
||||
baz3 = _foo.bar;
|
||||
xyz = _foo.xyz;
|
||||
}],
|
||||
execute: function () {}
|
||||
};
|
||||
});
|
||||
@@ -0,0 +1,8 @@
|
||||
System.register(["2", "1"], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
return {
|
||||
setters: [function (_) {}, function (_2) {}],
|
||||
execute: function () {}
|
||||
};
|
||||
});
|
||||
8
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/imports/output.js
vendored
Normal file
8
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/imports/output.js
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
System.register(["foo", "foo-bar", "./directory/foo-bar"], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
return {
|
||||
setters: [function (_foo) {}, function (_fooBar) {}, function (_directoryFooBar) {}],
|
||||
execute: function () {}
|
||||
};
|
||||
});
|
||||
13
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/module-name/output.js
vendored
Normal file
13
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/module-name/output.js
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
System.register([], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
var name;
|
||||
return {
|
||||
setters: [],
|
||||
execute: function () {
|
||||
_export("name", name = _context.id);
|
||||
|
||||
_export("name", name);
|
||||
}
|
||||
};
|
||||
});
|
||||
22
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/overview/output.js
vendored
Normal file
22
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/overview/output.js
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
System.register(["foo", "foo-bar", "./directory/foo-bar"], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
var foo, foo2, bar, bar2, test2;
|
||||
return {
|
||||
setters: [function (_foo) {
|
||||
foo = _foo.default;
|
||||
foo2 = _foo;
|
||||
bar = _foo.bar;
|
||||
bar2 = _foo.foo;
|
||||
}, function (_fooBar) {}, function (_directoryFooBar) {}],
|
||||
execute: function () {
|
||||
_export("test", test);
|
||||
|
||||
_export("test2", test2 = 5);
|
||||
|
||||
_export("test2", test2);
|
||||
|
||||
_export("default", test);
|
||||
}
|
||||
};
|
||||
});
|
||||
43
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/remap/output.js
vendored
Normal file
43
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/remap/output.js
vendored
Normal file
@@ -0,0 +1,43 @@
|
||||
System.register([], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
var test, a, b, d;
|
||||
return {
|
||||
setters: [],
|
||||
execute: function () {
|
||||
_export("test", test = 2);
|
||||
|
||||
_export("test", test);
|
||||
|
||||
_export("test", test = 5);
|
||||
|
||||
_export("test", test + 1), test++;
|
||||
|
||||
(function () {
|
||||
var test = 2;
|
||||
test = 3;
|
||||
test++;
|
||||
})();
|
||||
|
||||
_export("a", a = 2);
|
||||
|
||||
_export("a", a);
|
||||
|
||||
_export("a", a = 3);
|
||||
|
||||
_export("c", b = 2);
|
||||
|
||||
_export("c", b);
|
||||
|
||||
_export("c", b = 3);
|
||||
|
||||
_export("f", _export("e", d = 3));
|
||||
|
||||
_export("e", d);
|
||||
|
||||
_export("f", d);
|
||||
|
||||
_export("f", _export("e", d = 4));
|
||||
}
|
||||
};
|
||||
});
|
||||
Reference in New Issue
Block a user