| 256 | } |
| 257 | |
| 258 | interface Content { |
| 259 | value: string |
| 260 | wildcardLeft: boolean |
| 261 | wildcardRight: boolean |
| 262 | boundLeft: boolean |
| 263 | boundRight: boolean |
| 264 | removeCombiningCharacters: boolean |
| 265 | caseSensitive: boolean |
| 266 | fieldValueHighlight?: FieldValueHighlight |
| 267 | } |
| 268 | |
| 269 | // we cache the field because the next run of astEnter should be on the field's value, and we need the field |
| 270 | let fieldCache: QueryString | QueryRegex | undefined |
nothing calls this directly
no outgoing calls
no test coverage detected