valkyrie-ast 0.1.12

Strong typed abstract syntax tree of valkyrie language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod string_formatter;
pub mod string_html;
pub mod string_literal;
pub mod string_template;

use crate::{helper::ValkyrieNode, ExpressionKind, IdentifierNode};
use alloc::{
    string::{String, ToString},
    vec::Vec,
};
use core::{
    fmt::{Display, Formatter, Write},
    ops::Range,
};
#[cfg(feature = "lispify")]
use lispify::{Lisp, Lispify};
#[cfg(feature = "pretty-print")]
use pretty_print::{PrettyPrint, PrettyProvider, PrettyTree};