marsej
marsej
Added new command that toggles breakpoint(s) at begin of scopes. Not bound by default.
Tested with todays build (however, llvm in extern folder was built in April 2021, if this is the problem let me know or if this doesn't repro). In the attached...
See diff screenshot: SourceEditWidgetContent.bf 0.43.0 138 KB initially, after FoS it's 120 KB. In addition to this it also remove "delete:myAllocator" the :myAllocator part was gone after Format on Save....
Maybe some sort of corruption in memory, only Debug build seems affected, particularly when stepping through the code. I previously saw this issue because I was step by step comparing...
When hovering mouse over GetSizedHelper below in Process.bf ... public static Result GetProcesses(List processes) { let result = Platform.GetSizedHelper(scope (outPtr, outSize, outResult) => ... the autocomplete tooltip shows: System.Result.ReturnValueDiscarded(); What...
In OllyDbg you can trace the execution path which creates a history/log of what points or commented lines the execution traveled through. A facility for something like that would help...
Start-to-ready time profiling, such that eg. System.Diagnostics.ElapsedMsFromPressingF5orCTRL+F5 in the code gets the elapsed time since pressing F5 in the IDE. The motivation for this is another issue I encountered: When...
Ability to add breakpoint on every entrypoint/method/function/procedure in a file or project in one shot. This could be even better if it could add a breakpoint to every { up...
Add global hotkey in IDE for breaking at any point in the user code The premise is that I can then press actionable keys in the game and also at...
In VS C# you can put breakpoints on {. Can be handy in situation like: ```cs if (Native.EnumProcessModulesEx(process.Handle, modulePointers, bytesNeeded, out bytesNeeded, (uint)Native.ModuleFilter.ListModulesAll)) BP { for (int index = 0;...