42//
43// fn foo(&self) -> u32 {
44▶// todo!()
45// }
46// }
· · ·
206 && let Some(ast::AssocItem::Fn(func)) = &first_new_item
207 && let Some(m) = func.syntax().descendants().find_map(ast::MacroCall::cast)
208▶ && m.syntax().text() == "todo!()"
209 {
210 placeholder = Some(m);
· · ·
288
289 fn foo(&self) {
290▶ todo!()
291 }
292
· · ·
293 fn baz(&self) {
294▶ todo!()
295 }
296
· · ·
329
330 fn foo(&self) {
331▶ ${0:todo!()}
332 }
333
+ 61 more matches in this file