oak-crystal 0.0.0

High-performance incremental ActionScript parser for the oak ecosystem with flexible configuration, supporting modern ActionScript features and Flash development.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![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")]

pub mod kind;
mod language;
mod lexer;

pub use crate::{
    kind::{CrystalSyntaxKind, CrystalToken},
    language::CrystalLanguage,
    lexer::CrystalLexer,
};