17 lines
361 B
JavaScript
Executable File
17 lines
361 B
JavaScript
Executable File
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
|