hasPropertyDeclaration

abstract override fun hasPropertyDeclaration(predicate: (KoPropertyDeclaration) -> Boolean?): Boolean

Deprecated

Will be removed in version 0.19.0

Replace with

sourceDeclaration?.hasPropertyDeclaration()

Whether declaration has a specified property declaration.

Return

true if the declaration has the specified property declaration (or any property declaration if predicate is null), false otherwise.

Parameters

predicate

The predicate function used to determine if a property declaration satisfies a condition.