User: rednesto Date: 10 Aug 24 14:46 Revision: 65098a42c9658e0964c0b520a0a8538c3346f12c Summary: Merge branch '2023.3' into 2024.1 TeamCity URL: https://ci.mcdev.io/viewModification.html?tab=vcsModificationFiles&modId=9586&personal=false Index: gradle.properties =================================================================== --- gradle.properties (revision 6c0c46638cd55bb97d0816dec3814f5bf314260f) +++ gradle.properties (revision 65098a42c9658e0964c0b520a0a8538c3346f12c) @@ -24,7 +24,7 @@ ideaVersion = 2024.1 ideaVersionName = 2024.1 -coreVersion = 1.8.0 +coreVersion = 1.8.1 downloadIdeaSources = true pluginTomlVersion = 241.14494.150 Index: src/main/kotlin/creator/custom/CreatorContext.kt =================================================================== --- src/main/kotlin/creator/custom/CreatorContext.kt (revision 6c0c46638cd55bb97d0816dec3814f5bf314260f) +++ src/main/kotlin/creator/custom/CreatorContext.kt (revision 65098a42c9658e0964c0b520a0a8538c3346f12c) @@ -54,4 +54,7 @@ * A general purpose scope dependent of the main creator scope, cancelled when the creator is closed. */ fun childScope(name: String): CoroutineScope = scope.namedChildScope(name) + + @Suppress("UNCHECKED_CAST") + fun property(name: String): CreatorProperty = properties[name] as CreatorProperty }