mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-09 20:12:21 +02:00
15 lines
No EOL
369 B
Text
15 lines
No EOL
369 B
Text
# Temporarily broken in LLVM
|
|
if (platform != "Win64") Stop()
|
|
|
|
ShowFile("src/Splats.bf")
|
|
GotoText("//SplatTester_SplatC_Call")
|
|
ToggleBreakpoint()
|
|
RunWithCompiling()
|
|
|
|
StepInto()
|
|
AssertEvalEquals("this", "{ mC='Z' mB=1.2 mA=123 }")
|
|
#This fails currently
|
|
#AssertEvalEquals("GetB()", "1.2")
|
|
StepOver()
|
|
AssertEvalEquals("sc.GetB()", "1.2")
|
|
AssertEvalEquals("GetC(sc)", "123") |