From 4705e788a52287b2eb1275253bad41f178d42df2 Mon Sep 17 00:00:00 2001 From: Kamil Doległo Date: Thu, 27 Feb 2020 13:11:15 +0100 Subject: Rename `actual` to `sources` --- core/src/main/kotlin/model/Documentable.kt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'core') diff --git a/core/src/main/kotlin/model/Documentable.kt b/core/src/main/kotlin/model/Documentable.kt index 67a8beef..778d1458 100644 --- a/core/src/main/kotlin/model/Documentable.kt +++ b/core/src/main/kotlin/model/Documentable.kt @@ -53,7 +53,7 @@ data class PlatformDependent( } interface WithExpectActual { - val actual: PlatformDependent + val sources: PlatformDependent } interface WithScope { @@ -142,7 +142,7 @@ data class Class( override val functions: List, override val properties: List, override val classlikes: List, - override val actual: PlatformDependent, + override val sources: PlatformDependent, override val visibility: PlatformDependent, override val companion: Object?, override val generics: List, @@ -165,7 +165,7 @@ data class Enum( override val name: String, val entries: List, override val documentation: PlatformDependent, - override val actual: PlatformDependent, + override val sources: PlatformDependent, override val functions: List, override val properties: List, override val classlikes: List, @@ -204,7 +204,7 @@ data class Function( val isConstructor: Boolean, val parameters: List, override val documentation: PlatformDependent, - override val actual: PlatformDependent, + override val sources: PlatformDependent, override val visibility: PlatformDependent, override val type: TypeWrapper, override val generics: List, @@ -223,7 +223,7 @@ data class Interface( override val dri: DRI, override val name: String, override val documentation: PlatformDependent, - override val actual: PlatformDependent, + override val sources: PlatformDependent, override val functions: List, override val properties: List, override val classlikes: List, @@ -244,7 +244,7 @@ data class Object( override val name: String?, override val dri: DRI, override val documentation: PlatformDependent, - override val actual: PlatformDependent, + override val sources: PlatformDependent, override val functions: List, override val properties: List, override val classlikes: List, @@ -263,7 +263,7 @@ data class Annotation( override val name: String, override val dri: DRI, override val documentation: PlatformDependent, - override val actual: PlatformDependent, + override val sources: PlatformDependent, override val functions: List, override val properties: List, override val classlikes: List, @@ -283,7 +283,7 @@ data class Property( override val dri: DRI, override val name: String, override val documentation: PlatformDependent, - override val actual: PlatformDependent, + override val sources: PlatformDependent, override val visibility: PlatformDependent, override val type: TypeWrapper, override val receiver: Parameter?, -- cgit