mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 11:38:21 +02:00
Debugger mouseover improvements
This commit is contained in:
parent
4f0ad540a7
commit
4f2c28862d
8 changed files with 161 additions and 61 deletions
|
@ -4670,6 +4670,10 @@ BfTypedValue BfModule::GetFieldInitializerValue(BfFieldInstance* fieldInstance,
|
|||
if (mCompiler->mCeMachine->mExecuteId != ceExecuteId)
|
||||
fieldInstance->mHadConstEval = true;
|
||||
}
|
||||
|
||||
if (auto autoComplete = mCompiler->GetAutoComplete())
|
||||
autoComplete->CheckResult(initializer, result);
|
||||
|
||||
return result;
|
||||
}
|
||||
}
|
||||
|
@ -9240,6 +9244,9 @@ BfTypedValue BfModule::CreateValueFromExpression(BfExprEvaluator& exprEvaluator,
|
|||
if ((typedVal.mType->IsValueType()) && ((flags & BfEvalExprFlags_NoValueAddr) != 0))
|
||||
typedVal = LoadValue(typedVal, 0, exprEvaluator.mIsVolatileReference);
|
||||
|
||||
if (auto autoComplete = mCompiler->GetAutoComplete())
|
||||
autoComplete->CheckResult(expr, typedVal);
|
||||
|
||||
return typedVal;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue