@@ -452,7 +452,7 @@ impl<'a> State<'a> {
452
452
self . end ( )
453
453
}
454
454
455
- pub fn commasep_exprs ( & mut self , b : Breaks , exprs : & [ P < hir:: Expr > ] ) -> io:: Result < ( ) > {
455
+ pub fn commasep_exprs ( & mut self , b : Breaks , exprs : & [ hir:: Expr ] ) -> io:: Result < ( ) > {
456
456
self . commasep_cmnt ( b, exprs, |s, e| s. print_expr ( & e) , |e| e. span )
457
457
}
458
458
@@ -1200,7 +1200,7 @@ impl<'a> State<'a> {
1200
1200
}
1201
1201
1202
1202
1203
- fn print_call_post ( & mut self , args : & [ P < hir:: Expr > ] ) -> io:: Result < ( ) > {
1203
+ fn print_call_post ( & mut self , args : & [ hir:: Expr ] ) -> io:: Result < ( ) > {
1204
1204
self . popen ( ) ?;
1205
1205
self . commasep_exprs ( Inconsistent , args) ?;
1206
1206
self . pclose ( )
@@ -1218,10 +1218,10 @@ impl<'a> State<'a> {
1218
1218
Ok ( ( ) )
1219
1219
}
1220
1220
1221
- fn print_expr_vec ( & mut self , exprs : & [ P < hir:: Expr > ] ) -> io:: Result < ( ) > {
1221
+ fn print_expr_vec ( & mut self , exprs : & [ hir:: Expr ] ) -> io:: Result < ( ) > {
1222
1222
self . ibox ( indent_unit) ?;
1223
1223
word ( & mut self . s , "[" ) ?;
1224
- self . commasep_exprs ( Inconsistent , & exprs[ .. ] ) ?;
1224
+ self . commasep_exprs ( Inconsistent , exprs) ?;
1225
1225
word ( & mut self . s , "]" ) ?;
1226
1226
self . end ( )
1227
1227
}
@@ -1274,24 +1274,24 @@ impl<'a> State<'a> {
1274
1274
Ok ( ( ) )
1275
1275
}
1276
1276
1277
- fn print_expr_tup ( & mut self , exprs : & [ P < hir:: Expr > ] ) -> io:: Result < ( ) > {
1277
+ fn print_expr_tup ( & mut self , exprs : & [ hir:: Expr ] ) -> io:: Result < ( ) > {
1278
1278
self . popen ( ) ?;
1279
- self . commasep_exprs ( Inconsistent , & exprs[ .. ] ) ?;
1279
+ self . commasep_exprs ( Inconsistent , exprs) ?;
1280
1280
if exprs. len ( ) == 1 {
1281
1281
word ( & mut self . s , "," ) ?;
1282
1282
}
1283
1283
self . pclose ( )
1284
1284
}
1285
1285
1286
- fn print_expr_call ( & mut self , func : & hir:: Expr , args : & [ P < hir:: Expr > ] ) -> io:: Result < ( ) > {
1286
+ fn print_expr_call ( & mut self , func : & hir:: Expr , args : & [ hir:: Expr ] ) -> io:: Result < ( ) > {
1287
1287
self . print_expr_maybe_paren ( func) ?;
1288
1288
self . print_call_post ( args)
1289
1289
}
1290
1290
1291
1291
fn print_expr_method_call ( & mut self ,
1292
1292
name : Spanned < ast:: Name > ,
1293
1293
tys : & [ P < hir:: Ty > ] ,
1294
- args : & [ P < hir:: Expr > ] )
1294
+ args : & [ hir:: Expr ] )
1295
1295
-> io:: Result < ( ) > {
1296
1296
let base_args = & args[ 1 ..] ;
1297
1297
self . print_expr ( & args[ 0 ] ) ?;
@@ -1340,7 +1340,7 @@ impl<'a> State<'a> {
1340
1340
self . print_expr ( expr) ?;
1341
1341
}
1342
1342
hir:: ExprArray ( ref exprs) => {
1343
- self . print_expr_vec ( & exprs[ .. ] ) ?;
1343
+ self . print_expr_vec ( exprs) ?;
1344
1344
}
1345
1345
hir:: ExprRepeat ( ref element, ref count) => {
1346
1346
self . print_expr_repeat ( & element, & count) ?;
@@ -1349,13 +1349,13 @@ impl<'a> State<'a> {
1349
1349
self . print_expr_struct ( path, & fields[ ..] , wth) ?;
1350
1350
}
1351
1351
hir:: ExprTup ( ref exprs) => {
1352
- self . print_expr_tup ( & exprs[ .. ] ) ?;
1352
+ self . print_expr_tup ( exprs) ?;
1353
1353
}
1354
1354
hir:: ExprCall ( ref func, ref args) => {
1355
- self . print_expr_call ( & func, & args[ .. ] ) ?;
1355
+ self . print_expr_call ( & func, args) ?;
1356
1356
}
1357
1357
hir:: ExprMethodCall ( name, ref tys, ref args) => {
1358
- self . print_expr_method_call ( name, & tys[ ..] , & args[ .. ] ) ?;
1358
+ self . print_expr_method_call ( name, & tys[ ..] , args) ?;
1359
1359
}
1360
1360
hir:: ExprBinary ( op, ref lhs, ref rhs) => {
1361
1361
self . print_expr_binary ( op, & lhs, & rhs) ?;
0 commit comments