aboutsummaryrefslogtreecommitdiff
path: root/core/src
diff options
context:
space:
mode:
authorKamil Doległo <kamilok1965@interia.pl>2020-02-27 13:11:15 +0100
committerKamil Doległo <kamilok1965@interia.pl>2020-02-27 13:11:15 +0100
commit4705e788a52287b2eb1275253bad41f178d42df2 (patch)
tree4992ed604f6adedff81e99d52ff089652dde9ac9 /core/src
parent463996144e99055203a0205700e7a5be5d970067 (diff)
downloaddokka-4705e788a52287b2eb1275253bad41f178d42df2.tar.gz
dokka-4705e788a52287b2eb1275253bad41f178d42df2.tar.bz2
dokka-4705e788a52287b2eb1275253bad41f178d42df2.zip
Rename `actual` to `sources`
Diffstat (limited to 'core/src')
-rw-r--r--core/src/main/kotlin/model/Documentable.kt16
1 files changed, 8 insertions, 8 deletions
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<out T>(
}
interface WithExpectActual {
- val actual: PlatformDependent<DocumentableSource>
+ val sources: PlatformDependent<DocumentableSource>
}
interface WithScope {
@@ -142,7 +142,7 @@ data class Class(
override val functions: List<Function>,
override val properties: List<Property>,
override val classlikes: List<Classlike>,
- override val actual: PlatformDependent<DocumentableSource>,
+ override val sources: PlatformDependent<DocumentableSource>,
override val visibility: PlatformDependent<Visibility>,
override val companion: Object?,
override val generics: List<TypeParameter>,
@@ -165,7 +165,7 @@ data class Enum(
override val name: String,
val entries: List<EnumEntry>,
override val documentation: PlatformDependent<DocumentationNode>,
- override val actual: PlatformDependent<DocumentableSource>,
+ override val sources: PlatformDependent<DocumentableSource>,
override val functions: List<Function>,
override val properties: List<Property>,
override val classlikes: List<Classlike>,
@@ -204,7 +204,7 @@ data class Function(
val isConstructor: Boolean,
val parameters: List<Parameter>,
override val documentation: PlatformDependent<DocumentationNode>,
- override val actual: PlatformDependent<DocumentableSource>,
+ override val sources: PlatformDependent<DocumentableSource>,
override val visibility: PlatformDependent<Visibility>,
override val type: TypeWrapper,
override val generics: List<TypeParameter>,
@@ -223,7 +223,7 @@ data class Interface(
override val dri: DRI,
override val name: String,
override val documentation: PlatformDependent<DocumentationNode>,
- override val actual: PlatformDependent<DocumentableSource>,
+ override val sources: PlatformDependent<DocumentableSource>,
override val functions: List<Function>,
override val properties: List<Property>,
override val classlikes: List<Classlike>,
@@ -244,7 +244,7 @@ data class Object(
override val name: String?,
override val dri: DRI,
override val documentation: PlatformDependent<DocumentationNode>,
- override val actual: PlatformDependent<DocumentableSource>,
+ override val sources: PlatformDependent<DocumentableSource>,
override val functions: List<Function>,
override val properties: List<Property>,
override val classlikes: List<Classlike>,
@@ -263,7 +263,7 @@ data class Annotation(
override val name: String,
override val dri: DRI,
override val documentation: PlatformDependent<DocumentationNode>,
- override val actual: PlatformDependent<DocumentableSource>,
+ override val sources: PlatformDependent<DocumentableSource>,
override val functions: List<Function>,
override val properties: List<Property>,
override val classlikes: List<Classlike>,
@@ -283,7 +283,7 @@ data class Property(
override val dri: DRI,
override val name: String,
override val documentation: PlatformDependent<DocumentationNode>,
- override val actual: PlatformDependent<DocumentableSource>,
+ override val sources: PlatformDependent<DocumentableSource>,
override val visibility: PlatformDependent<Visibility>,
override val type: TypeWrapper,
override val receiver: Parameter?,