Support all debugger vscode predefined variables.

This commit is contained in:
Martín Lucas Golini
2025-02-06 01:21:46 -03:00
parent d1700f07a1
commit 75c63660b1
2 changed files with 100 additions and 23 deletions

View File

@@ -1,5 +1,6 @@
#pragma once
#include "../../projectbuild.hpp"
#include "../plugin.hpp"
#include "../pluginmanager.hpp"
#include "config.hpp"
@@ -282,6 +283,9 @@ class DebuggerPlugin : public PluginBase {
void onDocumentLineMove( TextDocument* doc, const Int64& fromLine, const Int64& toLine,
const Int64& numLines );
void replaceInVal( std::string& val, const std::optional<ProjectBuildStep>& runConfig,
ProjectBuild* buildConfig, int randomPort );
};
} // namespace ecode