dark_vm/tokens/mod.rs
1/// The token module, which contains the Token struct. This struct maintains the position and the kind of the token. These are generated by the lexer.
2pub mod token;
3
4/// The token_kind module, which contains the TokenKind enum. This enum describes the various kinds of tokens that are recognized.
5pub mod token_kind;