This crate provides a generic asynchronous lexer that operates on files with tokio. Tokens are parsed with provided async closures.
```rust use crate::error::TapeResult; use crate::input_reader::InputReader; use crate::lexer::Lexer; use crate::token::{Token, TokenCheckerFn}; use std::io::Cursor; use std::sync::Arc;
struct NumberToken(i32); struct StringToken(String); struct WhiteSpaceToken;
async fn parsenumbertoken(reader: &mut InputReader) -> TapeResult
async fn parsewhitespacetoken(reader: &mut InputReader) -> TapeResult
async fn parsestringtoken(reader: &mut InputReader) -> TapeResult
async fn main() {
// functions that try to parse the token into an object
let checkers: Vec
// scan starts scanning the provided input
let tokens = lexer.scan().await.unwrap();
assert!(!tokens.is_empty());
let mut tokens = tokens.into_iter();
// use the is, try_as and try_into methods on the token type to get the underlying value
assert!(tokens.next().unwrap().is::<StringToken>());
assert!(tokens.next().unwrap().is::<WhiteSpaceToken>());
assert!(tokens.next().unwrap().is::<NumberToken>());
} ```
Apache-2.0