// #[plugin_transform] macro
#[cfg(any(
    docsrs,
    feature = "__common_plugin_transform",
    feature = "__css_plugin_transform",
))]
#[cfg_attr(
    docsrs,
    doc(cfg(any(
        feature = "__common_plugin_transform",
        feature = "__css_plugin_transform"
    )))
)]
pub use swc_plugin_macro::css_plugin_transform;
#[cfg(any(
    docsrs,
    feature = "__common_plugin_transform",
    feature = "__css_plugin_transform",
    feature = "__ecma_plugin_transform"
))]
#[cfg_attr(
    docsrs,
    doc(cfg(any(
        feature = "__common_plugin_transform",
        feature = "__css_plugin_transform",
        feature = "__ecma_plugin_transform"
    )))
)]
pub use swc_plugin_macro::plugin_transform;

/// exported __alloc / __free fn for the guest (plugin)
/// allows to allocate memory from the host side.
/// This should not be directly referenced.
#[cfg(all(feature = "__common_plugin_transform", target_arch = "wasm32"))]
pub mod memory {
    pub use swc_plugin::allocation::*;
}

/// Global HANDLER implementation for the plugin
/// for error reporting.
#[cfg(any(
    docsrs,
    feature = "__common_plugin_transform",
    feature = "__css_plugin_transform",
    feature = "__ecma_plugin_transform"
))]
#[cfg_attr(
    docsrs,
    doc(cfg(any(
        feature = "__common_plugin_transform",
        feature = "__css_plugin_transform",
        feature = "__ecma_plugin_transform"
    )))
)]
pub mod errors {
    /// global context HANDLER in plugin's transform function.
    pub static HANDLER: swc_plugin::pseudo_scoped_key::PseudoScopedKey<
        swc_common::errors::Handler,
    > = swc_plugin::pseudo_scoped_key::PseudoScopedKey {
        inner: once_cell::sync::OnceCell::new(),
    };
}

/// Plugin's environment metadata context.
#[cfg(any(
    docsrs,
    feature = "__common_plugin_transform",
    feature = "__css_plugin_transform",
    feature = "__ecma_plugin_transform"
))]
#[cfg_attr(
    docsrs,
    doc(cfg(any(
        feature = "__common_plugin_transform",
        feature = "__css_plugin_transform",
        feature = "__ecma_plugin_transform"
    )))
)]
pub mod metadata {
    pub use swc_common::plugin::metadata::TransformPluginMetadataContextKind;
    pub use swc_plugin_proxy::TransformPluginProgramMetadata;
}

/// Proxy to the host's data not attached to the AST, like sourcemap / comments.
/// Or interfaces to setup the plugin's environment from the host.
#[cfg(any(
    docsrs,
    feature = "__common_plugin_transform",
    feature = "__plugin_transform_host"
))]
#[cfg_attr(
    docsrs,
    doc(cfg(any(
        feature = "__common_plugin_transform",
        feature = "__plugin_transform_host"
    )))
)]
pub mod proxies {
    pub use swc_plugin_proxy::*;
}