SpiderMonkey

A Full (or near full) implementation of the SpiderMonkey Parser API in Elixir

Parser API docs

Types

unary_operator :: :- | :+ | :! | :"~" | :typeof | :void | :delete

binary_operator :: :== | :!= | :=== | :!== | :< | :<= | :> | :>= | :"<<" | :">>" | :>>> | :+ | :- | :* | :/ | :% | :| | :^ | :& | :in | :instanceof | :..

logical_operator :: :|| | :&&

assignment_operator :: := | :"+=" | :"-=" | :"*=" | :"/=" | :"%=" | :"<<=" | :">>=" | :">>>=" | :"|=" | :"^=" | :"&="

update_operator :: :++ | :--