diff options
| author | Pol Valletbó <pol.valletbo@glovoapp.com> | 2023-10-11 15:52:05 +0200 |
|---|---|---|
| committer | Pol Valletbó <pol.valletbo@glovoapp.com> | 2023-10-11 15:52:05 +0200 |
| commit | 4b281ffdf2c0315722729ec090f74c0d49feca1f (patch) | |
| tree | d78d9718129225a3eaff0d28cc03d4b59a03464c | |
| parent | b769f34f6371b13f7ce81cefe65579911331eb16 (diff) | |
| download | rust-4b281ffdf2c0315722729ec090f74c0d49feca1f.tar.gz rust-4b281ffdf2c0315722729ec090f74c0d49feca1f.zip | |
chore: format imports
| -rw-r--r-- | crates/parser/src/lexed_str.rs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/crates/parser/src/lexed_str.rs b/crates/parser/src/lexed_str.rs index 4d322f21ae7..13189b8bd00 100644 --- a/crates/parser/src/lexed_str.rs +++ b/crates/parser/src/lexed_str.rs @@ -7,11 +7,9 @@ //! //! Note that these tokens, unlike the tokens we feed into the parser, do //! include info about comments and whitespace. +// -use rustc_dependencies::lexer::{ - self as rustc_lexer, - unescape::{unescape_c_string, unescape_literal}, -}; +use rustc_dependencies::lexer as rustc_lexer; use std::ops; |
