joker 0.0.5

A JavaScript tokenizer.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
extern crate serde_json;
extern crate unjson;

pub mod word;
pub mod token;
pub mod lexer;
pub mod context;
mod char;
mod reader;
mod lookahead;
mod test;
pub mod track;
pub mod error;
pub mod result;

pub use lexer::Lexer;