syntax::parser::token -> syntax::token

This commit is contained in:
Mazdak Farrokhzad 2019-10-11 12:46:32 +02:00
parent 53a50d4e4f
commit 9d6768a478
57 changed files with 64 additions and 61 deletions

View file

@ -1,7 +1,7 @@
use super::{Parser, PResult};
use crate::ast::{self, WhereClause, GenericParam, GenericParamKind, GenericBounds, Attribute};
use crate::parse::token;
use crate::token;
use crate::source_map::DUMMY_SP;
use syntax_pos::symbol::{kw, sym};