Convert some more macro panics to diagnostics (#611)

This should hopefully be the last of the manually written diagnostics!
This commit is contained in:
Alex Crichton
2018-08-02 11:12:50 -05:00
committed by GitHub
parent 71dbd08c00
commit 4a78769349
5 changed files with 68 additions and 8 deletions

View File

@ -17,8 +17,10 @@ extern crate wasm_bindgen_shared as shared;
pub use codegen::TryToTokens;
pub use error::Diagnostic;
#[macro_use]
mod error;
pub mod ast;
mod codegen;
pub mod defined;
mod error;
pub mod util;