These were used to provide the `ts_record_*` functions regardless of whether the `allocation-tracking` feature is enabled. The allocation tracking code is now implemented entirely in the `lib` crate, and only when the feature is enabled, and so these stubs are no longer needed.
18 lines
274 B
Rust
18 lines
274 B
Rust
pub mod config;
|
|
pub mod error;
|
|
pub mod generate;
|
|
pub mod highlight;
|
|
pub mod loader;
|
|
pub mod logger;
|
|
pub mod parse;
|
|
pub mod query;
|
|
pub mod query_testing;
|
|
pub mod tags;
|
|
pub mod test;
|
|
pub mod test_highlight;
|
|
pub mod util;
|
|
pub mod wasm;
|
|
pub mod web_ui;
|
|
|
|
#[cfg(test)]
|
|
mod tests;
|