Current section
Files
Jump to
Current section
Files
lib/reach/inspect/data/variable_summary.ex
defmodule Reach.Inspect.Data.VariableSummary do
@moduledoc "Struct for a variable flow summary."
@derive Jason.Encoder
defstruct [:name, :role, :file, :line]
def new(attrs), do: struct!(__MODULE__, attrs)
end