Current section
Files
Jump to
Current section
Files
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