File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -2458,13 +2458,13 @@ mod tests {
24582458 #[ test]
24592459 #[ ignore = "Missing parser support for lookaround" ]
24602460 fn lookaround ( ) {
2461- assert_eq ! ( exact( [ "ab" ] ) , e( r"a(?<=qwe )b" ) ) ;
2461+ assert_eq ! ( exact( [ "ab" ] ) , e( r"a(?<=qwa )b" ) ) ;
24622462 assert_eq ! ( exact( [ "ab" ] ) , e( r"a(?<!qwe)b" ) ) ;
24632463
24642464 assert_eq ! ( exact( [ "ab" ] ) , e( r"(?<=qwe)ab" ) ) ;
24652465 assert_eq ! ( exact( [ "ab" ] ) , e( r"(?<!qwe)ab" ) ) ;
24662466
2467- assert_eq ! ( exact( [ "ab" ] ) , e( r"ab(?<=qwe )" ) ) ;
2467+ assert_eq ! ( exact( [ "ab" ] ) , e( r"ab(?<=qab )" ) ) ;
24682468 assert_eq ! ( exact( [ "ab" ] ) , e( r"ab(?<!qwe)" ) ) ;
24692469
24702470 let expected = ( seq ( [ I ( "aZ" ) , E ( "ab" ) ] ) , seq ( [ I ( "Zb" ) , E ( "ab" ) ] ) ) ;
Original file line number Diff line number Diff line change @@ -2569,8 +2569,6 @@ impl Properties {
25692569 maximum_len : Some ( 0 ) ,
25702570 literal : false ,
25712571 alternation_literal : false ,
2572- explicit_captures_len : sub_p. explicit_captures_len ( ) ,
2573- static_explicit_captures_len : sub_p. static_explicit_captures_len ( ) ,
25742572 ..* sub_p. 0 . clone ( )
25752573 } ;
25762574 Properties ( Box :: new ( inner) )
You can’t perform that action at this time.
0 commit comments