rhai_components 0.5.6

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

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