ocelot-parser 0.1.2

Parser for the ocelot project
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// Token kinds needed for the first script-style `println()` programs.
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum TokenType {
    Identifier,
    String,
    LeftParen,
    RightParen,
    LeftBrace,
    RightBrace,
    Semicolon,
    Test,
    Unexpected,
    EndOfFile,
}