@@ -561,6 +561,8 @@ const cases: Cases = [
561
561
'class Ignored { private static readonly % = 1 }' ,
562
562
'class Ignored { abstract % = 1 }' ,
563
563
'class Ignored { declare % }' ,
564
+ 'class Ignored { #% }' ,
565
+ 'class Ignored { #% = 1 }' ,
564
566
] ,
565
567
options : {
566
568
selector : 'classProperty' ,
@@ -616,6 +618,7 @@ const cases: Cases = [
616
618
'class Ignored { private % = () => {} }' ,
617
619
'class Ignored { abstract %() }' ,
618
620
'class Ignored { declare %() }' ,
621
+ 'class Ignored { #%() {} }' ,
619
622
] ,
620
623
options : {
621
624
selector : 'classMethod' ,
@@ -626,6 +629,7 @@ const cases: Cases = [
626
629
'const ignored = { %() {} };' ,
627
630
'const ignored = { "%"() {} };' ,
628
631
'const ignored = { %: () => {} };' ,
632
+ 'const ignored = { #%: () => {} };' ,
629
633
] ,
630
634
options : {
631
635
selector : 'objectLiteralMethod' ,
@@ -636,6 +640,7 @@ const cases: Cases = [
636
640
'interface Ignored { %(): string }' ,
637
641
'interface Ignored { "%"(): string }' ,
638
642
'type Ignored = { %(): string }' ,
643
+ 'type Ignored = { #%(): string }' ,
639
644
'type Ignored = { "%"(): string }' ,
640
645
] ,
641
646
options : {
0 commit comments