[Lldb-commits] [lldb] [lldb] Extract getter function for experimental target properties (NFC) (PR #83504)
Dave Lee via lldb-commits
lldb-commits at lists.llvm.org
Thu Feb 29 15:44:21 PST 2024
================
@@ -4227,28 +4228,21 @@ void TargetProperties::UpdateLaunchInfoFromProperties() {
DisableSTDIOValueChangedCallback();
}
-bool TargetProperties::GetInjectLocalVariables(
- ExecutionContext *exe_ctx) const {
+std::optional<bool> TargetProperties::GetExperimentalPropertyValue(
+ size_t prop_idx, ExecutionContext *exe_ctx) const {
const Property *exp_property =
m_collection_sp->GetPropertyAtIndex(ePropertyExperimental, exe_ctx);
OptionValueProperties *exp_values =
exp_property->GetValue()->GetAsProperties();
if (exp_values)
- return exp_values
- ->GetPropertyAtIndexAs<bool>(ePropertyInjectLocalVars, exe_ctx)
- .value_or(true);
- else
- return true;
+ return exp_values->GetPropertyAtIndexAs<bool>(prop_idx, exe_ctx);
+ return std::nullopt;
}
-void TargetProperties::SetInjectLocalVariables(ExecutionContext *exe_ctx,
- bool b) {
----------------
kastiglione wrote:
huh, `b` wasn't even being used.
https://github.com/llvm/llvm-project/pull/83504
More information about the lldb-commits
mailing list