scie_model 0.1.0

Scie is a research about how to build simple code identify engine for different languages.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[macro_use]
extern crate serde_derive;

extern crate serde;

pub mod artifact;
pub mod contribute;
pub mod json_package;
pub mod language_config;
pub mod raw_language;
pub mod tm_grammar;

pub use self::contribute::Contribute;
pub use self::json_package::JsonPackage;
pub use self::language_config::{CharacterPair, CommentRule, IndentationRules, LanguageConfig};
pub use self::raw_language::RawLanguageExt;
pub use self::tm_grammar::TMGrammar;