Stop using macro_escape as an inner attribute
In preparation for the rename.
This commit is contained in:
parent
73806ddd0f
commit
fc58479323
32 changed files with 55 additions and 47 deletions
|
|
@ -8,8 +8,6 @@
|
|||
// option. This file may not be copied, modified, or distributed
|
||||
// except according to those terms.
|
||||
|
||||
#![macro_escape]
|
||||
|
||||
#[macro_export]
|
||||
macro_rules! register_diagnostic {
|
||||
($code:tt, $description:tt) => (__register_diagnostic! { $code, $description });
|
||||
|
|
|
|||
|
|
@ -24,8 +24,10 @@ use std::num::Int;
|
|||
use std::str;
|
||||
use std::iter;
|
||||
|
||||
pub mod lexer;
|
||||
#[macro_escape]
|
||||
pub mod parser;
|
||||
|
||||
pub mod lexer;
|
||||
pub mod token;
|
||||
pub mod attr;
|
||||
|
||||
|
|
|
|||
|
|
@ -8,8 +8,6 @@
|
|||
// option. This file may not be copied, modified, or distributed
|
||||
// except according to those terms.
|
||||
|
||||
#![macro_escape]
|
||||
|
||||
pub use self::PathParsingMode::*;
|
||||
use self::ItemOrViewItem::*;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue