mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-27 05:23:24 +00:00
Remove unescape_byte_literal
.
It's easy to just use `unescape_literal` + `byte_from_char`.
This commit is contained in:
parent
8807fc4cc3
commit
7d2a1ee4fc
1 changed files with 2 additions and 4 deletions
|
@ -5,9 +5,7 @@
|
||||||
mod block;
|
mod block;
|
||||||
|
|
||||||
use rowan::Direction;
|
use rowan::Direction;
|
||||||
use rustc_lexer::unescape::{
|
use rustc_lexer::unescape::{self, unescape_byte, unescape_char, unescape_literal, Mode};
|
||||||
self, unescape_byte, unescape_byte_literal, unescape_char, unescape_literal, Mode,
|
|
||||||
};
|
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
algo,
|
algo,
|
||||||
|
@ -143,7 +141,7 @@ fn validate_literal(literal: ast::Literal, acc: &mut Vec<SyntaxError>) {
|
||||||
ast::LiteralKind::ByteString(s) => {
|
ast::LiteralKind::ByteString(s) => {
|
||||||
if !s.is_raw() {
|
if !s.is_raw() {
|
||||||
if let Some(without_quotes) = unquote(text, 2, '"') {
|
if let Some(without_quotes) = unquote(text, 2, '"') {
|
||||||
unescape_byte_literal(without_quotes, Mode::ByteStr, &mut |range, char| {
|
unescape_literal(without_quotes, Mode::ByteStr, &mut |range, char| {
|
||||||
if let Err(err) = char {
|
if let Err(err) = char {
|
||||||
push_err(2, (range.start, err));
|
push_err(2, (range.start, err));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue