@@ -422,11 +422,12 @@ impl Cursor<'_> {
422
422
debug_assert ! ( self . prev( ) == '/' && self . first( ) == '/' ) ;
423
423
self . bump ( ) ;
424
424
425
- let doc_style = match self . first ( ) {
425
+ let doc_style = match self . chars ( ) . as_str ( ) . as_bytes ( ) {
426
426
// `//!` is an inner line doc comment.
427
- '!' => Some ( DocStyle :: Inner ) ,
427
+ [ b '!', .. ] => Some ( DocStyle :: Inner ) ,
428
428
// `////` (more than 3 slashes) is not considered a doc comment.
429
- '/' if self . second ( ) != '/' => Some ( DocStyle :: Outer ) ,
429
+ [ b'/' , b'/' , ..] => None ,
430
+ [ b'/' , ..] => Some ( DocStyle :: Outer ) ,
430
431
_ => None ,
431
432
} ;
432
433
@@ -438,12 +439,13 @@ impl Cursor<'_> {
438
439
debug_assert ! ( self . prev( ) == '/' && self . first( ) == '*' ) ;
439
440
self . bump ( ) ;
440
441
441
- let doc_style = match self . first ( ) {
442
+ let doc_style = match self . chars ( ) . as_str ( ) . as_bytes ( ) {
442
443
// `/*!` is an inner block doc comment.
443
- '!' => Some ( DocStyle :: Inner ) ,
444
+ [ b '!', .. ] => Some ( DocStyle :: Inner ) ,
444
445
// `/***` (more than 2 stars) is not considered a doc comment.
445
446
// `/**/` is not considered a doc comment.
446
- '*' if !matches ! ( self . second( ) , '*' | '/' ) => Some ( DocStyle :: Outer ) ,
447
+ [ b'*' , b'*' | b'/' , ..] => None ,
448
+ [ b'*' , ..] => Some ( DocStyle :: Outer ) ,
447
449
_ => None ,
448
450
} ;
449
451
@@ -464,7 +466,7 @@ impl Cursor<'_> {
464
466
break ;
465
467
}
466
468
}
467
- _ => ( ) ,
469
+ _ => { }
468
470
}
469
471
}
470
472
0 commit comments