mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 04:22:20 +02:00
Improved emit marker resolve/build selection, emitted Go To Definition
This commit is contained in:
parent
faca458283
commit
6ded6a37cc
14 changed files with 216 additions and 44 deletions
|
@ -6232,6 +6232,15 @@ BfTypedValue BfExprEvaluator::CreateCall(BfAstNode* targetSrc, BfMethodInstance*
|
|||
((autoComplete->mResolveType != BfResolveType_Autocomplete) &&
|
||||
(autoComplete->mResolveType != BfResolveType_Autocomplete_HighPri) &&
|
||||
(autoComplete->mResolveType != BfResolveType_GetResultString));
|
||||
|
||||
for (auto& entry : mModule->mCompiler->mResolvePassData->mEmitEmbedEntries)
|
||||
{
|
||||
if (entry.mValue.mCursorIdx >= 0)
|
||||
{
|
||||
// Needed for Go To Definition in Compiler.Mixin
|
||||
wantQuickEval = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (wantQuickEval)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue