export class FixtureClass { i; j; static staticNumber = 0; static staticMethod(n) { this.staticNumber = n; } constructor(i, j) { this.i = i; this.j = j; } sum() { return this.i + this.j + this.constructor.staticNumber; } } export default FixtureClass; //# sourceMappingURL=fixture-class.js.map