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/expr.rs | |
| parent | 28db7c5968ea15ad2c26d9267ab722994ae371c0 (diff) | |
| download | rust-d6d93b3d829116dbcd0c27d746a5ffd46f703ede.tar.gz rust-d6d93b3d829116dbcd0c27d746a5ffd46f703ede.zip | |
parser: move into stmt.rs
Diffstat (limited to 'src/libsyntax/parse/parser/expr.rs')
| -rw-r--r-- | src/libsyntax/parse/parser/expr.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/libsyntax/parse/parser/expr.rs b/src/libsyntax/parse/parser/expr.rs index 19d5bcd3ee9..4432c1329cb 100644 --- a/src/libsyntax/parse/parser/expr.rs +++ b/src/libsyntax/parse/parser/expr.rs @@ -1,11 +1,10 @@ use super::{Parser, PResult, Restrictions, PrevTokenKind, TokenType, PathStyle}; -use super::{BlockCheckMode, BlockMode, SemiColonMode}; +use super::{BlockMode, SemiColonMode}; use super::{SeqSep, TokenExpectType}; use crate::maybe_recover_from_interpolated_ty_qpath; use crate::ptr::P; -use crate::ast::{self, Attribute, AttrStyle}; -use crate::ast::{Ident, CaptureBy}; +use crate::ast::{self, Attribute, AttrStyle, Ident, CaptureBy, BlockCheckMode}; use crate::ast::{Expr, ExprKind, RangeLimits, Label, Movability, IsAsync, Arm}; use crate::ast::{Ty, TyKind, FunctionRetTy, Arg, FnDecl}; use crate::ast::{BinOpKind, BinOp, UnOp}; |
