@@ -183,9 +183,9 @@ declare_lint_pass!(Write => [
183
183
184
184
impl EarlyLintPass for Write {
185
185
fn check_mac ( & mut self , cx : & EarlyContext < ' _ > , mac : & Mac ) {
186
- if mac. node . path == sym ! ( println) {
186
+ if mac. path == sym ! ( println) {
187
187
span_lint ( cx, PRINT_STDOUT , mac. span , "use of `println!`" ) ;
188
- if let ( Some ( fmt_str) , _) = check_tts ( cx, & mac. node . tts , false ) {
188
+ if let ( Some ( fmt_str) , _) = check_tts ( cx, & mac. tts , false ) {
189
189
if fmt_str. contents . is_empty ( ) {
190
190
span_lint_and_sugg (
191
191
cx,
@@ -198,9 +198,9 @@ impl EarlyLintPass for Write {
198
198
) ;
199
199
}
200
200
}
201
- } else if mac. node . path == sym ! ( print) {
201
+ } else if mac. path == sym ! ( print) {
202
202
span_lint ( cx, PRINT_STDOUT , mac. span , "use of `print!`" ) ;
203
- if let ( Some ( fmt_str) , _) = check_tts ( cx, & mac. node . tts , false ) {
203
+ if let ( Some ( fmt_str) , _) = check_tts ( cx, & mac. tts , false ) {
204
204
if check_newlines ( & fmt_str) {
205
205
span_lint_and_then (
206
206
cx,
@@ -211,7 +211,7 @@ impl EarlyLintPass for Write {
211
211
err. multipart_suggestion (
212
212
"use `println!` instead" ,
213
213
vec ! [
214
- ( mac. node . path. span, String :: from( "println" ) ) ,
214
+ ( mac. path. span, String :: from( "println" ) ) ,
215
215
( fmt_str. newline_span( ) , String :: new( ) ) ,
216
216
] ,
217
217
Applicability :: MachineApplicable ,
@@ -220,8 +220,8 @@ impl EarlyLintPass for Write {
220
220
) ;
221
221
}
222
222
}
223
- } else if mac. node . path == sym ! ( write) {
224
- if let ( Some ( fmt_str) , _) = check_tts ( cx, & mac. node . tts , true ) {
223
+ } else if mac. path == sym ! ( write) {
224
+ if let ( Some ( fmt_str) , _) = check_tts ( cx, & mac. tts , true ) {
225
225
if check_newlines ( & fmt_str) {
226
226
span_lint_and_then (
227
227
cx,
@@ -232,7 +232,7 @@ impl EarlyLintPass for Write {
232
232
err. multipart_suggestion (
233
233
"use `writeln!()` instead" ,
234
234
vec ! [
235
- ( mac. node . path. span, String :: from( "writeln" ) ) ,
235
+ ( mac. path. span, String :: from( "writeln" ) ) ,
236
236
( fmt_str. newline_span( ) , String :: new( ) ) ,
237
237
] ,
238
238
Applicability :: MachineApplicable ,
@@ -241,8 +241,8 @@ impl EarlyLintPass for Write {
241
241
)
242
242
}
243
243
}
244
- } else if mac. node . path == sym ! ( writeln) {
245
- if let ( Some ( fmt_str) , expr) = check_tts ( cx, & mac. node . tts , true ) {
244
+ } else if mac. path == sym ! ( writeln) {
245
+ if let ( Some ( fmt_str) , expr) = check_tts ( cx, & mac. tts , true ) {
246
246
if fmt_str. contents . is_empty ( ) {
247
247
let mut applicability = Applicability :: MachineApplicable ;
248
248
let suggestion = expr. map_or_else (
0 commit comments