Current section

Files

Jump to
reach lib reach otp analysis state_transform.ex
Raw

lib/reach/otp/analysis/state_transform.ex

defmodule Reach.OTP.Analysis.StateTransform do
@moduledoc "Struct representing a state transformation performed within an OTP callback."
@derive JSON.Encoder
defstruct [:callback, :action, :location]
def new(attrs), do: struct!(__MODULE__, attrs)
end