com.lemonappdev.konsist.api.provider.KoLocationProvider.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of konsist Show documentation
Show all versions of konsist Show documentation
A Kotlin architecture test library. Define and guard code base consistency using Kotlin.
The newest version!
package com.lemonappdev.konsist.api.provider
/**
* An interface representing a Kotlin declaration that provides information about its location,
* including file path, line, and column.
*/
interface KoLocationProvider : KoBaseProvider {
/**
* Location of the declaration containing the file path, line and column.
*/
val location: String
/**
* Text of the declaration with the location (file path, line and column).
*/
val locationWithText: String
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy