Hookyns / tst-reflect

Advanced TypeScript runtime reflection system
MIT License
328 stars 11 forks source link

Default value parameters and variadic detection #69

Closed leohubert closed 4 months ago

leohubert commented 1 year ago

Related to #66

Hookyns commented 1 year ago

@leohubert is there any progress?

leohubert commented 1 year ago

@leohubert is there any progress?

It's working fine, except for this use case.

class Test { 
   constructor(foo: Foo = new Foo()) { }
}

I don't have time to work on it right now but when I find some, I will continue the investigation :)