verter_core 0.0.1-alpha.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
//! OXC-related utilities.
//!
//! This module contains utilities for working with OXC-parsed JavaScript/TypeScript:
//!
//! - `bindings`: Binding extraction from expressions (identifiers, functions, literals)
//! - `vue`: Vue-specific parsing utilities (v-for, v-slot)

pub mod bindings;
pub mod vue;

// Re-export everything from bindings at the oxc level for convenience
pub use bindings::*;