File tree 2 files changed +25
-1
lines changed
2 files changed +25
-1
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ const modifiersFixtures = [
61
61
'pattern' : '(?i:[\\q{ab|cd|abc}--\\q{abc}--\\q{cd}])' ,
62
62
'flags' : 'v' ,
63
63
'options' : { unicodeSetsFlag : 'transform' , modifiers : false } ,
64
- 'expected' : '(?i:(?:ab ))' ,
64
+ 'expected' : '(?i:(?:[Aa][Bb] ))' ,
65
65
'expectedFlags' : 'u' ,
66
66
} , {
67
67
'pattern' : '(?i:[\\q{ab|cd|abc}--\\q{abc}--\\q{cd}])' ,
Original file line number Diff line number Diff line change @@ -421,11 +421,35 @@ const unicodeSetFixtures = [
421
421
expected : '[]' ,
422
422
expectedFlags : 'iu'
423
423
} ,
424
+ {
425
+ pattern : '[K--\\q{k}]' ,
426
+ flags : 'iv' ,
427
+ expected : '[]' ,
428
+ expectedFlags : 'iu'
429
+ } ,
424
430
{
425
431
pattern : '[\\u212A--k]' ,
426
432
flags : 'iv' ,
427
433
expected : '[]' ,
428
434
expectedFlags : 'iu'
435
+ } ,
436
+ {
437
+ pattern : '[\\q{\\u212A}--k]' ,
438
+ flags : 'iv' ,
439
+ expected : '[]' ,
440
+ expectedFlags : 'iu'
441
+ } ,
442
+ {
443
+ pattern : '[K--\\u212A]' ,
444
+ flags : 'iv' ,
445
+ expected : '[]' ,
446
+ expectedFlags : 'iu'
447
+ } ,
448
+ {
449
+ pattern : '[\\q{K}--\\q{\\u212A}]' ,
450
+ flags : 'iv' ,
451
+ expected : '[]' ,
452
+ expectedFlags : 'iu'
429
453
}
430
454
] ;
431
455
You can’t perform that action at this time.
0 commit comments