aggregation icon indicating copy to clipboard operation
aggregation copied to clipboard

Aggregation of Base Class and Mixin Classes

Results 6 aggregation issues
Sort by recently updated
recently updated
newest added

I am using the nodejs event emitter as a mixin and the in the latest version of nodejs 12.16 they haved added a Symbol property which breaks aggregation. https://github.com/nodejs/node/pull/31788 if...

Just think that ES6 is not trying to use `Reflect`? Modified the code ```js var aggregation = (base, ...mixins) => { /* create aggregation class */ let aggregate = class...

is it possible to create a typed version?

remove useless class name

ES6 classes has constructor except initializer. Added calling constructor() of ES6 classes.

`class Colored { initializer () { this._color = "white" } get color () { return this._color } set color (v) { this._color = v } } class ZCoord { initializer...