Added intention which adds or removes explicit type specification for property or variable.

#KT-1427 fixed
This commit is contained in:
Evgeny Gerashchenko
2012-04-21 01:09:05 +04:00
parent 8c5c9311fb
commit 32605248c5
6 changed files with 106 additions and 0 deletions
@@ -0,0 +1,3 @@
fun main() {
val a <spot>: Array<Int></spot> = array(1, 2, 3)
}
@@ -0,0 +1,3 @@
fun main() {
val <spot>a</spot> = array(1, 2, 3)
}
@@ -0,0 +1,5 @@
<html>
<body>
This intention adds or removes explicit type specification for local values, variables and properties.
</body>
</html>