commit | 94d304fc6033ab553c53bf4ebc8eee265f4a8c6d | [log] [tgz] |
---|---|---|
author | David Tolnay <dtolnay@gmail.com> | Thu Aug 30 23:43:53 2018 -0700 |
committer | David Tolnay <dtolnay@gmail.com> | Thu Aug 30 23:43:59 2018 -0700 |
tree | 5c73a783cb2f9b67b503b98c0421cea8a7710341 | |
parent | b83937a06c5c820dbcfff3dc338671a4024d19ca [diff] [blame] |
Move extension traits into top level ext module
diff --git a/src/path.rs b/src/path.rs index 4a63b65..3c4ce07 100644 --- a/src/path.rs +++ b/src/path.rs
@@ -227,10 +227,11 @@ #[cfg(feature = "parsing")] pub mod parsing { use super::*; + #[cfg(feature = "full")] use expr; + use ext::IdentExt; use parse::{Parse, ParseStream, Result}; - use synom::ext::IdentExt; impl Parse for Path { fn parse(input: ParseStream) -> Result<Self> {