javascript_lexer

Crates.iojavascript_lexer
lib.rsjavascript_lexer
version0.1.8
sourcesrc
created_at2019-01-23 22:50:51.732014
updated_at2020-06-01 12:54:11.036239
descriptionJavascript lexer
homepage
repositoryhttps://github.com/retep007/javascript-lexer
max_upload_size
id110304
size112,778
Peter Hrvola (hrvolapeter)

documentation

https://retep007.github.io/javascript-lexer/

README

Javascript Lexer

Build Status Documentation Creates License

Javscript lexer implements high performance lexer of javscript as defined by ECMAScript 9

Output of the lexer together with description can be found in docs

Installation

add to cargo.toml

[dependencies]
javascript_lexer = "0.1"

Example

Lexer is invoked by running

extern crate javascript_lexer;

use javascript_lexer::Lexer;

fn main() {
    Lexer::parse_tokens("javascript");
}
Commit count: 11

cargo fmt