diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-10-11 12:46:32 +0200 |
|---|---|---|
| committer | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-11-07 13:50:12 +0100 |
| commit | 9d6768a478b8a6afa1e16dfebe9d79bd3f508cdf (patch) | |
| tree | e1ac4f40d23f1b1600d24362bc53f1536eb977c7 /src/libsyntax/tokenstream.rs | |
| parent | 53a50d4e4fdb0b242d637142d0b2d64e7054c35b (diff) | |
| download | rust-9d6768a478b8a6afa1e16dfebe9d79bd3f508cdf.tar.gz rust-9d6768a478b8a6afa1e16dfebe9d79bd3f508cdf.zip | |
syntax::parser::token -> syntax::token
Diffstat (limited to 'src/libsyntax/tokenstream.rs')
| -rw-r--r-- | src/libsyntax/tokenstream.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/tokenstream.rs b/src/libsyntax/tokenstream.rs index a51d208704a..6e1bb85ce1a 100644 --- a/src/libsyntax/tokenstream.rs +++ b/src/libsyntax/tokenstream.rs @@ -13,7 +13,7 @@ //! and a borrowed `TokenStream` is sufficient to build an owned `TokenStream` without taking //! ownership of the original. -use crate::parse::token::{self, DelimToken, Token, TokenKind}; +use crate::token::{self, DelimToken, Token, TokenKind}; use syntax_pos::{Span, DUMMY_SP}; #[cfg(target_arch = "x86_64")] |
