Merge pull request #89110 from rsubtil/fix_missing_field_on_dap_req

Add missing `variablesReference` field to DAP `evaluate` request
This commit is contained in:
Rémi Verschelde 2024-03-04 13:34:26 +01:00
commit faafccbd34
No known key found for this signature in database
GPG Key ID: C3336907360768E1

View File

@ -485,6 +485,7 @@ Dictionary DebugAdapterParser::req_evaluate(const Dictionary &p_params) const {
String value = EditorDebuggerNode::get_singleton()->get_var_value(args["expression"]);
body["result"] = value;
body["variablesReference"] = 0;
return response;
}