UNPKG

397 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3/**
4 * SearchList contains all current searches.
5 */
6class SearchList extends Array {
7 /**
8 * Scan runs all active searches against the stream text that has accumulated so far.
9 */
10 scan() {
11 for (const search of this) {
12 search.scan();
13 }
14 }
15}
16exports.SearchList = SearchList;