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

lib/es_tree/jsx_closing_element.ex

defmodule ESTree.JSXClosingElement do
@type t :: %ESTree.JSXClosingElement{
type: binary,
loc: ESTree.SourceLocation.t | nil,
name: ESTree.JSXIdentifier.t | ESTree.JSXMemberExpression.t | ESTree.JSXNamespacedName.t
}
defstruct type: "JSXClosingElement", loc: nil, name: nil
end