ara_parser 0.6.6

A fault-tolerant, recursive-descent parser for Ara Programming Language 🌲
Documentation
default:
  @just --list

# build the library
build:
    cargo build

# regenerate test snapshots
snapshot:
    cargo run --bin ara-internal-snapshot

# detect linting problems.
lint:
    cargo fmt --all -- --check
    cargo clippy

# fix linting problems.
fix:
    cargo fmt
    cargo clippy --fix --allow-dirty --allow-staged
    cargo fix --allow-dirty --allow-staged

# run all integration tests, except third-party.
test filter='--all':
    cargo test -r {{filter}}