diff options
author | iwek7 <miwanczuk7@gmail.com> | 2019-07-29 20:09:22 +0200 |
---|---|---|
committer | iwek7 <miwanczuk7@gmail.com> | 2019-09-03 20:49:09 +0200 |
commit | 617797c47cac39830282b7ea85fc38eb2d242e19 (patch) | |
tree | 3a13d873fc96c1f7e02718269d55a0cc9234ad7a /core/script_language.h | |
parent | 750f8d4926edb14269d9f6a117c5a9fd4765373a (diff) | |
download | redot-engine-617797c47cac39830282b7ea85fc38eb2d242e19.tar.gz |
Adds skip-breakpoints feature
Diffstat (limited to 'core/script_language.h')
-rw-r--r-- | core/script_language.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/script_language.h b/core/script_language.h index 1b4f1eb4cd..5c7e8bb36c 100644 --- a/core/script_language.h +++ b/core/script_language.h @@ -467,7 +467,7 @@ public: void clear_breakpoints(); const Map<int, Set<StringName> > &get_breakpoints() const { return breakpoints; } - virtual void debug(ScriptLanguage *p_script, bool p_can_continue = true) = 0; + virtual void debug(ScriptLanguage *p_script, bool p_can_continue = true, bool p_is_error_breakpoint = false) = 0; virtual void idle_poll(); virtual void line_poll(); |