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

Made type lookup errors 'var' instead of 'Object', less error cascading

This commit is contained in:
Brian Fiete 2019-10-04 10:38:36 -07:00
parent 570c03f25c
commit d48d03c58b
7 changed files with 107 additions and 28 deletions

View file

@ -1088,6 +1088,7 @@ public:
bool mFieldIncluded;
bool mIsEnumPayloadCase;
bool mIsThreadLocal;
bool mIsInferredType;
int mLastRevisionReferenced;
public:
@ -1109,7 +1110,8 @@ public:
mFieldIncluded = copyFrom.mFieldIncluded;
mIsEnumPayloadCase = copyFrom.mIsEnumPayloadCase;
mIsThreadLocal = copyFrom.mIsThreadLocal;
mLastRevisionReferenced = copyFrom.mLastRevisionReferenced;
mIsInferredType = copyFrom.mIsInferredType;
mLastRevisionReferenced = copyFrom.mLastRevisionReferenced;
}
BfFieldInstance()
@ -1126,6 +1128,7 @@ public:
mDataSize = 0;
mFieldIncluded = true;
mIsThreadLocal = false;
mIsInferredType = false;
mLastRevisionReferenced = -1;
}