()
| 1160 | ee.data.listOperations = function(opt_limit, opt_callback) { |
| 1161 | const ops = []; |
| 1162 | const truncatedOps = () => opt_limit ? ops.slice(0, opt_limit) : ops; |
| 1163 | /** @type {!ee.api.ProjectsOperationsListNamedParameters} */ |
| 1164 | const params = {pageSize: ee.data.TASKLIST_PAGE_SIZE_}; |
| 1165 | // Use tail recursion to fetch batches of operations. |
no test coverage detected