swc_plugin_proxy/
lib.rs

1#![cfg_attr(not(feature = "__rkyv"), allow(warnings))]
2
3mod comments;
4mod memory_interop;
5mod metadata;
6mod source_map;
7#[cfg(feature = "__plugin_mode")]
8pub use comments::PluginCommentsProxy;
9#[cfg(feature = "__plugin_rt")]
10pub use comments::{HostCommentsStorage, COMMENTS};
11pub use memory_interop::AllocatedBytesPtr;
12#[cfg(feature = "__plugin_mode")]
13pub use metadata::TransformPluginProgramMetadata;
14#[cfg(feature = "__plugin_mode")]
15pub use source_map::PluginSourceMapProxy;