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 meta_property.ex
Raw

lib/es_tree/meta_property.ex

defmodule ESTree.MetaProperty do
@type t :: %ESTree.MetaProperty{
type: binary,
loc: ESTree.SourceLocation.t | nil,
meta: ESTree.Identifier.t,
property: ESTree.Identifier.t
}
defstruct type: "MetaProperty",
loc: nil,
meta: %ESTree.Identifier{},
property: %ESTree.Identifier{}
end