erl_parse 0.0.8

Erlang source code parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::cst::commons;
use crate::cst::Pattern;

pub type Tuple = commons::Tuple<Pattern>;
pub type Map = commons::Map<Pattern>;
pub type Record = commons::Record<Pattern>;
pub type RecordFieldIndex = commons::RecordFieldIndex;
pub type List = commons::List<Pattern>;
pub type Bits = commons::Bits<Pattern>;
pub type Parenthesized = commons::Parenthesized<Pattern>;
pub type UnaryOpCall = commons::UnaryOpCall<Pattern>;
pub type BinaryOpCall = commons::BinaryOpCall<Pattern>;
pub type Match = commons::Match<Pattern>;