(text)
| 3339 | } |
| 3340 | |
| 3341 | function aliasLabelsForText(text) { |
| 3342 | return phraseAliases |
| 3343 | .filter((alias) => alias.patterns.some((pattern) => pattern.test(text))) |
| 3344 | .map((alias) => localizeWikiText(alias.label)); |
| 3345 | } |
| 3346 | |
| 3347 | function candidateLabelsForNode(node) { |
| 3348 | const text = nodeSearchText(node); |
no test coverage detected