plantain-00 / type-coverage

A CLI tool to check type coverage for typescript code
MIT License
1.26k stars 44 forks source link

warning: unhandled node kind: 175 in <file>:<line>:<col> #140

Open ralfwimmer opened 4 months ago

ralfwimmer commented 4 months ago

Version(if relevant): 2.29.0

Environment(if relevant): Kubuntu 22.04 / node.js v22.4.0

Code(if relevant):

export class Foo {
    static {
         // Execute some code
    }

   //... more code
}

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.

plantain-00 commented 4 months ago

v2.29.1 should fix it

ralfwimmer commented 4 months ago

That was a fast fix! Thank you!! I can confirm that the warning no longer appears with my code base.