diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-08-11 20:32:29 +0200 |
|---|---|---|
| committer | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-08-11 20:32:29 +0200 |
| commit | d6d93b3d829116dbcd0c27d746a5ffd46f703ede (patch) | |
| tree | 02891445ee5b581367de1f67dfcefc1452e6a06d /src/libsyntax/parse/parser/path.rs | |
| parent | 28db7c5968ea15ad2c26d9267ab722994ae371c0 (diff) | |
| download | rust-d6d93b3d829116dbcd0c27d746a5ffd46f703ede.tar.gz rust-d6d93b3d829116dbcd0c27d746a5ffd46f703ede.zip | |
parser: move into stmt.rs
Diffstat (limited to 'src/libsyntax/parse/parser/path.rs')
| -rw-r--r-- | src/libsyntax/parse/parser/path.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libsyntax/parse/parser/path.rs b/src/libsyntax/parse/parser/path.rs index 2760cd38cab..3eb4d45045a 100644 --- a/src/libsyntax/parse/parser/path.rs +++ b/src/libsyntax/parse/parser/path.rs @@ -1,11 +1,11 @@ -use super::{Parser, PResult, TokenType, BlockCheckMode}; +use super::{Parser, PResult, TokenType}; use crate::{maybe_whole, ThinVec}; use crate::ast::{self, QSelf, Path, PathSegment, Ident, ParenthesizedArgs, AngleBracketedArgs}; -use crate::ast::{AnonConst, GenericArg, AssocTyConstraint, AssocTyConstraintKind}; +use crate::ast::{AnonConst, GenericArg, AssocTyConstraint, AssocTyConstraintKind, BlockCheckMode}; use crate::parse::token::{self, Token}; use crate::source_map::{Span, BytePos}; -use crate::symbol::{kw}; +use crate::symbol::kw; use std::mem; use log::debug; |
