KT-20591: Show annotations in parameter info (#1358)

Show annotations in parameter info

 #KT-20591 Fixed
This commit is contained in:
Yoshinori Isogai
2017-10-28 04:59:04 +09:00
committed by Simon Ogorodnik
parent 2c4e023cba
commit 11f9c055fd
6 changed files with 68 additions and 1 deletions
@@ -0,0 +1,13 @@
// WITH_RUNTIME
annotation class Fancy
class Foo(@get:Fancy val foo: Int, @param:Fancy val foo1: Int, @set:Fancy val foo2: Int)
fun bar() {
Foo(<caret>)
}
/*
Text: (<highlight>foo: Int</highlight>, @Fancy foo1: Int, foo2: Int), Disabled: false, Strikeout: false, Green: true
*/