Open ralfwimmer opened 4 months ago
export class Foo { static { // Execute some code } //... more code }
npx type-coverage -p ./tsconfig.js produces the following warning:
npx type-coverage -p ./tsconfig.js
warning: unhandled node kind: 175 in <file>:<line>:<col>
The <file>:<line> points to the "static" keyword in the code snippet above.
v2.29.1 should fix it
That was a fast fix! Thank you!! I can confirm that the warning no longer appears with my code base.
Version(if relevant): 2.29.0
Environment(if relevant): Kubuntu 22.04 / node.js v22.4.0
Code(if relevant):
Expected: no warning
Actual:
npx type-coverage -p ./tsconfig.js
produces the following warning:warning: unhandled node kind: 175 in <file>:<line>:<col>
The <file>:<line> points to the "static" keyword in the code snippet above.