Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move modules/mono/glue/cs_files to modules/mono/glue/Managed/Files | Ignacio Etcheverry | 2018-09-12 | 1 | -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 obvious | Xavier Cho | 2018-04-17 | 1 | -2/+2 |
| | |||||
* | #18051: Use 'var' when applicable | Xavier Cho | 2018-04-17 | 1 | -3/+3 |
| | |||||
* | #18051: Remove redundant casts and 'using', 'else', 'this' statements | Xavier Cho | 2018-04-17 | 1 | -1/+1 |
| | |||||
* | remove c#7 features for compatibility with 2015 Build Tools | Kelly Thomas | 2018-01-18 | 1 | -2/+2 |
| | | | https://github.com/godotengine/godot/issues/15742 | ||||
* | Mono: Some StackTrace to StackInfo[] fixes | Ignacio Etcheverry | 2018-01-12 | 1 | -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 exceptions | Ignacio Etcheverry | 2018-01-09 | 1 | -0/+77 |