File tree 5 files changed +3
-7
lines changed
5 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ version = "0.0.0"
7
7
name = " rustc_errors"
8
8
path = " lib.rs"
9
9
crate-type = [" dylib" ]
10
- test = false
11
10
12
11
[dependencies ]
13
12
log = { path = " ../liblog" }
Original file line number Diff line number Diff line change @@ -24,12 +24,11 @@ pub use self::SelfTy::*;
24
24
pub use self :: FunctionRetTy :: * ;
25
25
pub use self :: Visibility :: * ;
26
26
27
- use syntax;
28
27
use syntax:: abi:: Abi ;
29
28
use syntax:: ast;
30
29
use syntax:: attr;
31
30
use syntax:: attr:: { AttributeMethods , AttrMetaMethods } ;
32
- use syntax:: codemap:: { self , Spanned } ;
31
+ use syntax:: codemap:: Spanned ;
33
32
use syntax:: parse:: token:: { self , InternedString , keywords} ;
34
33
use syntax:: ptr:: P ;
35
34
use syntax_pos:: { self , DUMMY_SP , Pos } ;
Original file line number Diff line number Diff line change 13
13
pub use self :: StructType :: * ;
14
14
pub use self :: TypeBound :: * ;
15
15
16
- use syntax;
17
16
use syntax:: abi;
18
17
use syntax:: ast;
19
18
use syntax:: ast:: { Name , NodeId } ;
Original file line number Diff line number Diff line change @@ -6002,8 +6002,8 @@ impl<'a> Parser<'a> {
6002
6002
// single-variant-enum... :
6003
6003
let m = Mac_ { path : pth, tts : tts, ctxt : EMPTY_CTXT } ;
6004
6004
let m: ast:: Mac = codemap:: Spanned { node : m,
6005
- span : mk_sp ( mac_lo,
6006
- self . last_span . hi ) } ;
6005
+ span : mk_sp ( mac_lo,
6006
+ self . last_span . hi ) } ;
6007
6007
6008
6008
if delim != token:: Brace {
6009
6009
if !self . eat ( & token:: Semi ) {
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ version = "0.0.0"
7
7
name = " syntax_pos"
8
8
path = " lib.rs"
9
9
crate-type = [" dylib" ]
10
- test = false
11
10
12
11
[dependencies ]
13
12
serialize = { path = " ../libserialize" }
You can’t perform that action at this time.
0 commit comments