aboutsummaryrefslogtreecommitdiff
path: root/core/src/test
AgeCommit message (Collapse)Author
2016-02-02restore handling of @suppress tags in javadoc commentsDmitry Jemerov
2016-01-25update Dokka to internal RC: remove usages of kotlin.testDmitry Jemerov
2016-01-12don't generate index pages in testsDmitry Jemerov
2016-01-12generate signature-based anchors for overloads; use signature instead of ↵Dmitry Jemerov
name as an anchor for in-page links
2016-01-12fix compilation after mergeDmitry Jemerov
2016-01-12Merge pull request #48 from ingokegel/masterDmitry Jemerov
@Suppress("NOT_DOCUMENTED"), fix for linking to targets with underscores, gradle plugin improvements
2016-01-08link to JDK classes (KT-10452)Dmitry Jemerov
2016-01-08include extension function in the list of extensions for a class if the ↵Dmitry Jemerov
class is an upper bound of the receiver type parameter
2016-01-08rewrite propagation of extension functions to subclasses to handle shadowing ↵Dmitry Jemerov
and applicability more correctly
2016-01-06Linking to a target with underscores did not workingo
For example, in a link like [MY_VALUE], the link would only try to resolve the text "MY" until the first underscore. Since the markdown parser parses the link label as [TEXT:MY, EMPH:_, TEXT:VALUE], using the first TEXT child node is not sufficient.
2016-01-05distinguish inherited companion object membersDmitry Jemerov
2016-01-05render multiple type parameter constraints according to current Kotlin syntaxDmitry Jemerov
2016-01-05always include type parameters in the signature of a typeDmitry Jemerov
2016-01-04separate groups for annotations and exceptions in the members listDmitry Jemerov
2016-01-04cleanup: DocumentationNode.Kind -> NodeKind, DocumentationReference.Kind -> ↵Dmitry Jemerov
RefKind
2016-01-04Embedded underscores in words like word_with_underscores or single embedded ↵Ingo Kegel
stars like embedded*star were removed in the output.
2015-12-03restructure Dokka build to use Gradle for everything except for the Maven pluginDmitry Jemerov