mirror of
https://github.com/GayPizzaSpecifications/pork.git
synced 2025-10-06 14:29:39 +00:00
9 lines
161 B
Kotlin
9 lines
161 B
Kotlin
package gay.pizza.pork.bir
|
|
|
|
import kotlinx.serialization.Serializable
|
|
|
|
@Serializable
|
|
sealed class IrElement {
|
|
abstract fun crawl(block: (IrElement) -> Unit)
|
|
}
|