Verify Source Declarations
The source declaration (sourceDeclaration
property) holds the reference to actual type declaration such as class or interface.
Konsist API allows for verify properties of such type e.g.:
Check if property type implements certain interface
Check if function return type name ends with
Repository
Check if parent class is annotated with given annotation
Every declaration that is using another type such as property, function, parent exposes sourceDeclaration
property.
Let's look at few examples:
Verify Property Source Declaration
Check if type of current
property is has a type which is a class declaration heaving internal
modifier:
Note that explicit casting (asXDeclaration
) has to be used to access specific properties of the declaration.
Verify Function Return Type Source Declaration
Check if function return type is a basic Kotlin type:
Verify Class Has Interface Source Declaration
Last updated