All Downloads are FREE. Search and download functionalities are using the official Maven repository.

godot.entrygenerator.model.SourceFile.kt Maven / Gradle / Ivy

There is a newer version: 0.10.0-4.3.0
Show newest version
package godot.entrygenerator.model

import java.io.File

data class SourceFile(
    val absolutePath: String,
    val registeredClasses: List = emptyList(),
    override val symbolProcessorSource: Any
) : GodotJvmSourceElement {
    val name = absolutePath.substringAfterLast("/").substringAfterLast(File.separator)
    val extension = absolutePath.substringAfterLast(".")
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy