Sourceror.get_line
You're seeing just the function
get_line
, go back to Sourceror module for more information.
Specs
Returns the line of a node. If none is found, the default value is returned(defaults to 1).
A default of nil
may also be provided if the line number is meant to be
coalesced with a value that is not known upfront.
iex> Sourceror.get_line({:foo, [line: 5], []})
5
iex> Sourceror.get_line({:foo, [], []}, 3)
3