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>)
| 312 | /** Set the normalized project-name tokens used to down-weight non-discriminative |
| 313 | * query words in path scoring (#720). Called once when the project opens. */ |
| 314 | setProjectNameTokens(tokens: Set<string>): void { |
| 315 | this.projectNameTokens = tokens; |
| 316 | } |
| 317 | |
| 318 | /** The normalized project-name tokens (#720); empty if none were derived. */ |
| 319 | getProjectNameTokens(): Set<string> { |