aboutsummaryrefslogtreecommitdiff
path: root/core/src/test/kotlin
AgeCommit message (Collapse)Author
2017-02-23Refactor SinceKotlin support to a more general "platform" mechanismDmitry Jemerov
2017-02-23Dokka now can detect and recognize SinceKotlinSimon Ogorodnik
2017-02-22Better separation between analysis and output generation phasesDmitry Jemerov
2017-02-16KT-16262 Dokka does not render suspending function types properlySimon Ogorodnik
#KT-16262 fixed
2017-01-13Drop import samples.* for website-samplesSimon Ogorodnik
2016-12-06KT-14818 Render function type argument names in generated documentation (#116)Simon Ogorodnik
Fix for KT-14818 Render function type argument names in generated documentation * Fixup, unescape name, before passing to identifier * Fixup
2016-11-30Fixed tests for sample formatsSimon Ogorodnik
2016-11-29Merge pull request #111 from Kotlin/website-samplesSimon Ogorodnik
Tweaked output for kotlin-website samples feature
2016-11-29Merge pull request #119 from Kotlin/0.9.10/GH-115Simon Ogorodnik
Fix for #115 `@param` and `@return` tags is missing in javadoc output
2016-11-29Post-review fixes, removed code duplication, fixed @throws supportSimon Ogorodnik
2016-11-28Fix sometimes failing testSimon Ogorodnik
2016-11-28Fix for GH-115, `@param` and `@return` tags is missing in javadoc outputSimon Ogorodnik
2016-11-24Fixup, added some type alias rendering testsSimon Ogorodnik
2016-11-24Added javadoc format test for simple typealiasesSimon Ogorodnik
2016-11-24Test for previous fix, in/out modifiers not lostSimon Ogorodnik
2016-11-24Fix most of failing tests, by not unwrapping types, if it not abbreviated ↵Simon Ogorodnik
(Otherwise we will lose in/out variance)
2016-11-24Type alias supportSimon Ogorodnik
2016-11-14Replacing assertPrints, assertTrue to println for kotlin-website samples, ↵Simon Ogorodnik
Added SampleProcessingService to FormatDescriptor
2016-11-08Fix for KT-14603 Do not escape html inside code blocks in markdown (#112)Simon Ogorodnik
2016-11-08Disabled broken test due not-supported yet typealiasesSimon Ogorodnik
2016-11-08Fix for GH-79 , KT-13299 Critical bug, top-level Kotlin functions from ↵Simon Ogorodnik
libraries not resolved
2016-11-03Updated kotlin-compiler to 1.1-M2-8 (#109)Simon Ogorodnik
2016-11-03Fix for KT-14076 : empty visible div's (#108)Simon Ogorodnik
Fix for KT-14076 : empty visible div's
2016-11-02Added test and post-review fixSimon Ogorodnik
2016-11-02Fix for GH #98 : Added tests, altered fix code for corner casesSimon Ogorodnik
2016-11-01Fix for GH #97 : Preserve language name of fenced code block for highlightSimon Ogorodnik
2016-11-01Fix for GH #95 , KT-13300 : dokka eats apostrophesSimon Ogorodnik
2016-07-08update Kotlin compiler and kotlin-ide-common to 1.0.4-dev-13, fixing the ↵Dmitry Jemerov
qualified name resolve problem in doc comments
2016-07-06handle code blocks escaped with multiple backticks correctly; generate extra ↵Dmitry Jemerov
backticks if text in code block contains backticks (KT-12998, KT-12999)
2016-07-06don't lose exclamation marks in code blocks (KT-13000)Dmitry Jemerov
2016-07-04Rewrite output generation; much cleaner Markdown and HTML generated. ↵Dmitry Jemerov
Resolves #71, #72
2016-07-01extract stateful builder out of FormatServiceDmitry Jemerov
2016-07-01introduce GFM output formatDmitry Jemerov
2016-06-30build fixDmitry Jemerov
2016-06-30Don't include internal members in generated javadoc. Resolves #75Dmitry Jemerov
2016-06-30Generate correct signature for methods with parameters of Java primitive ↵Dmitry Jemerov
types. Resolves #76
2016-06-30add test for @JvmName support in javadocDmitry Jemerov
2016-05-10update to kotlin 1.0.3-dev-700; don't use kotlin-for-upsource artifact, use ↵Dmitry Jemerov
regular kotlin-compiler and kotlin-ide-common instead
2016-04-29don't report type parameters for array classes; don't report qualified names ↵Dmitry Jemerov
for stdlib types such as java.lang.String
2016-04-28SOE protection when calculating type signature. Resolves #69Dmitry Jemerov
2016-04-28add test to ensure that @receiver is renderedDmitry Jemerov
2016-04-28test to ensure KT-10998 doesn't happen in DokkaDmitry Jemerov
2016-04-28correctly render Markdown in link text (KT-11791)Dmitry Jemerov
2016-04-28give some descriptions to type parameters to test rendering betterDmitry Jemerov
2016-04-27Use FQ name instead of simple name to identify array classes. Resolves #68Dmitry Jemerov
2016-04-01KT-11329: improve formatting of KDoc sectionsDmitry Jemerov
2016-04-01KT-11530: when the receiver type of an extension is generic, use subclass ↵Dmitry Jemerov
instead of subtype check to determine applicability (subtype check doesn't work because type parameter of receiver type is unrelated to type parameter of base class)
2016-03-31Don't lose line breaks in code blocks. Resolves #54Dmitry Jemerov
2016-03-31Correctly format code samples in overload groups. Resolves #55Dmitry Jemerov
2016-03-31Fix the implementation of containingClass() in javadoc adapters. Resolves #57Dmitry Jemerov