Debug Konsist Test
Understand whats going on
Last updated
koScope
.classes()
.first()
.namekoScope // KoScope
.print()koScope
.classes() // List<KoClassDeclaration>
.print()koScope
.classes() // List<KoClassDeclaration>
.print { it.fullyQualifiedName }koScope
.classes() // List<KoClassDeclaration>
.first() // KoClassDeclaration
.print()koScope
.classes() // List<KoClassDeclaration>
.print(prefix = "Before") // or .print(prefix = "Before") { it.name }
.withSomeAnnotations("Logger")
.print(prefix = "After") // or .print(prefix = "After") { it.name }koScope
.classes() // List<KoClassDeclaration>
.constructors // List<KoConstructorDeclaration>
.parameters // List<KoParameterDeclaration>
.print()