ziyy-core 0.1.4

Terminal Styling using HTML-like syntax.
Documentation
1
2
3
4
5
6
7
8
9
use crate::Span;

pub struct Scanner {
    source: Vec<char>,
    tokens: Vec<Token>,
    start: usize,
    current: usize,
    span: Span,
}