Instruction

- Added `getContext()` to Instruction
This commit is contained in:
Tristan B. Velloza Kildaire 2022-12-12 15:14:43 +02:00
parent b51f38951a
commit dfc90451bb
1 changed files with 5 additions and 0 deletions

View File

@ -29,6 +29,11 @@ public class Instruction
{
return "TODO: This instruction has not provided an emit text yet! (This is an error!)";
}
public final Context getContext()
{
return context;
}
}
public class FetchInst : Instruction