Format with stable rustfmt-preview, then with rustfmt-0.9 again.
This commit is contained in:
@@ -3,17 +3,15 @@
|
||||
//! The `cton_reader` library supports reading .cton files. This functionality is needed for testing
|
||||
//! Cretonne, but is not essential for a JIT compiler.
|
||||
|
||||
#![deny(missing_docs,
|
||||
trivial_numeric_casts,
|
||||
unused_extern_crates)]
|
||||
#![deny(missing_docs, trivial_numeric_casts, unused_extern_crates)]
|
||||
|
||||
extern crate cretonne;
|
||||
|
||||
pub use error::{Location, Result, Error};
|
||||
pub use error::{Error, Location, Result};
|
||||
pub use parser::{parse_functions, parse_test};
|
||||
pub use testcommand::{TestCommand, TestOption};
|
||||
pub use testfile::{TestFile, Details, Comment};
|
||||
pub use isaspec::{IsaSpec, parse_options};
|
||||
pub use testfile::{Comment, Details, TestFile};
|
||||
pub use isaspec::{parse_options, IsaSpec};
|
||||
pub use sourcemap::SourceMap;
|
||||
|
||||
mod error;
|
||||
|
||||
Reference in New Issue
Block a user