Current section
Files
Jump to
Current section
Files
src/stacky@internal@sub_dir@other_module.erl
-module(stacky@internal@sub_dir@other_module).
-compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch]).
-export([other_function/0]).
-spec other_function() -> nil.
other_function() ->
Stack = begin
_pipe = stacky:trace(),
pprint:debug(_pipe)
end,
Frame = begin
_pipe@1 = Stack,
_pipe@2 = stacky:frame(_pipe@1, 0),
pprint:debug(_pipe@2)
end,
_pipe@3 = Frame,
_pipe@4 = stacky:gleam_module_name(_pipe@3),
pprint:debug(_pipe@4),
_pipe@5 = Frame,
_pipe@6 = stacky:function_name(_pipe@5),
pprint:debug(_pipe@6),
_pipe@7 = Frame,
stacky:print_frame(_pipe@7).