oak-crystal 0.0.2

Crystal language parser with support for modern Crystal syntax and Ruby-like features.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![feature(new_range_api)]
#![doc = include_str!("readme.md")]
#![doc(html_logo_url = "https://raw.githubusercontent.com/ygg-lang/oaks/refs/heads/dev/documents/logo.svg")]
#![doc(html_favicon_url = "https://raw.githubusercontent.com/ygg-lang/oaks/refs/heads/dev/documents/logo.svg")]

mod ast;
pub mod language;
pub mod lexer;
pub mod parser;

pub use crate::{
    ast::CrystalRoot,
    language::CrystalLanguage,
    lexer::{CrystalLexer, CrystalTokenType},
    parser::{CrystalElementType, CrystalParser},
};