mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-07 19:18:19 +02:00

Fixed working dir for 'launch' Fixed attaching to process - stack trace wasn't updating properly Fixed more custom compile stuff, and BeefySysLib bin destination Fixed linking issues related to Bfp* and Bp* exports in both BeefRT and BeefySysLib Fixed a crash with conditional breakpoints Fixed release mode IDE issues (related to hot swap breakpoints) Fixed hotswapping type data with LLVM builds Fixed 'Pause' state processing Running_ToTempBreakpoint for ScriptManager Fixed Win32 step out when there's an ESP adjustment at the return site Made step-out skip over "unimportant" instructions at return site
20 lines
No EOL
354 B
Text
20 lines
No EOL
354 B
Text
ShowFile("src/HotSwap_Data.bf")
|
|
GotoText("//Test_Test01")
|
|
ToggleBreakpoint()
|
|
RunWithCompiling()
|
|
|
|
StepInto()
|
|
ToggleCommentAt("StructA_mA2")
|
|
ToggleCommentAt("Test01_mA2")
|
|
SetExpectError("data changes")
|
|
Compile()
|
|
ExpectError()
|
|
|
|
StepOver()
|
|
StepOver()
|
|
Compile()
|
|
StepInto()
|
|
StepOver()
|
|
StepOver()
|
|
AssertEvalEquals("val", "101")
|
|
AssertEvalEquals("sc.mA2", "101") |