inktree 0.1.0

An incremental syntax tree engine for fast, expressive language tooling in Rust
Documentation
1
2
3
4
5
6
7
8
9
use crate::derive::properties::PropertyKind;

use PropertyKind::*;

pub static ALLOWED_NODE: &[PropertyKind] = &[Root];
pub static ALLOWED_PRATT: &[PropertyKind] = &[Root];
pub static ALLOWED_RULE: &[PropertyKind] = &[];
pub static ALLOWED_TOKEN: &[PropertyKind] = &[Extra];
pub static ALLOWED_STATIC_TOKEN: &[PropertyKind] = &[OpInfix, OpPrefix, OpPostfix, Extra];