rhai_components 0.5.10

JSX-like syntax extension for Rhai
Documentation
1
2
3
4
5
6
7
8
9
10
11
use super::expression_reference::ExpressionReference;
use super::tag::Tag;

type SmartString = smartstring::SmartString<smartstring::LazyCompact>;

#[derive(Debug)]
pub enum OutputSemanticSymbol {
    BodyExpression(ExpressionReference),
    Tag(Tag),
    Text(SmartString),
}