ocelot-ast 0.1.2

Abstract syntax tree types for the ocelot project
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Abstract syntax tree types for `ocelot`.

pub mod expression;
pub mod expression_kind;
pub mod identifier_expression;
pub mod item;
pub mod item_kind;
pub mod println_statement;
pub mod script;
pub mod statement;
pub mod statement_kind;
pub mod string_literal_expression;
pub mod test_item;