Refactor: prefer smol trie

This commit is contained in:
SukkaW
2024-09-23 16:45:58 +08:00
parent 3ca9122a84
commit a8c53617b1
6 changed files with 10 additions and 31 deletions

View File

@@ -64,13 +64,10 @@ export abstract class RuleOutput<TPreprocessed = unknown> {
return result;
};
protected span: Span;
constructor(
span: Span,
protected readonly span: Span,
protected readonly id: string
) {
this.span = span.traceChild('RuleOutput');
}
protected title: string | null = null;