syncat-stylesheet 3.6.0

Parser for Syncat Stylesheets.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use tree_sitter::Language;

mod ast;
mod error;
mod parser;
pub mod resolver;
mod style;
mod stylesheet;

pub use ast::Color;
pub use error::{Error, ErrorKind, Result};
pub use style::{FromValueError, Style, Value};
use stylesheet::{Matches, QuerySlice};
pub use stylesheet::{Query, Stylesheet};

unsafe extern "C" {
    fn tree_sitter_syncat_stylesheet() -> Language;
}