kungfooman / RuntimeTypeInspector.js

Checking JSDoc types at runtime for high-quality types - Trust is good, control is better.
MIT License
8 stars 0 forks source link

Implement ClassPrivateProperty #61

Closed kungfooman closed 10 months ago

kungfooman commented 10 months ago

Example:

class Test {
  #a;
  #b = 123;
  #c = this.#b * 2;
}
const test = new Test;