Current section
Files
Jump to
Current section
Files
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