Support for showing rendered doc comments in editor
Fixed #KT-37361
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
|
||||
/**
|
||||
* Hello darling
|
||||
* @author DarkWing Duck
|
||||
*/
|
||||
fun testFun() {}
|
||||
|
||||
class outherClass {
|
||||
/**
|
||||
* Hello darling instance
|
||||
* @author Morgana Macawber
|
||||
*/
|
||||
fun instanceFun() {
|
||||
/**
|
||||
* Hello darling local
|
||||
* @author Launchpad McQuack
|
||||
*/
|
||||
fun localFun() {
|
||||
if (true) {
|
||||
/**
|
||||
* Hello darling superLocal
|
||||
* @author Reginald Bushroot
|
||||
*/
|
||||
fun superLocalFun() {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// RENDER: <div class='content'><p>Hello darling</p></div><table class='sections'><tr><td valign='top' class='section'><p>Author:</td><td valign='top'>DarkWing Duck</td></table>
|
||||
// RENDER: <div class='content'><p>Hello darling instance</p></div><table class='sections'><tr><td valign='top' class='section'><p>Author:</td><td valign='top'>Morgana Macawber</td></table>
|
||||
// RENDER: <div class='content'><p>Hello darling local</p></div><table class='sections'><tr><td valign='top' class='section'><p>Author:</td><td valign='top'>Launchpad McQuack</td></table>
|
||||
// RENDER: <div class='content'><p>Hello darling superLocal</p></div><table class='sections'><tr><td valign='top' class='section'><p>Author:</td><td valign='top'>Reginald Bushroot</td></table>
|
||||
Reference in New Issue
Block a user