Closed signalwerk closed 3 years ago
This now works with the latest version 2.1.0. I tested with
export default class Dog {
_name: String;
constructor() {
this._name = "Dog";
}
get name() {
return this._name;
}
static get oneThird() {
return 3.0 / 1.0;
}
}
Does someone was successful with compiling static functions? The following code would break the lib: