1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-09 03:52:19 +02:00

Better support for @ name prefixes

This commit is contained in:
Brian Fiete 2021-11-29 08:38:42 -08:00
parent 7691c414c3
commit aa56542fae
12 changed files with 158 additions and 40 deletions

View file

@ -161,6 +161,7 @@ public:
int mWrittenToId;
int mReadFromId;
int mParamIdx;
uint8 mNamePrefixCount;
bool mIsThis;
bool mHasLocalStructBacking;
bool mIsStruct;
@ -187,6 +188,7 @@ public:
mLocalVarId = -1;
mCompositeCount = -1;
mParamIdx = -2;
mNamePrefixCount = 0;
mIsThis = false;
mHasLocalStructBacking = false;
mIsStruct = false;