mirror of
https://github.com/GayPizzaSpecifications/pork.git
synced 2025-10-06 14:29:39 +00:00
8 lines
183 B
Kotlin
8 lines
183 B
Kotlin
package gay.pizza.pork.bir
|
|
|
|
data class IrCodeBlock(val items: List<IrCodeElement>) : IrCodeElement {
|
|
override fun crawl(block: (IrElement) -> Unit) {
|
|
items.forEach(block)
|
|
}
|
|
}
|