FileDeclaration

data class FileDeclaration(val name: String, val packageName: String, val imports: List<String> = emptyList(), val classes: List<ClassDeclaration> = emptyList(), val topLevelFunctions: List<FunctionDeclaration> = emptyList(), val topLevelProperties: List<PropertyDeclaration> = emptyList(), val kdocText: String? = null, val filePath: String = "", val importAliases: Map<String, String> = emptyMap())

Constructors

Link copied to clipboard
constructor(name: String, packageName: String, imports: List<String> = emptyList(), classes: List<ClassDeclaration> = emptyList(), topLevelFunctions: List<FunctionDeclaration> = emptyList(), topLevelProperties: List<PropertyDeclaration> = emptyList(), kdocText: String? = null, filePath: String = "", importAliases: Map<String, String> = emptyMap())

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val kdocText: String? = null
Link copied to clipboard
Link copied to clipboard