diff options
| author | Ignacio Etcheverry | 2018-01-09 17:19:03 +0100 |
|---|---|---|
| committer | Ignacio Etcheverry | 2018-01-09 17:19:03 +0100 |
| commit | 5be356b72f5b765cdec069c2c4a4011a42fabc47 (patch) | |
| tree | 5a8bc0f7a3e9cb0646634e5df57d9c73d98d6a09 /modules/mono/csharp_script.h | |
| parent | 52165fa12de7ca76898a7c1855a2f23797b2c2ed (diff) | |
| download | godot-5be356b72f5b765cdec069c2c4a4011a42fabc47.tar.gz godot-5be356b72f5b765cdec069c2c4a4011a42fabc47.tar.zst godot-5be356b72f5b765cdec069c2c4a4011a42fabc47.zip | |
Diffstat (limited to 'modules/mono/csharp_script.h')
| -rw-r--r-- | modules/mono/csharp_script.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/mono/csharp_script.h b/modules/mono/csharp_script.h index 171601f3d..3ce8a9b64 100644 --- a/modules/mono/csharp_script.h +++ b/modules/mono/csharp_script.h @@ -303,7 +303,7 @@ public: /* TODO */ virtual void debug_get_stack_level_members(int p_level, List<String> *p_members, List<Variant> *p_values, int p_max_subitems, int p_max_depth) {} /* TODO */ virtual void debug_get_globals(List<String> *p_locals, List<Variant> *p_values, int p_max_subitems, int p_max_depth) {} /* TODO */ virtual String debug_parse_stack_level_expression(int p_level, const String &p_expression, int p_max_subitems, int p_max_depth) { return ""; } - /* TODO */ virtual Vector<StackInfo> debug_get_current_stack_info() { return Vector<StackInfo>(); } + virtual Vector<StackInfo> debug_get_current_stack_info(); /* PROFILING FUNCTIONS */ /* TODO */ virtual void profiling_start() {} @@ -335,6 +335,8 @@ public: virtual void *alloc_instance_binding_data(Object *p_object); virtual void free_instance_binding_data(void *p_data); + Vector<StackInfo> stack_trace_get_info(MonoObject *p_stack_trace); + CSharpLanguage(); ~CSharpLanguage(); }; |
