From df6c003de899431cac01b47868e2b6947e676d9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20C=C3=A9bron?= Date: Wed, 11 Sep 2024 15:32:26 +0200 Subject: [PATCH] using_kotlin.md: Analysis API --- topics/tutorials/using_kotlin.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/topics/tutorials/using_kotlin.md b/topics/tutorials/using_kotlin.md index 4aad53080..0034d7fba 100644 --- a/topics/tutorials/using_kotlin.md +++ b/topics/tutorials/using_kotlin.md @@ -258,7 +258,10 @@ Instead, specify system property `idea.kotlin.plugin.use.k2=true` explicitly (se ### Analysis API -[Kotlin Analysis API Documentation](https://kotlin.github.io/analysis-api/index_md.html) +The Analysis API is a powerful library for analyzing code in Kotlin. +Built on top of the Kotlin PSI syntax tree, it provides access to various semantic information, including reference targets, expression types, declaration scopes, diagnostics, and more. + +See [Kotlin Analysis API Documentation](https://kotlin.github.io/analysis-api/index_md.html) for details. ### Miscellaneous