diff options
| author | Jeffrey Seyfried <jeffrey.seyfried@gmail.com> | 2017-03-16 10:23:33 +0000 |
|---|---|---|
| committer | Jeffrey Seyfried <jeffrey.seyfried@gmail.com> | 2017-03-29 00:41:08 +0000 |
| commit | 1979f96549fc41b544d2bf05eb868f26941f2b25 (patch) | |
| tree | ba5fe39527a03514c9e1eb1299a966956ce374c0 /src/libsyntax_pos/lib.rs | |
| parent | 07a34293faeb10757944ce2fa9d552cc2b189583 (diff) | |
| download | rust-1979f96549fc41b544d2bf05eb868f26941f2b25.tar.gz rust-1979f96549fc41b544d2bf05eb868f26941f2b25.zip | |
Move `syntax::ext::hygiene` to `syntax_pos::hygiene`.
Diffstat (limited to 'src/libsyntax_pos/lib.rs')
| -rw-r--r-- | src/libsyntax_pos/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libsyntax_pos/lib.rs b/src/libsyntax_pos/lib.rs index 3808923e772..1c9a05dadd1 100644 --- a/src/libsyntax_pos/lib.rs +++ b/src/libsyntax_pos/lib.rs @@ -23,6 +23,7 @@ html_root_url = "https://doc.rust-lang.org/nightly/")] #![deny(warnings)] +#![feature(const_fn)] #![feature(custom_attribute)] #![allow(unused_attributes)] #![feature(rustc_private)] @@ -41,6 +42,8 @@ use serialize::{Encodable, Decodable, Encoder, Decoder}; extern crate serialize; extern crate serialize as rustc_serialize; // used by deriving +pub mod hygiene; + pub type FileName = String; /// Spans represent a region of code, used for error reporting. Positions in spans |
