Current section
Files
Jump to
Current section
Files
lib/dune/parser/safe_ast.ex
defmodule Dune.Parser.SafeAst do
@moduledoc false
@type t :: %__MODULE__{
ast: String.t(),
atom_mapping: Dune.AtomMapping.t(),
compile_env: Dune.Parser.CompileEnv.t()
}
@enforce_keys [:ast, :atom_mapping, :compile_env]
defstruct [:ast, :atom_mapping, :compile_env]
end