Workflow when Debugger is too slow, module not exporting everything

Hi,
I am trying to debug a package I am writing and find myself often manually stepping through the functions in the REPL. It worked before I put everything into a module, but now I cannot copy paste the source from inside the module into the REPL without running into all the missing exports. I dont want to manually put in the “Module.” before every function call.
Is there a simpler method to enter the namespace of the module in the REPL, without exporting all functions?
The Debugger is too slow for stepping through.

thanks,
Victor

1 Like

This might help: When working on a project (not a package, not intention of re-use), I started usin - #2 by pdeffebach

1 Like