()
| 318 | |
| 319 | function isSearchOperand(tok) { |
| 320 | return tok && (tok.t === "clause" || tok.t === "filter" || tok.t === "filterMulti"); |
| 321 | } |
| 322 | |
| 323 | function appendSearchClauseFromSidebar(field, rawValue) { |
| 324 | initSearchClauseState(); |
| 325 | const v = String(rawValue || "").trim(); |
| 326 | if (!v) return false; |
| 327 | const tok = window.searchBoolTokens; |
| 328 | const last = tok.length ? tok[tok.length - 1] : null; |
nothing calls this directly
no test coverage detected