aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/src/test/kotlin/signatures/DivergentSignatureTest.kt
AgeCommit message (Collapse)Author
2023-08-31Update copyright (#3149)Ignat Beresnev
* Add the default copyright profile and enable IDEA project settings * Add the license notice file
2023-08-30Migrate 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.
2022-08-03Fix spelling error 'depenent' (#2594)Felix Dombek
Co-authored-by: Felix Dombek <Felix.Dombek@tomtom.com>
2021-10-15Keep UI tabs (#2179)vmishenev
* Keep ui tabs * Group functions by description * Fix tests for keeping ui tabs
2021-05-31Fix rendering html in briefs (#1931)Marcin Aman
2020-11-27Fixing tests after moving SingleGeneration to baseBłażej Kardyś
2020-10-08Improve stylesMarcin Aman
2020-09-08Remove topologicalSort since it is no longer usedAndrzej Ratajczak
2020-09-08Changed way of merging documentables to avoid exception on merging ↵Andrzej Ratajczak
documentables of different types. Minor javadoc fixes. Changed constructor names. Add handling same name pages clash for different platforms
2020-08-31Let module name be configurable withing `AbstractDokkaTask` and remove ↵sebastian.sellmair
concept of `moduleDisplayName`
2020-07-09Fixes after rebaseAndrzej Ratajczak
2020-07-09Add rendering signatures testsAndrzej Ratajczak
2020-07-09Add tests for signatures renderingAndrzej Ratajczak