| 817 | streamFunctionHeader.Add(functionTypeID); |
| 818 | } |
| 819 | void OpFunctionParameter(const int paramID, const int typeID) |
| 820 | { |
| 821 | sbTextFunctionHeader << LR"(%)" << paramID << LR"( = OpFunctionParameter %)" << typeID << EndLine; |
| 822 | |
| 823 | streamFunctionHeader.Add(55 + (3 << 16)); |
| 824 | streamFunctionHeader.Add(typeID); |
| 825 | streamFunctionHeader.Add(paramID); |
| 826 | } |
| 827 | void OpTypeFunction(const int functionTypeID, const int returnTypeID, const List<int> &argIDList) |
| 828 | { |
| 829 | sbTextTypeDefinition << LR"(%)" << functionTypeID << LR"( = OpTypeFunction %)" << returnTypeID; |
no test coverage detected