mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +02:00
Fixed autocomplete issues with nested calls
This commit is contained in:
parent
e1656865bb
commit
f10551e6f8
5 changed files with 70 additions and 41 deletions
|
@ -140,8 +140,8 @@ public:
|
|||
BfMethodInstance* mCurMethodInstance;
|
||||
Array<MethodMatchEntry> mInstanceList;
|
||||
int mInvocationSrcIdx;
|
||||
int mBestIdx;
|
||||
int mPrevBestIdx;
|
||||
int mBestIdx;
|
||||
int mPrevBestIdx;
|
||||
bool mHadExactMatch;
|
||||
int mMostParamsMatched;
|
||||
Array<int> mSrcPositions; // start, commas, end
|
||||
|
@ -152,8 +152,8 @@ public:
|
|||
mInvocationSrcIdx = -1;
|
||||
mCurTypeInstance = NULL;
|
||||
mCurMethodInstance = NULL;
|
||||
mBestIdx = 0;
|
||||
mPrevBestIdx = -1;
|
||||
mBestIdx = 0;
|
||||
mPrevBestIdx = -1;
|
||||
mHadExactMatch = false;
|
||||
mMostParamsMatched = 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue