Packages

A simple tracer with recording capabilities that would help you in live debugging.

Current section

Files

Jump to
smart_tracer lib support test_module.ex
Raw

lib/support/test_module.ex

defmodule SmartTracer.Support.FakeModule do
@moduledoc false
@doc false
def hello(name) do
"Hello, my name is #{get_name(name)}"
end
defp get_name(name) do
"NAME-#{name}"
end
end