mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 03:28:20 +02:00
Autocomplete fixes, debugger fixes
Fixed autocomplete issue typing out base class name Fixed autocomplete issue typing before a member access (ie: in 'val' for 'val.MethodA()') Fixed invocation autocomplete with [Friend] access
This commit is contained in:
parent
2f01cc14dd
commit
1e04bb1b3e
8 changed files with 53 additions and 7 deletions
|
@ -99,6 +99,18 @@ DbgSrcFile* DbgSubprogram::GetLineSrcFile(const DbgLineData& lineData)
|
|||
return inlineRoot->mLineInfo->mContexts[lineData.mCtxIdx].mSrcFile;
|
||||
}
|
||||
|
||||
bool DbgSubprogram::HasValidLines()
|
||||
{
|
||||
auto inlineRoot = GetRootInlineParent();
|
||||
for (int lineIdx = 0; lineIdx < (int)inlineRoot->mLineInfo->mLines.size(); lineIdx++)
|
||||
{
|
||||
auto& lineInfo = inlineRoot->mLineInfo->mLines[lineIdx];
|
||||
if (lineInfo.mColumn >= 0)
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
void DbgSubprogram::PopulateSubprogram()
|
||||
{
|
||||
if (mDeferredInternalsSize == 0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue