SpiderMonkey
A Full (or near full) implementation of the SpiderMonkey Parser API in Elixir
Types ↑
unary_operator :: :- | :+ | :! | :"~" | :typeof | :void | :delete
binary_operator :: :== | :!= | :=== | :!== | :< | :<= | :> | :>= | :"<<" | :">>" | :>>> | :+ | :- | :* | :/ | :% | :| | :^ | :& | :in | :instanceof | :..
logical_operator :: :|| | :&&
assignment_operator :: := | :"+=" | :"-=" | :"*=" | :"/=" | :"%=" | :"<<=" | :">>=" | :">>>=" | :"|=" | :"^=" | :"&="
update_operator :: :++ | :--