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

lib/es_tree/position.ex

defmodule ESTree.Position do
@type t :: %ESTree.Position{ line: pos_integer, column: non_neg_integer }
defstruct line: 1, column: 0
end