Set the normalized project-name tokens used to down-weight non-discriminative * query words in path scoring (#720). Called once when the project opens.
(tokens: Set<string>)
| 341 | /** Set the normalized project-name tokens used to down-weight non-discriminative |
| 342 | * query words in path scoring (#720). Called once when the project opens. */ |
| 343 | setProjectNameTokens(tokens: Set<string>): void { |
| 344 | this.projectNameTokens = tokens; |
| 345 | } |
| 346 | |
| 347 | /** The normalized project-name tokens (#720); empty if none were derived. */ |
| 348 | getProjectNameTokens(): Set<string> { |