Ara Parser

A fault-tolerant, recursive-descent parser for Ara Programming Language 🌲

Note: This project is a hard-fork of php-rust-tools/parser

Special thanks to the original authors for their work.


Usage

Add ara_parser to your Cargo.toml, and you're good to go!

toml [dependencies] ara_parser = "0.1.0"

Example

```rust use araparser::parser; use arareporting::builder::Charset; use arareporting::builder::ColorChoice; use arareporting::builder::ReportBuilder; use arareporting::error::Error; use arasource::loader::load_directories;

fn main() -> Result<(), Error> {

let root = "/path/to/ara/project";

let source_map = load_directories(root, vec![&format!("{}/{}", root, "src/")]).unwrap();

match parser::parse_map(&source_map) {
    Ok(tree_map) => tree_map.trees.iter().for_each(|tree| {
        println!("{:#?}", tree.definitions);
    }),
    Err(report) => {
        ReportBuilder::new(&source_map, report)
            .with_charset(Charset::Unicode)
            .with_colors(ColorChoice::Always)
            .print()?;
    }
}

Ok(())

} ```

Syntax

```ara type num = int|float;

final readonly class Collection { public function __construct( private vec $items = vec[], ) {}

public function filter((fn(T): bool) $func): Collection<T> {
    $result = vec[];
    foreach $this->items as $item {
        if $func($item) {
            $result[] = $item;
        }
    }

    return new Collection::<T>($result);
}

public function map<Tout>((fn(T): Tout) $func): Collection<Tout> {
    $result = vec[];
    foreach $this->items as $item {
        $result[] = $func($item);
    }

    return new Collection::<Tout>($result);
}

public function sum(): int where T is num {
    $result = 0;
    foreach $this->items as $item {
        $result += $item;
    }

    $result
}

}

function example(): int { $collection = new Collection::(vec[ 1, 2, 3.0, 4.0, 5, 6, 7.0, 9.0, 10 ]);

$collection
  ->filter(fn(num $n): bool => $n < 8)
  ->map::<float>(
    fn(num $n): float => $n is float ? $n : $n + 0.0
  )
  ->sum()

} ```

Diffrerences from PHP

Ara syntax is similar to PHP, with a handful of notable differences, the following is a list of the features that Ara does not support from PHP:

Features

Ara introduces the following features:

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.