Webpack build for branch custom-structures: 3728c71867

This commit is contained in:
Travis CI 2017-11-20 05:28:19 +00:00
parent fac98a15fb
commit 1c6ff0d748
2 changed files with 3 additions and 2 deletions

View file

@ -1654,7 +1654,7 @@ module.exports = Util;
/***/ (function(module, exports, __webpack_require__) { /***/ (function(module, exports, __webpack_require__) {
const Collection = __webpack_require__(3); const Collection = __webpack_require__(3);
const Structures = __webpack_require__(47); let Structures;
/** /**
* Manages the creation, retrieval and deletion of a specific data model. * Manages the creation, retrieval and deletion of a specific data model.
@ -1663,6 +1663,7 @@ const Structures = __webpack_require__(47);
class DataStore extends Collection { class DataStore extends Collection {
constructor(client, iterable, holds) { constructor(client, iterable, holds) {
super(); super();
if (!Structures) Structures = __webpack_require__(47);
Object.defineProperty(this, 'client', { value: client }); Object.defineProperty(this, 'client', { value: client });
Object.defineProperty(this, 'holds', { value: Structures.get(holds) }); Object.defineProperty(this, 'holds', { value: Structures.get(holds) });
if (iterable) for (const item of iterable) this.create(item); if (iterable) for (const item of iterable) this.create(item);

File diff suppressed because one or more lines are too long