Return a query run built from the whole range of query tokens.
(self)
| 304 | return length |
| 305 | |
| 306 | def whole_query_run(self): |
| 307 | """ |
| 308 | Return a query run built from the whole range of query tokens. |
| 309 | """ |
| 310 | if not self._whole_query_run: |
| 311 | self._whole_query_run = QueryRun( |
| 312 | query=self, |
| 313 | start=0, |
| 314 | end=len(self.tokens) - 1, |
| 315 | ) |
| 316 | |
| 317 | return self._whole_query_run |
| 318 | |
| 319 | def spdx_lid_query_runs_and_text(self): |
| 320 | """ |