This commit is contained in:
2025-08-24 14:41:34 +10:00
parent f7f3972248
commit 1c0dfcc4b7

View File

@@ -1770,6 +1770,7 @@ vector<Instruction> parser(vector<vector<string>> in) {
else if (i == "lesser") newInst.inst = Instructions::Lesser; else if (i == "lesser") newInst.inst = Instructions::Lesser;
else if (i == "equal") newInst.inst = Instructions::Equal; else if (i == "equal") newInst.inst = Instructions::Equal;
else if (i == "inequal") newInst.inst = Instructions::Inequal; else if (i == "inequal") newInst.inst = Instructions::Inequal;
else if (i == "not") newInst.inst = Instructions::Not;
else if (i == "end") newInst.inst = Instructions::End; else if (i == "end") newInst.inst = Instructions::End;
else if (i == "set") newInst.inst = Instructions::Set; else if (i == "set") newInst.inst = Instructions::Set;
else if (i == "setlist") newInst.inst = Instructions::Setlist; else if (i == "setlist") newInst.inst = Instructions::Setlist;