Introduce PropertyDescriptor.isDelegated, write new flag to metadata

#KT-8384 In Progress
This commit is contained in:
Alexander Udalov
2017-01-17 20:08:19 +03:00
parent 76fc3b40d5
commit f1cd2ee6fd
24 changed files with 111 additions and 43 deletions
@@ -105,7 +105,8 @@ private fun genProperty(
/* isConst = */ false,
/* isHeader = */ false,
/* isImpl = */ false,
/* isExternal = */ false
/* isExternal = */ false,
/* isDelegated = */ false
) {
override val errorType = errorType
override val cacheView = cacheView
@@ -149,4 +150,4 @@ interface AndroidSyntheticProperty {
val isErrorType: Boolean
get() = errorType != null
}
}