Current section

Files

Jump to
reach lib reach map summary.ex
Raw

lib/reach/map/summary.ex

defmodule Reach.Map.Summary do
@moduledoc "Struct for project-level summary statistics."
@derive Jason.Encoder
defstruct [
:modules,
:functions,
:call_graph_vertices,
:call_graph_edges,
:graph_nodes,
:graph_edges,
:effects
]
def new(attrs), do: struct!(__MODULE__, attrs)
end