mirror of
https://github.com/GayPizzaSpecifications/pork.git
synced 2025-10-09 15:49:39 +00:00
8 lines
188 B
Kotlin
8 lines
188 B
Kotlin
package gay.pizza.pork.compiler
|
|
|
|
import gay.pizza.pork.bytecode.Op
|
|
|
|
abstract class StubOp(val op: Op) {
|
|
open fun patch(context: StubResolutionContext, arguments: MutableList<UInt>) {}
|
|
}
|