mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-09 20:12:21 +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
18 lines
No EOL
340 B
Text
18 lines
No EOL
340 B
Text
ShowFile("src/Inline.bf")
|
|
GotoText("//InlineTester")
|
|
ToggleBreakpoint()
|
|
RunWithCompiling()
|
|
|
|
StepInto()
|
|
AssertEvalEquals("argA", "10")
|
|
AssertEvalEquals("argB", "2")
|
|
|
|
StepOver()
|
|
AssertEvalEquals("argA", "11")
|
|
|
|
StepOut()
|
|
|
|
# For LLVM generation, there's an extra step required here
|
|
if (optlevel != "Og+") StepOver()
|
|
|
|
AssertEvalEquals("c", "13") |