Current section

Files

Jump to
hologram lib hologram compiler context.ex
Raw

lib/hologram/compiler/context.ex

defmodule Hologram.Compiler.Context do
@moduledoc false
@type t :: %__MODULE__{
match_operator?: bool,
module: module,
pattern?: bool
}
defstruct match_operator?: false, module: nil, pattern?: false
end