DecompiledTextFactory: use own implementation of type normalizer

Do not rely on IDE utils
This makes implementing cls stub builder easier
This commit is contained in:
Pavel V. Talanov
2014-12-01 21:01:46 +03:00
parent 41f2c71081
commit d0479aa61b
2 changed files with 14 additions and 9 deletions
@@ -4,9 +4,9 @@
package test
internal abstract class FlexibleTypes() {
internal abstract val p: kotlin.Int? /* platform type */
internal abstract val p: kotlin.Int /* platform type */
internal abstract fun collection(): kotlin.List<kotlin.Any> /* platform type */
internal abstract fun collection(): kotlin.List<kotlin.Int> /* platform type */
internal final fun withBody(): kotlin.Int? /* platform type */ { /* compiled code */ }
internal final fun withBody(): kotlin.Int /* platform type */ { /* compiled code */ }
}