summaryrefslogtreecommitdiff
path: root/src/main/java/no/eliashaugsbakk/kompilator/IRGeneration/Instructions/Instruction.java
blob: 09796d6c50f9cf3722d6f8b398e487a6c60b51ab (plain)
1
2
3
4
5
6
7
8
9
package no.eliashaugsbakk.kompilator.IRGeneration.Instructions;

public sealed interface Instruction permits Alloc, Assign, Call {
}