Skip to content

Commit d84d8d2

Browse files
committed
Rework ast::BinOpKind::to_string and ast::UnOp::to_string.
- Rename them both `as_str`, which is the typical name for a function that returns a `&str`. (`to_string` is appropriate for functions returning `String` or maybe `Cow<'a, str>`.) - Change `UnOp::as_str` from an associated function (weird!) to a method. - Avoid needless `self` dereferences.
1 parent 24ce52a commit d84d8d2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/expr.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1933,7 +1933,7 @@ fn rewrite_unary_op(
19331933
shape: Shape,
19341934
) -> Option<String> {
19351935
// For some reason, an UnOp is not spanned like BinOp!
1936-
rewrite_unary_prefix(context, ast::UnOp::to_string(op), expr, shape)
1936+
rewrite_unary_prefix(context, op.as_str(), expr, shape)
19371937
}
19381938

19391939
pub(crate) enum RhsAssignKind<'ast> {

src/pairs.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ impl FlattenPair for ast::Expr {
339339
if let Some(pop) = stack.pop() {
340340
match pop.kind {
341341
ast::ExprKind::Binary(op, _, ref rhs) => {
342-
separators.push(op.node.to_string());
342+
separators.push(op.node.as_str());
343343
node = rhs;
344344
}
345345
_ => unreachable!(),

0 commit comments

Comments
 (0)