mirror of https://github.com/boa-dev/boa.git
Browse Source
* Added the ability to dump the token stream or ast in bin. The dump functionality works both for files and REPL. With --dump-tokens or -t for short it dumps the token stream to stdout and --dump-ast or -a for short to dump the ast to stdout. The dumping of tokens and ast is mutually exclusive. and when dumping it wont run the code. * Fixed some issues with rustfmt. * Added serde serialization and deserialization to token and the ast. * Added a dynamic multi-format dumping of token stream and ast in bin. - Changed the --dump-tokens and --dump-ast to be an optional argument that optionally takes a value of format type ([--opt=[val]]). - The default format for --dump-tokens and --dump-ast is Debug format which calls std::fmt::Debug. - Added Json and JsonMinified format for both dumps, use serde_json internally. - It is easy to support other format types, such as Toml with toml-rs for example. * Made serde an optional dependency. - Serde serialization and deserialization can be switched on by using the feature flag "serde-ast". * Changed the JSON dumping format. - Now Json dumping format prints the data in minefied JSON form by default. - Removed JsonMinified. - Added JsonPretty as a way to dump the data in pretty printed JSON format. * Updated the docs.pull/290/head
HalidOdat
5 years ago
committed by
GitHub
14 changed files with 231 additions and 20 deletions
Loading…
Reference in new issue