added ExpressionTypingServices.deparenthesize()

(with type resolution)
This commit is contained in:
Svetlana Isakova
2012-11-16 15:30:36 +04:00
parent 1c059671ba
commit 96c1564c54
5 changed files with 49 additions and 6 deletions
@@ -1,5 +1,5 @@
package t
fun foo(array: Array<Int>) {
(array[0] : <!DEBUG_INFO_MISSING_UNRESOLVED!>Int<!>) = 22
(array[0] : Int) = 22
}