add references to kdoc; support resolve and rename

This commit is contained in:
Dmitry Jemerov
2015-02-03 17:24:45 +01:00
parent 40f459306a
commit c0e7d1faf2
27 changed files with 575 additions and 70 deletions
@@ -0,0 +1,6 @@
/**
* This is the same as [bar]
*/
fun foo() {}
fun <caret>bar() {}
@@ -0,0 +1,6 @@
/**
* This is the same as [xyzzy]
*/
fun foo() {}
fun xyzzy() {}
@@ -0,0 +1,4 @@
/**
* @param s this is a string
*/
fun f(<caret>s: String) { }
@@ -0,0 +1,4 @@
/**
* @param bar this is a string
*/
fun f(bar: String) { }