ModuleDescriptor.getSubPackagesOf doesnt return subpackages if there is no .kt files in searched package. Is it a bug or i miss smth. Please advice me.
PHondogo
05/18/2020, 7:57 AM
For example if I have such package layout:
Copy code
test
subPkg1
subPkg1
In this case
Copy code
module.getSubPackagesOf(FqName("test")) { true }
wil not find subPkg1 and subPkg2
But in case of such layout: