1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//! A common backend for bindgen crates.
//!
//! This (internal) crate provides functionality common to multiple bindgen
//! dependency crates. There are 4 main things exported from this crate:
//!
//! 1. [**`TryToTokens`**](./trait.TryToTokens.html)
//!
//!    Provides the ability to attempt conversion from an AST struct
//!    into a TokenStream
//!
//! 2. [**`Diagnostic`**](./struct.Diagnostic.html)
//!
//!    A struct used to provide diagnostic responses for failures of said
//!    tokenization
//!
//! 3. [**`ast`**](./ast/index.html)
//!
//!    Abstract Syntax Tree types used to represent a Rust program, with
//!    the necessary metadata to generate bindings for it
//!
//! 4. [**`util`**](./util/index.html)
//!
//!    Common utilities for manipulating parsed types from syn
//!

#![recursion_limit = "256"]
#![cfg_attr(feature = "extra-traits", deny(missing_debug_implementations))]
#![deny(missing_docs)]
#![doc(html_root_url = "https://docs.rs/wasm-bindgen-backend/0.2")]

pub use crate::codegen::TryToTokens;
pub use crate::error::Diagnostic;

#[macro_use]
mod error;

pub mod ast;
mod codegen;
mod encode;
pub mod util;