(&self, span: Span)
| 567 | syn::Error::new(span, "`==>` cannot be part of Rust expression") |
| 568 | } |
| 569 | fn error_ambiguous_expression(&self, span: Span) -> syn::Error { |
| 570 | syn::Error::new( |
| 571 | span, |
| 572 | "found `||` and `&&` in the same subexpression. \ |
| 573 | Hint: add parentheses to clarify the evaluation order.") |
| 574 | } |
| 575 | } |