diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2022-09-24 16:05:19 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-24 16:05:19 -0400 |
commit | 1e91bf151f43ad05138e862ba4a03abad6929e5f (patch) | |
tree | 174e3c65f91b094056127dc3d53d99ec6c711a9f /ext/js/display/query-parser.js | |
parent | b27d290509ae2ce9f2158b5d8f0c90e40828043b (diff) |
DocumentUtil static (#2232)
* Make all methods static
The two non-static methods are kept for temporary compatibility
* Use this instead of class name now that functions are static
* Update test
* Don't instantiate DocumentUtil
* Remove temporary non-static methods
* Remove unused global declaration
Diffstat (limited to 'ext/js/display/query-parser.js')
-rw-r--r-- | ext/js/display/query-parser.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ext/js/display/query-parser.js b/ext/js/display/query-parser.js index cc193a06..bafa9045 100644 --- a/ext/js/display/query-parser.js +++ b/ext/js/display/query-parser.js @@ -20,10 +20,9 @@ */ class QueryParser extends EventDispatcher { - constructor({getSearchContext, documentUtil, japaneseUtil}) { + constructor({getSearchContext, japaneseUtil}) { super(); this._getSearchContext = getSearchContext; - this._documentUtil = documentUtil; this._japaneseUtil = japaneseUtil; this._text = ''; this._setTextToken = null; @@ -39,7 +38,6 @@ class QueryParser extends EventDispatcher { this._textScanner = new TextScanner({ node: this._queryParser, getSearchContext, - documentUtil, searchTerms: true, searchKanji: false, searchOnClick: true |