mirror of
https://github.com/GayPizzaSpecifications/pork.git
synced 2025-10-12 16:59:38 +00:00
12 lines
223 B
Kotlin
12 lines
223 B
Kotlin
package gay.pizza.pork.bir
|
|
|
|
import kotlinx.serialization.Serializable
|
|
|
|
@Serializable
|
|
data class IrSlabLocation(
|
|
var form: String,
|
|
var path: String
|
|
) : IrElement() {
|
|
override fun crawl(block: (IrElement) -> Unit) {}
|
|
}
|