1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 04:22:20 +02:00

Better diagnostics of backend errors

This commit is contained in:
Brian Fiete 2020-06-24 15:02:17 -07:00
parent b09364cd34
commit 6ac1496eaa
2 changed files with 78 additions and 9 deletions

View file

@ -74,6 +74,7 @@ public:
Array<int> mConfigConsts;
public:
void FatalError(const StringImpl& str);
void NotImpl();
BfTypeCode GetTypeCode(BeType* type, bool isSigned);
void SetResult(int id, BeValue* value);
@ -117,7 +118,7 @@ public:
vec.push_back(result);
}
}
void Init(const BfSizedArray<uint8>& buffer);
void Process();