Conlang/cl-token/src/lib.rs
2024-02-29 21:04:45 -06:00

14 lines
292 B
Rust

//! # Token
//!
//! Stores a component of a file as a [Type], some [Data], and a line and column number
#![warn(clippy::all)]
#![feature(decl_macro)]
pub mod token;
pub mod token_data;
pub mod token_type;
pub use token::Token;
pub use token_data::Data;
pub use token_type::{Keyword, Type};