verter_core 0.0.1-beta.1

Vue 3 SFC compiler - transforms Vue Single File Components to render functions with TypeScript support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! SFC tokenizer — produces a flat event stream from Vue source text.
//!
//! Uses [`byte`] for zero-copy byte-level tokenization, emitting [`Event`]
//! values consumed by the [`parser`](crate::parser).

pub mod byte;
pub mod helpers;
pub mod types;

pub use types::{Event, QuoteType};

#[cfg(test)]
mod byte_tests;