Current section
Files
Jump to
Current section
Files
lib/zig.parser/struct_literal.ex
defmodule Zig.Parser.StructLiteral do
defstruct [:type, :values, :location]
@type t :: %__MODULE__{
type: atom | nil,
values: %{optional(atom) => any}
}
end