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>)
| 228 | /** Set the normalized project-name tokens used to down-weight non-discriminative |
| 229 | * query words in path scoring (#720). Called once when the project opens. */ |
| 230 | setProjectNameTokens(tokens: Set<string>): void { |
| 231 | this.projectNameTokens = tokens; |
| 232 | } |
| 233 | |
| 234 | /** The normalized project-name tokens (#720); empty if none were derived. */ |
| 235 | getProjectNameTokens(): Set<string> { |