aiken-lang 1.0.22-alpha

The Aiken compiler
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::ast::{ParsedCallArg, Span};

pub(crate) mod call;
pub(crate) mod field_access;
pub(crate) mod tuple_index;

pub(crate) enum Chain {
    Call(Vec<ParsedCallArg>, Span),
    FieldAccess(String, Span),
    TupleIndex(usize, Span),
}