Rust implementation of the AVM1 Abstract Syntax Tree (AST).
This repo uses Git submodules for its test samples:
```sh
git clone --recurse-submodules git://github.com/open-flash/swf-parser.git
git submodule update --init --recursive --remote ```
This library is a standard Cargo project. You can test your changes with
cargo test
. The commands must be run from the rs
directory.
Code formatting is checked using rustfmt
:
```
rustfmt
rustup component add rustfmt
cargo fmt --all -- --check
cargo fmt --all ```
Prefer non-master
branches when sending a PR so your changes can be rebased if
needed. All the commits must be made on top of master
(fast-forward merge).
CI must pass for changes to be accepted.