Webpack build for branch data-store-refactor: 80b644b35fe2090bb5ef1f0857776dc13ae9b194

This commit is contained in:
Travis CI 2017-08-21 15:49:47 +00:00
parent a3e666d43f
commit 94f2820df3
2 changed files with 4 additions and 12 deletions

View file

@ -3666,11 +3666,7 @@ class Base {
* @type {Client} * @type {Client}
* @readonly * @readonly
*/ */
Object.defineProperty(this, 'client', { Object.defineProperty(this, 'client', { value: client });
value: client,
enumerable: false,
writable: false,
});
} }
_clone() { _clone() {
@ -9814,7 +9810,7 @@ module.exports = GuildMember;
const Collection = __webpack_require__(3); const Collection = __webpack_require__(3);
/** /**
* A data store what else???? * A data store
* @class DataStore * @class DataStore
* @extends {Collection} * @extends {Collection}
*/ */
@ -9822,11 +9818,7 @@ class DataStore extends Collection {
constructor(client, iterable) { constructor(client, iterable) {
super(iterable); super(iterable);
Object.defineProperty(this, 'client', { Object.defineProperty(this, 'client', { value: client });
value: client,
enumerable: false,
writable: false,
});
} }
// Stubs // Stubs

File diff suppressed because one or more lines are too long