Current section
Files
Jump to
Current section
Files
lib/reach/otp/analysis/result.ex
defmodule Reach.OTP.Analysis.Result do
@moduledoc "Struct holding the combined results of an OTP analysis run."
@derive Jason.Encoder
defstruct [
:behaviours,
:state_machines,
:hidden_coupling,
:missing_handlers,
:supervision,
:dead_replies,
:cross_process
]
def new(attrs), do: struct!(__MODULE__, attrs)
end