Entity

class Entity(val name: String, val signature: String, val location: Location, val ktElement: KtElement? = null) : Compactable

Stores information about a specific code fragment.

Constructors

Link copied to clipboard
constructor(name: String, signature: String, location: Location, ktElement: KtElement? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val ktElement: KtElement? = null
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
open override fun compact(): String

Contract to format implementing object to a string representation.

Link copied to clipboard

Same as compact except the content should contain a substring which represents this exact findings via a custom identifier.

Link copied to clipboard
open override fun toString(): String