[NoArg] Reorganize module structure of NoArg plugin

This commit is contained in:
Dmitriy Novozhilov
2022-05-17 17:05:31 +03:00
committed by teamcity
parent 0f757c300a
commit 8fc4962213
53 changed files with 88 additions and 33 deletions
@@ -0,0 +1,19 @@
annotation class NoArg
@NoArg
annotation class MetaAnno
@NoArg
interface BaseIntf
@NoArg
class Test(a: String = "", i: Int = 2)
class Test2 : BaseIntf {
constructor(a: String = "", b: Long = 0L) {}
}
@MetaAnno
class Test3(a: String) {
constructor() : this("") {}
}