* Whenever the version changes in service:project, the results in this * service become stale. Presenting them any further could allow the user to * undo their version change by clicking a stale link. * @returns {boolean}
()
| 53 | * @returns {boolean} |
| 54 | */ |
| 55 | hasStaleResults() { |
| 56 | return ( |
| 57 | this.#lastQueriedProjectVersion !== null && |
| 58 | this.projectVersion !== this.#lastQueriedProjectVersion |
| 59 | ); |
| 60 | } |
| 61 | |
| 62 | clearResults() { |
| 63 | this.results = []; |
nothing calls this directly
no outgoing calls
no test coverage detected