1fn modifier_placeholder_stmt(stmt: &Statement) -> bool { 2 matches!( 3 stmt, 4 Statement::Expression(_, Expression::Variable(Identifier { name, .. })) 5 if name == "_" 6 ) 7}