Current section
Files
Jump to
Current section
Files
lib/es_tree/jsx_spread_attribute.ex
defmodule ESTree.JSXSpreadAttribute do
@type t :: %ESTree.JSXSpreadAttribute{
type: binary,
loc: ESTree.SourceLocation.t | nil,
argument: ESTree.Expression.t
}
defstruct type: "JSXSpreadAttribute",
loc: nil,
argument: %ESTree.EmptyExpression{}
end