summaryrefslogtreecommitdiffstats
path: root/modules/mono/glue/cs_files/DebuggingUtils.cs
Commit message (Collapse)AuthorAgeFilesLines
* Move modules/mono/glue/cs_files to modules/mono/glue/Managed/FilesIgnacio Etcheverry2018-09-121-83/+0
| | | | Added dummy MSBuild project and solution to get tooling help when editing these files.
* #18051: Do not use `var` in a for-loop, or where type is not obviousXavier Cho2018-04-171-2/+2
|
* #18051: Use 'var' when applicableXavier Cho2018-04-171-3/+3
|
* #18051: Remove redundant casts and 'using', 'else', 'this' statementsXavier Cho2018-04-171-1/+1
|
* remove c#7 features for compatibility with 2015 Build ToolsKelly Thomas2018-01-181-2/+2
| | | https://github.com/godotengine/godot/issues/15742
* Mono: Some StackTrace to StackInfo[] fixesIgnacio Etcheverry2018-01-121-0/+6
| | | | | | - Sometimes `StackFrame.GetMethod()` returns null (e.g.: latest frame of a `MissingMethodException`). Still not sure what to do with that frame (maybe skip it), but at least it no longer fails. - Skip `CSharpLanguage::debug_get_current_stack_info()` if an error is printed from `GDMonoUtils::update_corlib_cache()`. - Fix crash when calling `GDMonoUtils::print_unhandled_exception(exc)` if there is no ScriptDebugger attached.
* Mono: Implement stack info for errors and exceptionsIgnacio Etcheverry2018-01-091-0/+77