21 lines
502 B
JavaScript
Executable File
21 lines
502 B
JavaScript
Executable File
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.FixtureClass = void 0;
|
|
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;
|
|
}
|
|
}
|
|
exports.FixtureClass = FixtureClass;
|
|
exports.default = FixtureClass;
|
|
//# sourceMappingURL=fixture-class.js.map
|