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

lib/es_tree/class_expression.ex

defmodule ESTree.ClassExpression do
@type t :: %ESTree.ClassExpression{
type: binary,
loc: ESTree.SourceLocation.t | nil,
body: ESTree.ClassBody.t,
superClass: ESTree.Expression.t | nil
}
defstruct type: "ClassExpression",
loc: nil,
body: %ESTree.ClassBody{},
superClass: nil
end