R Under development (unstable) (2025-04-29 r88182 ucrt) -- "Unsuffered Consequences" Copyright (C) 2025 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > library(winch) > > foo0 <- function() { + winch_call(bar0) + } > > bar0 <- function() { + winch_call(baz0) + } > > baz0 <- function() { + winch_add_trace_back() + } > > if (winch_available()) { + foo0() + } ▆ 1. └─global foo0() 2. └─winch::winch_call(bar0) 3. └─`/winch.dll`::register_frame_ctor() 4. └─global ``() 5. └─winch::winch_call(baz0) 6. └─`/winch.dll`::register_frame_ctor() 7. └─global ``() Warning message: `winch_add_trace_back()` was deprecated in winch 0.1.0. > > proc.time() user system elapsed 0.37 0.12 0.48