@@ -22,7 +22,7 @@ export type MatchProcessorOptions = {
2222} ;
2323
2424export class MatchProcessor < T extends Detail > implements Disposable {
25- readonly # matchers: ItemBelt < Matcher < T > > ;
25+ readonly matchers : ItemBelt < Matcher < T > > ;
2626 readonly #interval: number ;
2727 readonly #threshold: number ;
2828 readonly #chunkSize: number ;
@@ -37,7 +37,7 @@ export class MatchProcessor<T extends Detail> implements Disposable {
3737 matchers : readonly [ Matcher < T > , ...Matcher < T > [ ] ] ,
3838 options : MatchProcessorOptions = { } ,
3939 ) {
40- this . # matchers = new ItemBelt ( matchers ) ;
40+ this . matchers = new ItemBelt ( matchers ) ;
4141 this . #interval = options . interval ?? INTERVAL ;
4242 this . #threshold = options . threshold ?? THRESHOLD ;
4343 this . #chunkSize = options . chunkSize ?? CHUNK_SIZE ;
@@ -46,26 +46,26 @@ export class MatchProcessor<T extends Detail> implements Disposable {
4646 }
4747
4848 get #matcher( ) : Matcher < T > {
49- return this . # matchers. current ! ;
49+ return this . matchers . current ! ;
5050 }
5151
5252 get items ( ) : IdItem < T > [ ] {
5353 return this . #items;
5454 }
5555
5656 get matcherCount ( ) : number {
57- return this . # matchers. count ;
57+ return this . matchers . count ;
5858 }
5959
6060 get matcherIndex ( ) : number {
61- return this . # matchers. index ;
61+ return this . matchers . index ;
6262 }
6363
6464 set matcherIndex ( index : number | "$" ) {
6565 if ( index === "$" ) {
66- index = this . # matchers. count ;
66+ index = this . matchers . count ;
6767 }
68- this . # matchers. index = index ;
68+ this . matchers . index = index ;
6969 }
7070
7171 #validateAvailability( ) : void {
0 commit comments