euv-cli 0.3.10

The official CLI tool for the euv UI framework, providing dev/release profiles with run/build modes, hot reload, and wasm-pack integration.
1
2
3
4
5
6
7
8
/// Tracks the position and nesting level of a macro invocation
/// found during source scanning.
pub(crate) struct MacroSpan {
    /// Byte offset of the opening `{` after the macro name and `!`.
    pub(crate) start: usize,
    /// Byte offset of the closing `}` (exclusive — points one past it).
    pub(crate) end: usize,
}