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

Fixes for mixins in const exprs

This commit is contained in:
Brian Fiete 2020-06-15 09:00:57 -07:00
parent 98d0b90789
commit 63dc33a970
3 changed files with 13 additions and 7 deletions

View file

@ -1118,6 +1118,11 @@ public:
return mMixinState->mLocalsStartIdx;
return 0;
}
bool IsTemporary()
{
return mTempKind != TempKind_None;
}
};
class BfDeferredMethodCallData;