1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-08 12:40:44 +00:00

Add missing variablesReference field to DAP evaluate request

This commit is contained in:
Ricardo Subtil
2024-03-03 11:21:46 +00:00
parent f2045ba822
commit c07991ef36

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"]); String value = EditorDebuggerNode::get_singleton()->get_var_value(args["expression"]);
body["result"] = value; body["result"] = value;
body["variablesReference"] = 0;
return response; return response;
} }