mirror of
https://github.com/GayPizzaSpecifications/pork.git
synced 2025-09-15 15:31:32 +00:00
6 lines
170 B
Kotlin
6 lines
170 B
Kotlin
package gay.pizza.pork.frontend
|
|
|
|
data class StableSourceKey(val form: String, val path: String) {
|
|
fun asSourceLocation(): SourceLocation = SourceLocation(form, path)
|
|
}
|