Current section

Files

Jump to
reach lib reach otp analysis result.ex
Raw

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