Credo.Execution.get_assign

You're seeing just the function get_assign, go back to Credo.Execution module for more information.
Link to this function

get_assign(exec, name, default \\ nil)

View Source

Returns the assign with the given name for the given exec struct (or return the given default value).

Credo.Execution.get_assign(exec, "foo")
# => nil

Credo.Execution.get_assign(exec, "foo", 42)
# => 42