| 899 | streamFunctionBody.Add(x); |
| 900 | } |
| 901 | void OpFunctionCall(const int ID, const int typeID, const int funcID, const List<int> &args) |
| 902 | { |
| 903 | sbTextFunctionBody << LR"(%)" << ID << LR"( = OpFunctionCall %)" << typeID << LR"( %)" << funcID; |
| 904 | for (auto & arg : args) |
| 905 | sbTextFunctionBody << LR"( %)" << arg; |
| 906 | sbTextFunctionBody << EndLine; |
| 907 | |
| 908 | streamFunctionBody.Add(57 + ((4 + args.Count()) << 16)); |
| 909 | streamFunctionBody.Add(typeID); |
| 910 | streamFunctionBody.Add(ID); |
| 911 | streamFunctionBody.Add(funcID); |
| 912 | for (auto & arg : args) |
| 913 | streamFunctionBody.Add(arg); |
| 914 | } |
| 915 | void OpKill() |
| 916 | { |
| 917 | sbTextFunctionBody << LR"(OpKill)" << EndLine; |
no test coverage detected