We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0200d05 commit 861077fCopy full SHA for 861077f
server/src/main/kotlin/org/javacs/kt/KotlinTextDocumentService.kt
@@ -233,7 +233,10 @@ class KotlinTextDocumentService(
233
val uri = parseURI(params.textDocument.uri)
234
val parsed = sp.parsedFile(uri)
235
236
- SemanticTokens(semanticTokens(parsed))
+ val tokens = semanticTokens(parsed)
237
+ LOG.info("Found {} tokens", tokens.size)
238
+
239
+ SemanticTokens(tokens)
240
}
241
242
0 commit comments