Packages

Represents the JavaScript AST from the ESTree spec. Includes tools for building an AST and generating code from it.

Current section

Files

Jump to
estree lib es_tree object_pattern_property.ex
Raw

lib/es_tree/object_pattern_property.ex

defmodule ESTree.ObjectPatternProperty do
@type t :: %ESTree.ObjectPatternProperty{
key: ESTree.Literal.t | ESTree.Identifier.t,
value: ESTree.Pattern.t
}
defstruct key: %ESTree.Literal{},
value: %ESTree.EmptyExpression{}
end