chachako/sweekt

Check the lazy property declared in the constructor

chachako opened this issue · 0 comments

This is meaningless, because the class will directly initialize the property when calling the constructor:

Meaningless b:

class Foo(a: Boolean, @LazyInit val b: String = "String")

Foo(true) // in bytecode decompilation -> Foo(true, "String")