kotlin-parser
kotlin-parser copied to clipboard
Results
2
kotlin-parser issues
Sort by
recently updated
recently updated
newest added
Hello If I have a string like `annotations.forEach { it::class.toString() }` inside my hider-ordered function body and KotlinParserBaseListener recognizes "toString" as class name and invokes "enterClassDeclaration" method with `ctx.text =...
When I have function like this: `fun someFunction() { setOf("A","B","C").forEach { System.out.print(it) } System.out.println("this line is not in FunctionBodyContext") }` then `FunctionalBodyContext.getText()` returns only part of the body, mainly: `{...