Current section
Files
Jump to
Current section
Files
lib/es_tree/throw_statement.ex
defmodule ESTree.ThrowStatement do
@type t :: %ESTree.ThrowStatement{
type: binary,
loc: ESTree.SourceLocation.t | nil,
argument: ESTree.Expression.t
}
defstruct type: "ThrowStatement",
loc: nil,
argument: %ESTree.EmptyExpression{}
end