1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +02:00

More methodref fixes

This commit is contained in:
Brian Fiete 2020-10-22 06:31:31 -07:00
parent b16f8b303e
commit 4449952235
3 changed files with 25 additions and 10 deletions

View file

@ -220,6 +220,7 @@ public:
BfMixinState* mDeclMixinState;
OwnedVector<BfDirectTypeReference> mDirectTypeRefs;
bool mDeclOnly;
bool mDidBodyErrorPass;
BfLocalMethod* mNextWithSameName;
public:
@ -237,6 +238,7 @@ public:
mDeclMethodState = NULL;
mDeclMixinState = NULL;
mDeclOnly = false;
mDidBodyErrorPass = false;
mNextWithSameName = NULL;
}
~BfLocalMethod();