Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-08-31 | Update copyright (#3149) | Ignat Beresnev | |
* Add the default copyright profile and enable IDEA project settings * Add the license notice file | |||
2023-08-30 | Migrate to JUnit 5 and unify used test API (#3138) | Ignat Beresnev | |
2023-08-28 | Support Dokka K2 analysis (#3094) | Vadim Mishenev | |
Dokka has its own documentable model to represent analyzed code. The analysis is performed by a compiler frontend. In K1 the compiler frontend has descriptors that use the underlying Binding Context (global shared stateful structure). Dokka just maps descriptors to Documentable by DefaultDescriptorToDocumentableTranslator. K2 compiler has FIR tree, which means “Frontend Intermediate Representation”, instead of Binding Context. But we do not use FIR in Dokka directly, since it is too low-level for analysis. The Kotlin compiler provides high-level Analysis API for this case. The API is used by KSP too. Analysis API represent elements of FIR (declarations, parameters and so on) as Symbols. For more details see KtSymbolByFirBuilder, KtSymbol. For Dokka symbol is the replacement of descriptor in K2. Also, to set up the environment of project analysis in K1 we use idea dependencies (or copy-past from there). In K2 for these aims, there is a Standalone mode for Analysis API. | |||
2023-07-05 | Decompose Kotlin/Java analysis (#3034) | Ignat Beresnev | |
* Extract analysis into separate modules | |||
2022-09-26 | Trim four spaces inside indented code block (#2661) | Vadim Mishenev | |
* Trim four spaces inside indented code block * Fix test | |||
2022-08-30 | Fix missing space between Markdown elements (#2640) | Vadim Mishenev | |
2022-04-11 | Fix using `@` symbol inside code block (#2418) | Vadim Mishenev | |
2021-04-14 | Handle html in kdoc (#1805) | Marcin Aman | |
2021-03-01 | Add explicit exceptions in markdown and allow for empty link destinations ↵ | Marcin Aman | |
(#1757) | |||
2020-10-07 | Introduce top-level DocTag | Andrzej Ratajczak | |
2020-09-14 | Fix parsing strikethrough | Andrzej Ratajczak | |
2020-09-14 | Refactor DocTags and add markdown tests | Andrzej Ratajczak | |
2020-09-07 | NullPointerException on images #1424 | Marcin Aman | |
2020-08-28 | Fix losing tokens while parsing markdown italic text | Andrzej Ratajczak | |
2020-07-15 | Fix presenting inline code in KDoc | Andrzej Ratajczak | |
2020-03-17 | Add expect with generation | Szymon Świstun | |
2020-02-18 | Moves all core tests to base plugin | Paweł Marks | |