@@ -20,7 +20,6 @@ pub use Flag::*;
20
20
pub use Piece :: * ;
21
21
pub use Position :: * ;
22
22
23
- use rustc_lexer:: unescape;
24
23
use std:: iter;
25
24
use std:: str;
26
25
use std:: string;
@@ -314,11 +313,12 @@ impl<'a> Parser<'a> {
314
313
append_newline : bool ,
315
314
mode : ParseMode ,
316
315
) -> Parser < ' a > {
317
- let input_string_kind = find_width_map_from_snippet ( s , snippet, style) ;
316
+ let input_string_kind = find_width_map_from_snippet ( snippet, style) ;
318
317
let ( width_map, is_literal) = match input_string_kind {
319
318
InputStringKind :: Literal { width_mappings } => ( width_mappings, true ) ,
320
319
InputStringKind :: NotALiteral => ( Vec :: new ( ) , false ) ,
321
320
} ;
321
+
322
322
Parser {
323
323
mode,
324
324
input : s,
@@ -856,7 +856,6 @@ impl<'a> Parser<'a> {
856
856
/// written code (code snippet) and the `InternedString` that gets processed in the `Parser`
857
857
/// in order to properly synthesise the intra-string `Span`s for error diagnostics.
858
858
fn find_width_map_from_snippet (
859
- input : & str ,
860
859
snippet : Option < string:: String > ,
861
860
str_style : Option < usize > ,
862
861
) -> InputStringKind {
@@ -869,27 +868,8 @@ fn find_width_map_from_snippet(
869
868
return InputStringKind :: Literal { width_mappings : Vec :: new ( ) } ;
870
869
}
871
870
872
- // Strip quotes.
873
871
let snippet = & snippet[ 1 ..snippet. len ( ) - 1 ] ;
874
872
875
- // Macros like `println` add a newline at the end. That technically doens't make them "literals" anymore, but it's fine
876
- // since we will never need to point our spans there, so we lie about it here by ignoring it.
877
- // Since there might actually be newlines in the source code, we need to normalize away all trailing newlines.
878
- // If we only trimmed it off the input, `format!("\n")` would cause a mismatch as here we they actually match up.
879
- // Alternatively, we could just count the trailing newlines and only trim one from the input if they don't match up.
880
- let input_no_nl = input. trim_end_matches ( '\n' ) ;
881
- let Ok ( unescaped) = unescape_string ( snippet) else {
882
- return InputStringKind :: NotALiteral ;
883
- } ;
884
-
885
- let unescaped_no_nl = unescaped. trim_end_matches ( '\n' ) ;
886
-
887
- if unescaped_no_nl != input_no_nl {
888
- // The source string that we're pointing at isn't our input, so spans pointing at it will be incorrect.
889
- // This can for example happen with proc macros that respan generated literals.
890
- return InputStringKind :: NotALiteral ;
891
- }
892
-
893
873
let mut s = snippet. char_indices ( ) ;
894
874
let mut width_mappings = vec ! [ ] ;
895
875
while let Some ( ( pos, c) ) = s. next ( ) {
@@ -972,19 +952,6 @@ fn find_width_map_from_snippet(
972
952
InputStringKind :: Literal { width_mappings }
973
953
}
974
954
975
- fn unescape_string ( string : & str ) -> Result < string:: String , unescape:: EscapeError > {
976
- let mut buf = string:: String :: new ( ) ;
977
- let mut error = Ok ( ( ) ) ;
978
- unescape:: unescape_literal ( string, unescape:: Mode :: Str , & mut |_, unescaped_char| {
979
- match unescaped_char {
980
- Ok ( c) => buf. push ( c) ,
981
- Err ( err) => error = Err ( err) ,
982
- }
983
- } ) ;
984
-
985
- error. map ( |_| buf)
986
- }
987
-
988
955
// Assert a reasonable size for `Piece`
989
956
#[ cfg( all( target_arch = "x86_64" , target_pointer_width = "64" ) ) ]
990
957
rustc_data_structures:: static_assert_size!( Piece <' _>, 16 ) ;
0 commit comments