Light class performance test: access field & method types

So #KT-24085 Fixed
This commit is contained in:
Mikhail Glukhikh
2018-04-20 13:14:11 +03:00
parent 75eeb32970
commit 3b6d610e29
@@ -38,6 +38,9 @@ class AllKotlinLightClassTest : WholeProjectPerformanceTest(), WholeProjectKotli
Arrays.hashCode(lightClass.superTypes)
Arrays.hashCode(lightClass.fields)
Arrays.hashCode(lightClass.methods)
// Just to be sure: access types
lightClass.fields.map { it.type }.hashCode()
lightClass.methods.map { it.returnType }.hashCode()
lightClass.hashCode()
}
})