summaryrefslogtreecommitdiff
path: root/core/script_debugger_local.h
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2018-01-09 19:44:10 +0100
committerGitHub <noreply@github.com>2018-01-09 19:44:10 +0100
commitc037f6339f1fc9636b4fc9056ae0b2e2b673024d (patch)
treee483dac8a1c4ac409be699b23f49d5bebce95164 /core/script_debugger_local.h
parent958a15c7a7ddf7e4247ea73ce6cc2b63cd0c644b (diff)
parent1c6269f2dd3e1a46dbb6a36c3363c9c535be8b64 (diff)
Merge pull request #15463 from neikeq/the-stack-frame-madness
Mono: Implement stack info for errors and exceptions
Diffstat (limited to 'core/script_debugger_local.h')
-rw-r--r--core/script_debugger_local.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/script_debugger_local.h b/core/script_debugger_local.h
index c93120331d..c87bc90bb4 100644
--- a/core/script_debugger_local.h
+++ b/core/script_debugger_local.h
@@ -44,6 +44,7 @@ class ScriptDebuggerLocal : public ScriptDebugger {
public:
void debug(ScriptLanguage *p_script, bool p_can_continue);
virtual void send_message(const String &p_message, const Array &p_args);
+ virtual void send_error(const String &p_func, const String &p_file, int p_line, const String &p_err, const String &p_descr, ErrorHandlerType p_type, const Vector<ScriptLanguage::StackInfo> &p_stack_info);
virtual bool is_profiling() const { return profiling; }
virtual void add_profiling_frame_data(const StringName &p_name, const Array &p_data) {}