vyre-libs 0.6.1

vyre Category A library ecosystem - pure-IR compositions over vyre-ops hardware primitives
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! GPU DFA lexer pipeline: classifier table, lexer kernel, token
//! constants, keyword recogniser.

/// Source-positioned diagnostics decoded from lexer error tokens.
pub mod diagnostics;
/// Post-lex keyword promotion (identifier → keyword token id).
pub mod keyword;
/// Maximally-munching DFA-driven lexer kernel.
pub mod lexer;
/// Token-id constants (`TOK_*`) shared by every C-parser stage.
pub mod tokens;